Admin Columns - Version 2.2.1.1

Version Description

  • [Fixed] Fixed issue with Posts 2 Posts (and other third party plugins) columns not being displayed because of hooking into late actions on post pages
  • [Updated] Added russian language, thanks to Arnold Klimenko.
  • [Updated] Updated translations from Transifex
Download this release

Release Info

Developer tschutter
Plugin Icon 128x128 Admin Columns
Version 2.2.1.1
Comparing to
See all releases

Code changes from version 2.2.1 to 2.2.1.1

classes/storage_model/post.php CHANGED
@@ -29,6 +29,9 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
29
  // values
30
  add_action( "manage_{$this->post_type}_posts_custom_column", array( $this, 'manage_value' ), 100, 2 );
31
 
 
 
 
32
  parent::__construct();
33
  }
34
 
@@ -131,12 +134,17 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
131
  return array();
132
  }
133
 
 
 
 
 
 
134
  // Initialize table so it can add actions to manage_{screenid}_columns
135
  _get_list_table( 'WP_Posts_List_Table', array( 'screen' => 'edit-' . $this->key ) );
136
 
137
  // get_column_headers() runs through both the manage_{screenid}_columns
138
  // and manage_{$post_type}_posts_columns filters
139
- $columns = get_column_headers( 'edit-' . $this->key );
140
  $columns = array_filter( $columns );
141
 
142
  return $columns;
29
  // values
30
  add_action( "manage_{$this->post_type}_posts_custom_column", array( $this, 'manage_value' ), 100, 2 );
31
 
32
+ // Re-load the columns after the posts page load actions are performed
33
+ add_action( 'load-edit.php', array( $this, 'set_columns' ), 1000 );
34
+
35
  parent::__construct();
36
  }
37
 
134
  return array();
135
  }
136
 
137
+ // You can use this filter to add thirdparty columns by hooking into this.
138
+ // See classes/third_party.php for an example.
139
+ do_action( "cac/columns/default/posts" );
140
+ do_action( "cac/columns/default/storage_key={$this->key}" );
141
+
142
  // Initialize table so it can add actions to manage_{screenid}_columns
143
  _get_list_table( 'WP_Posts_List_Table', array( 'screen' => 'edit-' . $this->key ) );
144
 
145
  // get_column_headers() runs through both the manage_{screenid}_columns
146
  // and manage_{$post_type}_posts_columns filters
147
+ $columns = apply_filters( 'manage_edit-' . $this->key . '_columns', array() );
148
  $columns = array_filter( $columns );
149
 
150
  return $columns;
codepress-admin-columns.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
 
4
  Plugin Name: Codepress Admin Columns
5
- Version: 2.2.1
6
  Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
7
  Author: Codepress
8
  Author URI: http://www.codepresshq.com
@@ -33,7 +33,7 @@ if ( ! defined( 'ABSPATH' ) ) {
33
  }
34
 
35
  // Plugin information
36
- define( 'CPAC_VERSION', '2.2.1' ); // current plugin version
37
  define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // this is the latest version which requires an upgrade
38
  define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
39
  define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
2
  /*
3
 
4
  Plugin Name: Codepress Admin Columns
5
+ Version: 2.2.1.1
6
  Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
7
  Author: Codepress
8
  Author URI: http://www.codepresshq.com
33
  }
34
 
35
  // Plugin information
36
+ define( 'CPAC_VERSION', '2.2.1.1' ); // current plugin version
37
  define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // this is the latest version which requires an upgrade
38
  define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
39
  define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
languages/cpac-ar.mo CHANGED
Binary file
languages/cpac-ar.po CHANGED
@@ -6,7 +6,7 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-06-17 11:49+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Arabic (http://www.transifex.com/projects/p/admin-columns/"
12
  "language/ar/)\n"
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
+ "PO-Revision-Date: 2014-06-23 11:39+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Arabic (http://www.transifex.com/projects/p/admin-columns/"
12
  "language/ar/)\n"
languages/cpac-da_DK.mo CHANGED
Binary file
languages/cpac-da_DK.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
10
- "PO-Revision-Date: 2014-06-17 11:49+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
  "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/admin-"
13
  "columns/language/da_DK/)\n"
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
10
+ "PO-Revision-Date: 2014-06-23 11:39+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
  "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/admin-"
13
  "columns/language/da_DK/)\n"
languages/cpac-es_ES.mo CHANGED
Binary file
languages/cpac-es_ES.po CHANGED
@@ -6,7 +6,7 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-06-17 11:49+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/es_ES/)\n"
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
+ "PO-Revision-Date: 2014-06-23 11:39+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/es_ES/)\n"
languages/cpac-fr_FR.mo CHANGED
Binary file
languages/cpac-fr_FR.po CHANGED
@@ -8,7 +8,7 @@ msgstr ""
8
  "Project-Id-Version: Admin Columns\n"
9
  "Report-Msgid-Bugs-To: \n"
10
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
11
- "PO-Revision-Date: 2014-06-17 11:49+0100\n"
12
  "Last-Translator: Codepress <info@codepress.nl>\n"
13
  "Language-Team: French (France) (http://www.transifex.com/projects/p/admin-"
14
  "columns/language/fr_FR/)\n"
8
  "Project-Id-Version: Admin Columns\n"
9
  "Report-Msgid-Bugs-To: \n"
10
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
11
+ "PO-Revision-Date: 2014-06-23 11:39+0100\n"
12
  "Last-Translator: Codepress <info@codepress.nl>\n"
13
  "Language-Team: French (France) (http://www.transifex.com/projects/p/admin-"
14
  "columns/language/fr_FR/)\n"
languages/cpac-hu_HU.mo CHANGED
Binary file
languages/cpac-hu_HU.po CHANGED
@@ -6,7 +6,7 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-06-17 11:49+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/"
12
  "admin-columns/language/hu_HU/)\n"
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
+ "PO-Revision-Date: 2014-06-23 11:39+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/"
12
  "admin-columns/language/hu_HU/)\n"
languages/cpac-ja.mo CHANGED
Binary file
languages/cpac-ja.po CHANGED
@@ -6,7 +6,7 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-06-17 11:49+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/ja_JP/)\n"
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
+ "PO-Revision-Date: 2014-06-23 11:39+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/ja_JP/)\n"
languages/cpac-nl_NL.mo CHANGED
Binary file
languages/cpac-nl_NL.po CHANGED
@@ -6,7 +6,7 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-06-17 11:49+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/"
12
  "admin-columns/language/nl_NL/)\n"
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
+ "PO-Revision-Date: 2014-06-23 11:39+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/"
12
  "admin-columns/language/nl_NL/)\n"
languages/cpac-pl_PL.mo CHANGED
Binary file
languages/cpac-pl_PL.po CHANGED
@@ -6,7 +6,7 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-06-17 11:49+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/pl_PL/)\n"
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
+ "PO-Revision-Date: 2014-06-23 11:39+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/pl_PL/)\n"
languages/cpac-ru_RU.mo ADDED
Binary file
languages/cpac-ru_RU.po ADDED
@@ -0,0 +1,1270 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Admin Columns\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2014-05-22 17:03+0100\n"
8
+ "PO-Revision-Date: 2014-06-23 11:48+0100\n"
9
+ "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: Russian (http://www.transifex.com/projects/p/admin-columns/"
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
+ "Language: ru\n"
16
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
17
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18
+ "X-Generator: Poedit 1.6.5\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Poedit-KeywordsList: __;_e\n"
21
+ "X-Poedit-SourceCharset: UTF-8\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Poedit-SearchPath-1: ..\n"
24
+
25
+ #: ../classes/addons.php:117
26
+ msgid "Third party plugin integration"
27
+ msgstr "Интеграция плагина третьей стороной"
28
+
29
+ #: ../classes/addons.php:142
30
+ msgid "Advanced Custom Fields"
31
+ msgstr "Advanced Custom Fields"
32
+
33
+ #: ../classes/addons.php:143
34
+ msgid ""
35
+ "Display and edit Advanced Custom Fields fields in the posts overview in "
36
+ "seconds!"
37
+ msgstr ""
38
+ "Показать и изменить поля Advanced Custom Fields в обзорах записей в "
39
+ "считанные секунды!"
40
+
41
+ #: ../classes/column.php:481
42
+ msgid "Thumbnail"
43
+ msgstr "Миниатюра"
44
+
45
+ #: ../classes/column.php:482
46
+ msgid "Medium"
47
+ msgstr "Средний"
48
+
49
+ #: ../classes/column.php:483
50
+ msgid "Large"
51
+ msgstr "Большой"
52
+
53
+ #: ../classes/column.php:484
54
+ msgid "Full"
55
+ msgstr "Полный"
56
+
57
+ #: ../classes/column.php:751
58
+ msgid "Date Format"
59
+ msgstr "Формат даты"
60
+
61
+ #: ../classes/column.php:752
62
+ msgid "This will determine how the date will be displayed."
63
+ msgstr "Это определяет отображение даты."
64
+
65
+ #: ../classes/column.php:758
66
+ msgid "Example:"
67
+ msgstr "Пример:"
68
+
69
+ #: ../classes/column.php:760
70
+ #, php-format
71
+ msgid ""
72
+ "Leave empty for WordPress date format, change your <a href=\"%s\">default "
73
+ "date format here</a>."
74
+ msgstr ""
75
+ "Оставьте пустым для формата даты WordPress, измените <a href=\"%s\">default "
76
+ "date format here</a>."
77
+
78
+ #: ../classes/column.php:761
79
+ msgid "Documentation on date and time formatting."
80
+ msgstr "Документация по форматированию даты и времени."
81
+
82
+ #: ../classes/column.php:775
83
+ msgid "Excerpt length"
84
+ msgstr "Длина отрывка"
85
+
86
+ #: ../classes/column.php:776
87
+ msgid "Number of words"
88
+ msgstr "Количество слов"
89
+
90
+ #: ../classes/column.php:794
91
+ msgid "Preview size"
92
+ msgstr "Размер просмотра"
93
+
94
+ #: ../classes/column.php:811 ../classes/storage_model.php:505
95
+ msgid "Custom"
96
+ msgstr "Пользовательский"
97
+
98
+ #: ../classes/column.php:814
99
+ msgid "width"
100
+ msgstr "ширина"
101
+
102
+ #: ../classes/column.php:817
103
+ msgid "height"
104
+ msgstr "высота"
105
+
106
+ #: ../classes/column.php:831
107
+ msgid "Before"
108
+ msgstr "Перед"
109
+
110
+ #: ../classes/column.php:831
111
+ msgid "This text will appear before the custom field value."
112
+ msgstr "Этот текст появится перед значением настраиваемого поля."
113
+
114
+ #: ../classes/column.php:837
115
+ msgid "After"
116
+ msgstr "После"
117
+
118
+ #: ../classes/column.php:837
119
+ msgid "This text will appear after the custom field value."
120
+ msgstr "Этот текст появится перед значением настраиваемого поля."
121
+
122
+ #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
123
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
124
+ #: ../classes/column/user/actions.php:66
125
+ msgid "Edit"
126
+ msgstr "Редактировать"
127
+
128
+ #: ../classes/column.php:927 ../classes/column.php:1005
129
+ #: ../classes/column/user/actions.php:74
130
+ msgid "Remove"
131
+ msgstr "Удалить"
132
+
133
+ #: ../classes/column.php:945
134
+ msgid "Type"
135
+ msgstr "Тип"
136
+
137
+ #: ../classes/column.php:945
138
+ msgid "Choose a column type."
139
+ msgstr "Выбрать тип колонки"
140
+
141
+ #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
142
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
143
+ #: ../classes/column/post/ID.php:12
144
+ msgid "ID"
145
+ msgstr "ID"
146
+
147
+ #: ../classes/column.php:955
148
+ msgid "Label"
149
+ msgstr "Метка"
150
+
151
+ #: ../classes/column.php:955
152
+ msgid "This is the name which will appear as the column header."
153
+ msgstr "Это имя, которое будет отображаться в качестве заголовка столбца."
154
+
155
+ #: ../classes/column.php:962 ../classes/column/media/width.php:12
156
+ msgid "Width"
157
+ msgstr "Ширина"
158
+
159
+ #: ../classes/column.php:964 ../classes/column.php:965
160
+ msgid "default"
161
+ msgstr "по умолчанию"
162
+
163
+ #: ../classes/column/acf-placeholder.php:16
164
+ msgid "ACF Field"
165
+ msgstr "Поле ACF"
166
+
167
+ #: ../classes/column/acf-placeholder.php:32
168
+ msgid "This feature is only available in Admin Columns Pro - Developer."
169
+ msgstr "Эта функция доступна только для разработчиков в Admin Columns Pro."
170
+
171
+ #: ../classes/column/acf-placeholder.php:35
172
+ #, php-format
173
+ msgid ""
174
+ "If you have a developer licence please download & install your ACF add-on "
175
+ "from the <a href='%s'>add-ons tab</a>."
176
+ msgstr ""
177
+ "Если Вы имеете лицензию разработчика, пожалуйста, загрузите и утановите Ваш "
178
+ "ACF add-on по ссылке <a href='%s'>add-ons tab</a>."
179
+
180
+ #: ../classes/column/acf-placeholder.php:38
181
+ msgid ""
182
+ "Admin Columns Pro - Developer offers full Advanced Custom Fields "
183
+ "integeration, allowing you to easily display and edit ACF fields from within "
184
+ "your posts overview."
185
+ msgstr ""
186
+ "Admin Columns Pro - Разработчик предлагает полную интеграцию Advanced Custom "
187
+ "Fields, что позволяет легко просматривать и редактировать ACF поля из вашего "
188
+ "обзора сообщений."
189
+
190
+ #: ../classes/column/acf-placeholder.php:40
191
+ msgid "Find out more"
192
+ msgstr "Узнайте больше"
193
+
194
+ #: ../classes/column/comment/actions.php:14
195
+ #: ../classes/column/link/actions.php:14
196
+ #: ../classes/column/media/actions.php:14
197
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
198
+ msgid "Actions"
199
+ msgstr "действия"
200
+
201
+ #: ../classes/column/comment/actions.php:73
202
+ #: ../classes/column/comment/actions.php:78
203
+ msgid "Unapprove"
204
+ msgstr "Отклонить"
205
+
206
+ #: ../classes/column/comment/actions.php:75
207
+ #: ../classes/column/comment/actions.php:77
208
+ msgid "Approve"
209
+ msgstr "Утвердить"
210
+
211
+ #: ../classes/column/comment/actions.php:86
212
+ #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
213
+ msgid "Restore"
214
+ msgstr "Восстановить"
215
+
216
+ #: ../classes/column/comment/actions.php:90
217
+ #: ../classes/column/post/actions.php:66
218
+ msgid "Delete Permanently"
219
+ msgstr "Удалить полностью"
220
+
221
+ #: ../classes/column/comment/actions.php:97
222
+ #: ../classes/column/post/actions.php:58
223
+ msgid "Quick&nbsp;Edit"
224
+ msgstr "Quick&nbsp;Edit"
225
+
226
+ #: ../classes/column/comment/actions.php:98
227
+ msgid "Reply"
228
+ msgstr "Ответить"
229
+
230
+ #: ../classes/column/comment/agent.php:12
231
+ msgid "Agent"
232
+ msgstr "Агент"
233
+
234
+ #: ../classes/column/comment/approved.php:12
235
+ #: ../classes/column/post/comment-count.php:31
236
+ msgid "Approved"
237
+ msgstr "Утверждено"
238
+
239
+ #: ../classes/column/comment/author-avatar.php:12
240
+ msgid "Avatar"
241
+ msgstr "Аватар"
242
+
243
+ #: ../classes/column/comment/author-email.php:12
244
+ msgid "Author email"
245
+ msgstr "Email автора"
246
+
247
+ #: ../classes/column/comment/author-ip.php:12
248
+ msgid "Author IP"
249
+ msgstr "IP автора"
250
+
251
+ #: ../classes/column/comment/author-url.php:12
252
+ msgid "Author url"
253
+ msgstr "URL автора"
254
+
255
+ #: ../classes/column/comment/author.php:12
256
+ msgid "Author"
257
+ msgstr "Автор"
258
+
259
+ #: ../classes/column/comment/date-gmt.php:12
260
+ msgid "Date GMT"
261
+ msgstr "Дата GMT"
262
+
263
+ #: ../classes/column/comment/date-gmt.php:25
264
+ #: ../classes/column/comment/date.php:25
265
+ #, php-format
266
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
267
+ msgstr "Подтверждено на <a href=\"%1$s\">%2$s at %3$s</a>"
268
+
269
+ #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
270
+ #: ../classes/settings.php:300
271
+ msgid "Date"
272
+ msgstr "Дата"
273
+
274
+ #: ../classes/column/comment/excerpt.php:13
275
+ #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
276
+ #: ../classes/settings.php:297
277
+ msgid "Excerpt"
278
+ msgstr "Отрывок"
279
+
280
+ #: ../classes/column/comment/reply-to.php:12
281
+ msgid "In Reply To"
282
+ msgstr "В ответ на"
283
+
284
+ #: ../classes/column/comment/word-count.php:12
285
+ #: ../classes/column/post/word-count.php:12
286
+ msgid "Word count"
287
+ msgstr "Счетчик слов"
288
+
289
+ #: ../classes/column/custom-field.php:16
290
+ #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
291
+ msgid "Custom Field"
292
+ msgstr "Пользовательское поле"
293
+
294
+ #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
295
+ #: ../classes/storage_model.php:504
296
+ msgid "Default"
297
+ msgstr "По умолчанию"
298
+
299
+ #: ../classes/column/custom-field.php:66
300
+ msgid "Checkmark (true/false)"
301
+ msgstr "Галочка (true/false)"
302
+
303
+ #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
304
+ msgid "Color"
305
+ msgstr "Цвет"
306
+
307
+ #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
308
+ msgid "Counter"
309
+ msgstr "Счетчик"
310
+
311
+ #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
312
+ #: ../classes/settings.php:296
313
+ msgid "Image"
314
+ msgstr "Изображение"
315
+
316
+ #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
317
+ msgid "Media Library"
318
+ msgstr "Медиа библиотека"
319
+
320
+ #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
321
+ msgid "Multiple Values"
322
+ msgstr "Несколько значений"
323
+
324
+ #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
325
+ msgid "Numeric"
326
+ msgstr "Числовой"
327
+
328
+ #: ../classes/column/custom-field.php:75
329
+ msgid "Post Title (Post ID's)"
330
+ msgstr "Заголовок поста (Post ID's)"
331
+
332
+ #: ../classes/column/custom-field.php:76
333
+ msgid "Username (User ID's)"
334
+ msgstr "Имя пользователя (User ID's)"
335
+
336
+ #: ../classes/column/custom-field.php:384
337
+ msgid "Select your custom field."
338
+ msgstr "Выберитрать пользовательское поле."
339
+
340
+ #: ../classes/column/custom-field.php:394
341
+ msgid "No custom fields available."
342
+ msgstr "Нет доступных пользовательских полей."
343
+
344
+ #: ../classes/column/custom-field.php:401
345
+ msgid "Field Type"
346
+ msgstr "Тип поля"
347
+
348
+ #: ../classes/column/custom-field.php:401
349
+ msgid "This will determine how the value will be displayed."
350
+ msgstr "От этого будет зависеть, как будет отображаться значение."
351
+
352
+ #: ../classes/column/link/actions.php:46
353
+ #, php-format
354
+ msgid ""
355
+ "You are about to delete this link '%s'\n"
356
+ " 'Cancel' to stop, 'OK' to delete."
357
+ msgstr ""
358
+ "Вы собираетесь удалить эту ссылку '%s'\n"
359
+ " 'Cancel' для отмены, 'OK' для удаления."
360
+
361
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
362
+ msgid "Delete"
363
+ msgstr "Удалить"
364
+
365
+ #: ../classes/column/link/description.php:12
366
+ #: ../classes/column/media/description.php:12
367
+ #: ../classes/column/user/description.php:14
368
+ msgid "Description"
369
+ msgstr "Описание"
370
+
371
+ #: ../classes/column/link/length.php:12
372
+ msgid "Length"
373
+ msgstr "Длина"
374
+
375
+ #: ../classes/column/link/notes.php:13
376
+ msgid "Notes"
377
+ msgstr "Примечания"
378
+
379
+ #: ../classes/column/link/owner.php:12
380
+ msgid "Owner"
381
+ msgstr "Владелец"
382
+
383
+ #: ../classes/column/link/rss.php:12
384
+ msgid "Rss"
385
+ msgstr "RSS"
386
+
387
+ #: ../classes/column/link/target.php:12
388
+ msgid "Target"
389
+ msgstr "Цель"
390
+
391
+ #: ../classes/column/media/alternate-text.php:12
392
+ msgid "Alt"
393
+ msgstr "Вариант"
394
+
395
+ #: ../classes/column/media/available-sizes.php:14
396
+ msgid "Available Sizes"
397
+ msgstr "Доступные размеры"
398
+
399
+ #: ../classes/column/media/available-sizes.php:37
400
+ msgid "full size"
401
+ msgstr "полный размер"
402
+
403
+ #: ../classes/column/media/caption.php:12
404
+ #: ../classes/column/media/exif-data.php:36
405
+ msgid "Caption"
406
+ msgstr "Подпись"
407
+
408
+ #: ../classes/column/media/dimensions.php:12
409
+ msgid "Dimensions"
410
+ msgstr "Размеры"
411
+
412
+ #: ../classes/column/media/exif-data.php:12
413
+ msgid "EXIF data"
414
+ msgstr "EXIF данные"
415
+
416
+ #: ../classes/column/media/exif-data.php:33
417
+ msgid "Aperture"
418
+ msgstr "Апертура"
419
+
420
+ #: ../classes/column/media/exif-data.php:34
421
+ msgid "Credit"
422
+ msgstr "Кредит"
423
+
424
+ #: ../classes/column/media/exif-data.php:35
425
+ msgid "Camera"
426
+ msgstr "Камера"
427
+
428
+ #: ../classes/column/media/exif-data.php:37
429
+ msgid "Timestamp"
430
+ msgstr "Временной штамп"
431
+
432
+ #: ../classes/column/media/exif-data.php:38
433
+ msgid "Copyright EXIF"
434
+ msgstr "Copyright EXIF"
435
+
436
+ #: ../classes/column/media/exif-data.php:39
437
+ msgid "Focal Length"
438
+ msgstr "Фокусное расстояние"
439
+
440
+ #: ../classes/column/media/exif-data.php:40
441
+ msgid "ISO"
442
+ msgstr "ISO"
443
+
444
+ #: ../classes/column/media/exif-data.php:41
445
+ msgid "Shutter Speed"
446
+ msgstr "Скорость затвора"
447
+
448
+ #: ../classes/column/media/exif-data.php:42
449
+ msgid "Title"
450
+ msgstr "Заголовок"
451
+
452
+ #: ../classes/column/media/file-name.php:12
453
+ msgid "File name"
454
+ msgstr "Имя файла"
455
+
456
+ #: ../classes/column/media/file-size.php:12
457
+ msgid "File size"
458
+ msgstr "Размер файла"
459
+
460
+ #: ../classes/column/media/full-path.php:12
461
+ msgid "Full path"
462
+ msgstr "Полный путь"
463
+
464
+ #: ../classes/column/media/height.php:12
465
+ msgid "Height"
466
+ msgstr "Высота"
467
+
468
+ #: ../classes/column/media/mime-type.php:12
469
+ msgid "Mime type"
470
+ msgstr "MIME тип"
471
+
472
+ #: ../classes/column/post/actions.php:57
473
+ msgid "Edit this item"
474
+ msgstr "Редактировать этот объект"
475
+
476
+ #: ../classes/column/post/actions.php:58
477
+ msgid "Edit this item inline"
478
+ msgstr "Редактировать этот объект инлайн"
479
+
480
+ #: ../classes/column/post/actions.php:62
481
+ msgid "Restore this item from the Trash"
482
+ msgstr "Восстановить этот объект из корзины"
483
+
484
+ #: ../classes/column/post/actions.php:64
485
+ msgid "Move this item to the Trash"
486
+ msgstr "Перенести этот объект в корзину"
487
+
488
+ #: ../classes/column/post/actions.php:64
489
+ #: ../classes/column/post/comment-count.php:34
490
+ #: ../classes/column/post/status.php:38
491
+ msgid "Trash"
492
+ msgstr "Корзина"
493
+
494
+ #: ../classes/column/post/actions.php:66
495
+ msgid "Delete this item permanently"
496
+ msgstr "Удалить этот объект окончательно"
497
+
498
+ #: ../classes/column/post/actions.php:71
499
+ #, php-format
500
+ msgid "Preview &#8220;%s&#8221;"
501
+ msgstr "Просмотр &#8220;%s&#8221;"
502
+
503
+ #: ../classes/column/post/actions.php:71
504
+ msgid "Preview"
505
+ msgstr "Просмотр"
506
+
507
+ #: ../classes/column/post/actions.php:73
508
+ #, php-format
509
+ msgid "View &#8220;%s&#8221;"
510
+ msgstr "Смотреть &#8220;%s&#8221;"
511
+
512
+ #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
513
+ msgid "View"
514
+ msgstr "Смотреть"
515
+
516
+ #: ../classes/column/post/attachment-count.php:12
517
+ msgid "No. of Attachments"
518
+ msgstr "Кол-во приложений"
519
+
520
+ #: ../classes/column/post/attachment.php:12
521
+ msgid "Attachment"
522
+ msgstr "Приложение"
523
+
524
+ #: ../classes/column/post/author-name.php:12
525
+ msgid "Display Author As"
526
+ msgstr "Показать автора как"
527
+
528
+ #: ../classes/column/post/author-name.php:34
529
+ msgid "Display Name"
530
+ msgstr "Отображаемое имя"
531
+
532
+ #: ../classes/column/post/author-name.php:35
533
+ msgid "First Name"
534
+ msgstr "Имя"
535
+
536
+ #: ../classes/column/post/author-name.php:36
537
+ msgid "Last Name"
538
+ msgstr "Фамилия"
539
+
540
+ #: ../classes/column/post/author-name.php:37
541
+ #: ../classes/column/user/nickname.php:14
542
+ msgid "Nickname"
543
+ msgstr "Ник"
544
+
545
+ #: ../classes/column/post/author-name.php:38
546
+ msgid "User Login"
547
+ msgstr "Логин пользователя"
548
+
549
+ #: ../classes/column/post/author-name.php:39
550
+ msgid "User Email"
551
+ msgstr "Email пользователя"
552
+
553
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
554
+ msgid "User ID"
555
+ msgstr "ID пользователя"
556
+
557
+ #: ../classes/column/post/author-name.php:41
558
+ msgid "First and Last Name"
559
+ msgstr "Имя и Фамилия"
560
+
561
+ #: ../classes/column/post/author-name.php:118
562
+ msgid "This is the format of the author name."
563
+ msgstr "Формат имени автора."
564
+
565
+ #: ../classes/column/post/before-moretag.php:14
566
+ msgid "Before More Tag"
567
+ msgstr "Перед тэгом \"Подробнее\""
568
+
569
+ #: ../classes/column/post/comment-count.php:14
570
+ msgid "Comment count"
571
+ msgstr "Счетчик комментариев"
572
+
573
+ #: ../classes/column/post/comment-count.php:30
574
+ msgid "Total"
575
+ msgstr "Всего"
576
+
577
+ #: ../classes/column/post/comment-count.php:32
578
+ msgid "Pending"
579
+ msgstr "В ожидании"
580
+
581
+ #: ../classes/column/post/comment-count.php:33
582
+ msgid "Spam"
583
+ msgstr "Спам"
584
+
585
+ #: ../classes/column/post/comment-count.php:95
586
+ #: ../classes/column/post/comment-status.php:14
587
+ msgid "Comment status"
588
+ msgstr "Статус комментария"
589
+
590
+ #: ../classes/column/post/comment-count.php:95
591
+ msgid "Select which comment status you like to display."
592
+ msgstr "Выберите статус комментария для отображения."
593
+
594
+ #: ../classes/column/post/featured-image.php:14
595
+ msgid "Featured Image"
596
+ msgstr "Рекомендуемые изображения"
597
+
598
+ #: ../classes/column/post/formats.php:14
599
+ msgid "Post Format"
600
+ msgstr "Формат сообщения"
601
+
602
+ #: ../classes/column/post/modified.php:14
603
+ msgid "Last modified"
604
+ msgstr "Изменен"
605
+
606
+ #: ../classes/column/post/order.php:14
607
+ msgid "Page Order"
608
+ msgstr "Порядок страницы"
609
+
610
+ #: ../classes/column/post/page-template.php:12
611
+ msgid "Page Template"
612
+ msgstr "Шаблон страницы"
613
+
614
+ #: ../classes/column/post/parent.php:12
615
+ msgid "Parent"
616
+ msgstr "Родитель"
617
+
618
+ #: ../classes/column/post/permalink.php:12
619
+ msgid "Permalink"
620
+ msgstr "Постоянная ссылка"
621
+
622
+ #: ../classes/column/post/ping-status.php:14
623
+ msgid "Ping status"
624
+ msgstr "Ping статус"
625
+
626
+ #: ../classes/column/post/roles.php:14
627
+ msgid "Roles"
628
+ msgstr "Роли"
629
+
630
+ #: ../classes/column/post/slug.php:12
631
+ msgid "Slug"
632
+ msgstr "Ссылка"
633
+
634
+ #: ../classes/column/post/status.php:14
635
+ msgid "Status"
636
+ msgstr "Статус"
637
+
638
+ #: ../classes/column/post/status.php:32
639
+ msgid "Published"
640
+ msgstr "Опубликовано"
641
+
642
+ #: ../classes/column/post/status.php:33
643
+ msgid "Draft"
644
+ msgstr "Черновик"
645
+
646
+ #: ../classes/column/post/status.php:34
647
+ msgid "Scheduled"
648
+ msgstr "Запланировано"
649
+
650
+ #: ../classes/column/post/status.php:35
651
+ msgid "Private"
652
+ msgstr "Приватно"
653
+
654
+ #: ../classes/column/post/status.php:36
655
+ msgid "Pending Review"
656
+ msgstr "Ожидается отзыв"
657
+
658
+ #: ../classes/column/post/status.php:37
659
+ msgid "Auto Draft"
660
+ msgstr "Авто черновик"
661
+
662
+ #: ../classes/column/post/sticky.php:14
663
+ msgid "Sticky"
664
+ msgstr "Липучка"
665
+
666
+ #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
667
+ msgid "Taxonomy"
668
+ msgstr "Таксономия"
669
+
670
+ #: ../classes/column/user/comment-count.php:14
671
+ msgid "Comment Count"
672
+ msgstr "Счетчик комментариев"
673
+
674
+ #: ../classes/column/user/first-name.php:14
675
+ msgid "First name"
676
+ msgstr "Имя"
677
+
678
+ #: ../classes/column/user/last-name.php:14
679
+ msgid "Last name"
680
+ msgstr "Фамилия"
681
+
682
+ #: ../classes/column/user/post-count.php:14
683
+ msgid "Post Count"
684
+ msgstr "Счетчик сообщений"
685
+
686
+ #: ../classes/column/user/post-count.php:99
687
+ msgid "Post Type"
688
+ msgstr "Тип сообщения"
689
+
690
+ #: ../classes/column/user/registered.php:14
691
+ msgid "Registered"
692
+ msgstr "Зарегестрировано"
693
+
694
+ #: ../classes/column/user/url.php:14
695
+ msgid "Url"
696
+ msgstr "URL"
697
+
698
+ #: ../classes/settings.php:97
699
+ msgid "Add-on successfully activated."
700
+ msgstr "Дополнение успешно активировано."
701
+
702
+ #: ../classes/settings.php:100
703
+ msgid "Add-on successfully deactivated."
704
+ msgstr "Дополнение успешно деактивировано."
705
+
706
+ #: ../classes/settings.php:155
707
+ msgid "Admin Columns Settings"
708
+ msgstr "Настройки Admin Columns"
709
+
710
+ #: ../classes/settings.php:155 ../classes/settings.php:619
711
+ #: ../classes/upgrade.php:83
712
+ msgid "Admin Columns"
713
+ msgstr "Admin Columns"
714
+
715
+ #: ../classes/settings.php:203
716
+ #, php-format
717
+ msgid "%s column is already present and can not be duplicated."
718
+ msgstr "%s колонка уже существует и не может быть продублирована."
719
+
720
+ #: ../classes/settings.php:256
721
+ msgid "Default settings succesfully restored."
722
+ msgstr "Настройки по умолчанию успешно восстановлены."
723
+
724
+ #: ../classes/settings.php:273
725
+ msgid "Overview"
726
+ msgstr "Обзор"
727
+
728
+ #: ../classes/settings.php:276
729
+ msgid ""
730
+ "This plugin is for adding and removing additional columns to the "
731
+ "administration screens for post(types), pages, media library, comments, "
732
+ "links and users. Change the column's label and reorder them."
733
+ msgstr ""
734
+ "Этот плагин предназначен для добавления и удаления дополнительных столбцов "
735
+ "на экраны администрирования для записей, страниц, библиотеки, комментариев, "
736
+ "ссылок и пользователей. Изменяйте метки столбцов и изменяйте их порядок."
737
+
738
+ #: ../classes/settings.php:279
739
+ msgid "Basics"
740
+ msgstr "Основы"
741
+
742
+ #: ../classes/settings.php:281
743
+ msgid "Change order"
744
+ msgstr "Изменить порядок"
745
+
746
+ #: ../classes/settings.php:282
747
+ msgid ""
748
+ "By dragging the columns you can change the order which they will appear in."
749
+ msgstr "Перетаскивая столбцы, Вы можете изменить порядок их расположения."
750
+
751
+ #: ../classes/settings.php:283
752
+ msgid "Change label"
753
+ msgstr "Изменить метку"
754
+
755
+ #: ../classes/settings.php:284
756
+ msgid ""
757
+ "By clicking on the triangle you will see the column options. Here you can "
758
+ "change each label of the columns heading."
759
+ msgstr ""
760
+ "Нажав на треугольник, вы увидите настройки колонки. Здесь вы можете изменить "
761
+ "метки заголовков колонок."
762
+
763
+ #: ../classes/settings.php:285
764
+ msgid "Change column width"
765
+ msgstr "Изменить ширину столбца"
766
+
767
+ #: ../classes/settings.php:286
768
+ msgid ""
769
+ "By clicking on the triangle you will see the column options. By using the "
770
+ "draggable slider you can set the width of the columns in percentages."
771
+ msgstr ""
772
+ "Нажав на треугольник вы увидите настройки колонки. С помощью перетаскивания "
773
+ "ползунка можно установить ширину столбцов в процентах."
774
+
775
+ #: ../classes/settings.php:292
776
+ msgid "'Custom Field' column"
777
+ msgstr "Столбец 'Custom Field'"
778
+
779
+ #: ../classes/settings.php:293
780
+ msgid ""
781
+ "The custom field colum uses the custom fields from posts and users. There "
782
+ "are 10 types which you can set."
783
+ msgstr ""
784
+ "Столбец пользовательского поля использует поля постов и пользователей. "
785
+ "Существует 10 типов, которые вы можете установить."
786
+
787
+ #: ../classes/settings.php:295
788
+ msgid ""
789
+ "Value: Can be either a string or array. Arrays will be flattened and values "
790
+ "are seperated by a ',' comma."
791
+ msgstr ""
792
+ "Значение: Может быть строкой или массивом. Массив будет сведен и значения "
793
+ "будут разделяться ',' запятой."
794
+
795
+ #: ../classes/settings.php:296
796
+ msgid ""
797
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
798
+ "comma )."
799
+ msgstr ""
800
+ "Значение: должно содержать URL изображения или Attachment IDs, (разделенные "
801
+ "',' запятой)."
802
+
803
+ #: ../classes/settings.php:297
804
+ msgid "Value: This will show the first 20 words of the Post content."
805
+ msgstr "Значение: Это покажет первые 20 слов содержания поста."
806
+
807
+ #: ../classes/settings.php:298
808
+ msgid ""
809
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
810
+ msgstr ""
811
+ "Значение: должно быть массивом. Будут сведены любые многомерные масиивы."
812
+
813
+ #: ../classes/settings.php:299
814
+ msgid ""
815
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
816
+ "for sorting, so you can sort your posts on numeric (custom field) values."
817
+ msgstr ""
818
+ "Значение:. Целые только <br/> Если у вас есть 'сортировочный аддон', то "
819
+ "будут использоваться для сортировки, так что вы можете сортировать свои "
820
+ "сообщения по числовым значениям пользовательских полей."
821
+
822
+ #: ../classes/settings.php:300
823
+ #, php-format
824
+ msgid ""
825
+ "Value: Can be unix time stamp or a date format as described in the <a "
826
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
827
+ "href='%s'>general settings</a> page."
828
+ msgstr ""
829
+ "Value: Может быть Unix-штамп времени или формат даты, как описано в <a "
830
+ "href='%s'>Кодексе</a>. Вы можете изменить выходной формат даты на странице "
831
+ "<a href='%s'>общих настроек</a>."
832
+
833
+ #: ../classes/settings.php:301
834
+ msgid "Post Titles"
835
+ msgstr "Заголовки постов"
836
+
837
+ #: ../classes/settings.php:301
838
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
839
+ msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
840
+
841
+ #: ../classes/settings.php:302
842
+ msgid "Usernames"
843
+ msgstr "Имена пользователей"
844
+
845
+ #: ../classes/settings.php:302
846
+ msgid "Value: can be one or more User ID's (seperated by ',')."
847
+ msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
848
+
849
+ #: ../classes/settings.php:303
850
+ msgid "Checkmark"
851
+ msgstr "Галочка"
852
+
853
+ #: ../classes/settings.php:303
854
+ msgid "Value: should be a 1 (one) or 0 (zero)."
855
+ msgstr "Значение: должно быть 1 или 0."
856
+
857
+ #: ../classes/settings.php:304
858
+ msgid "Value: hex value color, such as #808080."
859
+ msgstr "Значение: значение цвета в HEX-формате, например #808080."
860
+
861
+ #: ../classes/settings.php:305
862
+ msgid ""
863
+ "Value: Can be either a string or array. This will display a count of the "
864
+ "number of times the meta key is used by the item."
865
+ msgstr ""
866
+ "Значение: Может быть строкой или массивом. Это покажет какое количества раз "
867
+ "мета ключ использовался объектом."
868
+
869
+ #: ../classes/settings.php:399
870
+ msgid "Welcome to Admin Columns"
871
+ msgstr "Добро пожаловать в Admin Columns"
872
+
873
+ #: ../classes/settings.php:402
874
+ msgid "Thank you for updating to the latest version!"
875
+ msgstr "Спасибо за обновление до последней версии!"
876
+
877
+ #: ../classes/settings.php:403
878
+ msgid ""
879
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
880
+ "like it."
881
+ msgstr ""
882
+ "Admin Columns сейчас более изысканный и приятный, чем когда-либо прежде. Мы "
883
+ "надеемся, вам понравится."
884
+
885
+ #: ../classes/settings.php:408
886
+ msgid "What’s New"
887
+ msgstr "Что нового"
888
+
889
+ #: ../classes/settings.php:409
890
+ msgid "Changelog"
891
+ msgstr "История изменений"
892
+
893
+ #: ../classes/settings.php:414
894
+ msgid "Addons"
895
+ msgstr "Дополнения"
896
+
897
+ #: ../classes/settings.php:416
898
+ msgid ""
899
+ "Addons are now activated by downloading and installing individual plugins. "
900
+ "Although these plugins will not be hosted on the wordpress.org repository, "
901
+ "each Add-on will continue to receive updates in the usual way."
902
+ msgstr ""
903
+ "Дополнения теперь активируются путем загрузки и установки отдельных "
904
+ "плагинов. Хотя эти плагины не будут размещаться в хранилище wordpress.org, "
905
+ "каждое дополнение будет продолжать получать обновления в обычном порядке."
906
+
907
+ #: ../classes/settings.php:419
908
+ msgid ""
909
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
910
+ msgstr ""
911
+ "Этот сайт использует дополнение Sortorder. Это дополнение требует загрузки."
912
+
913
+ #: ../classes/settings.php:422
914
+ msgid "Addons are seperate plugins which need to be downloaded."
915
+ msgstr ""
916
+ "Дополнения являются отдельными плагинами, которые должны быть загружены."
917
+
918
+ #: ../classes/settings.php:422
919
+ msgid "Download your Addons"
920
+ msgstr "Загрузите ваши дополнения"
921
+
922
+ #: ../classes/settings.php:428
923
+ msgid "This website does not use add-ons"
924
+ msgstr "Этот сайт не использует дополнения"
925
+
926
+ #: ../classes/settings.php:428
927
+ msgid "See our website for Admin Columns Pro."
928
+ msgstr "Смотрите наш сайт Admin Columns Pro."
929
+
930
+ #: ../classes/settings.php:435
931
+ msgid "Important"
932
+ msgstr "Важно"
933
+
934
+ #: ../classes/settings.php:437
935
+ msgid "Database Changes"
936
+ msgstr "Изменения базы данных"
937
+
938
+ #: ../classes/settings.php:438
939
+ msgid ""
940
+ "The database has been changed between versions 1 and 2. But we made sure you "
941
+ "can still roll back to version 1x without any issues."
942
+ msgstr ""
943
+ "База данных была изменена между версиями 1 и 2. Но мы убедились, что вы все "
944
+ "еще можете вернуться к версии 1х без каких-либо проблем."
945
+
946
+ #: ../classes/settings.php:441
947
+ msgid "Make sure you backup your database and then click"
948
+ msgstr "Убедитесь, что вы сделали резервную копию базы данных, а затем нажмите"
949
+
950
+ #: ../classes/settings.php:441 ../classes/upgrade.php:91
951
+ msgid "Upgrade Database"
952
+ msgstr "Обновить базу данных"
953
+
954
+ #: ../classes/settings.php:444
955
+ msgid "Potential Issues"
956
+ msgstr "Потенциальные проблемы"
957
+
958
+ #: ../classes/settings.php:445
959
+ msgid ""
960
+ "Do to the sizable refactoring the code, surounding Addons and action/"
961
+ "filters, your website may not operate correctly. It is important that you "
962
+ "read the full"
963
+ msgstr ""
964
+ "Сделав значительную реорганизацию кода плагинов и фильтров, ваш сайт может "
965
+ "работать неправильно. Важно, чтобы вы прочитали полное"
966
+
967
+ #: ../classes/settings.php:445
968
+ msgid "Migrating from v1 to v2"
969
+ msgstr "Переход от v1 до v2"
970
+
971
+ #: ../classes/settings.php:445
972
+ msgid "guide to view the full list of changes."
973
+ msgstr "руководство, чтобы увидеть полный список изменений."
974
+
975
+ #: ../classes/settings.php:445
976
+ #, php-format
977
+ msgid ""
978
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
979
+ "can fix it in the next release."
980
+ msgstr ""
981
+ "Если вы обнаружите ошибки, пожалуйста, <a href=\"%s\">сообщите о них нам</"
982
+ "a>, чтобы мы исправили их в следующем выпуске."
983
+
984
+ #: ../classes/settings.php:448
985
+ msgid "Important!"
986
+ msgstr "Важно!"
987
+
988
+ #: ../classes/settings.php:448
989
+ msgid ""
990
+ "If you updated the Admin Columns plugin without prior knowledge of such "
991
+ "changes, Please roll back to the latest"
992
+ msgstr ""
993
+ "Если вы обновили плагин Admin Columns без предварительного знания о таких "
994
+ "изменениях, пожалуйста сделайте откат к последней"
995
+
996
+ #: ../classes/settings.php:448
997
+ msgid "version 1"
998
+ msgstr "версии 1"
999
+
1000
+ #: ../classes/settings.php:448
1001
+ msgid "of this plugin."
1002
+ msgstr "этого плагина."
1003
+
1004
+ #: ../classes/settings.php:454
1005
+ msgid "Changelog for"
1006
+ msgstr "История изменений для"
1007
+
1008
+ #: ../classes/settings.php:469
1009
+ msgid "Learn more"
1010
+ msgstr "Изучить больше"
1011
+
1012
+ #: ../classes/settings.php:479
1013
+ msgid "Start using Admin Columns"
1014
+ msgstr "начать, используя Admin Columns"
1015
+
1016
+ #: ../classes/settings.php:522
1017
+ msgid "General Settings"
1018
+ msgstr "Общие настройки"
1019
+
1020
+ #: ../classes/settings.php:523
1021
+ msgid "Customize your Admin Columns settings."
1022
+ msgstr "Настроить параметры Admin Columns."
1023
+
1024
+ #: ../classes/settings.php:546
1025
+ msgid ""
1026
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1027
+ msgstr ""
1028
+ "Показать кнопку \"Edit Columns\" на административных экранах. По умолчанию - "
1029
+ "<code>off</code>."
1030
+
1031
+ #: ../classes/settings.php:553 ../classes/settings.php:682
1032
+ msgid "Save"
1033
+ msgstr "Сохранить"
1034
+
1035
+ #: ../classes/settings.php:593
1036
+ msgid "Restore Settings"
1037
+ msgstr "Восстановить настройки"
1038
+
1039
+ #: ../classes/settings.php:594
1040
+ msgid "This will delete all column settings and restore the default settings."
1041
+ msgstr ""
1042
+ "Это удалит все настройки столбцов и восстановит настройки по умолчанию."
1043
+
1044
+ #: ../classes/settings.php:600
1045
+ msgid "Restore default settings"
1046
+ msgstr "Восстановить настройки по умолчанию"
1047
+
1048
+ #: ../classes/settings.php:600
1049
+ msgid ""
1050
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
1051
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1052
+ msgstr ""
1053
+ "Предупреждение! Все сохраненные данные колонки администратора будут удалены. "
1054
+ "Это не может быть отменено. \\'ОК\\' для удаления, \\'Отмена\\' для отмены"
1055
+
1056
+ #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1057
+ msgid "Settings"
1058
+ msgstr "Настройки"
1059
+
1060
+ #: ../classes/settings.php:621
1061
+ msgid "Add-ons"
1062
+ msgstr "Дополнения"
1063
+
1064
+ #: ../classes/settings.php:647
1065
+ msgid "Posttypes"
1066
+ msgstr "Типы постов"
1067
+
1068
+ #: ../classes/settings.php:648
1069
+ msgid "Others"
1070
+ msgstr "Другое"
1071
+
1072
+ #: ../classes/settings.php:649
1073
+ msgid "Taxonomies"
1074
+ msgstr "Таксономии"
1075
+
1076
+ #: ../classes/settings.php:668
1077
+ #, php-format
1078
+ msgid ""
1079
+ "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1080
+ "be edited in the admin panel."
1081
+ msgstr ""
1082
+ "Столбцы для <strong>%s</strong> устанавливаются через PHP и поэтому не могут "
1083
+ "быть отредактированы в админ-панели."
1084
+
1085
+ #: ../classes/settings.php:678
1086
+ msgid "Store settings"
1087
+ msgstr "Настройки памяти"
1088
+
1089
+ #: ../classes/settings.php:682
1090
+ msgid "Update"
1091
+ msgstr "Обновить"
1092
+
1093
+ #: ../classes/settings.php:686
1094
+ #, php-format
1095
+ msgid ""
1096
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1097
+ "\\' to delete, \\'Cancel\\' to stop"
1098
+ msgstr ""
1099
+ "Предупреждение! Столбцы данных в %s будут удалены. Это не может быть "
1100
+ "отменено. \\'ОК\\' для удаления, \\'Отмена\\' для отмены"
1101
+
1102
+ #: ../classes/settings.php:687
1103
+ msgid "columns"
1104
+ msgstr "столбцы"
1105
+
1106
+ #: ../classes/settings.php:701
1107
+ msgid "Get Admin Columns Pro"
1108
+ msgstr "Получить Admin Columns Pro"
1109
+
1110
+ #: ../classes/settings.php:705
1111
+ msgid "Add Sorting"
1112
+ msgstr "Добавить сортировку"
1113
+
1114
+ #: ../classes/settings.php:706
1115
+ msgid "Add Filtering"
1116
+ msgstr "Добавить фильтрацию"
1117
+
1118
+ #: ../classes/settings.php:707
1119
+ msgid "Add Import/Export"
1120
+ msgstr "Добавить Импорт/Экспорт"
1121
+
1122
+ #: ../classes/settings.php:708
1123
+ msgid "Add Direct Editing"
1124
+ msgstr "Добавить Прямое редактирование"
1125
+
1126
+ #: ../classes/settings.php:711
1127
+ #, php-format
1128
+ msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1129
+ msgstr ""
1130
+ "Проверьте <a href=\"%s\">Admin Columns Pro</a> для получения подробной "
1131
+ "информации!"
1132
+
1133
+ #: ../classes/settings.php:742
1134
+ msgid "Support"
1135
+ msgstr "Поддержка"
1136
+
1137
+ #: ../classes/settings.php:745
1138
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1139
+ msgstr "Проверьте раздел <strong>Помощь</strong> в правом верхнем углу."
1140
+
1141
+ #: ../classes/settings.php:748
1142
+ #, php-format
1143
+ msgid ""
1144
+ "For full documentation, bug reports, feature suggestions and other tips <a "
1145
+ "href='%s'>visit the Admin Columns website</a>"
1146
+ msgstr ""
1147
+ "Для получения полной документации, отчетов об ошибках, особых предложений и "
1148
+ "других материалов <a href='%s'>посетите сайт Admin Columns</a>"
1149
+
1150
+ #: ../classes/settings.php:777
1151
+ msgid "Drag and drop to reorder"
1152
+ msgstr "Перетащите, чтобы изменить порядок"
1153
+
1154
+ #: ../classes/settings.php:780
1155
+ msgid "Add Column"
1156
+ msgstr "Добавить столбец"
1157
+
1158
+ #: ../classes/settings.php:853
1159
+ msgid "Active"
1160
+ msgstr "Активно"
1161
+
1162
+ #: ../classes/settings.php:854
1163
+ msgid "Deactivate"
1164
+ msgstr "Деактивировать"
1165
+
1166
+ #: ../classes/settings.php:861
1167
+ msgid "Installed"
1168
+ msgstr "Установлено"
1169
+
1170
+ #: ../classes/settings.php:862
1171
+ msgid "Activate"
1172
+ msgstr "Активировать"
1173
+
1174
+ #: ../classes/settings.php:876
1175
+ msgid "Download & Install"
1176
+ msgstr "Загрузить и установить"
1177
+
1178
+ #: ../classes/settings.php:881
1179
+ msgid "Get this add-on"
1180
+ msgstr "Получить это дополнение"
1181
+
1182
+ #: ../classes/storage_model.php:207
1183
+ msgid "settings succesfully restored."
1184
+ msgstr "настройки успешно восстановлены."
1185
+
1186
+ #: ../classes/storage_model.php:222
1187
+ msgid "No columns settings available."
1188
+ msgstr "Нет доступных настроек столбцов."
1189
+
1190
+ #: ../classes/storage_model.php:243
1191
+ #, php-format
1192
+ msgid "You are trying to store the same settings for %s."
1193
+ msgstr "Вы пытаетесь сохранить те же настройки для %s."
1194
+
1195
+ #: ../classes/storage_model.php:247
1196
+ #, php-format
1197
+ msgid "Settings for %s updated succesfully."
1198
+ msgstr "Настройки для %s успешно обновлены."
1199
+
1200
+ #: ../classes/storage_model/comment.php:13
1201
+ msgid "Comments"
1202
+ msgstr "Комментарии"
1203
+
1204
+ #: ../classes/storage_model/link.php:13
1205
+ msgid "Links"
1206
+ msgstr "Ссылки"
1207
+
1208
+ #: ../classes/storage_model/user.php:13
1209
+ msgid "Users"
1210
+ msgstr "Пользователи"
1211
+
1212
+ #: ../classes/upgrade.php:43
1213
+ msgid "Upgrade"
1214
+ msgstr "Обновить"
1215
+
1216
+ #: ../classes/upgrade.php:84
1217
+ msgid "requires a database upgrade"
1218
+ msgstr "требуется обновление базы данных"
1219
+
1220
+ #: ../classes/upgrade.php:87
1221
+ msgid "why?"
1222
+ msgstr "почему?"
1223
+
1224
+ #: ../classes/upgrade.php:88
1225
+ msgid "Please"
1226
+ msgstr "Пожалуйста"
1227
+
1228
+ #: ../classes/upgrade.php:89
1229
+ msgid "backup your database"
1230
+ msgstr "создайте резервную копию базы данных"
1231
+
1232
+ #: ../classes/upgrade.php:90
1233
+ msgid "then click"
1234
+ msgstr "затем нажмите"
1235
+
1236
+ #: ../classes/upgrade.php:298
1237
+ msgid "Migrating Column Settings"
1238
+ msgstr "Перенос настроек столбцов"
1239
+
1240
+ #: ../classes/upgrade.php:334
1241
+ msgid "No Upgrade Required"
1242
+ msgstr "Обновление не требуется"
1243
+
1244
+ #: ../classes/upgrade.php:335
1245
+ msgid "Return to welcome screen."
1246
+ msgstr "Вернуться на начальный экран."
1247
+
1248
+ #: ../classes/upgrade.php:353
1249
+ msgid "Upgrade Complete!"
1250
+ msgstr "Обновление завершено!"
1251
+
1252
+ #: ../classes/upgrade.php:353
1253
+ msgid "Return to settings."
1254
+ msgstr "Возврат к настройкам."
1255
+
1256
+ #: ../classes/upgrade.php:354
1257
+ msgid "Error"
1258
+ msgstr "Ошибка"
1259
+
1260
+ #: ../classes/upgrade.php:355
1261
+ msgid ""
1262
+ "Sorry. Something went wrong during the upgrade process. Please report this "
1263
+ "on the support forum."
1264
+ msgstr ""
1265
+ "Извините. Что-то пошло не так во время процесса обновления. Пожалуйста, "
1266
+ "сообщите об этом на форуме поддержки."
1267
+
1268
+ #: ../codepress-admin-columns.php:439
1269
+ msgid "Edit columns"
1270
+ msgstr "Редактировать столбцы"
languages/cpac-sv_SE.mo CHANGED
Binary file
languages/cpac-sv_SE.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
10
- "PO-Revision-Date: 2014-06-17 11:49+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/admin-"
13
  "columns/language/sv_SE/)\n"
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
10
+ "PO-Revision-Date: 2014-06-23 11:38+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/admin-"
13
  "columns/language/sv_SE/)\n"
languages/cpac-zh_CN.mo CHANGED
Binary file
languages/cpac-zh_CN.po CHANGED
@@ -6,7 +6,7 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-06-17 11:49+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/zh_CN/)\n"
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
+ "PO-Revision-Date: 2014-06-23 11:38+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
  "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/admin-"
12
  "columns/language/zh_CN/)\n"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: plugins, wordpress, admin, column, columns, custom columns, custom fields, image, dashboard, sortable, filters, posts, media, users, pages, posttypes, manage columns, wp-admin
5
  Requires at least: 3.5
6
  Tested up to: 3.9.1
7
- Stable tag: 2.2.1
8
 
9
  Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
10
 
@@ -246,6 +246,11 @@ You can find a list of the available actions and filters (and examples on how to
246
 
247
  == Changelog ==
248
 
 
 
 
 
 
249
  = 2.2.1 =
250
  * [Added] Option to make permalink in permalink column clickable (linking to post)
251
  * [Added] Direct support box in Admin Columns settings screen sidebar
4
  Tags: plugins, wordpress, admin, column, columns, custom columns, custom fields, image, dashboard, sortable, filters, posts, media, users, pages, posttypes, manage columns, wp-admin
5
  Requires at least: 3.5
6
  Tested up to: 3.9.1
7
+ Stable tag: 2.2.1.1
8
 
9
  Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
10
 
246
 
247
  == Changelog ==
248
 
249
+ = 2.2.1.1 =
250
+ * [Fixed] Fixed issue with Posts 2 Posts (and other third party plugins) columns not being displayed because of hooking into late actions on post pages
251
+ * [Updated] Added russian language, thanks to Arnold Klimenko.
252
+ * [Updated] Updated translations from Transifex
253
+
254
  = 2.2.1 =
255
  * [Added] Option to make permalink in permalink column clickable (linking to post)
256
  * [Added] Direct support box in Admin Columns settings screen sidebar