Easy Updates Manager - Version 4.0.2

Version Description

  • Fixed: unchecked error in settings.
  • Added: version 4.0.2 to GitHub.
  • Removed: code format (will add in version 4.0.3 which will be released soon).
  • Added: 4.0 available for download.
  • Added: footnote at bottom of changelog.
Download this release

Release Info

Developer kidsguide
Plugin Icon 128x128 Easy Updates Manager
Version 4.0.2
Comparing to
See all releases

Code changes from version 3.6.0 to 4.0.2

Function.php CHANGED
@@ -2,17 +2,19 @@
2
  /**
3
  * @package Disable Updates Manager
4
  * @author Websiteguy
5
- * @version 3.6.0
6
  */
7
  /*
8
  Plugin Name: Disable Updates Manager
9
  Plugin URI: http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
10
- Version: 3.6.0
11
  Description: Pick which type of updates you would like to disable. Just use the settings.
12
  Author: Websiteguy
13
  Author URI: http://profiles.wordpress.org/kidsguide/
14
  License: GPL2
15
- Tested up to WordPress 3.8.1
 
 
16
  */
17
  /*
18
  License:
@@ -31,11 +33,13 @@ GNU General Public License for more details.
31
  You should have received a copy of the GNU General Public License
32
  along with this program; if not, write to the Free Software
33
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 
 
34
  */
35
 
36
  // Define version.
37
 
38
- define("DISABLEUPDATESMANAGERVERSION", "3.6.0");
39
 
40
  class Disable_Updates {
41
  // Set status in array
@@ -57,8 +61,6 @@ function Disable_Updates() {
57
  $this->load_disable_updates();
58
  }
59
 
60
-
61
-
62
  // Register settings.
63
  function register_setting() {
64
  register_setting('_disable_updates', '_disable_updates', array(&$this, 'validate_settings'));
@@ -77,7 +79,7 @@ function Disable_Updates() {
77
 
78
  function add_submenu() {
79
  // Add submenu to "Dashboard" menu.
80
- add_submenu_page( 'index.php', 'Disable Updates', __('Disable Updates','disable-updates-manager'), 'administrator', __FILE__, array(&$this, 'display_page') );
81
  }
82
 
83
  // Functions for plugin (Change in settings)
@@ -98,7 +100,9 @@ add_submenu_page( 'index.php', 'Disable Updates', __('Disable Updates','disable-
98
  add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
99
 
100
  // Disable Plugin Update E-mails (only works for some plugins)
101
- apply_filters( 'auto_plugin_update_send_email', false, $type, $plugin_update, $result );
 
 
102
 
103
  break;
104
 
@@ -110,7 +114,9 @@ add_submenu_page( 'index.php', 'Disable Updates', __('Disable Updates','disable-
110
  add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
111
 
112
  // Disable Theme Update E-mails (only works for some plugins)
113
- apply_filters( 'auto_theme_update_send_email', false, $type, $theme_update, $result );
 
 
114
 
115
  break;
116
 
@@ -123,6 +129,8 @@ add_submenu_page( 'index.php', 'Disable Updates', __('Disable Updates','disable-
123
 
124
  // Disable WordPress Core Update E-mails (only works for some plugins)
125
  apply_filters( 'auto_core_update_send_email', false, $type, $core_update, $result );
 
 
126
 
127
  break;
128
 
@@ -239,7 +247,7 @@ add_submenu_page( 'index.php', 'Disable Updates', __('Disable Updates','disable-
239
 
240
 
241
  // Disable Debug E-mails
242
- add_filter( 'automatic_updates_send_debug_email ', '__return_false', 1 );
243
 
244
  // Disable WordPress Automatic Updates
245
  define( 'Automatic_Updater_Disabled', true );
@@ -249,23 +257,29 @@ add_submenu_page( 'index.php', 'Disable Updates', __('Disable Updates','disable-
249
 
250
  // Core E-mails Only
251
  apply_filters( 'auto_core_update_send_email', false, $type, $core_update, $result );
 
 
252
 
253
  // Plugin E-mails Only
254
  apply_filters( 'auto_plugin_update_send_email', false, $type, $plugin_update, $result );
255
 
 
 
256
  // Theme E-mails Only
257
  apply_filters( 'auto_theme_update_send_email', false, $type, $theme_update, $result );
258
 
259
-
 
260
  break;
261
 
262
  // Remove WordPress Version Number
263
  case 'wpv' :
264
-
265
- function change_footer_admin () {return ' ';}
266
- add_filter('admin_footer_text', 'change_footer_admin', 9999);
267
- function change_footer_version() {return ' ';}
268
- add_filter( 'update_footer', 'change_footer_version', 9999);
 
269
 
270
  break;
271
 
@@ -423,7 +437,7 @@ break;
423
 
424
  <table class="form-table">
425
  <tr>
426
- <div class="error" style="width: 780px"><p><strong>Please Note! - </strong>If either your WordPress core, theme, or plugins get too out of date, you may run into compatibility problems.</p></div>
427
  </table>
428
  <table class="wp-list-table widefat fixed bookmarks" style="width: 590px; border-radius: 4px;">
429
  <thead>
@@ -434,13 +448,14 @@ break;
434
  <tbody>
435
  <tr>
436
  <td>
 
437
  <div class="showonhover">
438
  <label for="all_notify">
439
  <input type="checkbox" <?php checked(1, (int)$this->status['all'], true); ?> value="1" id="all_notify" name="_disable_updates[all]"> <?php _e('Disable All Updates', 'disable-updates-manager') ?>
440
  </label>
441
  <span>
442
  <a href="#" class="viewdescription">?</a>
443
- <span class="hovertext">Just disables the three updates, nothing else.</span>
444
  </span>
445
  </div>
446
  </span>
@@ -476,13 +491,13 @@ break;
476
  <label for="ip_notify">
477
  <input type="checkbox" <?php checked(1, (int)$this->status['ip'], true); ?> value="1" id="ip_notify" name="_disable_updates[ip]"> <?php _e('Disable Plugins Individually', 'disable-updates-manager') ?>
478
  </label>
 
479
  <span>
480
  <a href="#" class="viewdescription">?</a>
481
  <span class="hovertext">Go to the "Plugins" section in your dashboard to disable.</span>
482
  </span>
483
  </div>
484
  </span>
485
- <span style="font-size:8px">New format for this setting coming soon!</span>
486
  </td>
487
  </tr>
488
  </tbody>
@@ -503,7 +518,7 @@ break;
503
  </label>
504
  <span>
505
  <a href="#" class="viewdescription">?</a>
506
- <span class="hovertext">The one under the dashboard.</span>
507
  </span>
508
  </div>
509
  </span>
@@ -529,17 +544,22 @@ break;
529
  <input type="submit" class="button-primary" value="<?php _e('Update Settings') ?>" />
530
  </p>
531
 
532
- <table class="wp-list-table widefat fixed bookmarks" style="width: 200px; border-radius: 4px;">
533
  <tbody>
534
  <tr>
535
  <td>
536
  <p align="center">
537
- <a href="http://wordpress.org/support/plugin/stops-core-theme-and-plugin-updates">Support</a> | <a href="http://www.youtube.com/watch?v=7sMEBGNxhwA">Tutorial</a> | <a href="http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/faq/">FAQ</a>
538
  </p>
539
  </td>
540
  </tr>
541
  </tbody>
542
  </table>
 
 
 
 
 
543
  </form>
544
  </div>
545
 
@@ -562,7 +582,8 @@ break;
562
  $links,
563
  array( '<a href="http://www.wordpress.org/support/plugin/stops-core-theme-and-plugin-updates">Support</a>' ),
564
  array( '<a href="http://www.wordpress.org/plugins/stops-core-theme-and-plugin-updates/faq/">FAQ</a>' ),
565
- array( '<a href="http://www.youtube.com/watch?v=7sMEBGNxhwA">Tutorial</a>' )
 
566
  );
567
  }
568
  return $links;
@@ -574,19 +595,29 @@ break;
574
  function thsp_plugin_action_links( $links ) {
575
 
576
  return array_merge(
577
- array('settings' => '<a href="' . admin_url( 'index.php?page=stops-core-theme-and-plugin-updates/Function.php' ) . '">' . __( 'Configure', 'ts-fab' ) . '</a>'),
578
  $links);
579
  }
580
 
581
  // Add Files
 
 
582
  function css() {
583
  wp_register_style('css', plugins_url('style.css',__FILE__ ));
584
  wp_enqueue_style('css');
585
  }
586
  add_action( 'admin_init','css');
587
 
 
588
  function php() {
589
  wp_register_style('php', plugins_url('uninstall.php',__FILE__ ));
590
  wp_enqueue_style('php');
591
  }
592
- add_action( 'admin_init','php');
 
 
 
 
 
 
 
2
  /**
3
  * @package Disable Updates Manager
4
  * @author Websiteguy
5
+ * @version 4.0.2
6
  */
7
  /*
8
  Plugin Name: Disable Updates Manager
9
  Plugin URI: http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
10
+ Version: 4.0.2
11
  Description: Pick which type of updates you would like to disable. Just use the settings.
12
  Author: Websiteguy
13
  Author URI: http://profiles.wordpress.org/kidsguide/
14
  License: GPL2
15
+ Text Domain: stops-core-theme-and-plugin-updates
16
+ Domain Path: /lang
17
+ Tested up to WordPress 3.9.1
18
  */
19
  /*
20
  License:
33
  You should have received a copy of the GNU General Public License
34
  along with this program; if not, write to the Free Software
35
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
36
+
37
+ or go to the license.txt in the trunk.
38
  */
39
 
40
  // Define version.
41
 
42
+ define("DISABLEUPDATESMANAGERVERSION", "4.0.2");
43
 
44
  class Disable_Updates {
45
  // Set status in array
61
  $this->load_disable_updates();
62
  }
63
 
 
 
64
  // Register settings.
65
  function register_setting() {
66
  register_setting('_disable_updates', '_disable_updates', array(&$this, 'validate_settings'));
79
 
80
  function add_submenu() {
81
  // Add submenu to "Dashboard" menu.
82
+ add_submenu_page( 'options-general.php', 'Disable Updates Manager', __('Disable Updates Manager','disable-updates-manager'), 'administrator', __FILE__, array(&$this, 'display_page') );
83
  }
84
 
85
  // Functions for plugin (Change in settings)
100
  add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
101
 
102
  // Disable Plugin Update E-mails (only works for some plugins)
103
+ apply_filters( 'auto_plugin_update_send_email', false, $type, $plugin_update, $result );
104
+
105
+ apply_filters('automatic_plugin_updates_send_debug_email', true, $type, $plugin_update, $result );
106
 
107
  break;
108
 
114
  add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
115
 
116
  // Disable Theme Update E-mails (only works for some plugins)
117
+ apply_filters( 'auto_theme_update_send_email', false, $type, $theme_update, $result );
118
+
119
+ apply_filters('automatic_theme_updates_send_debug_email', true, $type, $theme_update, $result );
120
 
121
  break;
122
 
129
 
130
  // Disable WordPress Core Update E-mails (only works for some plugins)
131
  apply_filters( 'auto_core_update_send_email', false, $type, $core_update, $result );
132
+
133
+ apply_filters('automatic_core_updates_send_debug_email', true, $type, $core_update, $result );
134
 
135
  break;
136
 
247
 
248
 
249
  // Disable Debug E-mails
250
+ add_filter( 'automatic_updates_send_debug_email ', '__return_true', 1 );
251
 
252
  // Disable WordPress Automatic Updates
253
  define( 'Automatic_Updater_Disabled', true );
257
 
258
  // Core E-mails Only
259
  apply_filters( 'auto_core_update_send_email', false, $type, $core_update, $result );
260
+
261
+ apply_filters('automatic_core_updates_send_debug_email', true, $type, $core_update, $result );
262
 
263
  // Plugin E-mails Only
264
  apply_filters( 'auto_plugin_update_send_email', false, $type, $plugin_update, $result );
265
 
266
+ apply_filters('automatic_plugin_updates_send_debug_email', true, $type, $plugin_update, $result );
267
+
268
  // Theme E-mails Only
269
  apply_filters( 'auto_theme_update_send_email', false, $type, $theme_update, $result );
270
 
271
+ apply_filters('automatic_theme_updates_send_debug_email', true, $type, $theme_update, $result );
272
+
273
  break;
274
 
275
  // Remove WordPress Version Number
276
  case 'wpv' :
277
+
278
+ add_filter( 'update_footer', 'my_footer_version', 11 );
279
+
280
+ function my_footer_version() {
281
+ return '';
282
+ }
283
 
284
  break;
285
 
437
 
438
  <table class="form-table">
439
  <tr>
440
+
441
  </table>
442
  <table class="wp-list-table widefat fixed bookmarks" style="width: 590px; border-radius: 4px;">
443
  <thead>
448
  <tbody>
449
  <tr>
450
  <td>
451
+
452
  <div class="showonhover">
453
  <label for="all_notify">
454
  <input type="checkbox" <?php checked(1, (int)$this->status['all'], true); ?> value="1" id="all_notify" name="_disable_updates[all]"> <?php _e('Disable All Updates', 'disable-updates-manager') ?>
455
  </label>
456
  <span>
457
  <a href="#" class="viewdescription">?</a>
458
+ <span class="hovertext">Just disables core, theme, and plugin updates.</span>
459
  </span>
460
  </div>
461
  </span>
491
  <label for="ip_notify">
492
  <input type="checkbox" <?php checked(1, (int)$this->status['ip'], true); ?> value="1" id="ip_notify" name="_disable_updates[ip]"> <?php _e('Disable Plugins Individually', 'disable-updates-manager') ?>
493
  </label>
494
+
495
  <span>
496
  <a href="#" class="viewdescription">?</a>
497
  <span class="hovertext">Go to the "Plugins" section in your dashboard to disable.</span>
498
  </span>
499
  </div>
500
  </span>
 
501
  </td>
502
  </tr>
503
  </tbody>
518
  </label>
519
  <span>
520
  <a href="#" class="viewdescription">?</a>
521
+ <span class="hovertext">The one in the dashboard tab.</span>
522
  </span>
523
  </div>
524
  </span>
544
  <input type="submit" class="button-primary" value="<?php _e('Update Settings') ?>" />
545
  </p>
546
 
547
+ <table class="wp-list-table widefat fixed bookmarks" style="width: auto; padding: 5px; border-radius: 4px;">
548
  <tbody>
549
  <tr>
550
  <td>
551
  <p align="center">
552
+ <a href="http://wordpress.org/support/plugin/stops-core-theme-and-plugin-updates">Support</a> | <a href="http://www.youtube.com/watch?v=7sMEBGNxhwA">Tutorial</a> | <a href="http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/faq/">FAQ</a> | <a href="https://github.com/Websiteguy/disable-updates-manager">GitHub</a>
553
  </p>
554
  </td>
555
  </tr>
556
  </tbody>
557
  </table>
558
+ <div class="error" style="width: 780px;">
559
+ <p>
560
+ <strong>Please Note! - </strong>If either your WordPress core, theme, or plugins get too out of date, you may run into compatibility problems.
561
+ </p>
562
+ </div>
563
  </form>
564
  </div>
565
 
582
  $links,
583
  array( '<a href="http://www.wordpress.org/support/plugin/stops-core-theme-and-plugin-updates">Support</a>' ),
584
  array( '<a href="http://www.wordpress.org/plugins/stops-core-theme-and-plugin-updates/faq/">FAQ</a>' ),
585
+ array( '<a href="http://www.youtube.com/watch?v=7sMEBGNxhwA">Tutorial</a>' ),
586
+ array( '<a href="https://github.com/Websiteguy/disable-updates-manager">GitHub</a>' )
587
  );
588
  }
589
  return $links;
595
  function thsp_plugin_action_links( $links ) {
596
 
597
  return array_merge(
598
+ array('settings' => '<a href="' . admin_url( 'options-general.php?page=stops-core-theme-and-plugin-updates/Function.php' ) . '">' . __( 'Configure', 'ts-fab' ) . '</a>'),
599
  $links);
600
  }
601
 
602
  // Add Files
603
+
604
+ // Style.css
605
  function css() {
606
  wp_register_style('css', plugins_url('style.css',__FILE__ ));
607
  wp_enqueue_style('css');
608
  }
609
  add_action( 'admin_init','css');
610
 
611
+ // uninstall.php
612
  function php() {
613
  wp_register_style('php', plugins_url('uninstall.php',__FILE__ ));
614
  wp_enqueue_style('php');
615
  }
616
+ add_action( 'admin_init','php');
617
+
618
+ // lang folder
619
+ function action_init() {
620
+ // Load our textdomain
621
+ load_plugin_textdomain('stops-core-theme-and-plugin-updates', false , basename(dirname(__FILE__)).'/lang');
622
+ }
623
+ ?>
License.txt ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ The GPLv2 (or later) from the Free Software Foundation is the license that
2
+ the WordPress software is under. Its text follows. Version 2, June 1991
3
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin St,
4
+ Fifth Floor, Boston, MA 02110, USA Everyone is permitted to copy and
5
+ distribute verbatim copies of this license document, but changing it is not
6
+ allowed. Preamble The licenses for most software are designed to take away
7
+ your freedom to share and change it. By contrast, the GNU General Public
8
+ License is intended to guarantee your freedom to share and change free
9
+ software � to make sure the software is free for all its users. This
10
+ General Public License applies to most of the Free Software Foundation�s
11
+ software and to any other program whose authors commit to using it. (Some
12
+ other Free Software Foundation software is covered by the GNU Library
13
+ General Public License instead.) You can apply it to your programs, too.
14
+ When we speak of free software, we are referring to freedom, not price. Our
15
+ General Public Licenses are designed to make sure that you have the freedom
16
+ to distribute copies of free software (and charge for this service if you
17
+ wish), that you receive source code or can get it if you want it, that you
18
+ can change the software or use pieces of it in new free programs; and that
19
+ you know you can do these things. To protect your rights, we need to make
20
+ restrictions that forbid anyone to deny you these rights or to ask you to
21
+ surrender the rights. These restrictions translate to certain
22
+ responsibilities for you if you distribute copies of the software, or if
23
+ you modify it. For example, if you distribute copies of such a program,
24
+ whether gratis or for a fee, you must give the recipients all the rights
25
+ that you have. You must make sure that they, too, receive or can get the
26
+ source code. And you must show them these terms so they know their rights.
27
+ We protect your rights with two steps: (1) copyright the software, and (2)
28
+ offer you this license which gives you legal permission to copy, distribute
29
+ and/or modify the software. Also, for each author�s protection and ours, we
30
+ want to make certain that everyone understands that there is no warranty
31
+ for this free software. If the software is modified by someone else and
32
+ passed on, we want its recipients to know that what they have is not the
33
+ original, so that any problems introduced by others will not reflect on the
34
+ original authors' reputations. Finally, any free program is threatened
35
+ constantly by software patents. We wish to avoid the danger that
36
+ redistributors of a free program will individually obtain patent licenses,
37
+ in effect making the program proprietary. To prevent this, we have made it
38
+ clear that any patent must be licensed for everyone�s free use or not
39
+ licensed at all. The precise terms and conditions for copying, distribution
40
+ and modification follow. GNU General Public License Terms and Conditions
41
+ for Copying, Distribution, and Modification 0.This License applies to any
42
+ program or other work which contains a notice placed by the copyright
43
+ holder saying it may be distributed under the terms of this General Public
44
+ License. The "Program", below, refers to any such program or work, and a
45
+ "work based on the Program" means either the Program or any derivative work
46
+ under copyright law: that is to say, a work containing the Program or a
47
+ portion of it, either verbatim or with modifications and/or translated into
48
+ another language. (Hereinafter, translation is included without limitation
49
+ in the term "modification".) Each licensee is addressed as "you".
50
+ Activities other than copying, distribution and modification are not
51
+ covered by this License; they are outside its scope. The act of running the
52
+ Program is not restricted, and the output from the Program is covered only
53
+ if its contents constitute a work based on the Program (independent of
54
+ having been made by running the Program). Whether that is true depends on
55
+ what the Program does. 1.You may copy and distribute verbatim copies of the
56
+ Program�s source code as you receive it, in any medium, provided that you
57
+ conspicuously and appropriately publish on each copy an appropriate
58
+ copyright notice and disclaimer of warranty; keep intact all the notices
59
+ that refer to this License and to the absence of any warranty; and give any
60
+ other recipients of the Program a copy of this License along with the
61
+ Program. You may charge a fee for the physical act of transferring a copy,
62
+ and you may at your option offer warranty protection in exchange for a fee.
63
+ 2.You may modify your copy or copies of the Program or any portion of it,
64
+ thus forming a work based on the Program, and copy and distribute such
65
+ modifications or work under the terms of Section 1 above, provided that you
66
+ also meet all of these conditions: a.You must cause the modified files to
67
+ carry prominent notices stating that you changed the files and the date of
68
+ any change. b.You must cause any work that you distribute or publish, that
69
+ in whole or in part contains or is derived from the Program or any part
70
+ thereof, to be licensed as a whole at no charge to all third parties under
71
+ the terms of this License. c.If the modified program normally reads
72
+ commands interactively when run, you must cause it, when started running
73
+ for such interactive use in the most ordinary way, to print or display an
74
+ announcement including an appropriate copyright notice and a notice that
75
+ there is no warranty (or else, saying that you provide a warranty) and that
76
+ users may redistribute the program under these conditions, and telling the
77
+ user how to view a copy of this License. (Exception: if the Program itself
78
+ is interactive but does not normally print such an announcement, your work
79
+ based on the Program is not required to print an announcement.) These
80
+ requirements apply to the modified work as a whole. If identifiable
81
+ sections of that work are not derived from the Program, and can be
82
+ reasonably considered independent and separate works in themselves, then
83
+ this License, and its terms, do not apply to those sections when you
84
+ distribute them as separate works. But when you distribute the same
85
+ sections as part of a whole which is a work based on the Program, the
86
+ distribution of the whole must be on the terms of this License, whose
87
+ permissions for other licensees extend to the entire whole, and thus to
88
+ each and every part regardless of who wrote it. Thus, it is not the intent
89
+ of this section to claim rights or contest your rights to work written
90
+ entirely by you; rather, the intent is to exercise the right to control the
91
+ distribution of derivative or collective works based on the Program. In
92
+ addition, mere aggregation of another work not based on the Program with
93
+ the Program (or with a work based on the Program) on a volume of a storage
94
+ or distribution medium does not bring the other work under the scope of
95
+ this License. 3.You may copy and distribute the Program (or a work based on
96
+ it, under Section 2) in object code or executable form under the terms of
97
+ Sections 1 and 2 above provided that you also do one of the following:
98
+ a.Accompany it with the complete corresponding machine-readable source
99
+ code, which must be distributed under the terms of Sections 1 and 2 above
100
+ on a medium customarily used for software interchange; or, b.Accompany it
101
+ with a written offer, valid for at least three years, to give any third
102
+ party, for a charge no more than your cost of physically performing source
103
+ distribution, a complete machine-readable copy of the corresponding source
104
+ code, to be distributed under the terms of Sections 1 and 2 above on a
105
+ medium customarily used for software interchange; or, c.Accompany it with
106
+ the information you received as to the offer to distribute corresponding
107
+ source code. (This alternative is allowed only for noncommercial
108
+ distribution and only if you received the program in object code or
109
+ executable form with such an offer, in accord with Subsection b above.) The
110
+ source code for a work means the preferred form of the work for making
111
+ modifications to it. For an executable work, complete source code means all
112
+ the source code for all modules it contains, plus any associated interface
113
+ definition files, plus the scripts used to control compilation and
114
+ installation of the executable. However, as a special exception, the source
115
+ code distributed need not include anything that is normally distributed (in
116
+ either source or binary form) with the major components (compiler, kernel,
117
+ and so on) of the operating system on which the executable runs, unless
118
+ that component itself accompanies the executable. If distribution of
119
+ executable or object code is made by offering access to copy from a
120
+ designated place, then offering equivalent access to copy the source code
121
+ from the same place counts as distribution of the source code, even though
122
+ third parties are not compelled to copy the source along with the object
123
+ code. 4.You may not copy, modify, sublicense, or distribute the Program
124
+ except as expressly provided under this License. Any attempt otherwise to
125
+ copy, modify, sublicense or distribute the Program is void, and will
126
+ automatically terminate your rights under this License. However, parties
127
+ who have received copies, or rights, from you under this License will not
128
+ have their licenses terminated so long as such parties remain in full
129
+ compliance. 5.You are not required to accept this License, since you have
130
+ not signed it. However, nothing else grants you permission to modify or
131
+ distribute the Program or its derivative works. These actions are
132
+ prohibited by law if you do not accept this License. Therefore, by
133
+ modifying or distributing the Program (or any work based on the Program),
134
+ you indicate your acceptance of this License to do so, and all its terms
135
+ and conditions for copying, distributing or modifying the Program or works
136
+ based on it. 6.Each time you redistribute the Program (or any work based on
137
+ the Program), the recipient automatically receives a license from the
138
+ original licensor to copy, distribute or modify the Program subject to
139
+ these terms and conditions. You may not impose any further restrictions on
140
+ the recipients' exercise of the rights granted herein. You are not
141
+ responsible for enforcing compliance by third parties to this License.
142
+ 7.If, as a consequence of a court judgment or allegation of patent
143
+ infringement or for any other reason (not limited to patent issues),
144
+ conditions are imposed on you (whether by court order, agreement or
145
+ otherwise) that contradict the conditions of this License, they do not
146
+ excuse you from the conditions of this License. If you cannot distribute so
147
+ as to satisfy simultaneously your obligations under this License and any
148
+ other pertinent obligations, then as a consequence you may not distribute
149
+ the Program at all. For example, if a patent license would not permit
150
+ royalty-free redistribution of the Program by all those who receive copies
151
+ directly or indirectly through you, then the only way you could satisfy
152
+ both it and this License would be to refrain entirely from distribution of
153
+ the Program. If any portion of this section is held invalid or
154
+ unenforceable under any particular circumstance, the balance of the section
155
+ is intended to apply and the section as a whole is intended to apply in
156
+ other circumstances. It is not the purpose of this section to induce you to
157
+ infringe any patents or other property right claims or to contest validity
158
+ of any such claims; this section has the sole purpose of protecting the
159
+ integrity of the free software distribution system, which is implemented by
160
+ public license practices. Many people have made generous contributions to
161
+ the wide range of software distributed through that system in reliance on
162
+ consistent application of that system; it is up to the author/donor to
163
+ decide if he or she is willing to distribute software through any other
164
+ system and a licensee cannot impose that choice. This section is intended
165
+ to make thoroughly clear what is believed to be a consequence of the rest
166
+ of this License. 8.If the distribution and/or use of the Program is
167
+ restricted in certain countries either by patents or by copyrighted
168
+ interfaces, the original copyright holder who places the Program under this
169
+ License may add an explicit geographical distribution limitation excluding
170
+ those countries, so that distribution is permitted only in or among
171
+ countries not thus excluded. In such case, this License incorporates the
172
+ limitation as if written in the body of this License. 9.The Free Software
173
+ Foundation may publish revised and/or new versions of the General Public
174
+ License from time to time. Such new versions will be similar in spirit to
175
+ the present version, but may differ in detail to address new problems or
176
+ concerns. Each version is given a distinguishing version number. If the
177
+ Program specifies a version number of this License which applies to it and
178
+ "any later version", you have the option of following the terms and
179
+ conditions either of that version or of any later version published by the
180
+ Free Software Foundation. If the Program does not specify a version number
181
+ of this License, you may choose any version ever published by the Free
182
+ Software Foundation. 10.If you wish to incorporate parts of the Program
183
+ into other free programs whose distribution conditions are different, write
184
+ to the author to ask for permission. For software which is copyrighted by
185
+ the Free Software Foundation, write to the Free Software Foundation; we
186
+ sometimes make exceptions for this. Our decision will be guided by the two
187
+ goals of preserving the free status of all derivatives of our free software
188
+ and of promoting the sharing and reuse of software generally. 11.BECAUSE
189
+ THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE
190
+ PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
191
+ STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
192
+ PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
193
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
194
+ AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
195
+ PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE,
196
+ YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12.IN
197
+ NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY
198
+ COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
199
+ PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
200
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
201
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
202
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
203
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
204
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
205
+ SUCH DAMAGES.
lang/en_CA.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-af_AF.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-af_AF.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 20:48:23+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Afrikaans\n"
15
+ "X-Poedit-Country: SOUTH AFRICA\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-ca_ES.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-ca_ES.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 20:56:07+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Catalan\n"
15
+ "X-Poedit-Country: SPAIN\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-da_DK.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-da_DK.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 20:56:02+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Danish\n"
15
+ "X-Poedit-Country: DENMARK\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-de_DE.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-de_DE.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 20:55:55+0000\n"
7
+ "Last-Translator: webguyplugins <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: German\n"
15
+ "X-Poedit-Country: GERMANY\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-en_CA.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-en_CA.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 20:49:59+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: English\n"
15
+ "X-Poedit-Country: CANADA\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-en_GB.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-en_GB.po ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:00:11+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: English\n"
15
+ "X-Poedit-Country: UNITED KINGDOM\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
124
+ #: Function.php:602
125
+ #@ lang
126
+ msgid "Could not load the localization file: "
127
+ msgstr ""
128
+
lang/stops-core-theme-and-plugin-updates-es_ES.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-es_ES.po ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:00:18+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Spanish\n"
15
+ "X-Poedit-Country: SPAIN\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
124
+ #: Function.php:602
125
+ #@ lang
126
+ msgid "Could not load the localization file: "
127
+ msgstr ""
128
+
lang/stops-core-theme-and-plugin-updates-fr_CA.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-fr_CA.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:16:03+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: French\n"
15
+ "X-Poedit-Country: CANADA\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-fr_FR.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-fr_FR.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:16:08+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: French\n"
15
+ "X-Poedit-Country: FRANCE\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-it_IT.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-it_IT.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:16:13+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Italian\n"
15
+ "X-Poedit-Country: ITALY\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-ro_RO.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-ro_RO.po ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:00:24+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Romanian\n"
15
+ "X-Poedit-Country: ROMANIA\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
124
+ #: Function.php:602
125
+ #@ lang
126
+ msgid "Could not load the localization file: "
127
+ msgstr ""
128
+
readme.txt CHANGED
@@ -2,15 +2,15 @@
2
  Contributors: kidsguide
3
  Tags: Disable All Updates, Disable Plugin Updates, Disable Theme Updates, Disable WordPress Core Updates, Disable Core Updates, Disable Updates Settings, Disable Updates, Disable All WordPress Updates, Disable All WordPress Updates Settings, Disable Updates Manager, Disable All Updates Manager, Disable Updates Manager Settings, Update Check
4
  Requires at least: 3.0
5
- Tested up to: 3.8.1
6
  Stable tag: trunk
7
 
8
- A configurable plugin that disables updates. Easy to customize with 7+ settings.
9
 
10
  == Description ==
11
- This plugin is 100% configurable! Check the updates you would like to disable in the settings page.
12
 
13
- Their are also other settings to customize.
14
 
15
  = Features =
16
  <ol>
@@ -26,12 +26,12 @@ and many more things!
26
 
27
  To see more features view the <a href="http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/screenshots/">screenshots</a>.
28
 
29
- = Video Tutorial =
30
- [youtube http://www.youtube.com/watch?v=7sMEBGNxhwA]
31
- <small>Version 3.5.0 tutorial video.</small>
 
32
 
33
- = Just Won't to Disable One or Two? =
34
- With the settings form under dashboard, it easy. Just check the things you won't disabled. Also if you would like to disable just one plugin, use the Disable Plugins Individually setting.
35
 
36
  == Frequently Asked Questions ==
37
  = Q: How is this plugin different from the other disable updates plugins? =
@@ -43,29 +43,26 @@ A: Their are a couple of differences.
43
  <li>They do not disable plugins individually.</li>
44
  </ol>
45
 
46
-
47
  = Q: If I remove this plugin from my website will I be able to update my plugins, themes, and WordPress core again? =
48
- A: Yes, this plugin just disables the update (not removes).
49
-
50
 
51
- = Q: Is it possible to disable one plugin or theme? Are you considering it? =
52
  A: This plugin does not disable themes individual but it can disable plugins individually. We are considering a setting to disable themes individually.
53
 
 
 
 
54
  == Screenshots ==
55
  1. Settings Page
56
  2. Disable Plugin Updates
57
  3. Disable Plugins Individually
58
 
59
- == ==
60
-
61
- The next version of WordPress (3.9) should not have any conflicts with this plugin.
62
-
63
  == Installation ==
64
- Their are two way to install "Disable Updates Manager".
65
 
66
  <strong>1)</strong>
67
  <ol>
68
- <li>Push the button above to download the latest version of "Disable Updates Manager".</li>
69
  <li>Go in your websites admin to the Plugins> Add New> page and push Upload.</li>
70
 
71
  <li>Upload the zip file and push install.</li>
@@ -75,17 +72,60 @@ Their are two way to install "Disable Updates Manager".
75
  <strong>2)</strong> <u><strong>Recommended</strong></u>
76
  <ol>
77
  <li>Go in your websites admin to the Plugins> Add New> page and push on the search bar.</li>
78
- <li>Search "Disable Updates Manager" and push install.</li>
79
  <li>Go to the Plugins section in your admin dashboard and activate.</li>
80
  </ol>
81
 
82
  == Changelog ==
83
- = Preview: 3.7.0 + =
84
- * Translation
85
- * Better disable plugins individually feature
86
- * License.txt
87
 
88
- = Versions Available for Downloading =
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  = 3.6.0 =
90
  * Updated: tutorial link (forgot last update).
91
  * Updated: notice CSS to make auto size.
@@ -269,9 +309,11 @@ Their are two way to install "Disable Updates Manager".
269
  * Updated Readme.txt
270
  * Works with WordPress 3.8
271
 
272
- = 0.1 =
273
  * Published on Wordpress.org
274
  (September 1, 2013)
275
 
276
  = Note =
277
- Versions 0.2 to 0.9 are not listed in this changelog.
 
 
2
  Contributors: kidsguide
3
  Tags: Disable All Updates, Disable Plugin Updates, Disable Theme Updates, Disable WordPress Core Updates, Disable Core Updates, Disable Updates Settings, Disable Updates, Disable All WordPress Updates, Disable All WordPress Updates Settings, Disable Updates Manager, Disable All Updates Manager, Disable Updates Manager Settings, Update Check
4
  Requires at least: 3.0
5
+ Tested up to: 3.9.1
6
  Stable tag: trunk
7
 
8
+ A configurable plugin that disables updates for you. Easy, clean and helpful.
9
 
10
  == Description ==
11
+ The best plugin to disable updates is here!
12
 
13
+ This plugin is configurable! Check the updates you would like to disable in the settings page along with other helpful settings. The settings page is located under the settings section in your dashboard (changed in version 4.0). Check the features below or the <a href="http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/screenshots/">screenshots</a> for more information.
14
 
15
  = Features =
16
  <ol>
26
 
27
  To see more features view the <a href="http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/screenshots/">screenshots</a>.
28
 
29
+ = Video Tutorials =
30
+ [youtube http://www.youtube.com/watch?v=ppCxjREhF9g]
31
+
32
+ [youtube http://www.youtube.com/watch?v=TbqYfkDlhCg]
33
 
34
+ <small>Version 3.5.0 tutorial video.</small>
 
35
 
36
  == Frequently Asked Questions ==
37
  = Q: How is this plugin different from the other disable updates plugins? =
43
  <li>They do not disable plugins individually.</li>
44
  </ol>
45
 
 
46
  = Q: If I remove this plugin from my website will I be able to update my plugins, themes, and WordPress core again? =
47
+ A: Yes, this plugin just disables the update. We has also recently made an uninstall.php for this plugin.
 
48
 
49
+ = Q: Is it possible to disable one plugin? =
50
  A: This plugin does not disable themes individual but it can disable plugins individually. We are considering a setting to disable themes individually.
51
 
52
+ = Q: Does this plugin work with WordPress Multisite? =
53
+ A: This plugin doesn't yet, but we are working on this.
54
+
55
  == Screenshots ==
56
  1. Settings Page
57
  2. Disable Plugin Updates
58
  3. Disable Plugins Individually
59
 
 
 
 
 
60
  == Installation ==
61
+ Their are two way to install Disable Updates Manager.
62
 
63
  <strong>1)</strong>
64
  <ol>
65
+ <li>Push the button above to download the latest version of Disable Updates Manager.</li>
66
  <li>Go in your websites admin to the Plugins> Add New> page and push Upload.</li>
67
 
68
  <li>Upload the zip file and push install.</li>
72
  <strong>2)</strong> <u><strong>Recommended</strong></u>
73
  <ol>
74
  <li>Go in your websites admin to the Plugins> Add New> page and push on the search bar.</li>
75
+ <li>Search Disable Updates Manager and push install.</li>
76
  <li>Go to the Plugins section in your admin dashboard and activate.</li>
77
  </ol>
78
 
79
  == Changelog ==
 
 
 
 
80
 
81
+ = 4.0.2 =
82
+ * Fixed: unchecked error in settings.
83
+ * Added: version 4.0.2 to GitHub.
84
+ * Removed: code format (will add in version 4.0.3 which will be released soon).
85
+ * Added: 4.0 available for download.
86
+ * Added: footnote at bottom of changelog.
87
+
88
+ = 4.0.1* =
89
+ * Updated: code to make it way easier to understand. - Thanks szepe.viktor, and sLa NGjI's!
90
+ * Updated/Added: video tutorials.
91
+ * Added: version 4.0.1 to GitHub.
92
+ * Added: capability with WordPress version 3.9.1.
93
+
94
+ = 4.0 =
95
+ * Fixed: output problems.
96
+ * Fixed: remove WordPress version code (removing all footer text now only removes version).
97
+ * Fixed: tooltips CSS; fixed overlapping errors.
98
+ * Updated: readme.txt.
99
+ * Updated: video tutorial (added music). Note: new video tutorial coming soon!
100
+ * Updated: GitHub version to 4.0 (Note: We did not put the lang file in GitHub). - Thanks szepe.viktor!
101
+ * Updated: link box CSS in settings.
102
+ * Updated: settings notice CSS.
103
+ * Updated: tooltips text.
104
+ * Renamed: settings page from Disable Updates to Disable Updates Manager.
105
+ * Moved: settings error notice in php.
106
+ * Moved: settings page to Settings section in admin area.
107
+ * Added: some <?php and ?> tags at the end of the files.
108
+ * Added: Settings saved notice in settings.
109
+ * Added: disable core, theme and plugin updates e-mails debug true - Thanks szepe.viktor!
110
+ * Added: license.txt
111
+ * Added: capability with WordPress 3.8.2, 3.8.3, and 3.9.
112
+ * Added: GitHub link in settings.
113
+ * Added: GitHub link under plugin on plugin list.
114
+ * Added: Afrikaans translation.
115
+ * Added: Catatla/Espanya translation.
116
+ * Added: Dansk translation.
117
+ * Added: Deutsch translation.
118
+ * Added: English (Canada) translation.
119
+ * Added: English (UK) translation.
120
+ * Added: Espanol translation.
121
+ * Added: Francais (Canada) translation.
122
+ * Added: Francais (France) translation.
123
+ * Added: Italiano translation.
124
+ * Added: Romana translation.
125
+ * Removed: "New format coming soon!" sign under Disable Plugins Individually setting.
126
+ = Notes =
127
+ * If you have any languages that you would like use to add, please post a support topic on wordpress.org or post it on <a href="https://github.com/Websiteguy/disable-updates-manager">GitHub</a>.
128
+
129
  = 3.6.0 =
130
  * Updated: tutorial link (forgot last update).
131
  * Updated: notice CSS to make auto size.
309
  * Updated Readme.txt
310
  * Works with WordPress 3.8
311
 
312
+ = 0.1 =*
313
  * Published on Wordpress.org
314
  (September 1, 2013)
315
 
316
  = Note =
317
+ Versions 0.2 to 0.9 are not listed in this changelog.
318
+
319
+ * versions not available for download.
style.css CHANGED
@@ -1,4 +1,4 @@
1
- /* Tooltips CSS */
2
 
3
  .showonhover {
4
  position: relative;
@@ -7,13 +7,17 @@
7
  .showonhover .hovertext {
8
  opacity: 0;
9
  top: -99999px;
10
- position:absolute;
11
- z-index:1000;
12
- border:1px solid #ffd971;
13
- background-color:#fffdce;
14
- padding:7.5px;
15
- width:170px;
16
- font-size: 0.90em;
 
 
 
 
17
  -webkit-transition: opacity 0.3s ease;
18
  -moz-transition: opacity 0.3s ease;
19
  -o-transition: opacity 0.3s ease;
@@ -21,7 +25,8 @@
21
  }
22
 
23
  .showonhover:hover .hovertext {
24
- opacity:1;top:0;
 
25
  }
26
 
27
  a.viewdescription {
@@ -31,4 +36,4 @@
31
  a.viewdescription:hover {
32
  background-color:#999;
33
  color: White;
34
- }
1
+ /* Tooltips CSS */
2
 
3
  .showonhover {
4
  position: relative;
7
  .showonhover .hovertext {
8
  opacity: 0;
9
  top: -99999px;
10
+ position: absolute;
11
+ z-index: 1000;
12
+ border: 1px solid #ffd971;
13
+ background-color: #fffdce;
14
+ padding-top: 1.5px;
15
+ padding-bottom: 1.5px;
16
+ padding-right: 7.5px;
17
+ padding-left: 7.5px;
18
+ width: auto;
19
+ height: auto;
20
+ font-size: 0.85em;
21
  -webkit-transition: opacity 0.3s ease;
22
  -moz-transition: opacity 0.3s ease;
23
  -o-transition: opacity 0.3s ease;
25
  }
26
 
27
  .showonhover:hover .hovertext {
28
+ opacity: 1;
29
+ top: 0;
30
  }
31
 
32
  a.viewdescription {
36
  a.viewdescription:hover {
37
  background-color:#999;
38
  color: White;
39
+ }
uninstall.php CHANGED
@@ -1,7 +1,11 @@
1
  <?php
 
 
2
  if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
3
- // not defined, abort
4
  exit ();
5
  }
6
- // it was defined, now delete
7
- delete_option('_disable_updates');
 
 
 
1
  <?php
2
+
3
+ // uninstall code
4
  if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
 
5
  exit ();
6
  }
7
+
8
+ // it was defined, now delete
9
+ delete_option('_disable_updates');
10
+
11
+ ?>