Disable Comments - Version 2.1.1

Version Description

Download this release

Release Info

Developer wpdevteam
Plugin Icon 128x128 Disable Comments
Version 2.1.1
Comparing to
See all releases

Code changes from version 2.1.0 to 2.1.1

assets/js/disable-comments-settings-scripts.js CHANGED
@@ -45,7 +45,7 @@ jQuery(document).ready(function () {
45
  }
46
  }
47
 
48
- jQuery("#remove_everywhere, #selected_types").change(function () {
49
  jQuery("#message").slideUp();
50
  disable_comments_uihelper();
51
  });
@@ -90,7 +90,7 @@ jQuery(document).ready(function () {
90
 
91
  jQuery(
92
  "#delete_everywhere, #selected_delete_types, #selected_delete_comment_types"
93
- ).change(function () {
94
  delete_comments_uihelper();
95
  });
96
  delete_comments_uihelper();
45
  }
46
  }
47
 
48
+ jQuery("#remove_everywhere, #selected_types").on('change', function () {
49
  jQuery("#message").slideUp();
50
  disable_comments_uihelper();
51
  });
90
 
91
  jQuery(
92
  "#delete_everywhere, #selected_delete_types, #selected_delete_comment_types"
93
+ ).on('change', function () {
94
  delete_comments_uihelper();
95
  });
96
  delete_comments_uihelper();
disable-comments.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Disable Comments
5
  * Plugin URI: https://wordpress.org/plugins/disable-comments/
6
  * Description: Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. You could bulk delete comments using Tools.
7
- * Version: 2.1.0
8
  * Author: WPDeveloper
9
  * Author URI: https://wpdeveloper.net
10
  * License: GPL-3.0+
@@ -37,7 +37,7 @@ class Disable_Comments
37
 
38
  function __construct()
39
  {
40
- define('DC_VERSION', '2.1.0');
41
  define('DC_PLUGIN_SLUG', 'disable_comments_settings');
42
  define('DC_PLUGIN_ROOT_PATH', dirname(__FILE__));
43
  define('DC_PLUGIN_VIEWS_PATH', DC_PLUGIN_ROOT_PATH . '/views/');
4
  * Plugin Name: Disable Comments
5
  * Plugin URI: https://wordpress.org/plugins/disable-comments/
6
  * Description: Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. You could bulk delete comments using Tools.
7
+ * Version: 2.1.1
8
  * Author: WPDeveloper
9
  * Author URI: https://wpdeveloper.net
10
  * License: GPL-3.0+
37
 
38
  function __construct()
39
  {
40
+ define('DC_VERSION', '2.1.1');
41
  define('DC_PLUGIN_SLUG', 'disable_comments_settings');
42
  define('DC_PLUGIN_ROOT_PATH', dirname(__FILE__));
43
  define('DC_PLUGIN_VIEWS_PATH', DC_PLUGIN_ROOT_PATH . '/views/');
includes/class-plugin-usage-tracker.php CHANGED
@@ -20,11 +20,11 @@ if( ! class_exists('DisableComments_Plugin_Tracker') ) :
20
  /**
21
  * WP Insights Version
22
  */
23
- const WPINS_VERSION = '3.0.1';
24
  /**
25
  * API URL
26
  */
27
- const API_URL = 'https://us-east1-wpinsight-saas.cloudfunctions.net/process-plugin-data';
28
  /**
29
  * Installed Plugin File
30
  *
@@ -149,7 +149,7 @@ if( ! class_exists('DisableComments_Plugin_Tracker') ) :
149
  */
150
  public function init(){
151
  $this->clicked();
152
- add_action( $this->event_hook, array( $this, 'force_tracking' ) );
153
  // For Test
154
  // add_action( 'admin_init', array( $this, 'force_tracking' ) );
155
  add_action( 'disable_comments_notice', array( $this, 'notice' ) );
@@ -447,13 +447,14 @@ if( ! class_exists('DisableComments_Plugin_Tracker') ) :
447
  $failed_data = [];
448
  $site_url = get_bloginfo( 'url' );
449
  $original_site_url = get_option( "wpins_{$this->plugin_name}_original_url", false );
450
- if( $original_site_url === false && version_compare( $body['wpins_version'], '3.0.1', '==' ) ) {
 
451
  $site_id = false;
452
  }
453
  /**
454
  * Send Initial Data to API
455
  */
456
- if( $site_id == false && $this->item_id !== false && $original_site_url === false ) {
457
  if( isset( $_SERVER['REMOTE_ADDR'] ) && ! empty( $_SERVER['REMOTE_ADDR'] && $_SERVER['REMOTE_ADDR'] != '127.0.0.1' ) ) {
458
  $country_request = wp_remote_get( 'http://ip-api.com/json/'. $_SERVER['REMOTE_ADDR'] .'?fields=country');
459
  if( ! is_wp_error( $country_request ) && $country_request['response']['code'] == 200 ) {
@@ -660,7 +661,7 @@ if( ! class_exists('DisableComments_Plugin_Tracker') ) :
660
  * @return void
661
  */
662
  public function clicked(){
663
- if( isset( $_GET['plugin'] ) && isset( $_GET['plugin_action'] ) ) {
664
  if( isset( $_GET['tab'] ) && $_GET['tab'] === 'plugin-information' ) {
665
  return;
666
  }
20
  /**
21
  * WP Insights Version
22
  */
23
+ const WPINS_VERSION = '3.0.2';
24
  /**
25
  * API URL
26
  */
27
+ const API_URL = 'https://send.wpinsight.com/process-plugin-data';
28
  /**
29
  * Installed Plugin File
30
  *
149
  */
150
  public function init(){
151
  $this->clicked();
152
+ add_action( $this->event_hook, array( $this, 'do_tracking' ) );
153
  // For Test
154
  // add_action( 'admin_init', array( $this, 'force_tracking' ) );
155
  add_action( 'disable_comments_notice', array( $this, 'notice' ) );
447
  $failed_data = [];
448
  $site_url = get_bloginfo( 'url' );
449
  $original_site_url = get_option( "wpins_{$this->plugin_name}_original_url", false );
450
+
451
+ if( ( $original_site_url === false || $original_site_url != $site_url ) && version_compare( $body['wpins_version'], '3.0.1', '>=' ) ) {
452
  $site_id = false;
453
  }
454
  /**
455
  * Send Initial Data to API
456
  */
457
+ if( $site_id == false && $this->item_id !== false ) {
458
  if( isset( $_SERVER['REMOTE_ADDR'] ) && ! empty( $_SERVER['REMOTE_ADDR'] && $_SERVER['REMOTE_ADDR'] != '127.0.0.1' ) ) {
459
  $country_request = wp_remote_get( 'http://ip-api.com/json/'. $_SERVER['REMOTE_ADDR'] .'?fields=country');
460
  if( ! is_wp_error( $country_request ) && $country_request['response']['code'] == 200 ) {
661
  * @return void
662
  */
663
  public function clicked(){
664
+ if( isset( $_GET['plugin'] ) && trim($_GET['plugin']) === $this->plugin_name && isset( $_GET['plugin_action'] ) ) {
665
  if( isset( $_GET['tab'] ) && $_GET['tab'] === 'plugin-information' ) {
666
  return;
667
  }
languages/disable-comments-de_DE.mo DELETED
Binary file
languages/disable-comments-de_DE.po DELETED
@@ -1,103 +0,0 @@
1
- # Translation of Disable Comments in German
2
- # This file is distributed under the same license as the Disable Comments package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2013-12-20 07:54+0300\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Disable Comments\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
-
16
- #: disable-comments.php:358
17
- msgid "%s: <strong>This will make persistent changes to your database &mdash; comments will remain closed even if you later disable the plugin!</strong> You should not use it if you only want to disable comments temporarily. Please <a href=\"%s\" target=\"_blank\">read the FAQ</a> before selecting this option."
18
- msgstr "%s: <strong>Dies wird bleibende Änderungen an Datenbank &mdash; Kommentaren vornehmen, die auch nach der Deaktivierung des Plugins bestehen bleiben!</strong> Nutze diese Option nicht, wenn du die Kommentare nur temporär deaktivieren willst. Bitte <a href=\"%s\" target=\"_blank\">lies die FAQs</a> bevor du diese Option nutzt."
19
-
20
- msgid "http://wordpress.org/extend/plugins/disable-comments/"
21
- msgstr "http://wordpress.org/extend/plugins/disable-comments/"
22
-
23
- msgid "Samir Shah"
24
- msgstr "Samir Shah"
25
-
26
- msgid "http://rayofsolaris.net/"
27
- msgstr "http://rayofsolaris.net/"
28
-
29
- #: disable-comments.php:352
30
- msgid "Other options"
31
- msgstr "Weitere Optionen"
32
-
33
- #: disable-comments.php:38
34
- msgid "Disable Comments requires WordPress version %s or greater."
35
- msgstr "Kommentare deaktivieren benötigt WordPress Version %s oder höher."
36
-
37
- #: disable-comments.php:200
38
- msgid "Note: The <em>Disable Comments</em> plugin is currently active, and comments are completely disabled on: %s. Many of the settings below will not be applicable for those post types."
39
- msgstr "Anmerkung: Das <em>Kommentar deaktivieren</em>-Plugin ist aktiv und Kommentare sind für %s deaktiviert. Viele der Einstellungen unten lassen sich dadurch auf diesen Inhaltstyp nicht anwenden."
40
-
41
- #: disable-comments.php:342
42
- msgid "%s: This option is global and will affect your entire site. Use it only if you want to disable comments <em>everywhere</em>. A complete description of what this option does is <a href=\"%s\" target=\"_blank\">available here</a>."
43
- msgstr "%s: Diese Option ist global und beeinflusst die gesamte Seite. Nutze diese nur, wenn du Kommentare <em>überall</em> deaktivieren willst. Eine ausführliche Beschreibung dieser Option ist <a href=\"%s\" target=\"_blank\">hier verfügbar (EN)</a>."
44
-
45
- msgid "Allows administrators to globally disable comments on their site. Comments can be disabled according to post type."
46
- msgstr "Ermöglicht es Administratoren Kommentare global auf der Seite zu deaktivieren. Kommentare können auch für bestimmte Inhaltstyp deaktiviert werden."
47
-
48
- #: disable-comments.php:341
49
- msgid "Disable all comment-related controls and settings in WordPress."
50
- msgstr "Deaktiviere alle Kommentar-bezogenen Kontrollen und Einstellungen in WordPress."
51
-
52
- #: disable-comments.php:342
53
- #: disable-comments.php:358
54
- #: disable-comments.php:360
55
- #: disable-comments.php:385
56
- msgid "Warning"
57
- msgstr "Achtung"
58
-
59
- #: disable-comments.php:344
60
- msgid "On certain post types"
61
- msgstr "Für bestimmte Inhaltstypen"
62
-
63
- #: disable-comments.php:349
64
- msgid "Disabling comments will also disable trackbacks and pingbacks. All comment-related fields will also be hidden from the edit/quick-edit screens of the affected posts. These settings cannot be overridden for individual posts."
65
- msgstr "Das Deaktivieren von Kommentaren deaktiviert auch Trackbacks und Pingbacks. Alle Kommentar-bezogenen Felder werden außerdem auf den Bearbeiten/QuickEdit-Seiten der Beiträge ausgeblendet. Diese Einstellungen können nicht für einzelne Beiträge überschrieben werden."
66
-
67
- #: disable-comments.php:357
68
- msgid "Use persistent mode"
69
- msgstr "Persistent-Mode nutzen"
70
-
71
- #: disable-comments.php:360
72
- msgid "%s: Entering persistent mode on large multi-site networks requires a large number of database queries and can take a while. Use with caution!"
73
- msgstr "%s: Persistent-Mode auf großen Multi-Site Netzwerken zu aktivieren hat eine große Anzahl von Datenbankzugriffen zur Folge und kann einige Zeit in Anspruch nehmen. Bitte mit Vorsicht nutzen!"
74
-
75
- #: disable-comments.php:385
76
- msgid "%s: Selecting this option will make persistent changes to your database. Are you sure you want to enable it?"
77
- msgstr "%s: Die Wahl dieser Option hat permanente Änderungen in der Datenbank zur Folge. Bist du sicher, dass du sie aktivieren willst?"
78
-
79
- #: disable-comments.php:220
80
- msgid "The <em>Disable Comments</em> plugin is active, but isn't configured to do anything yet. Visit the <a href=\"%s\">configuration page</a> to choose which post types to disable comments on."
81
- msgstr "Das <em>Kommentare deaktivieren</em>-Plugin ist aktiv aber noch nicht konfiguriert. Rufe die <a href=\"%s\">Einstellungsseite</a> um auszuwählen für welche Inhaltstypen Kommentare deaktiviert werden sollen."
82
-
83
- #: disable-comments.php:288
84
- #: disable-comments.php:332
85
- msgid "Disable Comments"
86
- msgstr "Kommentare deaktivieren"
87
-
88
- #: disable-comments.php:326
89
- msgid "Options updated. Changes to the Admin Menu and Admin Bar will not appear until you leave or reload this page."
90
- msgstr "Änderungen übernommen. Veränderungen an Admin Menü und Admin Bar werden nicht sichtbar bevor du die Seite verlässt oder neu lädst."
91
-
92
- #: disable-comments.php:335
93
- msgid "<em>Disable Comments</em> is Network Activated. The settings below will affect <strong>all sites</strong> in this network."
94
- msgstr "<em>Kommentare deaktivieren</em> ist für alle Seiten aktiviert. Die Einstellungen unten betreffen <strong>alle Seiten</strong> des Netzwerks."
95
-
96
- #: disable-comments.php:337
97
- msgid "It seems that a caching/performance plugin is active on this site. Please manually invalidate that plugin's cache after making any changes to the settings below."
98
- msgstr "Es scheint ein Caching/Performance-Plugin aktiv zu sein. Bitte leere den Cache des Plugins nach der Änderung der Optionen auf dieser Seite."
99
-
100
- #: disable-comments.php:341
101
- msgid "Everywhere"
102
- msgstr "Überall"
103
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/disable-comments-es_ES.mo DELETED
Binary file
languages/disable-comments-es_ES.po DELETED
@@ -1,110 +0,0 @@
1
- # Copyright (C) 2013 Disable Comments
2
- # This file is distributed under the same license as the Disable Comments package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Disable Comments 0.9.1\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/disable-comments\n"
7
- "POT-Creation-Date: 2013-06-19 05:01:50+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2014-10-14 09:39+0100\n"
12
- "Last-Translator: David Bravo <dbravo@dimensionmultimedia.com>\n"
13
- "Language-Team: Dimensión multimedia <dbravo@dimensionmultimedia.com>\n"
14
- "Plural-Forms: s\n"
15
- "X-Poedit-Language: Spanish\n"
16
- "X-Poedit-Country: SPAIN\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
-
19
- #: disable-comments.php:38
20
- msgid "Disable Comments requires WordPress version %s or greater."
21
- msgstr "Es necesario una versión de WordPress %s o superior para Desactivar Comentarios."
22
-
23
- #: disable-comments.php:169
24
- msgid "Note: The <em>Disable Comments</em> plugin is currently active, and comments are completely disabled on: %s. Many of the settings below will not be applicable for those post types."
25
- msgstr "Nota: El plugin <em>Desactivar Comentarios</em> está activo actualmente, y los comentarios están completamente desactivados en: %s. Muchos de los parámetros de abajo no serán aplicables para estos tipos de entradas."
26
-
27
- #: disable-comments.php:169
28
- msgid ", "
29
- msgstr ","
30
-
31
- #: disable-comments.php:183
32
- msgid "The <em>Disable Comments</em> plugin is active, but isn't configured to do anything yet. Visit the <a href=\"%s\">configuration page</a> to choose which post types to disable comments on."
33
- msgstr "El plugin <em>Desactivar Comentarios</em> está activo, pero no está configurado para hacer nada aún. Visita la <a href=\"%s\">página de configuración</a> para elegir en qué tipo de entradas quieres deshabilitar los comentarios."
34
-
35
- #: disable-comments.php:225
36
- #: disable-comments.php:269
37
- msgid "Disable Comments"
38
- msgstr "Desactivar Comentarios"
39
-
40
- #: disable-comments.php:262
41
- msgid "If a caching/performance plugin is active, please invalidate its cache to ensure that changes are reflected immediately."
42
- msgstr "Si hay activo un plugin de cacheo/rendimiento, por faror, invalida su caché para asegurarte de que los cambios se reflejan inmediatamente."
43
-
44
- #: disable-comments.php:263
45
- msgid "Options updated. Changes to the Admin Menu and Admin Bar will not appear until you leave or reload this page."
46
- msgstr "Opciones actualizadas. Los cambios del Menú de Administración o de la Barra de Administración no aparecerán hasta que abandones o recargues esta página."
47
-
48
- #: disable-comments.php:272
49
- msgid "<em>Disable Comments</em> is Network Activated. The settings below will affect <strong>all sites</strong> in this network."
50
- msgstr "<em>Desactivar Comentarios</em> está Activado en Red. Los parámetros de abajo afectarán a <strong>todos los sitios</strong> de esta red."
51
-
52
- #: disable-comments.php:274
53
- msgid "It seems that a caching/performance plugin is active on this site. Please manually invalidate that plugin's cache after making any changes to the settings below."
54
- msgstr "Parece que hay un plugin de caché/rendimiento activo en este sitio. Por favor, invalida manualmente la caché de ese plugin tras hacer cualquier cambio en los parámetros de abajo."
55
-
56
- #: disable-comments.php:278
57
- msgid "Everywhere"
58
- msgstr "En todos los sitios"
59
-
60
- #: disable-comments.php:278
61
- msgid "Disable all comment-related controls and settings in WordPress."
62
- msgstr "Deshabilitar todos los controles y configuraciones relacionadas con comentarios de WordPress."
63
-
64
- #: disable-comments.php:279
65
- msgid "%s: This option is global and will affect your entire site. Use it only if you want to disable comments <em>everywhere</em>. A complete description of what this option does is <a href=\"%s\" target=\"_blank\">available here</a>."
66
- msgstr "%s: Esta opción es global y afectará a todo tu sitio. Utilízala sólo si quieres deshabilitar los comentarios <em>en todos los sitios</em>. Puedes encontrar una descripción completa sobre lo que hace esta opción <a href=\"%s\" target=\"_blank\">aquí</a>."
67
-
68
- #: disable-comments.php:279
69
- #: disable-comments.php:295
70
- #: disable-comments.php:297
71
- #: disable-comments.php:325
72
- msgid "Warning"
73
- msgstr "Aviso"
74
-
75
- #: disable-comments.php:281
76
- msgid "On certain post types"
77
- msgstr "En determinados tipos de entradas"
78
-
79
- #: disable-comments.php:286
80
- msgid "Disabling comments will also disable trackbacks and pingbacks. All comment-related fields will also be hidden from the edit/quick-edit screens of the affected posts. These settings cannot be overridden for individual posts."
81
- msgstr "Deshabilitando los comentarios tambien deshabilitará los trackbacks y pingbacks. Todos los campos relacionados con comentarios también serán ocultados desde las pantallas de edición y edición rápida de las entradas afectadas. Estos parámetros no pueden ser sobreescritos para entradas individuales."
82
-
83
- #: disable-comments.php:289
84
- msgid "Other options"
85
- msgstr "Otras opciones"
86
-
87
- #: disable-comments.php:294
88
- msgid "Use persistent mode"
89
- msgstr "Usar modo persistente"
90
-
91
- #: disable-comments.php:295
92
- msgid "%s: <strong>This will make persistent changes to your database &mdash; comments will remain closed even if you later disable the plugin!</strong> You should not use it if you only want to disable comments temporarily. Please <a href=\"%s\" target=\"_blank\">read the FAQ</a> before selecting this option."
93
- msgstr "%s: <strong>Esto hará cambios permanentes a tu base de datos &mdash; ¡los comentarios permanecerán cerrados incluso si después desactivas el plugin! No deberías utilizar esta opción si sólo quieres deshabilitar los comentarios temporalmente. Por favor, <a href=\"%s\" target=\"_blank\">consulta las FAQ</a> antes de seleccionar esta opción. "
94
-
95
- #: disable-comments.php:297
96
- msgid "%s: Entering persistent mode on large multi-site networks requires a large number of database queries and can take a while. Use with caution!"
97
- msgstr "%s: Activar el modo permanente en redes multisitio grandes requiere un gran número de peticiones a la base de datos y puede tardar un buen rato. ¡Utilízalo con precaución!"
98
-
99
- #: disable-comments.php:300
100
- msgid "Persistent mode has been manually disabled. See the <a href=\"%s\" target=\"_blank\">FAQ</a> for more information."
101
- msgstr "El modo permanente ha sido manualmente deshabilitado. Por favor, consulta las <a href=\"%s\" target=\"_blank\">FAQ</a> para más información."
102
-
103
- #: disable-comments.php:305
104
- msgid "Save Changes"
105
- msgstr "Guardar Cambios"
106
-
107
- #: disable-comments.php:325
108
- msgid "%s: Selecting this option will make persistent changes to your database. Are you sure you want to enable it?"
109
- msgstr "%s: Selecionando esta opción hará cambios permanentes en tu base de datos. ¿Estás seguro de querer habilitarlo?"
110
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/disable-comments-fa_ir.mo DELETED
Binary file
languages/disable-comments-fa_ir.po DELETED
@@ -1,200 +0,0 @@
1
- # Copyright (C) 2013 Disable Comments
2
- # This file is distributed under the same license as the Disable Comments package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Disable Comments 1.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/disable-comments\n"
7
- "POT-Creation-Date: 2015-02-03 08:04:31+00:00\n"
8
- "PO-Revision-Date: 2015-09-02 13:00+0430\n"
9
- "Last-Translator: fxbenard | FxB <fx@fxbenard.com>\n"
10
- "Language-Team: faraed.com <support@faraed.com>\n"
11
- "Language: fa_IR\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.8.2\n"
16
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
-
19
- #: disable-comments.php:38
20
- msgid "Disable Comments requires WordPress version %s or greater."
21
- msgstr "غیر فعال کردن نظرات مورد نیاز وردپرس نسخه %s یا بیشتر."
22
-
23
- #: disable-comments.php:210
24
- msgid ""
25
- "Note: The <em>Disable Comments</em> plugin is currently active, and comments "
26
- "are completely disabled on: %s. Many of the settings below will not be "
27
- "applicable for those post types."
28
- msgstr ""
29
- "توجه: <em>غیر فعال کردن نظرات </em> پلاگین در حال حاضر فعال است و نظرات و "
30
- "کاملا بقیه موارد غیر فعال است در: %s. بسیاری از تنظیمات برای انواع پست ها قابل "
31
- "ارائه است."
32
-
33
- #: disable-comments.php:210
34
- msgid ", "
35
- msgstr ","
36
-
37
- #: disable-comments.php:230
38
- msgid ""
39
- "The <em>Disable Comments</em> plugin is active, but isn't configured to do "
40
- "anything yet. Visit the <a href=\"%s\">configuration page</a> to choose which "
41
- "post types to disable comments on."
42
- msgstr ""
43
- "افزونه <em>غیر فعال کردن نظرات</em> فعال است، اما هنوز پیکربندی انجام نشده "
44
- "است. بازدید <a href=\"%s\"> صفحه پیکربندی</a> انواع موارد برای غیر فعال شدن "
45
- "نظرات را لطفا انتخاب نمایید."
46
-
47
- #: disable-comments.php:237
48
- msgid "Comments are closed."
49
- msgstr "نظرات بسته شده است"
50
-
51
- #: disable-comments.php:290
52
- msgid "Settings"
53
- msgstr "تنظیمات"
54
-
55
- #. Plugin Name of the plugin/theme
56
- #: disable-comments.php:298 disable-comments.php:350
57
- msgid "Disable Comments"
58
- msgstr "غیر فعال کردن نظرات"
59
-
60
- #: disable-comments.php:343
61
- msgid ""
62
- "If a caching/performance plugin is active, please invalidate its cache to "
63
- "ensure that changes are reflected immediately."
64
- msgstr ""
65
- "اگر پلاگین کش (ذخیره/عملکرد) فعال باشد. لطفا افزونه کش خود را غیر فعال نمایید. "
66
- "چون در کار افزونه تداخل ایجاد می کند."
67
-
68
- #: disable-comments.php:344
69
- msgid ""
70
- "Options updated. Changes to the Admin Menu and Admin Bar will not appear until "
71
- "you leave or reload this page."
72
- msgstr ""
73
- "قابلیت بروز رسانی . منوی مدیریت و یا نوار مدیریت آن را تغییر دهید تا این پیغام "
74
- "در این صفحه ظاهر نشود."
75
-
76
- #: disable-comments.php:353
77
- msgid ""
78
- "<em>Disable Comments</em> is Network Activated. The settings below will affect "
79
- "<strong>all sites</strong> in this network."
80
- msgstr ""
81
- "<em>غیر فعال کردن نظرات</em> فعال شبکه است. تنظیمات زیر <strong>همه سایت ها</"
82
- "strong> در شبکه تاثیر می گذارد."
83
-
84
- #: disable-comments.php:355
85
- msgid ""
86
- "It seems that a caching/performance plugin is active on this site. Please "
87
- "manually invalidate that plugin's cache after making any changes to the "
88
- "settings below."
89
- msgstr ""
90
- "به نظر می رسد که پلاگین کش (ذخیره/عملکرد) در این سایت فعال است. لطفا تا ذخیره "
91
- "تنظمیات افزونه کش را غیر فعال نمایید."
92
-
93
- #: disable-comments.php:359
94
- msgid "Everywhere"
95
- msgstr "همه جا"
96
-
97
- #: disable-comments.php:359
98
- msgid "Disable all comment-related controls and settings in WordPress."
99
- msgstr "غیر فعال کردن تمام کنترل های مربوط به نظر و تنظیمات وردپرس."
100
-
101
- #: disable-comments.php:360
102
- msgid ""
103
- "%s: This option is global and will affect your entire site. Use it only if you "
104
- "want to disable comments <em>everywhere</em>. A complete description of what "
105
- "this option does is <a href=\"%s\" target=\"_blank\">available here</a>."
106
- msgstr ""
107
- "% s: گزینه این همگانی است و تمام سایت خود تاثیر می گذارد. فقط به نظر <em>همه "
108
- "جا</em> غیر فعال کردن آن استفاده کنید. شرح کامل این گزینه چه <a href=\"%s\" "
109
- "target=\"_blank\"> در اینجا در دسترس</a> است."
110
-
111
- #: disable-comments.php:360 disable-comments.php:380 disable-comments.php:382
112
- #: disable-comments.php:409
113
- msgid "Warning"
114
- msgstr "اخطار"
115
-
116
- #: disable-comments.php:362
117
- msgid "On certain post types"
118
- msgstr "در برخی انواع پست ها"
119
-
120
- #: disable-comments.php:368
121
- msgid ""
122
- "Only the built-in post types appear above. If you want to disable comments on "
123
- "other custom post types on the entire network, you can supply a comma-separated "
124
- "list of post types below (use the slug that identifies the post type)."
125
- msgstr ""
126
- "تنها نوع پست ساخته شده است به نظر بالا می رسد . اگر می خواهید برای غیر فعال "
127
- "کردن نظر در مورد سایر انواع پست سفارشی در کل شبکه شما می توانید با کاما از هم "
128
- "جدا کنید لیست از پست انواع زیر (استفاده از مثل حلزون حرکت است که برای شناسایی "
129
- "نوع پست) عرضه می شود."
130
-
131
- #: disable-comments.php:371
132
- msgid ""
133
- "Disabling comments will also disable trackbacks and pingbacks. All comment-"
134
- "related fields will also be hidden from the edit/quick-edit screens of the "
135
- "affected posts. These settings cannot be overridden for individual posts."
136
- msgstr ""
137
- "با غیر فعال کردن نظرات نیز بازتاب ها و شکلک ها غیر فعال می شود. همه زمینه های "
138
- "مربوط به نظر نیز از نمایشگرهای ویرایش/سریع ویرایش پست آسیب دیده پنهان خواهد شد. "
139
- "این تنظیمات را نمی توان برای فرد خاصی باطل کرد."
140
-
141
- #: disable-comments.php:374
142
- msgid "Other options"
143
- msgstr "تنظیمات دیگر"
144
-
145
- #: disable-comments.php:379
146
- msgid "Use persistent mode"
147
- msgstr "استفاده حالت مداوم "
148
-
149
- #: disable-comments.php:380
150
- msgid ""
151
- "%s: <strong>This will make persistent changes to your database &mdash; comments "
152
- "will remain closed even if you later disable the plugin!</strong> You should "
153
- "not use it if you only want to disable comments temporarily. Please <a href=\"%s"
154
- "\" target=\"_blank\">read the FAQ</a> before selecting this option."
155
- msgstr ""
156
- "% s: <strong>این تغییرات مداوم به پایگاه داده خود را &mdash; نظرات باقی خواهد "
157
- "ماند بسته می شود حتی اگر شما بعد از غیر فعال کردن این افزونه!</strong> اگر "
158
- "شما فقط می خواهید به نظرات به طور موقت غیر فعال کنید از این نباید استفاده "
159
- "کرد<a href=\"%s\" target=\"_blank\"> پرسش و پاسخ را بخوانید</a> لطفا قبل از "
160
- "انتخاب این گزینه."
161
-
162
- #: disable-comments.php:382
163
- msgid ""
164
- "%s: Entering persistent mode on large multi-site networks requires a large "
165
- "number of database queries and can take a while. Use with caution!"
166
- msgstr ""
167
- "% s: ورود حالت مداوم در شبکه های چند سایت بزرگ نیاز به تعداد زیادی از پایگاه "
168
- "داده نمایش داده شد و مدتی طول می کشد. با احتیاط استفاده کنید!"
169
-
170
- #: disable-comments.php:388
171
- msgid "Save Changes"
172
- msgstr "ذخیره تغییرات"
173
-
174
- #: disable-comments.php:409
175
- msgid ""
176
- "%s: Selecting this option will make persistent changes to your database. Are "
177
- "you sure you want to enable it?"
178
- msgstr ""
179
- "% s: با انتخاب این گزینه قادر به ایجاد تغییرات مداوم در بانک اطلاعاتی شما خواهد "
180
- "شد. آیا مطمئن هستید که می خواهید آن را فعال کنید؟"
181
-
182
- #. Plugin URI of the plugin/theme
183
- msgid "http://wordpress.org/extend/plugins/disable-comments/"
184
- msgstr "http://wordpress.org/extend/plugins/disable-comments/"
185
-
186
- #. Description of the plugin/theme
187
- msgid ""
188
- "Allows administrators to globally disable comments on their site. Comments can "
189
- "be disabled according to post type."
190
- msgstr ""
191
- "اجازه می دهد تا مدیران به نظرات در سایت خود همگانی را غیر فعال کنند. نظرات را "
192
- "می توان با توجه به نوع پست خاصی غیر فعال کرد."
193
-
194
- #. Author of the plugin/theme
195
- msgid "Samir Shah"
196
- msgstr "Samir Shah"
197
-
198
- #. Author URI of the plugin/theme
199
- msgid "http://rayofsolaris.net/"
200
- msgstr "http://rayofsolaris.net/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/disable-comments-fr_FR.mo DELETED
Binary file
languages/disable-comments-fr_FR.po DELETED
@@ -1,210 +0,0 @@
1
- # Copyright (C) 2013 Disable Comments
2
- # This file is distributed under the same license as the Disable Comments package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Disable Comments 1.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/disable-comments\n"
7
- "POT-Creation-Date: 2015-02-03 08:04:31+00:00\n"
8
- "PO-Revision-Date: 2015-02-03 14:30+0100\n"
9
- "Last-Translator: fxbenard | FxB <fx@fxbenard.com>\n"
10
- "Language-Team: Hexagone <fx@hexagone.io>\n"
11
- "Language: fr_FR\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.7.3\n"
16
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
-
19
- #: disable-comments.php:38
20
- msgid "Disable Comments requires WordPress version %s or greater."
21
- msgstr ""
22
- "Disable Comments nécessite la version %s de WordPress ou une version supérieure"
23
-
24
- #: disable-comments.php:210
25
- msgid ""
26
- "Note: The <em>Disable Comments</em> plugin is currently active, and comments "
27
- "are completely disabled on: %s. Many of the settings below will not be "
28
- "applicable for those post types."
29
- msgstr ""
30
- "Remarque : l'extension <em>Disable Comments</em> est actuellement activée et "
31
- "les commentaires sont complètement désactivés sur %s. Un grand nombre de ces "
32
- "réglages ne seront pas applicables pour ces types de contenu. "
33
-
34
- #: disable-comments.php:210
35
- msgid ", "
36
- msgstr ","
37
-
38
- #: disable-comments.php:230
39
- msgid ""
40
- "The <em>Disable Comments</em> plugin is active, but isn't configured to do "
41
- "anything yet. Visit the <a href=\"%s\">configuration page</a> to choose which "
42
- "post types to disable comments on."
43
- msgstr ""
44
- "L'extension <em>Disable Comments</em> est activée mais n'est pas encore "
45
- "configurée. Rendez-vous sur la <a href=\"%s\">page de configuration</a> pour "
46
- "choisir les types de contenu pour lesquels vous souhaitez désactiver les "
47
- "commentaires. "
48
-
49
- #: disable-comments.php:237
50
- msgid "Comments are closed."
51
- msgstr "Les commentaires sont fermés."
52
-
53
- #: disable-comments.php:290
54
- msgid "Settings"
55
- msgstr "Réglages"
56
-
57
- #. Plugin Name of the plugin/theme
58
- #: disable-comments.php:298 disable-comments.php:350
59
- msgid "Disable Comments"
60
- msgstr "Disable Comments"
61
-
62
- #: disable-comments.php:343
63
- msgid ""
64
- "If a caching/performance plugin is active, please invalidate its cache to "
65
- "ensure that changes are reflected immediately."
66
- msgstr ""
67
- "Si vous utilisez une extension de cache, veuillez vider le cache afin de "
68
- "constater que les changements sont répercutés immédiatement. "
69
-
70
- #: disable-comments.php:344
71
- msgid ""
72
- "Options updated. Changes to the Admin Menu and Admin Bar will not appear until "
73
- "you leave or reload this page."
74
- msgstr ""
75
- "Options mises à jour. Les modifications n'apparaitront pas dans l'admin tant "
76
- "que vous n'aurez pas quitté ou rechargé cette page."
77
-
78
- #: disable-comments.php:353
79
- msgid ""
80
- "<em>Disable Comments</em> is Network Activated. The settings below will affect "
81
- "<strong>all sites</strong> in this network."
82
- msgstr ""
83
- "<em>Disable Comments</em>est activé au niveau du réseau. Les modifications ci-"
84
- "dessous affecteront <strong>tous les sites</strong> du réseau."
85
-
86
- #: disable-comments.php:355
87
- msgid ""
88
- "It seems that a caching/performance plugin is active on this site. Please "
89
- "manually invalidate that plugin's cache after making any changes to the "
90
- "settings below."
91
- msgstr ""
92
- "Il semblerait qu'une extension de cache soit active sur votre site. Veuillez "
93
- "vider ce cache après toutes modifications dans les réglages ci-dessous. "
94
-
95
- #: disable-comments.php:359
96
- msgid "Everywhere"
97
- msgstr "Partout"
98
-
99
- #: disable-comments.php:359
100
- msgid "Disable all comment-related controls and settings in WordPress."
101
- msgstr "Désactiver tous les réglages relatifs aux commentaires dans WordPress."
102
-
103
- #: disable-comments.php:360
104
- msgid ""
105
- "%s: This option is global and will affect your entire site. Use it only if you "
106
- "want to disable comments <em>everywhere</em>. A complete description of what "
107
- "this option does is <a href=\"%s\" target=\"_blank\">available here</a>."
108
- msgstr ""
109
- "%s : Cette option affecte l'ensemble de votre site internet. Utilisez-la si "
110
- "vous souhaitez désactiver les commentaires <em>partout</em>. Une documentation "
111
- "complète des options de l'extension est <a href=\"%s\" target=\"_blank"
112
- "\">disponible ici (en)</a>."
113
-
114
- #: disable-comments.php:360 disable-comments.php:380 disable-comments.php:382
115
- #: disable-comments.php:409
116
- msgid "Warning"
117
- msgstr "Avertissement"
118
-
119
- #: disable-comments.php:362
120
- msgid "On certain post types"
121
- msgstr "Certains types de contenu "
122
-
123
- #: disable-comments.php:368
124
- msgid ""
125
- "Only the built-in post types appear above. If you want to disable comments on "
126
- "other custom post types on the entire network, you can supply a comma-separated "
127
- "list of post types below (use the slug that identifies the post type)."
128
- msgstr ""
129
- "Seuls les types d'article intégrés apparaissent au-dessus. Si vous souhaitez "
130
- "désactiver commentaires sur d&#39;autres types de contenu personnalisé sur "
131
- "l&#39;ensemble du réseau, vous pouvez fournir une liste séparée par des "
132
- "virgules de ces types de contenu ci-dessous (utiliser leurs identifiants)."
133
-
134
- #: disable-comments.php:371
135
- msgid ""
136
- "Disabling comments will also disable trackbacks and pingbacks. All comment-"
137
- "related fields will also be hidden from the edit/quick-edit screens of the "
138
- "affected posts. These settings cannot be overridden for individual posts."
139
- msgstr ""
140
- "Désactiver les commentaires entraine une désactivation des trackbacks et pings. "
141
- "Tous les champs relatifs aux commentaires seront affectés. Ces réglages ne "
142
- "pourront pas être choisi individuellement dans les articles. "
143
-
144
- #: disable-comments.php:374
145
- msgid "Other options"
146
- msgstr "Autres options"
147
-
148
- #: disable-comments.php:379
149
- msgid "Use persistent mode"
150
- msgstr "Utiliser le mode persistant"
151
-
152
- #: disable-comments.php:380
153
- msgid ""
154
- "%s: <strong>This will make persistent changes to your database &mdash; comments "
155
- "will remain closed even if you later disable the plugin!</strong> You should "
156
- "not use it if you only want to disable comments temporarily. Please <a href=\"%s"
157
- "\" target=\"_blank\">read the FAQ</a> before selecting this option."
158
- msgstr ""
159
- "%s : <strong>Ceci fera des changements permanents à votre base de données. Les "
160
- "commentaires seront désactivés même si vous désactivez l'extension !</strong> "
161
- "Si vous souhaitez désactiver les commentaires de façon temporaire, vous ne "
162
- "devez PAS activer cette option. Voir la <a href=\"%s\" target=\"_blank\">FAQ "
163
- "(en)</a> avant de choisir cette option."
164
-
165
- #: disable-comments.php:382
166
- msgid ""
167
- "%s: Entering persistent mode on large multi-site networks requires a large "
168
- "number of database queries and can take a while. Use with caution!"
169
- msgstr ""
170
- "%s : Activer le mode persistent sur un réseau de sites nécessite de nombreuses "
171
- "requetes dans la base de données. Utilisez cette option avec prudence !"
172
-
173
- #: disable-comments.php:388
174
- msgid "Save Changes"
175
- msgstr "Sauvegarder les modifications"
176
-
177
- #: disable-comments.php:409
178
- msgid ""
179
- "%s: Selecting this option will make persistent changes to your database. Are "
180
- "you sure you want to enable it?"
181
- msgstr ""
182
- "%s : Selectionner cette option fera des changements permanents à votre base de "
183
- "données. Etes-vous certain(e) de vouloir l'activer ? "
184
-
185
- #. Plugin URI of the plugin/theme
186
- msgid "http://wordpress.org/extend/plugins/disable-comments/"
187
- msgstr "http://wordpress.org/extend/plugins/disable-comments/"
188
-
189
- #. Description of the plugin/theme
190
- msgid ""
191
- "Allows administrators to globally disable comments on their site. Comments can "
192
- "be disabled according to post type."
193
- msgstr ""
194
- "Permet aux administrateurs de désactiver globalement les commentaires sur leur "
195
- "site. Les commentaires peuvent être désactivés selon le type de contenu."
196
-
197
- #. Author of the plugin/theme
198
- msgid "Samir Shah"
199
- msgstr "Samir Shah"
200
-
201
- #. Author URI of the plugin/theme
202
- msgid "http://rayofsolaris.net/"
203
- msgstr "http://rayofsolaris.net/"
204
-
205
- #~ msgid ""
206
- #~ "Persistent mode has been manually disabled. See the <a href=\"%s\" target="
207
- #~ "\"_blank\">FAQ</a> for more information."
208
- #~ msgstr ""
209
- #~ "Le mode persistant a été désactivé de façon manuelle. Voir la <a href=\"%s\" "
210
- #~ "target=\"_blank\">FAQ</a>pour plus d'information."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/disable-comments-id_ID.mo DELETED
Binary file
languages/disable-comments-id_ID.po DELETED
@@ -1,171 +0,0 @@
1
- # This file is distributed under the same license as the Disable Comments package.
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: Disable Comments 0.9.1\n"
5
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/disable-comments\n"
6
- "POT-Creation-Date: 2013-06-19 05:01:50+00:00\n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "PO-Revision-Date: 2013-12-08 22:10+0800\n"
11
- "Last-Translator: Nasrulhaq Muiz <nasrulhaq81@gmail.com>\n"
12
- "Language-Team: Nasrulhaq Muiz <nasroel@al-badar.net>\n"
13
- "Language: id_ID\n"
14
- "X-Generator: Poedit 1.5.7\n"
15
-
16
- #: disable-comments.php:38
17
- msgid "Disable Comments requires WordPress version %s or greater."
18
- msgstr "Matikan Komentar membutuhkan versi WordPress %s atau lebih."
19
-
20
- #: disable-comments.php:169
21
- msgid ""
22
- "Note: The <em>Disable Comments</em> plugin is currently active, and comments "
23
- "are completely disabled on: %s. Many of the settings below will not be "
24
- "applicable for those post types."
25
- msgstr ""
26
- "Catatan: Plugin <em>Matikan Komentar</> saat ini aktif, dan semua komentar "
27
- "dimatikan pada: %s. Ragam pengaturan dibawah tidak dapat diterapkan tipe "
28
- "posting tersebut. "
29
-
30
- #: disable-comments.php:169
31
- msgid ", "
32
- msgstr ","
33
-
34
- #: disable-comments.php:183
35
- msgid ""
36
- "The <em>Disable Comments</em> plugin is active, but isn't configured to do "
37
- "anything yet. Visit the <a href=\"%s\">configuration page</a> to choose "
38
- "which post types to disable comments on."
39
- msgstr ""
40
- "Plugin <em>Matikan Komentar</em> aktif, tapi belum diatur untuk melakukan "
41
- "apapun. Kunjungi <a href=\"%s\">halaman konfigurasi</a> untuk memilih tipe "
42
- "posting yang mana agar komentar yang dimatikan menyala."
43
-
44
- #: disable-comments.php:225 disable-comments.php:269
45
- msgid "Disable Comments"
46
- msgstr "Matikan Komentar"
47
-
48
- #: disable-comments.php:262
49
- msgid ""
50
- "If a caching/performance plugin is active, please invalidate its cache to "
51
- "ensure that changes are reflected immediately."
52
- msgstr ""
53
- "Jika sebuah plugin caching / kinerja dalam keadaan aktif, silakan "
54
- "membatalkan cache untuk memastikan bahwa perubahan tercermin segera."
55
-
56
- #: disable-comments.php:263
57
- msgid ""
58
- "Options updated. Changes to the Admin Menu and Admin Bar will not appear "
59
- "until you leave or reload this page."
60
- msgstr ""
61
- "Pilihan diperbarui. Perubahan pada Menu Admin dan Bilah Admin tidak akan "
62
- "nampak hingga anda meninggalkan atau memuat ulang halaman ini"
63
-
64
- #: disable-comments.php:272
65
- msgid ""
66
- "<em>Disable Comments</em> is Network Activated. The settings below will "
67
- "affect <strong>all sites</strong> in this network."
68
- msgstr ""
69
- "<em>Disable Comments</em> adalah Jaringan Diaktifkan. Pengaturan di bawah "
70
- "ini akan mempengaruhi<strong>semua situs</strong> dalam jaringan ini."
71
-
72
- #: disable-comments.php:274
73
- msgid ""
74
- "It seems that a caching/performance plugin is active on this site. Please "
75
- "manually invalidate that plugin's cache after making any changes to the "
76
- "settings below."
77
- msgstr ""
78
- "Tampaknya plugin caching / kinerja aktif di situs ini. Harap membatalkan "
79
- "cache plugin secara manual setelah membuat perubahan apapun untuk pengaturan "
80
- "di bawah ini."
81
-
82
- #: disable-comments.php:278
83
- msgid "Everywhere"
84
- msgstr "Di mana-mana"
85
-
86
- #: disable-comments.php:278
87
- msgid "Disable all comment-related controls and settings in WordPress."
88
- msgstr ""
89
- "Menonaktifkan semua kontrol-komentar terkait dan pengaturan dalam WordPress."
90
-
91
- #: disable-comments.php:279
92
- msgid ""
93
- "%s: This option is global and will affect your entire site. Use it only if "
94
- "you want to disable comments <em>everywhere</em>. A complete description of "
95
- "what this option does is <a href=\"%s\" target=\"_blank\">available here</a>."
96
- msgstr ""
97
- "Pilihan ini global dan akan mempengaruhi seluruh situs Anda. Gunakan hanya "
98
- "jika Anda ingin menonaktifkan komentar <em>mana-mana</em>. Penjelasan "
99
- "lengkap tentang apa pilihan yang dilakukan adalah <a href=\"%s\" target="
100
- "\"_blank\">tersedia disini</a>"
101
-
102
- #: disable-comments.php:279 disable-comments.php:295 disable-comments.php:297
103
- #: disable-comments.php:325
104
- msgid "Warning"
105
- msgstr "Peringatan"
106
-
107
- #: disable-comments.php:281
108
- msgid "On certain post types"
109
- msgstr "Pada jenis pos tertentu"
110
-
111
- #: disable-comments.php:286
112
- msgid ""
113
- "Disabling comments will also disable trackbacks and pingbacks. All comment-"
114
- "related fields will also be hidden from the edit/quick-edit screens of the "
115
- "affected posts. These settings cannot be overridden for individual posts."
116
- msgstr ""
117
- "Menonaktifkan komentar juga akan menonaktifkan trackbacks dan pingbacks. "
118
- "Semua bidang-komentar terkait juga akan disembunyikan dari edit / cepat-"
119
- "mengedit layar dari tulisan terpengaruh. Pengaturan ini tidak dapat diganti "
120
- "untuk setiap posting."
121
-
122
- #: disable-comments.php:289
123
- msgid "Other options"
124
- msgstr "Pilihan lainnya"
125
-
126
- #: disable-comments.php:294
127
- msgid "Use persistent mode"
128
- msgstr "Gunakan mode Tetap"
129
-
130
- #: disable-comments.php:295
131
- msgid ""
132
- "%s: <strong>This will make persistent changes to your database &mdash; "
133
- "comments will remain closed even if you later disable the plugin!</strong> "
134
- "You should not use it if you only want to disable comments temporarily. "
135
- "Please <a href=\"%s\" target=\"_blank\">read the FAQ</a> before selecting "
136
- "this option."
137
- msgstr ""
138
- "%s: <strong> Ini akan membuat perubahan tetap pada basis data &mdash; anda, "
139
- "komentar akan dikeluarkan walaupun kemudian akan menonaktifkan plugin!</"
140
- "strong> Anda seharusnya tidak menggunakan jika hanya menonaktifkan komentar "
141
- "sementara waktu. Harap <a href=\"%s\" target=\"_blank\">baca FAQ</a> sebelum "
142
- "menentukan pilihan."
143
-
144
- #: disable-comments.php:297
145
- msgid ""
146
- "%s: Entering persistent mode on large multi-site networks requires a large "
147
- "number of database queries and can take a while. Use with caution!"
148
- msgstr ""
149
- "%s: Memasukkan mode tetap pada jaringan multi situs yang lebih besar "
150
- "membutuhkan sejumlah besar kueri basis data dan membutuhkan beberapa waktu. "
151
- "Gunakan dengan seksama! "
152
-
153
- #: disable-comments.php:300
154
- msgid ""
155
- "Persistent mode has been manually disabled. See the <a href=\"%s\" target="
156
- "\"_blank\">FAQ</a> for more information."
157
- msgstr ""
158
- "Mode Tetap telah diaktifkan secara manual, Lihat <a href=\"%s\" target="
159
- "\"_blank\">FAQ</a> untuk informasi lebih lanjut."
160
-
161
- #: disable-comments.php:305
162
- msgid "Save Changes"
163
- msgstr "Simpan Perubahan"
164
-
165
- #: disable-comments.php:325
166
- msgid ""
167
- "%s: Selecting this option will make persistent changes to your database. Are "
168
- "you sure you want to enable it?"
169
- msgstr ""
170
- "%s: Memilih opsi ini akan membuat perubahan yang tetap pada basis data anda. "
171
- "Apakah anda yakin mengaktifkannnya?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/disable-comments-pl_PL.mo DELETED
Binary file
languages/disable-comments-pl_PL.po DELETED
@@ -1,203 +0,0 @@
1
- # Copyright (C) 2015 Disable Comments
2
- # This file is distributed under the same license as the Disable Comments package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Disable Comments 1.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/disable-comments\n"
7
- "POT-Creation-Date: 2015-02-03 08:04:31+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2015-04-30 22:12+0100\n"
12
- "Last-Translator: Maciej Gryniuk <maciejka45@gmail.com>\n"
13
- "Language-Team: Maciej Gryniuk <maciejka45@gmail.com>\n"
14
- "X-Generator: Poedit 1.8beta1\n"
15
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || "
16
- "n%100>=20) ? 1 : 2);\n"
17
- "Language: pl_PL\n"
18
- "X-Poedit-SourceCharset: UTF-8\n"
19
-
20
- #: disable-comments.php:38
21
- msgid "Disable Comments requires WordPress version %s or greater."
22
- msgstr "Wyłączenie Komentarzy wymaga WordPress'a w wersji %s lub nowszej."
23
-
24
- #: disable-comments.php:210
25
- msgid ""
26
- "Note: The <em>Disable Comments</em> plugin is currently active, and comments "
27
- "are completely disabled on: %s. Many of the settings below will not be "
28
- "applicable for those post types."
29
- msgstr ""
30
- "Informacja: Wtyczka <em>Wyłączenie Komentarzy</em> jest aktywna, a komentarze "
31
- "są całkowicie wyłączone na: %s. Większość poniższych ustawień nie będzie miała "
32
- "wpływu na te rodzaje wpisów."
33
-
34
- #: disable-comments.php:210
35
- msgid ", "
36
- msgstr ", "
37
-
38
- #: disable-comments.php:230
39
- msgid ""
40
- "The <em>Disable Comments</em> plugin is active, but isn't configured to do "
41
- "anything yet. Visit the <a href=\"%s\">configuration page</a> to choose which "
42
- "post types to disable comments on."
43
- msgstr ""
44
- "Wtyczka <em>Wyłączenie Komentarzy</em> jest aktywna, ale nie została jeszcze "
45
- "skonfigurowana. Odwiedź <a href=\"%s\">stronę konfiguracji</a> i wybierz "
46
- "rodzaje wpisów do wyłączenia na nich komentarzy."
47
-
48
- #: disable-comments.php:237
49
- msgid "Comments are closed."
50
- msgstr "Komentarze są wyłączone."
51
-
52
- #: disable-comments.php:290
53
- msgid "Settings"
54
- msgstr "Ustawienia"
55
-
56
- #. Plugin Name of the plugin/theme
57
- #: disable-comments.php:298 disable-comments.php:350
58
- msgid "Disable Comments"
59
- msgstr "Wyłączenie komentarzy"
60
-
61
- #: disable-comments.php:343
62
- msgid ""
63
- "If a caching/performance plugin is active, please invalidate its cache to "
64
- "ensure that changes are reflected immediately."
65
- msgstr ""
66
- "Jeżeli jest aktywna wtyczka pamięci podręcznej/wydajnościowa, proszę unieważnić "
67
- "jej podręczną, aby zmiany weszły w życie natychmiatowo."
68
-
69
- #: disable-comments.php:344
70
- msgid ""
71
- "Options updated. Changes to the Admin Menu and Admin Bar will not appear until "
72
- "you leave or reload this page."
73
- msgstr ""
74
- "Opcje zaktualizowane. Zmiany w menu panelu administracyjnego i na pasku "
75
- "administracyjnym będą widoczne po opuszczeniu lub przeładowaniu tej strony."
76
-
77
- #: disable-comments.php:353
78
- msgid ""
79
- "<em>Disable Comments</em> is Network Activated. The settings below will affect "
80
- "<strong>all sites</strong> in this network."
81
- msgstr ""
82
- "<em>Wyłączenie Komentarzy</em> jest aktywne w sieci. Poniższe ustawienia "
83
- "zostaną zastosowane na <strong>wszystkich stronach</strong> w tej sieci."
84
-
85
- #: disable-comments.php:355
86
- msgid ""
87
- "It seems that a caching/performance plugin is active on this site. Please "
88
- "manually invalidate that plugin's cache after making any changes to the "
89
- "settings below."
90
- msgstr ""
91
- "Wygląda na to, że na stronie jest aktywna wtyczka pamięci podręcznej/"
92
- "wydajnościowa. Proszę ręcznie unieważnić jej podręczną po dokonaniu "
93
- "jakichkolwiek zmian poniżej."
94
-
95
- #: disable-comments.php:359
96
- msgid "Everywhere"
97
- msgstr "Wszędzie"
98
-
99
- #: disable-comments.php:359
100
- msgid "Disable all comment-related controls and settings in WordPress."
101
- msgstr ""
102
- "Wyłącz wszystkie opcje i ustawienia powiązane z komentarzami w WordPress'ie."
103
-
104
- #: disable-comments.php:360
105
- msgid ""
106
- "%s: This option is global and will affect your entire site. Use it only if you "
107
- "want to disable comments <em>everywhere</em>. A complete description of what "
108
- "this option does is <a href=\"%s\" target=\"_blank\">available here</a>."
109
- msgstr ""
110
- "%s: Ta opcja jest globalna i zostanie zastosowana na całej stronie. Użyj jej, "
111
- "tylko gdy chcesz wyłączyć komentarze <em>wszędzie</em>. Pełny opis działania "
112
- "tej opcji jest <a href=\"%s\" target=\"_blank\">dostępny tutaj</a>."
113
-
114
- #: disable-comments.php:360 disable-comments.php:380 disable-comments.php:382
115
- #: disable-comments.php:409
116
- msgid "Warning"
117
- msgstr "Ostrzeżenie"
118
-
119
- #: disable-comments.php:362
120
- msgid "On certain post types"
121
- msgstr "Na wybranych rodzajach wpisów"
122
-
123
- #: disable-comments.php:368
124
- msgid ""
125
- "Only the built-in post types appear above. If you want to disable comments on "
126
- "other custom post types on the entire network, you can supply a comma-separated "
127
- "list of post types below (use the slug that identifies the post type)."
128
- msgstr ""
129
- "Powyżej są wyświetlone tylko wbudowane rodzaje wpisów. Jeżeli chcesz wyłączyć "
130
- "komentarze na własnym rodzaju wpisów w całej sieci, możesz poniżej podać ich "
131
- "nazwy (slug identyfikujący), oddzielone przecinkami."
132
-
133
- #: disable-comments.php:371
134
- msgid ""
135
- "Disabling comments will also disable trackbacks and pingbacks. All comment-"
136
- "related fields will also be hidden from the edit/quick-edit screens of the "
137
- "affected posts. These settings cannot be overridden for individual posts."
138
- msgstr ""
139
- "Wyłączenie komentarzy wyłączy również pingbacki i trackbacki. Wszystkie pola "
140
- "powiązane z komentarzami zostaną ukryte z ekranów edycji i szybkiej edycji "
141
- "odpowiednich wpisów. Te ustawienia nie mogą zostać nadpisane dla pojedynczych "
142
- "wpisów."
143
-
144
- #: disable-comments.php:374
145
- msgid "Other options"
146
- msgstr "Pozostałe opcje"
147
-
148
- #: disable-comments.php:379
149
- msgid "Use persistent mode"
150
- msgstr "Użyj trybu trwałego"
151
-
152
- #: disable-comments.php:380
153
- msgid ""
154
- "%s: <strong>This will make persistent changes to your database &mdash; comments "
155
- "will remain closed even if you later disable the plugin!</strong> You should "
156
- "not use it if you only want to disable comments temporarily. Please <a href=\"%s"
157
- "\" target=\"_blank\">read the FAQ</a> before selecting this option."
158
- msgstr ""
159
- "%s: <strong>Ta opcja dokona trwałych zmian w w Twojej bazie danych &mdash; "
160
- "komentarze pozostaną wyłączone, nawet gdy wyłączysz wtyczkę!</strong> Nie "
161
- "powinno być wybierane do tymczasowego wyłączania komentarzy. Proszę <a href=\"%s"
162
- "\" target=\"_blank\">przeczytać FAQ</a> przed wyborem tej opcji."
163
-
164
- #: disable-comments.php:382
165
- msgid ""
166
- "%s: Entering persistent mode on large multi-site networks requires a large "
167
- "number of database queries and can take a while. Use with caution!"
168
- msgstr ""
169
- "%s: Wejście z tryb trwały na dużych sieciach multi-witryn wymaga dużej ilości "
170
- "zapytań do bazy danych, a więc może to trochę potrwać. Używać z ostrożnością!"
171
-
172
- #: disable-comments.php:388
173
- msgid "Save Changes"
174
- msgstr "Zapisz zmiany"
175
-
176
- #: disable-comments.php:409
177
- msgid ""
178
- "%s: Selecting this option will make persistent changes to your database. Are "
179
- "you sure you want to enable it?"
180
- msgstr ""
181
- "%s: Ta opcja dokona stałych zmian w Twojej bazie danych. Na pewno chcesz ją "
182
- "aktywować?"
183
-
184
- #. Plugin URI of the plugin/theme
185
- msgid "http://wordpress.org/extend/plugins/disable-comments/"
186
- msgstr "http://wordpress.org/extend/plugins/disable-comments/"
187
-
188
- #. Description of the plugin/theme
189
- msgid ""
190
- "Allows administrators to globally disable comments on their site. Comments can "
191
- "be disabled according to post type."
192
- msgstr ""
193
- "Umożliwia administratorom możliwość globalnego wyłączenia komentarzy na stronie "
194
- "internetowej. Komentarze mogą zostać wyłączone odpowiednio dla różnych rodzajów "
195
- "wpisów."
196
-
197
- #. Author of the plugin/theme
198
- msgid "Samir Shah"
199
- msgstr "Samir Shah"
200
-
201
- #. Author URI of the plugin/theme
202
- msgid "http://rayofsolaris.net/"
203
- msgstr "http://rayofsolaris.net/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/disable-comments-pt_BR.mo DELETED
Binary file
languages/disable-comments-pt_BR.po DELETED
@@ -1,208 +0,0 @@
1
- # Copyright (C) 2015 Disable Comments
2
- # This file is distributed under the same license as the Disable Comments package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Disable Comments 1.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/disable-comments\n"
7
- "POT-Creation-Date: 2015-02-03 08:04:31+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2015-05-22 18:39+0100\n"
12
- "Last-Translator: freemp\n"
13
- "Language-Team: \n"
14
- "X-Generator: Poedit 1.5.7\n"
15
-
16
- #: disable-comments.php:38
17
- msgid "Disable Comments requires WordPress version %s or greater."
18
- msgstr "Disable Comments necessita do WordPress versão %s ou superior."
19
-
20
- #: disable-comments.php:210
21
- msgid ""
22
- "Note: The <em>Disable Comments</em> plugin is currently active, and comments "
23
- "are completely disabled on: %s. Many of the settings below will not be "
24
- "applicable for those post types."
25
- msgstr ""
26
- "Nota: No momento, o plugin <em>Disable Comments</em> está ativado e os "
27
- "comentários estão completamente desativados no: %s. Algumas das opções de "
28
- "configuração abaixo não serão aplicáveis para estes tipos de notícias."
29
-
30
- #: disable-comments.php:210
31
- msgid ", "
32
- msgstr ","
33
-
34
- #: disable-comments.php:230
35
- msgid ""
36
- "The <em>Disable Comments</em> plugin is active, but isn't configured to do "
37
- "anything yet. Visit the <a href=\"%s\">configuration page</a> to choose "
38
- "which post types to disable comments on."
39
- msgstr ""
40
- "O plugin <em>Disable Comments</em> está ativado, mais até o momento nenhuma "
41
- "função foi configurada. Visite a <a href=\"%s\">pagina de configuração</a> "
42
- "para escolher os tipos de notícias, nas quais os comentários serão "
43
- "desativados."
44
-
45
- #: disable-comments.php:237
46
- msgid "Comments are closed."
47
- msgstr "Comentários estão fechados."
48
-
49
- #: disable-comments.php:290
50
- msgid "Settings"
51
- msgstr "Configurações"
52
-
53
- #. #-#-#-#-# disable-comments.pot (Disable Comments 1.2) #-#-#-#-#
54
- #. Plugin Name of the plugin/theme
55
- #: disable-comments.php:298 disable-comments.php:350
56
- msgid "Disable Comments"
57
- msgstr "Desativar Comentários"
58
-
59
- #: disable-comments.php:343
60
- msgid ""
61
- "If a caching/performance plugin is active, please invalidate its cache to "
62
- "ensure that changes are reflected immediately."
63
- msgstr ""
64
- "Se um plugin de cacheamento/performance estiver ativado, por favor "
65
- "desconsiderar seu cache para certificar que futuros alterações sejam "
66
- "consideradas."
67
-
68
- #: disable-comments.php:344
69
- msgid ""
70
- "Options updated. Changes to the Admin Menu and Admin Bar will not appear "
71
- "until you leave or reload this page."
72
- msgstr ""
73
- "Opções atualizadas. Alterações no Menu Admin e na Barra Admin não aparecerão "
74
- "até você deixar ou recarregar esta página."
75
-
76
- #: disable-comments.php:353
77
- msgid ""
78
- "<em>Disable Comments</em> is Network Activated. The settings below will "
79
- "affect <strong>all sites</strong> in this network."
80
- msgstr ""
81
- "<em>Disable Comments</em> está Ativada Na Rede. As configurações abaixo "
82
- "afetarão <strong>todos os sites</strong> nesta rede."
83
-
84
- #: disable-comments.php:355
85
- msgid ""
86
- "It seems that a caching/performance plugin is active on this site. Please "
87
- "manually invalidate that plugin's cache after making any changes to the "
88
- "settings below."
89
- msgstr ""
90
- "Aparentemente um plugin de cacheamento/performance está ativado neste site. "
91
- "Por favor desconsiderar o cache desse plugin depois de alterar qualquer "
92
- "configuração abaixo."
93
-
94
- #: disable-comments.php:359
95
- msgid "Everywhere"
96
- msgstr "Em todo lugar"
97
-
98
- #: disable-comments.php:359
99
- msgid "Disable all comment-related controls and settings in WordPress."
100
- msgstr ""
101
- "Desativar todos os controles e configurações dos comentários relacionados no "
102
- "WordPress."
103
-
104
- #: disable-comments.php:360
105
- msgid ""
106
- "%s: This option is global and will affect your entire site. Use it only if "
107
- "you want to disable comments <em>everywhere</em>. A complete description of "
108
- "what this option does is <a href=\"%s\" target=\"_blank\">available here</a>."
109
- msgstr ""
110
- "%s: Esta opção é global e vai afetar o site inteiro. Utilize-o somente caso "
111
- "você queira desativar os comentários <em>em todo site</em>. Uma descrição "
112
- "completa do que esta opção faz está <a href=\"%s\" target=\"_blank"
113
- "\">disponível aqui</a>."
114
-
115
- #: disable-comments.php:360 disable-comments.php:380 disable-comments.php:382
116
- #: disable-comments.php:409
117
- msgid "Warning"
118
- msgstr "Aviso"
119
-
120
- #: disable-comments.php:362
121
- msgid "On certain post types"
122
- msgstr "Para tipos de notícias específicas"
123
-
124
- #: disable-comments.php:368
125
- msgid ""
126
- "Only the built-in post types appear above. If you want to disable comments "
127
- "on other custom post types on the entire network, you can supply a comma-"
128
- "separated list of post types below (use the slug that identifies the post "
129
- "type)."
130
- msgstr ""
131
- "Apenas os tipos de notícias instaladas aparecem acima. Se você desejar "
132
- "desativar os comentários de outros tipos de notícias em toda rede, você "
133
- "deverá fornecer uma lista abaixo com os tipos de notícias separadas por "
134
- "vírgulas (use o slug que identifique o tipo de notícia)."
135
-
136
- #: disable-comments.php:371
137
- msgid ""
138
- "Disabling comments will also disable trackbacks and pingbacks. All comment-"
139
- "related fields will also be hidden from the edit/quick-edit screens of the "
140
- "affected posts. These settings cannot be overridden for individual posts."
141
- msgstr ""
142
- "Desabilitando os comentários, você desabilitará também os trackbacks e "
143
- "pingbacks. Todos os campos relacionados com comentários serão ocultados das "
144
- "telas de edição e edição rápida das notícias afetadas. Estes parâmetros não "
145
- "podem ser sobrescritos para notícias individuais."
146
-
147
- #: disable-comments.php:374
148
- msgid "Other options"
149
- msgstr "Outras opções"
150
-
151
- #: disable-comments.php:379
152
- msgid "Use persistent mode"
153
- msgstr "Usar modo persistente"
154
-
155
- #: disable-comments.php:380
156
- msgid ""
157
- "%s: <strong>This will make persistent changes to your database &mdash; "
158
- "comments will remain closed even if you later disable the plugin!</strong> "
159
- "You should not use it if you only want to disable comments temporarily. "
160
- "Please <a href=\"%s\" target=\"_blank\">read the FAQ</a> before selecting "
161
- "this option."
162
- msgstr ""
163
- "%s: <strong>Este fará alterações permanentes em seu banco de dados &mdash; "
164
- "os comentários permanecerão fechados mesmo que você desative este plugin "
165
- "depois! Nao utilize esta opção, caso deseje desabilitar os comentários "
166
- "temporariamente. Por favor, <a href=\"%s\" target=\"_blank\">consulta as "
167
- "perguntas frequentes</a> antes de selecionar esta opção."
168
-
169
- #: disable-comments.php:382
170
- msgid ""
171
- "%s: Entering persistent mode on large multi-site networks requires a large "
172
- "number of database queries and can take a while. Use with caution!"
173
- msgstr ""
174
- "%s: Entrando no modo persistente de uma vasta rede de sites múltiplos exige "
175
- "uma ampla quantidade de consultas no banco de dados e pode levar algum "
176
- "tempo. Use com cuidado!"
177
-
178
- #: disable-comments.php:388
179
- msgid "Save Changes"
180
- msgstr "Salvar Alterações"
181
-
182
- #: disable-comments.php:409
183
- msgid ""
184
- "%s: Selecting this option will make persistent changes to your database. Are "
185
- "you sure you want to enable it?"
186
- msgstr ""
187
- "%s: Ao selecionar esta opção ocorrerão alterações persistentes no seu banco "
188
- "de dados. Você tem certeza que deseja ativar esta opção?"
189
-
190
- #. Plugin URI of the plugin/theme
191
- msgid "http://wordpress.org/extend/plugins/disable-comments/"
192
- msgstr "http://wordpress.org/extend/plugins/disable-comments/"
193
-
194
- #. Description of the plugin/theme
195
- msgid ""
196
- "Allows administrators to globally disable comments on their site. Comments "
197
- "can be disabled according to post type."
198
- msgstr ""
199
- "Permite administradores desativar comentários nos seus sites. Comentários "
200
- "poderão ser desativados de acordo com o tipo de notícia."
201
-
202
- #. Author of the plugin/theme
203
- msgid "Samir Shah"
204
- msgstr "Samir Shah"
205
-
206
- #. Author URI of the plugin/theme
207
- msgid "http://rayofsolaris.net/"
208
- msgstr "http://rayofsolaris.net/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/disable-comments-ru_RU.mo DELETED
Binary file
languages/disable-comments-ru_RU.po DELETED
@@ -1,178 +0,0 @@
1
- # Translation of Disable Comments in Russian
2
- # This file is distributed under the same license as the Disable Comments package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Disable Comments\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/disable-comments\n"
7
- "POT-Creation-Date: 2013-06-19 05:01:50+00:00\n"
8
- "PO-Revision-Date: 2014-01-08 01:28+0400\n"
9
- "Last-Translator: Elvis TEAM <elviswebteam@gmail.com>\n"
10
- "Language-Team: Elvis WT <elviswebteam@gmail.com>\n"
11
- "Language: ru\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
16
- "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
17
- "X-Generator: Poedit 1.6.3\n"
18
-
19
- #: disable-comments.php:38
20
- msgid "Disable Comments requires WordPress version %s or greater."
21
- msgstr "Для работы плагина требуется WordPress версии %s или выше."
22
-
23
- #: disable-comments.php:169
24
- msgid ""
25
- "Note: The <em>Disable Comments</em> plugin is currently active, and comments "
26
- "are completely disabled on: %s. Many of the settings below will not be "
27
- "applicable for those post types."
28
- msgstr ""
29
- "Заметка: Плагин успешно активирован и комментарии на блоге полностью "
30
- "отключены: %s. Настройки ниже неприменимы к указанным ранее типам записей."
31
-
32
- #: disable-comments.php:169
33
- msgid ", "
34
- msgstr ","
35
-
36
- #: disable-comments.php:183
37
- msgid ""
38
- "The <em>Disable Comments</em> plugin is active, but isn't configured to do "
39
- "anything yet. Visit the <a href=\"%s\">configuration page</a> to choose "
40
- "which post types to disable comments on."
41
- msgstr ""
42
- "Плагин активирован, но еще не настроен. Чтобы сделать это, перейдите на <a "
43
- "href=\"%s\">страницу настроек</a>. Там можно задать типы записей, для "
44
- "которых будут отключены комментарии."
45
-
46
- #: disable-comments.php:225 disable-comments.php:269
47
- msgid "Disable Comments"
48
- msgstr "Откл. комментарии"
49
-
50
- #: disable-comments.php:262
51
- msgid ""
52
- "If a caching/performance plugin is active, please invalidate its cache to "
53
- "ensure that changes are reflected immediately."
54
- msgstr ""
55
- "Если плагин для кэширования или ускорения блога включен, не забудьте "
56
- "очистить кэш сразу после изменения настроек, чтобы они вступили в силу."
57
-
58
- #: disable-comments.php:263
59
- msgid ""
60
- "Options updated. Changes to the Admin Menu and Admin Bar will not appear "
61
- "until you leave or reload this page."
62
- msgstr ""
63
- "Настройки обновлены. Изменения панели и меню администратора вступят в силу "
64
- "только после обновления страницы."
65
-
66
- #: disable-comments.php:272
67
- msgid ""
68
- "<em>Disable Comments</em> is Network Activated. The settings below will "
69
- "affect <strong>all sites</strong> in this network."
70
- msgstr ""
71
- "Плагин работает в режиме сети. Измененные ниже настройки повлияют на "
72
- "<strong>все блоги</strong> данной сети."
73
-
74
- #: disable-comments.php:274
75
- msgid ""
76
- "It seems that a caching/performance plugin is active on this site. Please "
77
- "manually invalidate that plugin's cache after making any changes to the "
78
- "settings below."
79
- msgstr ""
80
- "Похоже, Вы используете плагин для кэширования или ускорения блога. Не "
81
- "забудьте после изменения любых настроек очистить кэш вручную!"
82
-
83
- #: disable-comments.php:278
84
- msgid "Everywhere"
85
- msgstr "Везде"
86
-
87
- #: disable-comments.php:278
88
- msgid "Disable all comment-related controls and settings in WordPress."
89
- msgstr ""
90
- "Отключить все параметры и настройки WordPress, связанные с управлением "
91
- "комментариями."
92
-
93
- #: disable-comments.php:279
94
- msgid ""
95
- "%s: This option is global and will affect your entire site. Use it only if "
96
- "you want to disable comments <em>everywhere</em>. A complete description of "
97
- "what this option does is <a href=\"%s\" target=\"_blank\">available here</a>."
98
- msgstr ""
99
- "%s: Эта опция имеет глобальное значение и будет применена даже к Вашему "
100
- "сайту. Используйте только если хотите отключить комментарии <em>везде</em>. "
101
- "Полное описание опции можно найти <a href=\"%s\" target=\"_blank\">здесь</a>."
102
-
103
- #: disable-comments.php:279 disable-comments.php:295 disable-comments.php:297
104
- #: disable-comments.php:325
105
- msgid "Warning"
106
- msgstr "Внимание"
107
-
108
- #: disable-comments.php:281
109
- msgid "On certain post types"
110
- msgstr "Для типов записей"
111
-
112
- #: disable-comments.php:286
113
- msgid ""
114
- "Disabling comments will also disable trackbacks and pingbacks. All comment-"
115
- "related fields will also be hidden from the edit/quick-edit screens of the "
116
- "affected posts. These settings cannot be overridden for individual posts."
117
- msgstr ""
118
- "При использовании плагина будут также отключены трекбэки и пингбэки. Все "
119
- "относящиеся к комментированию поля будут скрыты (для выбранных типов "
120
- "записей). Эти настройки вступают в силу для ВСЕХ записей указанного типа, "
121
- "без исключений."
122
-
123
- #: disable-comments.php:289
124
- msgid "Other options"
125
- msgstr "Другие настройки"
126
-
127
- #: disable-comments.php:294
128
- msgid "Use persistent mode"
129
- msgstr "Использовать \"живое\" сохранение"
130
-
131
- #: disable-comments.php:295
132
- msgid ""
133
- "%s: <strong>This will make persistent changes to your database &mdash; "
134
- "comments will remain closed even if you later disable the plugin!</strong> "
135
- "You should not use it if you only want to disable comments temporarily. "
136
- "Please <a href=\"%s\" target=\"_blank\">read the FAQ</a> before selecting "
137
- "this option."
138
- msgstr ""
139
- "%s: <strong>Включение опции позволит записывать изменения в \"живом\" режиме "
140
- "в базу данных &mdash; а комментарии будут отключены даже после деактивации "
141
- "плагина!</strong> Не стоит использовать опцию, если не хотите надолго "
142
- "отключить все комментарии. Прежде всего, <a href=\"%s\" target=\"_blank"
143
- "\">прочитайте внимательно FAQ</a>."
144
-
145
- #: disable-comments.php:297
146
- msgid ""
147
- "%s: Entering persistent mode on large multi-site networks requires a large "
148
- "number of database queries and can take a while. Use with caution!"
149
- msgstr ""
150
- "%s: Включение \"живого\" режима на больших мультиблоговых сайтах сильно "
151
- "нагружает базу данных запросами. Использовать осторожно!"
152
-
153
- #: disable-comments.php:300
154
- msgid ""
155
- "Persistent mode has been manually disabled. See the <a href=\"%s\" target="
156
- "\"_blank\">FAQ</a> for more information."
157
- msgstr ""
158
- "Режим \"живого\" сохранения был отключен вручную. Подробнее читайте <a href="
159
- "\"%s\" target=\"_blank\">FAQ</a>."
160
-
161
- #: disable-comments.php:305
162
- msgid "Save Changes"
163
- msgstr "Сохранить изменения"
164
-
165
- #: disable-comments.php:325
166
- msgid ""
167
- "%s: Selecting this option will make persistent changes to your database. Are "
168
- "you sure you want to enable it?"
169
- msgstr ""
170
- "%s: При включении этой опции все изменения будут заноситься в базу данных. "
171
- "Вы уверены, что хотите включить опцию?"
172
-
173
- #~ msgid ""
174
- #~ "Allows administrators to globally disable comments on their site. "
175
- #~ "Comments can be disabled according to post type."
176
- #~ msgstr ""
177
- #~ "Позволяет администраторам сайтов вручную отключать комментарии на своих "
178
- #~ "блогах. Комментарии отключаются для указанных типов записей."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/disable-comments-vi.mo DELETED
Binary file
languages/disable-comments-vi.po DELETED
@@ -1,172 +0,0 @@
1
- # Copyright (C) 2013 Disable Comments
2
- # This file is distributed under the same license as the Disable Comments package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Disable Comments 0.9.1\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/disable-comments\n"
7
- "POT-Creation-Date: 2013-06-19 05:01:50+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2014-01-13 23:54+0700\n"
12
- "Last-Translator: Vietnamese WPress-based blog | http://rongsay.info "
13
- "<me@rongsay.info>\n"
14
- "Language-Team: Vietnamese WPress-based blog | http://rongsay.info "
15
- "<me@rongsay.info>\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
-
18
- #: disable-comments.php:38
19
- msgid "Disable Comments requires WordPress version %s or greater."
20
- msgstr "Vô hiệu hóa ý kiến yêu cầu phiên bản WordPress %s hoặc cao hơn."
21
-
22
- #: disable-comments.php:169
23
- msgid ""
24
- "Note: The <em>Disable Comments</em> plugin is currently active, and comments "
25
- "are completely disabled on: %s. Many of the settings below will not be "
26
- "applicable for those post types."
27
- msgstr ""
28
- "Lưu ý: <em>Vô hiệu hóa ý kiến</em> hiện đang hoạt động, và ý kiến bị vô hiệu "
29
- "hoá hoàn toàn ở các: %s. Nhiều trong số các cài đặt dưới đây sẽ không được "
30
- "áp dụng cho những loại post type đó."
31
-
32
- #: disable-comments.php:169
33
- msgid ", "
34
- msgstr ", "
35
-
36
- #: disable-comments.php:183
37
- msgid ""
38
- "The <em>Disable Comments</em> plugin is active, but isn't configured to do "
39
- "anything yet. Visit the <a href=\"%s\">configuration page</a> to choose "
40
- "which post types to disable comments on."
41
- msgstr ""
42
- "<Em> vô hiệu hóa ý kiến </em> hoạt động, nhưng không cấu hình để làm bất cứ "
43
- "điều gì được nêu ra. Truy cập vào các <a href=\"%s\"> Trang cấu hình </a> "
44
- "chọn các post type cần vô hiệu hóa ý kiến."
45
-
46
- #: disable-comments.php:225 disable-comments.php:269
47
- msgid "Disable Comments"
48
- msgstr "Vô hiệu hóa ý kiến"
49
-
50
- #: disable-comments.php:262
51
- msgid ""
52
- "If a caching/performance plugin is active, please invalidate its cache to "
53
- "ensure that changes are reflected immediately."
54
- msgstr ""
55
- "Nếu một plugin bộ nhớ đệm (cache) hoạt động, xin vui lòng tắt bộ nhớ cache "
56
- "của nó để đảm bảo rằng những thay đổi được thi hành ngay lập tức."
57
-
58
- #: disable-comments.php:263
59
- msgid ""
60
- "Options updated. Changes to the Admin Menu and Admin Bar will not appear "
61
- "until you leave or reload this page."
62
- msgstr ""
63
- "Tùy chọn Cập Nhật. Thay đổi trình đơn Admin và Admin Bar sẽ không xuất hiện "
64
- "cho đến khi bạn nạp lại trang này."
65
-
66
- #: disable-comments.php:272
67
- msgid ""
68
- "<em>Disable Comments</em> is Network Activated. The settings below will "
69
- "affect <strong>all sites</strong> in this network."
70
- msgstr ""
71
- "<em> vô hiệu hóa ý kiến </em> kích hoạt trong toàn Network. Thiết đặt dưới "
72
- "đây sẽ ảnh hưởng đến Tất cả trang web trong mạng này."
73
-
74
- #: disable-comments.php:274
75
- msgid ""
76
- "It seems that a caching/performance plugin is active on this site. Please "
77
- "manually invalidate that plugin's cache after making any changes to the "
78
- "settings below."
79
- msgstr ""
80
- "Có vẻ như một plugin bộ nhớ đệm/hiệu suất đang hoạt động trên trang web này. "
81
- "Tắt bộ nhớ cache plugin đó sau khi thực hiện bất kỳ thay đổi các thiết đặt "
82
- "dưới đây."
83
-
84
- #: disable-comments.php:278
85
- msgid "Everywhere"
86
- msgstr "Ở mọi nơi"
87
-
88
- #: disable-comments.php:278
89
- msgid "Disable all comment-related controls and settings in WordPress."
90
- msgstr ""
91
- "Vô hiệu hoá tất cả các liên quan đến bình luận điều khiển và thiết lập trong "
92
- "WordPress."
93
-
94
- #: disable-comments.php:279
95
- msgid ""
96
- "%s: This option is global and will affect your entire site. Use it only if "
97
- "you want to disable comments <em>everywhere</em>. A complete description of "
98
- "what this option does is <a href=\"%s\" target=\"_blank\">available here</a>."
99
- msgstr ""
100
- "%s: Tùy chọn này là toàn cầu và sẽ ảnh hưởng đến toàn bộ trang web của bạn. "
101
- "Sử dụng nó chỉ nếu bạn muốn vô hiệu hóa ý kiến <em> ở khắp mọi nơi </em>. "
102
- "Một mô tả đầy đủ về những gì tùy chọn này hiện <a href =\"%s\" target="
103
- "\"_blank\"> có sẵn ở đây </a>."
104
-
105
- #: disable-comments.php:279 disable-comments.php:295 disable-comments.php:297
106
- #: disable-comments.php:325
107
- msgid "Warning"
108
- msgstr "Cảnh báo"
109
-
110
- #: disable-comments.php:281
111
- msgid "On certain post types"
112
- msgstr "Trên một số loại post type"
113
-
114
- #: disable-comments.php:286
115
- msgid ""
116
- "Disabling comments will also disable trackbacks and pingbacks. All comment-"
117
- "related fields will also be hidden from the edit/quick-edit screens of the "
118
- "affected posts. These settings cannot be overridden for individual posts."
119
- msgstr ""
120
- "Vô hiệu hóa ý kiến cũng vô hiệu hóa trackbacks và pingbacks. Tất cả các lĩnh "
121
- "vực liên quan đến bình luận cũng sẽ được ẩn từ màn hình chỉnh sửa/nhanh "
122
- "chóng-chỉnh sửa các bài viết bị ảnh hưởng. Các thiết đặt này không thể được "
123
- "ghi đè cho bài đăng riêng lẻ."
124
-
125
- #: disable-comments.php:289
126
- msgid "Other options"
127
- msgstr "Lựa chọn khác"
128
-
129
- #: disable-comments.php:294
130
- msgid "Use persistent mode"
131
- msgstr "Sử dụng chế độ liên tục"
132
-
133
- #: disable-comments.php:295
134
- msgid ""
135
- "%s: <strong>This will make persistent changes to your database &mdash; "
136
- "comments will remain closed even if you later disable the plugin!</strong> "
137
- "You should not use it if you only want to disable comments temporarily. "
138
- "Please <a href=\"%s\" target=\"_blank\">read the FAQ</a> before selecting "
139
- "this option."
140
- msgstr ""
141
- "%s: Điều này sẽ làm thay đổi liên tục cơ sở dữ liệu của bạn & mdash; ý kiến "
142
- "sẽ vẫn đóng ngay cả khi bạn vô hiệu hóa plugin! Bạn không nên sử dụng nếu "
143
- "bạn chỉ muốn vô hiệu hóa ý kiến tạm thời. Xin vui lòng <a href =\"%s\" "
144
- "target=\"_blank\"> đọc FAQ </a> trước khi chọn tùy chọn này."
145
-
146
- #: disable-comments.php:297
147
- msgid ""
148
- "%s: Entering persistent mode on large multi-site networks requires a large "
149
- "number of database queries and can take a while. Use with caution!"
150
- msgstr ""
151
- "%s: Nhập chế độ liên tục trên nhiều trang web lớn đòi hỏi một số lượng truy "
152
- "vấn cơ sở dữ liệu lớn và có thể mất một lúc. Sử dụng thận trọng!"
153
-
154
- #: disable-comments.php:300
155
- msgid ""
156
- "Persistent mode has been manually disabled. See the <a href=\"%s\" target="
157
- "\"_blank\">FAQ</a> for more information."
158
- msgstr ""
159
- "Chế độ liên tục đã bị vô hiệu theo cách thủ công. Xem các <a href = \"%s\" "
160
- "target=\"_blank\"> FAQ </a> cho biết thêm thông tin."
161
-
162
- #: disable-comments.php:305
163
- msgid "Save Changes"
164
- msgstr "Lưu thay đổi"
165
-
166
- #: disable-comments.php:325
167
- msgid ""
168
- "%s: Selecting this option will make persistent changes to your database. Are "
169
- "you sure you want to enable it?"
170
- msgstr ""
171
- "%s: Chọn tùy chọn này sẽ thực hiện liên tục thay đổi cơ sở dữ liệu của bạn. "
172
- "Bạn có chắc bạn muốn bật nó?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/disable-comments-vi_VI.mo DELETED
Binary file
languages/disable-comments-vi_VI.po DELETED
@@ -1,172 +0,0 @@
1
- # Copyright (C) 2013 Disable Comments
2
- # This file is distributed under the same license as the Disable Comments package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Disable Comments 0.9.1\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/disable-comments\n"
7
- "POT-Creation-Date: 2013-06-19 05:01:50+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2014-01-13 23:54+0700\n"
12
- "Last-Translator: Vietnamese WPress-based blog | http://rongsay.info "
13
- "<me@rongsay.info>\n"
14
- "Language-Team: Vietnamese WPress-based blog | http://rongsay.info "
15
- "<me@rongsay.info>\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
-
18
- #: disable-comments.php:38
19
- msgid "Disable Comments requires WordPress version %s or greater."
20
- msgstr "Vô hiệu hóa ý kiến yêu cầu phiên bản WordPress %s hoặc cao hơn."
21
-
22
- #: disable-comments.php:169
23
- msgid ""
24
- "Note: The <em>Disable Comments</em> plugin is currently active, and comments "
25
- "are completely disabled on: %s. Many of the settings below will not be "
26
- "applicable for those post types."
27
- msgstr ""
28
- "Lưu ý: <em>Vô hiệu hóa ý kiến</em> hiện đang hoạt động, và ý kiến bị vô hiệu "
29
- "hoá hoàn toàn ở các: %s. Nhiều trong số các cài đặt dưới đây sẽ không được "
30
- "áp dụng cho những loại post type đó."
31
-
32
- #: disable-comments.php:169
33
- msgid ", "
34
- msgstr ", "
35
-
36
- #: disable-comments.php:183
37
- msgid ""
38
- "The <em>Disable Comments</em> plugin is active, but isn't configured to do "
39
- "anything yet. Visit the <a href=\"%s\">configuration page</a> to choose "
40
- "which post types to disable comments on."
41
- msgstr ""
42
- "<Em> vô hiệu hóa ý kiến </em> hoạt động, nhưng không cấu hình để làm bất cứ "
43
- "điều gì được nêu ra. Truy cập vào các <a href=\"%s\"> Trang cấu hình </a> "
44
- "chọn các post type cần vô hiệu hóa ý kiến."
45
-
46
- #: disable-comments.php:225 disable-comments.php:269
47
- msgid "Disable Comments"
48
- msgstr "Vô hiệu hóa ý kiến"
49
-
50
- #: disable-comments.php:262
51
- msgid ""
52
- "If a caching/performance plugin is active, please invalidate its cache to "
53
- "ensure that changes are reflected immediately."
54
- msgstr ""
55
- "Nếu một plugin bộ nhớ đệm (cache) hoạt động, xin vui lòng tắt bộ nhớ cache "
56
- "của nó để đảm bảo rằng những thay đổi được thi hành ngay lập tức."
57
-
58
- #: disable-comments.php:263
59
- msgid ""
60
- "Options updated. Changes to the Admin Menu and Admin Bar will not appear "
61
- "until you leave or reload this page."
62
- msgstr ""
63
- "Tùy chọn Cập Nhật. Thay đổi trình đơn Admin và Admin Bar sẽ không xuất hiện "
64
- "cho đến khi bạn nạp lại trang này."
65
-
66
- #: disable-comments.php:272
67
- msgid ""
68
- "<em>Disable Comments</em> is Network Activated. The settings below will "
69
- "affect <strong>all sites</strong> in this network."
70
- msgstr ""
71
- "<em> vô hiệu hóa ý kiến </em> kích hoạt trong toàn Network. Thiết đặt dưới "
72
- "đây sẽ ảnh hưởng đến Tất cả trang web trong mạng này."
73
-
74
- #: disable-comments.php:274
75
- msgid ""
76
- "It seems that a caching/performance plugin is active on this site. Please "
77
- "manually invalidate that plugin's cache after making any changes to the "
78
- "settings below."
79
- msgstr ""
80
- "Có vẻ như một plugin bộ nhớ đệm/hiệu suất đang hoạt động trên trang web này. "
81
- "Tắt bộ nhớ cache plugin đó sau khi thực hiện bất kỳ thay đổi các thiết đặt "
82
- "dưới đây."
83
-
84
- #: disable-comments.php:278
85
- msgid "Everywhere"
86
- msgstr "Ở mọi nơi"
87
-
88
- #: disable-comments.php:278
89
- msgid "Disable all comment-related controls and settings in WordPress."
90
- msgstr ""
91
- "Vô hiệu hoá tất cả các liên quan đến bình luận điều khiển và thiết lập trong "
92
- "WordPress."
93
-
94
- #: disable-comments.php:279
95
- msgid ""
96
- "%s: This option is global and will affect your entire site. Use it only if "
97
- "you want to disable comments <em>everywhere</em>. A complete description of "
98
- "what this option does is <a href=\"%s\" target=\"_blank\">available here</a>."
99
- msgstr ""
100
- "%s: Tùy chọn này là toàn cầu và sẽ ảnh hưởng đến toàn bộ trang web của bạn. "
101
- "Sử dụng nó chỉ nếu bạn muốn vô hiệu hóa ý kiến <em> ở khắp mọi nơi </em>. "
102
- "Một mô tả đầy đủ về những gì tùy chọn này hiện <a href =\"%s\" target="
103
- "\"_blank\"> có sẵn ở đây </a>."
104
-
105
- #: disable-comments.php:279 disable-comments.php:295 disable-comments.php:297
106
- #: disable-comments.php:325
107
- msgid "Warning"
108
- msgstr "Cảnh báo"
109
-
110
- #: disable-comments.php:281
111
- msgid "On certain post types"
112
- msgstr "Trên một số loại post type"
113
-
114
- #: disable-comments.php:286
115
- msgid ""
116
- "Disabling comments will also disable trackbacks and pingbacks. All comment-"
117
- "related fields will also be hidden from the edit/quick-edit screens of the "
118
- "affected posts. These settings cannot be overridden for individual posts."
119
- msgstr ""
120
- "Vô hiệu hóa ý kiến cũng vô hiệu hóa trackbacks và pingbacks. Tất cả các lĩnh "
121
- "vực liên quan đến bình luận cũng sẽ được ẩn từ màn hình chỉnh sửa/nhanh "
122
- "chóng-chỉnh sửa các bài viết bị ảnh hưởng. Các thiết đặt này không thể được "
123
- "ghi đè cho bài đăng riêng lẻ."
124
-
125
- #: disable-comments.php:289
126
- msgid "Other options"
127
- msgstr "Lựa chọn khác"
128
-
129
- #: disable-comments.php:294
130
- msgid "Use persistent mode"
131
- msgstr "Sử dụng chế độ liên tục"
132
-
133
- #: disable-comments.php:295
134
- msgid ""
135
- "%s: <strong>This will make persistent changes to your database &mdash; "
136
- "comments will remain closed even if you later disable the plugin!</strong> "
137
- "You should not use it if you only want to disable comments temporarily. "
138
- "Please <a href=\"%s\" target=\"_blank\">read the FAQ</a> before selecting "
139
- "this option."
140
- msgstr ""
141
- "%s: Điều này sẽ làm thay đổi liên tục cơ sở dữ liệu của bạn & mdash; ý kiến "
142
- "sẽ vẫn đóng ngay cả khi bạn vô hiệu hóa plugin! Bạn không nên sử dụng nếu "
143
- "bạn chỉ muốn vô hiệu hóa ý kiến tạm thời. Xin vui lòng <a href =\"%s\" "
144
- "target=\"_blank\"> đọc FAQ </a> trước khi chọn tùy chọn này."
145
-
146
- #: disable-comments.php:297
147
- msgid ""
148
- "%s: Entering persistent mode on large multi-site networks requires a large "
149
- "number of database queries and can take a while. Use with caution!"
150
- msgstr ""
151
- "%s: Nhập chế độ liên tục trên nhiều trang web lớn đòi hỏi một số lượng truy "
152
- "vấn cơ sở dữ liệu lớn và có thể mất một lúc. Sử dụng thận trọng!"
153
-
154
- #: disable-comments.php:300
155
- msgid ""
156
- "Persistent mode has been manually disabled. See the <a href=\"%s\" target="
157
- "\"_blank\">FAQ</a> for more information."
158
- msgstr ""
159
- "Chế độ liên tục đã bị vô hiệu theo cách thủ công. Xem các <a href = \"%s\" "
160
- "target=\"_blank\"> FAQ </a> cho biết thêm thông tin."
161
-
162
- #: disable-comments.php:305
163
- msgid "Save Changes"
164
- msgstr "Lưu thay đổi"
165
-
166
- #: disable-comments.php:325
167
- msgid ""
168
- "%s: Selecting this option will make persistent changes to your database. Are "
169
- "you sure you want to enable it?"
170
- msgstr ""
171
- "%s: Chọn tùy chọn này sẽ thực hiện liên tục thay đổi cơ sở dữ liệu của bạn. "
172
- "Bạn có chắc bạn muốn bật nó?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/disable-comments-zh_TW.mo DELETED
Binary file
languages/disable-comments-zh_TW.po DELETED
@@ -1,188 +0,0 @@
1
- # Copyright (C) 2015 Disable Comments
2
- # This file is distributed under the same license as the Disable Comments package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Disable Comments 1.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/disable-comments\n"
7
- "POT-Creation-Date: 2015-08-24 16:23+0800\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2015-08-24 16:45+0800\n"
12
- "Language-Team: \n"
13
- "X-Generator: Poedit 1.8.4\n"
14
- "Last-Translator: Pseric <pserics@gmail.com>\n"
15
- "Plural-Forms: nplurals=1; plural=0;\n"
16
- "Language: zh_TW\n"
17
-
18
- #: disable-comments.php:38
19
- msgid "Disable Comments requires WordPress version %s or greater."
20
- msgstr "Disable Comments 只能在 WordPress %s 版或更新版本使用。"
21
-
22
- #: disable-comments.php:210
23
- msgid ""
24
- "Note: The <em>Disable Comments</em> plugin is currently active, and comments "
25
- "are completely disabled on: %s. Many of the settings below will not be "
26
- "applicable for those post types."
27
- msgstr ""
28
- "注意:<em>Disable Comments</em> 外掛目前啟用,迴響會在 %s 完全停用。下方的諸"
29
- "多設定將不適用於那些文章類型。"
30
-
31
- #: disable-comments.php:210
32
- msgid ", "
33
- msgstr ", "
34
-
35
- #: disable-comments.php:230
36
- msgid ""
37
- "The <em>Disable Comments</em> plugin is active, but isn't configured to do "
38
- "anything yet. Visit the <a href=\"%s\">configuration page</a> to choose "
39
- "which post types to disable comments on."
40
- msgstr ""
41
- "<em>Disable Comments</em> 外掛目前啟用,但還沒做任何的設定。前往<a href=\"%s"
42
- "\">設定頁面</a>來選擇要在那些文章類型停用迴響。"
43
-
44
- #: disable-comments.php:237
45
- msgid "Comments are closed."
46
- msgstr "迴響目前關閉。"
47
-
48
- #: disable-comments.php:290
49
- msgid "Settings"
50
- msgstr "設定"
51
-
52
- #. Plugin Name of the plugin/theme
53
- #: disable-comments.php:298 disable-comments.php:350
54
- msgid "Disable Comments"
55
- msgstr "Disable Comments"
56
-
57
- #: disable-comments.php:343
58
- msgid ""
59
- "If a caching/performance plugin is active, please invalidate its cache to "
60
- "ensure that changes are reflected immediately."
61
- msgstr "如果外取或效能外掛啟用,請讓快取失效,以確保變更會立即反映。"
62
-
63
- #: disable-comments.php:344
64
- msgid ""
65
- "Options updated. Changes to the Admin Menu and Admin Bar will not appear "
66
- "until you leave or reload this page."
67
- msgstr ""
68
- "選項已更新。管理員選單和管理員工具列的變更不會出現,直到你離開或重新整理此頁"
69
- "面。"
70
-
71
- #: disable-comments.php:353
72
- msgid ""
73
- "<em>Disable Comments</em> is Network Activated. The settings below will "
74
- "affect <strong>all sites</strong> in this network."
75
- msgstr ""
76
- "<em>Disable Comments</em> 已在網誌網路啟用。以下的設定將會影響此網誌網路內的"
77
- "<strong>所有網站</strong>。"
78
-
79
- #: disable-comments.php:355
80
- msgid ""
81
- "It seems that a caching/performance plugin is active on this site. Please "
82
- "manually invalidate that plugin's cache after making any changes to the "
83
- "settings below."
84
- msgstr ""
85
- "看來有快取或效能外掛正在此網站上啟用。在變更以下的任何設定後,請手動清除外掛"
86
- "快取。"
87
-
88
- #: disable-comments.php:359
89
- msgid "Everywhere"
90
- msgstr "全部"
91
-
92
- #: disable-comments.php:359
93
- msgid "Disable all comment-related controls and settings in WordPress."
94
- msgstr "在 WordPress 裡停用所有迴響相關控制及設定。"
95
-
96
- #: disable-comments.php:360
97
- msgid ""
98
- "%s: This option is global and will affect your entire site. Use it only if "
99
- "you want to disable comments <em>everywhere</em>. A complete description of "
100
- "what this option does is <a href=\"%s\" target=\"_blank\">available here</a>."
101
- msgstr ""
102
- "%s: 這個選像是全域的,會影響你的整個網站。只有當你想<em>完整</em>停用迴響功能"
103
- "時才使用它。一個關於此功能的完整介紹可以在<a href=\"%s\" target=\"_blank\">這"
104
- "裡</a>找到。"
105
-
106
- #: disable-comments.php:360 disable-comments.php:380 disable-comments.php:382
107
- #: disable-comments.php:409
108
- msgid "Warning"
109
- msgstr "警告"
110
-
111
- #: disable-comments.php:362
112
- msgid "On certain post types"
113
- msgstr "在某些文章類型"
114
-
115
- #: disable-comments.php:368
116
- msgid ""
117
- "Only the built-in post types appear above. If you want to disable comments "
118
- "on other custom post types on the entire network, you can supply a comma-"
119
- "separated list of post types below (use the slug that identifies the post "
120
- "type)."
121
- msgstr ""
122
- "只有內建的文章類型會顯示於上方。如果你想在其他自訂文章類型停用迴響,你可以在"
123
- "下方提供類型列表,並以逗號分隔(使用文章類型的名稱)。"
124
-
125
- #: disable-comments.php:371
126
- msgid ""
127
- "Disabling comments will also disable trackbacks and pingbacks. All comment-"
128
- "related fields will also be hidden from the edit/quick-edit screens of the "
129
- "affected posts. These settings cannot be overridden for individual posts."
130
- msgstr ""
131
- "停用迴響也將停用通告和引用通知。所有迴響相關欄位也將從編輯/快速編輯畫面隱"
132
- "藏。這些設定無法被個別文章設定覆寫。"
133
-
134
- #: disable-comments.php:374
135
- msgid "Other options"
136
- msgstr "其他選項"
137
-
138
- #: disable-comments.php:379
139
- msgid "Use persistent mode"
140
- msgstr "使用永久模式"
141
-
142
- #: disable-comments.php:380
143
- msgid ""
144
- "%s: <strong>This will make persistent changes to your database &mdash; "
145
- "comments will remain closed even if you later disable the plugin!</strong> "
146
- "You should not use it if you only want to disable comments temporarily. "
147
- "Please <a href=\"%s\" target=\"_blank\">read the FAQ</a> before selecting "
148
- "this option."
149
- msgstr ""
150
- "%s: <strong>這會永久變更你的資料庫 &mdash; 迴響並保持關閉,即便你之後停用外"
151
- "掛!</strong> 如果你只想暫時停用迴響,你不應該使用這個功能。在選擇此選項前,"
152
- "請先<a href=\"%s\" target=\"_blank\">閱讀問與答</a>。"
153
-
154
- #: disable-comments.php:382
155
- msgid ""
156
- "%s: Entering persistent mode on large multi-site networks requires a large "
157
- "number of database queries and can take a while. Use with caution!"
158
- msgstr ""
159
- "%s: 在大型網站上進入永久模式會需要大量的資料庫查詢,且可能需要一段時間。請謹"
160
- "慎使用!"
161
-
162
- #: disable-comments.php:388
163
- msgid "Save Changes"
164
- msgstr "儲存變更"
165
-
166
- #: disable-comments.php:409
167
- msgid ""
168
- "%s: Selecting this option will make persistent changes to your database. Are "
169
- "you sure you want to enable it?"
170
- msgstr "%s: 選擇這個選項將會永久變更你的資料庫。你確定要啟用它嗎?"
171
-
172
- #. Plugin URI of the plugin/theme
173
- msgid "http://wordpress.org/extend/plugins/disable-comments/"
174
- msgstr "http://wordpress.org/extend/plugins/disable-comments/"
175
-
176
- #. Description of the plugin/theme
177
- msgid ""
178
- "Allows administrators to globally disable comments on their site. Comments "
179
- "can be disabled according to post type."
180
- msgstr "允許管理員在他們網站停用迴響功能。迴響可以依據特定文章類型停用。"
181
-
182
- #. Author of the plugin/theme
183
- msgid "Samir Shah"
184
- msgstr "Samir Shah"
185
-
186
- #. Author URI of the plugin/theme
187
- msgid "http://rayofsolaris.net/"
188
- msgstr "http://rayofsolaris.net/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/disable-comments.pot CHANGED
@@ -1,431 +0,0 @@
1
- # Copyright (C) 2021 WPDeveloper
2
- # This file is distributed under the GPL-3.0+.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Disable Comments 2.1.0\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/disable-comments\n"
7
- "POT-Creation-Date: 2021-02-08 05:33:56+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
12
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
14
- "Language: en\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Poedit-Country: United States\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: "
19
- "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
20
- "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
21
- "X-Poedit-Basepath: ../\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-Bookmarks: \n"
24
- "X-Textdomain-Support: yes\n"
25
- "X-Generator: grunt-wp-i18n 1.0.3\n"
26
-
27
- #: disable-comments.php:121
28
- msgid "Want to help make Disable Comments even better?"
29
- msgstr ""
30
-
31
- #: disable-comments.php:122
32
- msgid ""
33
- "We collect non-sensitive diagnostic data and plugin usage information. Your "
34
- "site URL, WordPress & PHP version, plugins & themes and email address to "
35
- "send you the discount coupon. This data lets us make sure this plugin "
36
- "always stays compatible with the most popular plugins and themes. No spam, "
37
- "I promise."
38
- msgstr ""
39
-
40
- #: disable-comments.php:134
41
- #. translators: %s: WordPress version no.
42
- msgid "Disable Comments requires WordPress version %s or greater."
43
- msgstr ""
44
-
45
- #: disable-comments.php:379 disable-comments.php:523 disable-comments.php:530
46
- msgid "Comments are closed."
47
- msgstr ""
48
-
49
- #: disable-comments.php:482
50
- #. translators: %s: disabled post types.
51
- msgid ""
52
- "Note: The <em>Disable Comments</em> plugin is currently active, and "
53
- "comments are completely disabled on: %s. Many of the settings below will "
54
- "not be applicable for those post types."
55
- msgstr ""
56
-
57
- #: disable-comments.php:482
58
- msgid ", "
59
- msgstr ""
60
-
61
- #: disable-comments.php:514
62
- #. translators: %s: URL to Disabled Comment settings page.
63
- msgid ""
64
- "The <strong>Disable Comments</strong> plugin is active, but isn't "
65
- "configured to do anything yet. Visit the <a href=\"%s\">configuration "
66
- "page</a> to choose which post types to disable comments on."
67
- msgstr ""
68
-
69
- #: disable-comments.php:603 views/partials/_disable.php:3
70
- msgid "Settings"
71
- msgstr ""
72
-
73
- #: disable-comments.php:604
74
- msgid "Tools"
75
- msgstr ""
76
-
77
- #: disable-comments.php:623 views/partials/_delete.php:54
78
- msgid "Delete Comments"
79
- msgstr ""
80
-
81
- #: disable-comments.php:682
82
- msgid "Default (no type)"
83
- msgstr ""
84
-
85
- #: disable-comments.php:782
86
- msgid "Saved"
87
- msgstr ""
88
-
89
- #: disable-comments.php:847 disable-comments.php:881 disable-comments.php:904
90
- msgid "All comments has been deleted"
91
- msgstr ""
92
-
93
- #: disable-comments.php:849 disable-comments.php:853
94
- msgid "Internal error occured. Please try again later."
95
- msgstr ""
96
-
97
- #: includes/class-plugin-usage-tracker.php:378
98
- msgid ""
99
- "We can't detect any plugin information. This is most probably because you "
100
- "have not included the code in the plugin main file."
101
- msgstr ""
102
-
103
- #: includes/class-plugin-usage-tracker.php:651
104
- msgid "What we collect."
105
- msgstr ""
106
-
107
- #: includes/class-plugin-usage-tracker.php:652
108
- msgid "Sure, I'd like to help"
109
- msgstr ""
110
-
111
- #: includes/class-plugin-usage-tracker.php:653
112
- msgid "No Thanks."
113
- msgstr ""
114
-
115
- #: includes/class-plugin-usage-tracker.php:746
116
- msgid "Sorry to see you go"
117
- msgstr ""
118
-
119
- #: includes/class-plugin-usage-tracker.php:747
120
- msgid ""
121
- "Before you deactivate the plugin, would you quickly give us your reason for "
122
- "doing so?"
123
- msgstr ""
124
-
125
- #: includes/class-plugin-usage-tracker.php:750
126
- msgid "I no longer need the plugin"
127
- msgstr ""
128
-
129
- #: includes/class-plugin-usage-tracker.php:752
130
- msgid "I found a better plugin"
131
- msgstr ""
132
-
133
- #: includes/class-plugin-usage-tracker.php:753
134
- msgid "Please share which plugin"
135
- msgstr ""
136
-
137
- #: includes/class-plugin-usage-tracker.php:755
138
- msgid "I couldn't get the plugin to work"
139
- msgstr ""
140
-
141
- #: includes/class-plugin-usage-tracker.php:756
142
- msgid "It's a temporary deactivation"
143
- msgstr ""
144
-
145
- #: includes/class-plugin-usage-tracker.php:758
146
- msgid "Other"
147
- msgstr ""
148
-
149
- #: includes/class-plugin-usage-tracker.php:759
150
- msgid "Please share the reason"
151
- msgstr ""
152
-
153
- #: includes/class-plugin-usage-tracker.php:801
154
- msgid "Submitting form"
155
- msgstr ""
156
-
157
- #: includes/class-plugin-usage-tracker.php:859
158
- msgid "Submit and Deactivate"
159
- msgstr ""
160
-
161
- #: includes/class-plugin-usage-tracker.php:859
162
- msgid "Just Deactivate"
163
- msgstr ""
164
-
165
- #: includes/cli.php:122
166
- msgid "Comments is disabled everywhere. "
167
- msgstr ""
168
-
169
- #: includes/cli.php:128 includes/cli.php:132
170
- #. translators: %s: post types to be disabled
171
- msgid "Comments disabled for %s. "
172
- msgstr ""
173
-
174
- #: includes/cli.php:137
175
- #. translators: %s: post types to be enabled
176
- msgid "Comments enabled for %s. "
177
- msgstr ""
178
-
179
- #: includes/cli.php:148
180
- #. translators: %s: post types to be disabled in network
181
- msgid "Custom post types: %s. "
182
- msgstr ""
183
-
184
- #: includes/cli.php:153
185
- msgid "Disable Comments via XML-RPC. "
186
- msgstr ""
187
-
188
- #: includes/cli.php:157
189
- msgid "Disable Comments via REST API. "
190
- msgstr ""
191
-
192
- #: views/partials/_delete.php:6 views/partials/_disable.php:19
193
- #: views/partials/_disable.php:25 views/partials/_disable.php:56
194
- msgid "Note:"
195
- msgstr ""
196
-
197
- #: views/partials/_delete.php:6
198
- msgid ""
199
- "These settings will permanently delete comments for your entire website, or "
200
- "for specific posts and comment types."
201
- msgstr ""
202
-
203
- #: views/partials/_delete.php:9 views/partials/_disable.php:32
204
- msgid "Everywhere:"
205
- msgstr ""
206
-
207
- #: views/partials/_delete.php:9
208
- msgid "Permanently delete all comments on your WordPress website"
209
- msgstr ""
210
-
211
- #: views/partials/_delete.php:10 views/partials/_delete.php:33
212
- #: views/partials/_delete.php:46 views/partials/_disable.php:33
213
- msgid "Warnings:"
214
- msgstr ""
215
-
216
- #: views/partials/_delete.php:10
217
- msgid "This will permanently delete comments everywhere on your website."
218
- msgstr ""
219
-
220
- #: views/partials/_delete.php:14
221
- msgid "On Certain Post Types:"
222
- msgstr ""
223
-
224
- #: views/partials/_delete.php:29 views/partials/_disable.php:52
225
- msgid ""
226
- "Only the built-in post types appear above. If you want to disable comments "
227
- "on other custom post types on the entire network, you can supply a "
228
- "comma-separated list of post types below (use the slug that identifies the "
229
- "post type)."
230
- msgstr ""
231
-
232
- #: views/partials/_delete.php:30 views/partials/_disable.php:53
233
- msgid "Custom post types:"
234
- msgstr ""
235
-
236
- #: views/partials/_delete.php:33
237
- msgid ""
238
- "This will remove existing comment entries for the selected post type(s) in "
239
- "the database and cannot be reverted without a database backups."
240
- msgstr ""
241
-
242
- #: views/partials/_delete.php:37
243
- msgid "Delete Certain Comment Types:"
244
- msgstr ""
245
-
246
- #: views/partials/_delete.php:46
247
- msgid ""
248
- "Deleting comments by comment type will remove existing comment entries of "
249
- "the selected comment type(s) in the database and cannot be reverted without "
250
- "a database backup."
251
- msgstr ""
252
-
253
- #: views/partials/_delete.php:48
254
- msgid "Total Comments:"
255
- msgstr ""
256
-
257
- #: views/partials/_delete.php:192
258
- msgid "No comments are available for deletion."
259
- msgstr ""
260
-
261
- #: views/partials/_disable.php:4
262
- msgid ""
263
- "Configure the settings below to disable comments globally or on specific "
264
- "types of posts."
265
- msgstr ""
266
-
267
- #: views/partials/_disable.php:14 views/partials/_disable.php:68
268
- #: views/partials/_disable.php:78
269
- msgid "On"
270
- msgstr ""
271
-
272
- #: views/partials/_disable.php:15 views/partials/_disable.php:69
273
- #: views/partials/_disable.php:79
274
- msgid "Off"
275
- msgstr ""
276
-
277
- #: views/partials/_disable.php:19
278
- msgid ""
279
- "If you enable site wise settings, You need to configure your Disable "
280
- "Comments settings individually on every website in the network."
281
- msgstr ""
282
-
283
- #: views/partials/_disable.php:25
284
- msgid ""
285
- "This site will be controlled by the network admin until you click the "
286
- "\"Save Changes\" button."
287
- msgstr ""
288
-
289
- #: views/partials/_disable.php:32
290
- msgid "Disable comments globally on your entire website"
291
- msgstr ""
292
-
293
- #: views/partials/_disable.php:33
294
- msgid ""
295
- "This will disable comments from every page and post on your website. Use "
296
- "this setting if you do not want to show comments anywhere."
297
- msgstr ""
298
-
299
- #: views/partials/_disable.php:37
300
- msgid "On Specific Post Types:"
301
- msgstr ""
302
-
303
- #: views/partials/_disable.php:56
304
- msgid ""
305
- "Disabling comments will also disable trackbacks and pingbacks. All "
306
- "comment-related fields will also be hidden from the edit/quick-edit screens "
307
- "of the affected posts. These settings cannot be overridden for individual "
308
- "posts. Comments will be visible on all other post types."
309
- msgstr ""
310
-
311
- #: views/partials/_disable.php:60
312
- msgid "Disable Comments With API"
313
- msgstr ""
314
-
315
- #: views/partials/_disable.php:61
316
- msgid ""
317
- "You can disable comments made on your website using WordPress "
318
- "specifications."
319
- msgstr ""
320
-
321
- #: views/partials/_disable.php:71
322
- msgid "Disable Comments via XML-RPC"
323
- msgstr ""
324
-
325
- #: views/partials/_disable.php:80
326
- msgid "Disable Comments via REST API"
327
- msgstr ""
328
-
329
- #: views/partials/_disable.php:84
330
- msgid ""
331
- "Turning on these settings will disable any comments made on your website "
332
- "via XML-RPC or REST API specifications."
333
- msgstr ""
334
-
335
- #: views/partials/_disable.php:88
336
- msgid "Save Changes"
337
- msgstr ""
338
-
339
- #: views/partials/_menu.php:3
340
- msgid "About Us"
341
- msgstr ""
342
-
343
- #: views/partials/_menu.php:4
344
- msgid "All Plugins"
345
- msgstr ""
346
-
347
- #: views/partials/_menu.php:5
348
- msgid "Support Forum"
349
- msgstr ""
350
-
351
- #: views/partials/_menu.php:6
352
- msgid "Docs"
353
- msgstr ""
354
-
355
- #: views/partials/_menu.php:7
356
- msgid "Terms Of Service"
357
- msgstr ""
358
-
359
- #: views/partials/_menu.php:8
360
- msgid "Privacy"
361
- msgstr ""
362
-
363
- #: views/partials/_sidebar.php:3
364
- msgid "Read Our Tutorials"
365
- msgstr ""
366
-
367
- #: views/partials/_sidebar.php:26
368
- msgid "What Does This Disable Comments Plugin Do"
369
- msgstr ""
370
-
371
- #: views/partials/_sidebar.php:49
372
- msgid "How To Use Disable Comments Plugin With WP-CLI"
373
- msgstr ""
374
-
375
- #: views/partials/_sidebar.php:72
376
- msgid "How to Disable Comments on Specific Types Of Posts"
377
- msgstr ""
378
-
379
- #: views/partials/_sidebar.php:95
380
- msgid "Disable Comments For Some Particular Post"
381
- msgstr ""
382
-
383
- #: views/partials/_sidebar.php:118
384
- msgid "Disable Comment For WordPress Media Files"
385
- msgstr ""
386
-
387
- #: views/partials/_sidebar.php:128
388
- msgid "Disable Comments For WordPress Pages"
389
- msgstr ""
390
-
391
- #: views/settings.php:6
392
- msgid "Version"
393
- msgstr ""
394
-
395
- #. Plugin Name of the plugin/theme
396
- msgid "Disable Comments"
397
- msgstr ""
398
-
399
- #. Plugin URI of the plugin/theme
400
- msgid "https://wordpress.org/plugins/disable-comments/"
401
- msgstr ""
402
-
403
- #. Description of the plugin/theme
404
- msgid ""
405
- "Allows administrators to globally disable comments on their site. Comments "
406
- "can be disabled according to post type. You could bulk delete comments "
407
- "using Tools."
408
- msgstr ""
409
-
410
- #. Author of the plugin/theme
411
- msgid "WPDeveloper"
412
- msgstr ""
413
-
414
- #. Author URI of the plugin/theme
415
- msgid "https://wpdeveloper.net"
416
- msgstr ""
417
-
418
- #: disable-comments.php:613
419
- msgctxt "settings menu title"
420
- msgid "Disable Comments"
421
- msgstr ""
422
-
423
- #: views/settings.php:9
424
- msgctxt "Tab Name"
425
- msgid "Disable Comments"
426
- msgstr ""
427
-
428
- #: views/settings.php:12
429
- msgctxt "Tab Name"
430
- msgid "Delete Comments"
431
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === Disable Comments - Remove Comments & Protect From Spam ===
2
  Contributors: Asif2BD, priyomukul, wpdevteam, re_enter_rupok, tusharimran, alimuzzamanalim, solarissmoke, garrett-eclipse
3
  Donate link: https://wpdeveloper.net/
4
- Tags: comments, delete comments, disable, disable comments, stop spam, remove comments, anti spam, disable xml-rpc, hide comment, XML-RPC, REST-API, WP-CLI
5
  Requires at least: 5.0
6
- Tested up to: 5.6
7
  Requires PHP: 5.6
8
- Stable tag: 2.1.0
9
  License: GPL-3.0-or-later
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -13,6 +13,8 @@ Allows administrators to globally disable comments on their site. Comments can b
13
 
14
  == Description ==
15
 
 
 
16
  Instantly allow or disallow comments from any post type in WordPress (Pages, Posts or Media) to stop the spammers and gain complete control over your full website. WP-CLI Suppprt & Control comments via XML-RPC and REST-API too!
17
 
18
  [More About Plugin](https://wpdeveloper.net/plugins/disable-comments/) ◼️ [Documentation](https://wpdeveloper.net/docs-category/disable-comments/) ◼️ [Support Forum](https://wordpress.org/support/plugin/disable-comments/)
@@ -38,7 +40,9 @@ Have multiple websites? Get rid of irrelevant comments on the entire network usi
38
  * All comment RSS/Atom feeds are disabled (and requests for these will be redirected to the parent post);
39
  * The X-Pingback HTTP header is removed from all pages;
40
  * Outgoing pingbacks are disabled.
 
41
  * **[New]** Delete comments by type.
 
42
 
43
  Please delete any existing comments on your site **before applying this setting**, otherwise (depending on your theme) those comments may still be displayed to visitors. You can use the **Delete Comments tool** to delete any existing comments on your site.
44
 
@@ -101,7 +105,7 @@ Consider checking out our other WordPress solutions & boost your WordPress websi
101
 
102
  📄 [EmbedPress](https://wordpress.org/plugins/embedpress/): EmbedPress lets you embed videos, images, posts, audio, maps and upload PDF, DOC, PPT & all other types of content into your WordPress site with one-click and showcase it beautifully for the visitors.
103
 
104
- ☁ [Templately](https://wordpress.org/plugins/templately/): Free templates library for Elementor & Gutenberg along with the cloud collaboration for WordPress.
105
 
106
  📚 [BetterDocs](https://wordpress.org/plugins/betterdocs/): Best Documentation & Knowledge Base Plugin for WordPress reduce manual support tickets & improve user experience.
107
 
@@ -169,6 +173,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
169
  and this project adheres to [Semantic Versioning](http://semver.org/).
170
  This will be maiintained from August 19, 2020 - @asif2bd
171
 
 
 
 
 
 
172
  = [2.1.0] - 2021-02-08 =
173
  * New Feature: Site wise settings in Multisite Network
174
  * Added: Some strings localization
@@ -333,4 +342,4 @@ This will be maiintained from August 19, 2020 - @asif2bd
333
 
334
  == Upgrade Notice ==
335
 
336
- Minor Update: Few minor bug fix and improvement
1
  === Disable Comments - Remove Comments & Protect From Spam ===
2
  Contributors: Asif2BD, priyomukul, wpdevteam, re_enter_rupok, tusharimran, alimuzzamanalim, solarissmoke, garrett-eclipse
3
  Donate link: https://wpdeveloper.net/
4
+ Tags: comments, delete comments, disable comments, spam comment, disable, stop spam, remove comments, anti spam, disable xml-rpc, hide comment, XML-RPC, REST-API, WP-CLI
5
  Requires at least: 5.0
6
+ Tested up to: 5.7
7
  Requires PHP: 5.6
8
+ Stable tag: 2.1.1
9
  License: GPL-3.0-or-later
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
 
13
 
14
  == Description ==
15
 
16
+ = Disable Comments - Remove Comments & Protect From Spam =
17
+
18
  Instantly allow or disallow comments from any post type in WordPress (Pages, Posts or Media) to stop the spammers and gain complete control over your full website. WP-CLI Suppprt & Control comments via XML-RPC and REST-API too!
19
 
20
  [More About Plugin](https://wpdeveloper.net/plugins/disable-comments/) ◼️ [Documentation](https://wpdeveloper.net/docs-category/disable-comments/) ◼️ [Support Forum](https://wordpress.org/support/plugin/disable-comments/)
40
  * All comment RSS/Atom feeds are disabled (and requests for these will be redirected to the parent post);
41
  * The X-Pingback HTTP header is removed from all pages;
42
  * Outgoing pingbacks are disabled.
43
+ * Stop spam comments entirely from the site with one click.
44
  * **[New]** Delete comments by type.
45
+ * **[New]** Disable comments via xml-rpc.
46
 
47
  Please delete any existing comments on your site **before applying this setting**, otherwise (depending on your theme) those comments may still be displayed to visitors. You can use the **Delete Comments tool** to delete any existing comments on your site.
48
 
105
 
106
  📄 [EmbedPress](https://wordpress.org/plugins/embedpress/): EmbedPress lets you embed videos, images, posts, audio, maps and upload PDF, DOC, PPT & all other types of content into your WordPress site with one-click and showcase it beautifully for the visitors.
107
 
108
+ ☁ [Templately](https://wordpress.org/plugins/templately/): 1000+ Free templates library for Elementor & Gutenberg along with the cloud collaboration for WordPress.
109
 
110
  📚 [BetterDocs](https://wordpress.org/plugins/betterdocs/): Best Documentation & Knowledge Base Plugin for WordPress reduce manual support tickets & improve user experience.
111
 
173
  and this project adheres to [Semantic Versioning](http://semver.org/).
174
  This will be maiintained from August 19, 2020 - @asif2bd
175
 
176
+ = [2.1.1] - 2021-04-06 =
177
+ * Improvement: Compatible with WordPress 5.7
178
+ * Few minor bug fix and improvement
179
+
180
+
181
  = [2.1.0] - 2021-02-08 =
182
  * New Feature: Site wise settings in Multisite Network
183
  * Added: Some strings localization
342
 
343
  == Upgrade Notice ==
344
 
345
+ [Minor Update] Few minor bug fix and compatibility with WordPress 5.7