Admin Columns - Version 1.4.6.3

Version Description

  • Added new custom field type: User by User ID
  • Added values to filter 'cpac_get_column_value_custom_field' for better control of the output
  • Added an example for above filter to FAQ section
  • Added fix where trash posts did not show with the sorting addon activated
Download this release

Release Info

Developer codepress
Plugin Icon 128x128 Admin Columns
Version 1.4.6.3
Comparing to
See all releases

Code changes from version 1.4.6.2 to 1.4.6.3

classes/sortable.php CHANGED
@@ -172,7 +172,7 @@ class Codepress_Sortable_Columns extends Codepress_Admin_Columns
172
 
173
  /** Posts */
174
  elseif ( !empty($vars['post_type']) ) {
175
- $vars = $this->get_orderby_posts_vars($vars);
176
  }
177
 
178
  return $vars;
@@ -742,7 +742,7 @@ class Codepress_Sortable_Columns extends Codepress_Admin_Columns
742
  // attachments
743
  if ( $type == 'column-attachment-count' )
744
  $type = 'column-attachment';
745
-
746
  // var
747
  $cposts = array();
748
  switch( $type ) :
@@ -1057,12 +1057,22 @@ class Codepress_Sortable_Columns extends Codepress_Admin_Columns
1057
  */
1058
  private function get_any_posts_by_posttype( $post_type )
1059
  {
1060
- $allposts = get_posts(array(
1061
  'numberposts' => -1,
1062
  'post_status' => 'any',
1063
  'post_type' => $post_type
1064
  ));
1065
- return (array) $allposts;
 
 
 
 
 
 
 
 
 
 
1066
  }
1067
 
1068
  /**
172
 
173
  /** Posts */
174
  elseif ( !empty($vars['post_type']) ) {
175
+ $vars = $this->get_orderby_posts_vars($vars);
176
  }
177
 
178
  return $vars;
742
  // attachments
743
  if ( $type == 'column-attachment-count' )
744
  $type = 'column-attachment';
745
+
746
  // var
747
  $cposts = array();
748
  switch( $type ) :
1057
  */
1058
  private function get_any_posts_by_posttype( $post_type )
1059
  {
1060
+ $any_posts = (array) get_posts(array(
1061
  'numberposts' => -1,
1062
  'post_status' => 'any',
1063
  'post_type' => $post_type
1064
  ));
1065
+
1066
+ // trash posts are not included in the posts_status 'any' by default
1067
+ $trash_posts = (array) get_posts(array(
1068
+ 'numberposts' => -1,
1069
+ 'post_status' => 'trash',
1070
+ 'post_type' => $post_type
1071
+ ));
1072
+
1073
+ $all_posts = array_merge($any_posts, $trash_posts);
1074
+
1075
+ return (array) $all_posts;
1076
  }
1077
 
1078
  /**
classes/values.php CHANGED
@@ -270,12 +270,19 @@ class CPAC_Values
270
  $meta = $this->get_date($meta);
271
  break;
272
 
273
- // Title
274
  case "title_by_id" :
275
  $titles = $this->get_custom_field_value_title($meta);
276
  if ( $titles )
277
  $meta = $titles;
278
  break;
 
 
 
 
 
 
 
279
 
280
  // Checkmark
281
  case "checkmark" :
@@ -289,9 +296,9 @@ class CPAC_Values
289
  break;
290
 
291
  endswitch;
292
-
293
  // filter for customization
294
- $meta = apply_filters('cpac_get_column_value_custom_field', $meta, $fieldtype, $field );
295
 
296
  // add before and after string
297
  $meta = "{$before}{$meta}{$after}";
@@ -331,6 +338,41 @@ class CPAC_Values
331
  return implode('<span class="cpac-divider"></span>', $titles);
332
  }
333
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  /**
335
  * Get column value of Custom Field
336
  *
270
  $meta = $this->get_date($meta);
271
  break;
272
 
273
+ // Post Title
274
  case "title_by_id" :
275
  $titles = $this->get_custom_field_value_title($meta);
276
  if ( $titles )
277
  $meta = $titles;
278
  break;
279
+
280
+ // User Name
281
+ case "user_by_id" :
282
+ $names = $this->get_custom_field_value_user($meta);
283
+ if ( $names )
284
+ $meta = $names;
285
+ break;
286
 
287
  // Checkmark
288
  case "checkmark" :
296
  break;
297
 
298
  endswitch;
299
+
300
  // filter for customization
301
+ $meta = apply_filters('cpac_get_column_value_custom_field', $meta, $fieldtype, $field, $type, $object_id );
302
 
303
  // add before and after string
304
  $meta = "{$before}{$meta}{$after}";
338
  return implode('<span class="cpac-divider"></span>', $titles);
339
  }
340
 
341
+ /**
342
+ * Get custom field value 'User by ID'
343
+ *
344
+ * @since 1.4.6.3
345
+ */
346
+ protected function get_custom_field_value_user($meta)
347
+ {
348
+ //remove white spaces and strip tags
349
+ $meta = $this->strip_trim( str_replace(' ','', $meta) );
350
+
351
+ // var
352
+ $ids = $names = array();
353
+
354
+ // check for multiple id's
355
+ if ( strpos($meta, ',') !== false )
356
+ $ids = explode(',',$meta);
357
+ elseif ( is_numeric($meta) )
358
+ $ids[] = $meta;
359
+
360
+ // display username
361
+ if ( $ids && is_array($ids) ) {
362
+ foreach ( $ids as $id ) {
363
+ if ( !is_numeric($id) )
364
+ continue;
365
+
366
+ $userdata = get_userdata($id);
367
+ if ( is_object($userdata) && !empty( $userdata->display_name ) ) {
368
+ $names[] = $userdata->display_name;
369
+ }
370
+ }
371
+ }
372
+
373
+ return implode('<span class="cpac-divider"></span>', $names);
374
+ }
375
+
376
  /**
377
  * Get column value of Custom Field
378
  *
codepress-admin-columns.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Codepress Admin Columns
4
- Version: 1.4.6.2
5
  Description: Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
6
  Author: Codepress
7
  Author URI: http://www.codepress.nl
@@ -26,7 +26,7 @@ along with this program; if not, write to the Free Software
26
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27
  */
28
 
29
- define( 'CPAC_VERSION', '1.4.6.2' );
30
  define( 'CPAC_TEXTDOMAIN', 'codepress-admin-columns' );
31
  define( 'CPAC_SLUG', 'codepress-admin-columns' );
32
  define( 'CPAC_URL', plugins_url('', __FILE__) );
@@ -598,6 +598,7 @@ class Codepress_Admin_Columns
598
  'numeric' => __('Numeric', CPAC_TEXTDOMAIN),
599
  'date' => __('Date', CPAC_TEXTDOMAIN),
600
  'title_by_id' => __('Post Title (Post ID\'s)', CPAC_TEXTDOMAIN),
 
601
  'checkmark' => __('Checkmark (true/false)', CPAC_TEXTDOMAIN),
602
  );
603
 
@@ -964,7 +965,9 @@ class Codepress_Admin_Columns
964
  * @since 1.0
965
  */
966
  private function get_wp_default_posts_columns($post_type = 'post')
967
- {
 
 
968
  // some plugins depend on settings the $_GET['post_type'] variable such as ALL in One SEO
969
  $_GET['post_type'] = $post_type;
970
 
@@ -976,7 +979,7 @@ class Codepress_Admin_Columns
976
  $columns = get_column_headers( 'edit-'.$post_type );
977
 
978
  // get default columns
979
- if ( empty($columns) ) {
980
 
981
  // deprecated as of wp3.3
982
  if ( file_exists(ABSPATH . 'wp-admin/includes/template.php') )
@@ -995,7 +998,7 @@ class Codepress_Admin_Columns
995
  // we need to change the current screen
996
  global $current_screen;
997
  $org_current_screen = $current_screen;
998
-
999
  // overwrite current_screen global with our post type of choose...
1000
  $current_screen->post_type = $post_type;
1001
 
@@ -1084,13 +1087,18 @@ class Codepress_Admin_Columns
1084
  */
1085
  private function get_wp_default_media_columns()
1086
  {
1087
- // could use _get_list_table('WP_Media_List_Table') ?
 
 
1088
  if ( file_exists(ABSPATH . 'wp-admin/includes/class-wp-list-table.php') )
1089
  require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
1090
  if ( file_exists(ABSPATH . 'wp-admin/includes/class-wp-media-list-table.php') )
1091
  require_once(ABSPATH . 'wp-admin/includes/class-wp-media-list-table.php');
1092
 
1093
- global $current_screen;
 
 
 
1094
  $org_current_screen = $current_screen;
1095
 
1096
  // overwrite current_screen global with our media id...
@@ -1155,13 +1163,17 @@ class Codepress_Admin_Columns
1155
  */
1156
  private function get_wp_default_comments_columns()
1157
  {
 
 
1158
  // dependencies
1159
  if ( file_exists(ABSPATH . 'wp-admin/includes/class-wp-list-table.php') )
1160
  require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
1161
  if ( file_exists(ABSPATH . 'wp-admin/includes/class-wp-comments-list-table.php') )
1162
  require_once(ABSPATH . 'wp-admin/includes/class-wp-comments-list-table.php');
1163
 
1164
- global $current_screen;
 
 
1165
  $org_current_screen = $current_screen;
1166
 
1167
  // overwrite current_screen global with our media id...
@@ -1765,7 +1777,7 @@ class Codepress_Admin_Columns
1765
  $options = get_option('cpac_options');
1766
 
1767
  // get saved columns
1768
- if ( isset($options['columns'][$type]) )
1769
  return $options['columns'][$type];
1770
 
1771
  return false;
@@ -1808,7 +1820,7 @@ class Codepress_Admin_Columns
1808
  $class_current_settings = $this->is_menu_type_current('plugin_settings') ? ' current': '';
1809
 
1810
  // options button
1811
- $options_btn = "<a href='#cpac-box-plugin_settings' class='cpac-settings-link{$class_current_settings}'>".__('Addons')."</a>";
1812
  //$options_btn = '';
1813
 
1814
  return "
@@ -1860,19 +1872,19 @@ class Codepress_Admin_Columns
1860
  {
1861
  // Links
1862
  if ( $type == 'wp-links' )
1863
- $label = 'Links';
1864
 
1865
  // Comments
1866
  elseif ( $type == 'wp-comments' )
1867
- $label = 'Comments';
1868
 
1869
  // Users
1870
  elseif ( $type == 'wp-users' )
1871
- $label = 'Users';
1872
 
1873
  // Media
1874
  elseif ( $type == 'wp-media' )
1875
- $label = 'Media Library';
1876
 
1877
  // Posts
1878
  else {
1
  <?php
2
  /*
3
  Plugin Name: Codepress Admin Columns
4
+ Version: 1.4.6.3
5
  Description: Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
6
  Author: Codepress
7
  Author URI: http://www.codepress.nl
26
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27
  */
28
 
29
+ define( 'CPAC_VERSION', '1.4.6.3' );
30
  define( 'CPAC_TEXTDOMAIN', 'codepress-admin-columns' );
31
  define( 'CPAC_SLUG', 'codepress-admin-columns' );
32
  define( 'CPAC_URL', plugins_url('', __FILE__) );
598
  'numeric' => __('Numeric', CPAC_TEXTDOMAIN),
599
  'date' => __('Date', CPAC_TEXTDOMAIN),
600
  'title_by_id' => __('Post Title (Post ID\'s)', CPAC_TEXTDOMAIN),
601
+ 'user_by_id' => __('Username (User ID\'s)', CPAC_TEXTDOMAIN),
602
  'checkmark' => __('Checkmark (true/false)', CPAC_TEXTDOMAIN),
603
  );
604
 
965
  * @since 1.0
966
  */
967
  private function get_wp_default_posts_columns($post_type = 'post')
968
+ {
969
+ global $current_screen;
970
+
971
  // some plugins depend on settings the $_GET['post_type'] variable such as ALL in One SEO
972
  $_GET['post_type'] = $post_type;
973
 
979
  $columns = get_column_headers( 'edit-'.$post_type );
980
 
981
  // get default columns
982
+ if ( empty($columns) && isset($current_screen) ) {
983
 
984
  // deprecated as of wp3.3
985
  if ( file_exists(ABSPATH . 'wp-admin/includes/template.php') )
998
  // we need to change the current screen
999
  global $current_screen;
1000
  $org_current_screen = $current_screen;
1001
+
1002
  // overwrite current_screen global with our post type of choose...
1003
  $current_screen->post_type = $post_type;
1004
 
1087
  */
1088
  private function get_wp_default_media_columns()
1089
  {
1090
+ global $current_screen;
1091
+
1092
+ // @todo could use _get_list_table('WP_Media_List_Table') ?
1093
  if ( file_exists(ABSPATH . 'wp-admin/includes/class-wp-list-table.php') )
1094
  require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
1095
  if ( file_exists(ABSPATH . 'wp-admin/includes/class-wp-media-list-table.php') )
1096
  require_once(ABSPATH . 'wp-admin/includes/class-wp-media-list-table.php');
1097
 
1098
+ if ( !isset($current_screen) )
1099
+ return false;
1100
+
1101
+ // save original
1102
  $org_current_screen = $current_screen;
1103
 
1104
  // overwrite current_screen global with our media id...
1163
  */
1164
  private function get_wp_default_comments_columns()
1165
  {
1166
+ global $current_screen;
1167
+
1168
  // dependencies
1169
  if ( file_exists(ABSPATH . 'wp-admin/includes/class-wp-list-table.php') )
1170
  require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
1171
  if ( file_exists(ABSPATH . 'wp-admin/includes/class-wp-comments-list-table.php') )
1172
  require_once(ABSPATH . 'wp-admin/includes/class-wp-comments-list-table.php');
1173
 
1174
+ if ( !isset($current_screen) )
1175
+ return false;
1176
+
1177
  $org_current_screen = $current_screen;
1178
 
1179
  // overwrite current_screen global with our media id...
1777
  $options = get_option('cpac_options');
1778
 
1779
  // get saved columns
1780
+ if ( !empty($options['columns'][$type]) )
1781
  return $options['columns'][$type];
1782
 
1783
  return false;
1820
  $class_current_settings = $this->is_menu_type_current('plugin_settings') ? ' current': '';
1821
 
1822
  // options button
1823
+ $options_btn = "<a href='#cpac-box-plugin_settings' class='cpac-settings-link{$class_current_settings}'>".__('Addons', CPAC_TEXTDOMAIN)."</a>";
1824
  //$options_btn = '';
1825
 
1826
  return "
1872
  {
1873
  // Links
1874
  if ( $type == 'wp-links' )
1875
+ $label = __('Links');
1876
 
1877
  // Comments
1878
  elseif ( $type == 'wp-comments' )
1879
+ $label = __('Comments');
1880
 
1881
  // Users
1882
  elseif ( $type == 'wp-users' )
1883
+ $label = __('Users');
1884
 
1885
  // Media
1886
  elseif ( $type == 'wp-media' )
1887
+ $label = __('Media Library');
1888
 
1889
  // Posts
1890
  else {
languages/codepress-admin-columns-pl_PL.mo CHANGED
Binary file
languages/codepress-admin-columns-pl_PL.po CHANGED
@@ -1,530 +1,762 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Codepress Admin Columns\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-11 11:48+0100\n"
6
- "PO-Revision-Date: 2012-04-20 21:14+0100\n"
7
- "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Digital Factory <info@digitalfactory.pl>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-Language: Polish\n"
15
- "X-Poedit-Country: POLAND\n"
16
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
- "X-Poedit-SearchPath-1: ..\n"
20
-
21
- #: ../codepress-admin-columns.php:171
22
- msgid "Settings"
23
- msgstr "Ustawienia"
24
-
25
- #: ../codepress-admin-columns.php:363
26
- msgid "Add Custom Field Column"
27
- msgstr "Dodaj kolumnę Własne pole"
28
-
29
- #: ../codepress-admin-columns.php:371
30
- msgid "drag and drop to reorder"
31
- msgstr "przeciągnij i opuść aby zmienić kolejność"
32
-
33
- #: ../codepress-admin-columns.php:511
34
- #: ../codepress-admin-columns.php:536
35
- msgid "default"
36
- msgstr "domyśłny"
37
-
38
- #: ../codepress-admin-columns.php:534
39
- #: ../codepress-admin-columns.php:2238
40
- msgid "Width"
41
- msgstr "Szerokość"
42
-
43
- #: ../codepress-admin-columns.php:593
44
- msgid "Default"
45
- msgstr "Domyślny"
46
-
47
- #: ../codepress-admin-columns.php:594
48
- #: ../codepress-admin-columns.php:2278
49
- msgid "Image"
50
- msgstr "Obrazek"
51
-
52
- #: ../codepress-admin-columns.php:595
53
- msgid "Media Library Icon"
54
- msgstr "Ikona Biblioteki mediów"
55
-
56
- #: ../codepress-admin-columns.php:596
57
- #: ../codepress-admin-columns.php:2031
58
- #: ../codepress-admin-columns.php:2350
59
- msgid "Excerpt"
60
- msgstr "Wypis"
61
-
62
- #: ../codepress-admin-columns.php:597
63
- msgid "Multiple Values"
64
- msgstr "Wielokrotne wartości"
65
-
66
- #: ../codepress-admin-columns.php:598
67
- msgid "Numeric"
68
- msgstr "Numeryczny"
69
-
70
- #: ../codepress-admin-columns.php:599
71
- #: ../codepress-admin-columns.php:2341
72
- msgid "Date"
73
- msgstr "Data"
74
-
75
- #: ../codepress-admin-columns.php:600
76
- msgid "Post Title (Post ID's)"
77
- msgstr "Tytył wpisu (ID wpisu)"
78
-
79
- #: ../codepress-admin-columns.php:625
80
- msgid "This field can not be removed"
81
- msgstr "To własne pole nie może być usunięte"
82
-
83
- #: ../codepress-admin-columns.php:629
84
- #: ../codepress-admin-columns.php:1512
85
- msgid "Remove"
86
- msgstr "Usuń"
87
-
88
- #: ../codepress-admin-columns.php:974
89
- msgid "Standard"
90
- msgstr "Standardowe"
91
-
92
- #: ../codepress-admin-columns.php:1215
93
- msgid "original"
94
- msgstr "oryginalny"
95
-
96
- #: ../codepress-admin-columns.php:1381
97
- #: ../codepress-admin-columns.php:1392
98
- #, php-format
99
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
100
- msgstr "Opublikowany dnia <a href=\"%1$s\">%2$s o godz. %3$s</a>"
101
-
102
- #: ../codepress-admin-columns.php:1464
103
- msgid "Edit this item"
104
- msgstr "Edytuj element"
105
-
106
- #: ../codepress-admin-columns.php:1464
107
- #: ../codepress-admin-columns.php:1504
108
- msgid "Edit"
109
- msgstr "Edytuj"
110
-
111
- #: ../codepress-admin-columns.php:1465
112
- msgid "Edit this item inline"
113
- msgstr "Edytuj element"
114
-
115
- #: ../codepress-admin-columns.php:1465
116
- msgid "Quick&nbsp;Edit"
117
- msgstr "Szybka&nbsp;edycja"
118
-
119
- #: ../codepress-admin-columns.php:1469
120
- msgid "Restore this item from the Trash"
121
- msgstr "Przywróć ten element z kosza"
122
-
123
- #: ../codepress-admin-columns.php:1469
124
- msgid "Restore"
125
- msgstr "Przywróć"
126
-
127
- #: ../codepress-admin-columns.php:1471
128
- msgid "Move this item to the Trash"
129
- msgstr "Przenieś ten element do kosza"
130
-
131
- #: ../codepress-admin-columns.php:1471
132
- msgid "Trash"
133
- msgstr "Kosz"
134
-
135
- #: ../codepress-admin-columns.php:1473
136
- msgid "Delete this item permanently"
137
- msgstr "Usuń ten element na zawsze"
138
-
139
- #: ../codepress-admin-columns.php:1473
140
- msgid "Delete Permanently"
141
- msgstr "Usuń na zawsze"
142
-
143
- #: ../codepress-admin-columns.php:1478
144
- #, php-format
145
- msgid "Preview &#8220;%s&#8221;"
146
- msgstr "Podejrzyj &#8220;%s&#8221;"
147
-
148
- #: ../codepress-admin-columns.php:1478
149
- msgid "Preview"
150
- msgstr "Podejrzyj"
151
-
152
- #: ../codepress-admin-columns.php:1480
153
- #, php-format
154
- msgid "View &#8220;%s&#8221;"
155
- msgstr "Zobacz &#8220;%s&#8221;"
156
-
157
- #: ../codepress-admin-columns.php:1480
158
- msgid "View"
159
- msgstr "Zobacz"
160
-
161
- #: ../codepress-admin-columns.php:1510
162
- msgid "Delete"
163
- msgstr "Usuń"
164
-
165
- #: ../codepress-admin-columns.php:1997
166
- msgid "Comments"
167
- msgstr "Komentarze"
168
-
169
- #: ../codepress-admin-columns.php:2003
170
- msgid "Icon"
171
- msgstr "Ikona"
172
-
173
- #: ../codepress-admin-columns.php:2028
174
- msgid "Featured Image"
175
- msgstr "Ikona wpisu"
176
-
177
- #: ../codepress-admin-columns.php:2034
178
- #: ../codepress-admin-columns.php:2088
179
- msgid "Page Order"
180
- msgstr "Kolejność stron"
181
-
182
- #: ../codepress-admin-columns.php:2037
183
- #: ../codepress-admin-columns.php:2105
184
- msgid "Post Format"
185
- msgstr "Format wpisu"
186
-
187
- #: ../codepress-admin-columns.php:2040
188
- #: ../codepress-admin-columns.php:2223
189
- #: ../codepress-admin-columns.php:2272
190
- #: ../codepress-admin-columns.php:2312
191
- msgid "ID"
192
- msgstr "ID"
193
-
194
- #: ../codepress-admin-columns.php:2043
195
- msgid "Slug"
196
- msgstr "Bezpośredni odnośnik"
197
-
198
- #: ../codepress-admin-columns.php:2046
199
- msgid "Attachment"
200
- msgstr "Załącznik"
201
-
202
- #: ../codepress-admin-columns.php:2049
203
- msgid "No. of Attachments"
204
- msgstr "Liczba załączników"
205
-
206
- #: ../codepress-admin-columns.php:2052
207
- msgid "Roles"
208
- msgstr "Role"
209
-
210
- #: ../codepress-admin-columns.php:2055
211
- #: ../codepress-admin-columns.php:3095
212
- msgid "Status"
213
- msgstr "Status"
214
-
215
- #: ../codepress-admin-columns.php:2058
216
- msgid "Comment status"
217
- msgstr "Status komentarza"
218
-
219
- #: ../codepress-admin-columns.php:2061
220
- msgid "Ping status"
221
- msgstr "Status ping"
222
-
223
- #: ../codepress-admin-columns.php:2064
224
- #: ../codepress-admin-columns.php:2175
225
- msgid "Actions"
226
- msgstr "Działania"
227
-
228
- #: ../codepress-admin-columns.php:2074
229
- msgid "Word count"
230
- msgstr "Liczba słów"
231
-
232
- #: ../codepress-admin-columns.php:2081
233
- msgid "Sticky"
234
- msgstr "Przyklejone"
235
-
236
- #: ../codepress-admin-columns.php:2090
237
- msgid "Order"
238
- msgstr "Kolejność"
239
-
240
- #: ../codepress-admin-columns.php:2098
241
- msgid "Page Template"
242
- msgstr "Szablon strony"
243
-
244
- #: ../codepress-admin-columns.php:2117
245
- msgid "Taxonomy"
246
- msgstr "Taksonomia"
247
-
248
- #: ../codepress-admin-columns.php:2127
249
- #: ../codepress-admin-columns.php:2197
250
- #: ../codepress-admin-columns.php:2357
251
- msgid "Custom Field"
252
- msgstr "Własne pole"
253
-
254
- #: ../codepress-admin-columns.php:2133
255
- #: ../codepress-admin-columns.php:2203
256
- #: ../codepress-admin-columns.php:2363
257
- msgid "Field"
258
- msgstr "Pole"
259
-
260
- #: ../codepress-admin-columns.php:2154
261
- msgid "User ID"
262
- msgstr "ID użytkownika"
263
-
264
- #: ../codepress-admin-columns.php:2157
265
- msgid "Nickname"
266
- msgstr "Pseudonim"
267
-
268
- #: ../codepress-admin-columns.php:2160
269
- msgid "First name"
270
- msgstr "Imię"
271
-
272
- #: ../codepress-admin-columns.php:2163
273
- msgid "Last name"
274
- msgstr "Nazwisko"
275
-
276
- #: ../codepress-admin-columns.php:2166
277
- msgid "Url"
278
- msgstr "Adres URL"
279
-
280
- #: ../codepress-admin-columns.php:2169
281
- msgid "Registered"
282
- msgstr "Zarejestrowany"
283
-
284
- #: ../codepress-admin-columns.php:2172
285
- #: ../codepress-admin-columns.php:2244
286
- #: ../codepress-admin-columns.php:2275
287
- msgid "Description"
288
- msgstr "Opis"
289
-
290
- #: ../codepress-admin-columns.php:2189
291
- msgid "Postcount"
292
- msgstr "Liczba wpisów"
293
-
294
- #: ../codepress-admin-columns.php:2226
295
- msgid "Mime type"
296
- msgstr "Typ pliku"
297
-
298
- #: ../codepress-admin-columns.php:2229
299
- msgid "File name"
300
- msgstr "Nazwa pliku"
301
-
302
- #: ../codepress-admin-columns.php:2232
303
- msgid "Dimensions"
304
- msgstr "Wymiary"
305
-
306
- #: ../codepress-admin-columns.php:2235
307
- msgid "Height"
308
- msgstr "Wysokość"
309
-
310
- #: ../codepress-admin-columns.php:2241
311
- msgid "Caption"
312
- msgstr "Tytuł"
313
-
314
- #: ../codepress-admin-columns.php:2247
315
- msgid "Alt"
316
- msgstr "Tekst alternatywny"
317
-
318
- #: ../codepress-admin-columns.php:2250
319
- msgid "Upload paths"
320
- msgstr "Ścieżki plików"
321
-
322
- #: ../codepress-admin-columns.php:2281
323
- msgid "Target"
324
- msgstr "Cel"
325
-
326
- #: ../codepress-admin-columns.php:2284
327
- msgid "Owner"
328
- msgstr "Właściciel"
329
-
330
- #: ../codepress-admin-columns.php:2287
331
- msgid "Notes"
332
- msgstr "Notatki"
333
-
334
- #: ../codepress-admin-columns.php:2290
335
- msgid "Rss"
336
- msgstr "Rss"
337
-
338
- #: ../codepress-admin-columns.php:2293
339
- msgid "Length"
340
- msgstr "Długość"
341
-
342
- #: ../codepress-admin-columns.php:2315
343
- msgid "Author Name"
344
- msgstr "Imię Autora"
345
-
346
- #: ../codepress-admin-columns.php:2318
347
- msgid "Avatar"
348
- msgstr "Avatar"
349
-
350
- #: ../codepress-admin-columns.php:2321
351
- msgid "Author url"
352
- msgstr "URL Autora"
353
-
354
- #: ../codepress-admin-columns.php:2324
355
- msgid "Author IP"
356
- msgstr "IP Autora"
357
-
358
- #: ../codepress-admin-columns.php:2327
359
- msgid "Author email"
360
- msgstr "Email Autora"
361
-
362
- #: ../codepress-admin-columns.php:2330
363
- msgid "In Reply To"
364
- msgstr "W odpowiedzi na"
365
-
366
- #: ../codepress-admin-columns.php:2338
367
- msgid "Approved"
368
- msgstr "Zatwierdzony"
369
-
370
- #: ../codepress-admin-columns.php:2344
371
- msgid "Date GMT"
372
- msgstr "Data GMT"
373
-
374
- #: ../codepress-admin-columns.php:2347
375
- msgid "Agent"
376
- msgstr "Przeglądarka"
377
-
378
- #: ../codepress-admin-columns.php:2393
379
- msgid "Custom"
380
- msgstr "Włąsne"
381
-
382
- #: ../codepress-admin-columns.php:2470
383
- #: ../codepress-admin-columns.php:3218
384
- msgid "Addons"
385
- msgstr "Dodatki"
386
-
387
- #: ../codepress-admin-columns.php:3036
388
- #: ../codepress-admin-columns.php:3203
389
- msgid "find out more"
390
- msgstr "dowiedz się więcej"
391
-
392
- #: ../codepress-admin-columns.php:3040
393
- msgid "This will make all of the new columns support sorting"
394
- msgstr "Dzięki temu wszystkie nowe kolumny będą sortowalne"
395
-
396
- #: ../codepress-admin-columns.php:3041
397
- msgid "By default WordPress let's you sort by title, date, comments and author. This will make you be able to <strong>sort by any column of any type!</strong>"
398
- msgstr "Domyślnie, WordPress pozwala na sortowanie po tytule, dacie, komentarzu i autorze. Dzięi temu będziesz mógł <strong>sortować każdą kolumnę, każdego rodzaju!</strong>"
399
-
400
- #: ../codepress-admin-columns.php:3042
401
- msgid "Perfect for sorting your articles, media files, comments, links and users"
402
- msgstr "Idealne rozwiązanie do sortowania wpisów, mediów, komentarzy, linków i użytkowników"
403
-
404
- #: ../codepress-admin-columns.php:3051
405
- #: ../codepress-admin-columns.php:3053
406
- msgid "Sortorder"
407
- msgstr "Kierunek sortowania"
408
-
409
- #: ../codepress-admin-columns.php:3061
410
- msgid "Inactive"
411
- msgstr "Nieaktywny"
412
-
413
- #: ../codepress-admin-columns.php:3064
414
- msgid "Active"
415
- msgstr "Aktywny"
416
-
417
- #: ../codepress-admin-columns.php:3069
418
- msgid "Fill in your activation code"
419
- msgstr "Wpisz kod aktywacyjny"
420
-
421
- #: ../codepress-admin-columns.php:3070
422
- msgid "Activate"
423
- msgstr "Aktywuj"
424
-
425
- #: ../codepress-admin-columns.php:3074
426
- msgid "Deactivate"
427
- msgstr "Deaktywuj"
428
-
429
- #: ../codepress-admin-columns.php:3089
430
- msgid "Activate Add-ons"
431
- msgstr "Aktywuj dodatki"
432
-
433
- #: ../codepress-admin-columns.php:3090
434
- msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites"
435
- msgstr "Dodatki mągą być aktywowane po zakupie licencji. Każdy klucz licencji może być sotsowany na wielu stronach"
436
-
437
- #: ../codepress-admin-columns.php:3094
438
- msgid "Addon"
439
- msgstr "Dodatek"
440
-
441
- #: ../codepress-admin-columns.php:3096
442
- msgid "Activation Code"
443
- msgstr "Kod aktywacyjny"
444
-
445
- #: ../codepress-admin-columns.php:3105
446
- msgid "Enter your activation code"
447
- msgstr "Wpisz kod aktywacyjny"
448
-
449
- #: ../codepress-admin-columns.php:3106
450
- msgid "Activation code unrecognised"
451
- msgstr "Kod aktywacyjny nie został rozpoznany"
452
-
453
- #: ../codepress-admin-columns.php:3200
454
- msgid "You will find a short overview at the <strong>Help</strong> section in the top-right screen."
455
- msgstr "Krótkie podsumowanie znajdziesz w dziale <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
456
-
457
- #: ../codepress-admin-columns.php:3208
458
- msgid "Codepress Admin Columns"
459
- msgstr "Edytor kolumn"
460
-
461
- #: ../codepress-admin-columns.php:3221
462
- msgid "By default WordPress let's you only sort by title, date, comments and author."
463
- msgstr "Domyślnie WordPress pozwala na sortowanie po tytule, dacie, komentarzu i autorze."
464
-
465
- #: ../codepress-admin-columns.php:3222
466
- msgid "Make <strong>all columns</strong> of <strong>all types</strong> support sorting &#8212; with the sorting addon."
467
- msgstr "Włącz sortowanie <strong>wszystkich kolumn, wszystkich typów</strong> &#8212; uaktywniając dodatek."
468
-
469
- #: ../codepress-admin-columns.php:3230
470
- msgid "Like this plugin?"
471
- msgstr "Lubisz tę wtyczkę?"
472
-
473
- #: ../codepress-admin-columns.php:3233
474
- msgid "Why not do any or all of the following"
475
- msgstr "Dlaczego by nie zrobić jednej lub wszystkich z poniższych rzeczy"
476
-
477
- #: ../codepress-admin-columns.php:3235
478
- msgid "Link to it so other folks can find out about it."
479
- msgstr "Dodaj link aby inni mogli się o niej dowiedzieć."
480
-
481
- #: ../codepress-admin-columns.php:3236
482
- msgid "Give it a 5 star rating on WordPress.org."
483
- msgstr "Przyznaj jej 5 gwaizdek na stronie WordPress.org."
484
-
485
- #: ../codepress-admin-columns.php:3237
486
- msgid "Donate a token of your appreciation."
487
- msgstr "Wspomóż drobną dotacją."
488
-
489
- #: ../codepress-admin-columns.php:3245
490
- msgid "Need support?"
491
- msgstr "Potrzebujesz pomocy?"
492
-
493
- #: ../codepress-admin-columns.php:3249
494
- #, php-format
495
- msgid "If you are having problems with this plugin, please talk about them in the <a href=\"%s\">Support forums</a> or send me an email %s."
496
- msgstr "Jeśli masz jakieś problemy z tą wtyczką, proszę napisz o tym na stronie <a href=\"%s\">Forum pomocy</a> lub wyślij do mnie maila na adres %s."
497
-
498
- #: ../codepress-admin-columns.php:3250
499
- #, php-format
500
- msgid "If you're sure you've found a bug, or have a feature request, please <a href='%s'>submit your feedback</a>."
501
- msgstr "Jeśli jeste przekonany, że znalazłeś bug'a lub masz prośbę o dodanie nowej funkcji, proszę <a href='%s'>wyślij do mnie maila.</a>."
502
-
503
- #: ../codepress-admin-columns.php:3265
504
- msgid "Admin Columns"
505
- msgstr "Edytor kolumn"
506
-
507
- #: ../codepress-admin-columns.php:3283
508
- msgid "Save Changes"
509
- msgstr "Zapisz zmiany"
510
-
511
- #: ../codepress-admin-columns.php:3295
512
- msgid "Restore defaults"
513
- msgstr "Przywróć domyślne"
514
-
515
- #: ../codepress-admin-columns.php:3299
516
- msgid "Restore default settings"
517
- msgstr "Przywróć ustawienia domyślne"
518
-
519
- #: ../codepress-admin-columns.php:3299
520
- msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
521
- msgstr "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
522
-
523
- #: ../codepress-admin-columns.php:3301
524
- msgid "This will delete all column settings and restore the default settings."
525
- msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień domyślnych."
526
-
527
- #: ../classes/sortable.php:961
528
- msgid "Show all "
529
- msgstr "Pokaż wszystkie"
530
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Codepress Admin Columns\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-24 10:21+0100\n"
6
+ "PO-Revision-Date: 2012-08-24 10:21+0100\n"
7
+ "Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
8
+ "Language-Team: Digital Factory <info@digitalfactory.pl>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: Polish\n"
15
+ "X-Poedit-Country: POLAND\n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Poedit-SourceCharset: utf-8\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SearchPath-1: ..\n"
20
+
21
+ #: ../codepress-admin-columns.php:169
22
+ msgid "Settings"
23
+ msgstr "Ustawienia"
24
+
25
+ #: ../codepress-admin-columns.php:352
26
+ msgid "Add Custom Field Column"
27
+ msgstr "Dodaj kolumnę Własne pole"
28
+
29
+ #: ../codepress-admin-columns.php:360
30
+ msgid "drag and drop to reorder"
31
+ msgstr "przeciągnij i opuść aby zmienić kolejność"
32
+
33
+ #: ../codepress-admin-columns.php:502
34
+ #: ../codepress-admin-columns.php:527
35
+ msgid "default"
36
+ msgstr "domyśłny"
37
+
38
+ #: ../codepress-admin-columns.php:525
39
+ #: ../codepress-admin-columns.php:1471
40
+ msgid "Width"
41
+ msgstr "Szerokość"
42
+
43
+ #: ../codepress-admin-columns.php:593
44
+ msgid "Default"
45
+ msgstr "Domyślny"
46
+
47
+ #: ../codepress-admin-columns.php:594
48
+ #: ../codepress-admin-columns.php:1602
49
+ msgid "Image"
50
+ msgstr "Obrazek"
51
+
52
+ #: ../codepress-admin-columns.php:595
53
+ msgid "Media Library Icon"
54
+ msgstr "Ikona Biblioteki mediów"
55
+
56
+ #: ../codepress-admin-columns.php:596
57
+ #: ../codepress-admin-columns.php:1255
58
+ #: ../codepress-admin-columns.php:1678
59
+ msgid "Excerpt"
60
+ msgstr "Wypis"
61
+
62
+ #: ../codepress-admin-columns.php:597
63
+ msgid "Multiple Values"
64
+ msgstr "Wielokrotne wartości"
65
+
66
+ #: ../codepress-admin-columns.php:598
67
+ msgid "Numeric"
68
+ msgstr "Numeryczny"
69
+
70
+ #: ../codepress-admin-columns.php:599
71
+ #: ../codepress-admin-columns.php:1669
72
+ msgid "Date"
73
+ msgstr "Data"
74
+
75
+ #: ../codepress-admin-columns.php:600
76
+ msgid "Post Title (Post ID's)"
77
+ msgstr "Tytył wpisu (ID wpisu)"
78
+
79
+ #: ../codepress-admin-columns.php:601
80
+ msgid "Checkmark (true/false)"
81
+ msgstr "Znak (prawda/fałsz)"
82
+
83
+ #: ../codepress-admin-columns.php:626
84
+ msgid "This field can not be removed"
85
+ msgstr "To własne pole nie może być usunięte"
86
+
87
+ #: ../codepress-admin-columns.php:630
88
+ #: ../classes/values/users.php:153
89
+ msgid "Remove"
90
+ msgstr "Usuń"
91
+
92
+ #: ../codepress-admin-columns.php:636
93
+ #: ../codepress-admin-columns.php:1362
94
+ #: ../codepress-admin-columns.php:1430
95
+ #: ../codepress-admin-columns.php:1569
96
+ #: ../codepress-admin-columns.php:1697
97
+ msgid "Custom Field"
98
+ msgstr "Własne pole"
99
+
100
+ #: ../codepress-admin-columns.php:639
101
+ msgid "Field Type"
102
+ msgstr "Rodzaj pola"
103
+
104
+ #: ../codepress-admin-columns.php:642
105
+ msgid "Before"
106
+ msgstr "Przed"
107
+
108
+ #: ../codepress-admin-columns.php:645
109
+ msgid "After"
110
+ msgstr "Po"
111
+
112
+ #: ../codepress-admin-columns.php:663
113
+ msgid "Display Name"
114
+ msgstr "Pseudonim"
115
+
116
+ #: ../codepress-admin-columns.php:664
117
+ msgid "First Name"
118
+ msgstr "Imię"
119
+
120
+ #: ../codepress-admin-columns.php:665
121
+ msgid "Last Name"
122
+ msgstr "Nazwisko"
123
+
124
+ #: ../codepress-admin-columns.php:666
125
+ msgid "First &amp; Last Name"
126
+ msgstr "Imię i nazwisko"
127
+
128
+ #: ../codepress-admin-columns.php:667
129
+ #: ../codepress-admin-columns.php:1392
130
+ msgid "Nickname"
131
+ msgstr "Pseudonim"
132
+
133
+ #: ../codepress-admin-columns.php:668
134
+ msgid "Username"
135
+ msgstr "Nazwa użytkownika"
136
+
137
+ #: ../codepress-admin-columns.php:669
138
+ msgid "Email"
139
+ msgstr "Email"
140
+
141
+ #: ../codepress-admin-columns.php:670
142
+ #: ../codepress-admin-columns.php:1389
143
+ msgid "User ID"
144
+ msgstr "ID użytkownika"
145
+
146
+ #: ../codepress-admin-columns.php:679
147
+ msgid "Display name as"
148
+ msgstr "Wyświetl jakoi"
149
+
150
+ #: ../codepress-admin-columns.php:1221
151
+ msgid "Comments"
152
+ msgstr "Komentarze"
153
+
154
+ #: ../codepress-admin-columns.php:1227
155
+ msgid "Icon"
156
+ msgstr "Ikona"
157
+
158
+ #: ../codepress-admin-columns.php:1252
159
+ msgid "Featured Image"
160
+ msgstr "Ikona wpisu"
161
+
162
+ #: ../codepress-admin-columns.php:1258
163
+ #: ../codepress-admin-columns.php:1322
164
+ msgid "Page Order"
165
+ msgstr "Kolejność stron"
166
+
167
+ #: ../codepress-admin-columns.php:1261
168
+ #: ../codepress-admin-columns.php:1339
169
+ msgid "Post Format"
170
+ msgstr "Format wpisu"
171
+
172
+ #: ../codepress-admin-columns.php:1264
173
+ #: ../codepress-admin-columns.php:1456
174
+ #: ../codepress-admin-columns.php:1596
175
+ #: ../codepress-admin-columns.php:1642
176
+ msgid "ID"
177
+ msgstr "ID"
178
+
179
+ #: ../codepress-admin-columns.php:1267
180
+ msgid "Slug"
181
+ msgstr "Bezpośredni odnośnik"
182
+
183
+ #: ../codepress-admin-columns.php:1270
184
+ msgid "Attachment"
185
+ msgstr "Załącznik"
186
+
187
+ #: ../codepress-admin-columns.php:1273
188
+ msgid "No. of Attachments"
189
+ msgstr "Liczba załączników"
190
+
191
+ #: ../codepress-admin-columns.php:1276
192
+ msgid "Roles"
193
+ msgstr "Role"
194
+
195
+ #: ../codepress-admin-columns.php:1279
196
+ #: ../codepress-admin-columns.php:2323
197
+ msgid "Status"
198
+ msgstr "Status"
199
+
200
+ #: ../codepress-admin-columns.php:1282
201
+ msgid "Comment status"
202
+ msgstr "Status komentarza"
203
+
204
+ #: ../codepress-admin-columns.php:1285
205
+ msgid "Ping status"
206
+ msgstr "Status ping"
207
+
208
+ #: ../codepress-admin-columns.php:1288
209
+ #: ../codepress-admin-columns.php:1410
210
+ #: ../codepress-admin-columns.php:1489
211
+ #: ../codepress-admin-columns.php:1620
212
+ #: ../codepress-admin-columns.php:1681
213
+ msgid "Actions"
214
+ msgstr "Działania"
215
+
216
+ #: ../codepress-admin-columns.php:1294
217
+ msgid "Last modified"
218
+ msgstr "Ostatnia modyfikacja"
219
+
220
+ #: ../codepress-admin-columns.php:1297
221
+ msgid "Comment count"
222
+ msgstr "Liczba komentarzy"
223
+
224
+ #: ../codepress-admin-columns.php:1300
225
+ msgid "Display Author As"
226
+ msgstr "Wyświetla autora jako"
227
+
228
+ #: ../codepress-admin-columns.php:1308
229
+ #: ../codepress-admin-columns.php:1687
230
+ msgid "Word count"
231
+ msgstr "Liczba słów"
232
+
233
+ #: ../codepress-admin-columns.php:1315
234
+ msgid "Sticky"
235
+ msgstr "Przyklejone"
236
+
237
+ #: ../codepress-admin-columns.php:1324
238
+ msgid "Order"
239
+ msgstr "Kolejność"
240
+
241
+ #: ../codepress-admin-columns.php:1332
242
+ msgid "Page Template"
243
+ msgstr "Szablon strony"
244
+
245
+ #: ../codepress-admin-columns.php:1352
246
+ msgid "Taxonomy"
247
+ msgstr "Taksonomia"
248
+
249
+ #: ../codepress-admin-columns.php:1368
250
+ #: ../codepress-admin-columns.php:1436
251
+ #: ../codepress-admin-columns.php:1575
252
+ #: ../codepress-admin-columns.php:1703
253
+ msgid "Field"
254
+ msgstr "Pole"
255
+
256
+ #: ../codepress-admin-columns.php:1395
257
+ msgid "First name"
258
+ msgstr "Imię"
259
+
260
+ #: ../codepress-admin-columns.php:1398
261
+ msgid "Last name"
262
+ msgstr "Nazwisko"
263
+
264
+ #: ../codepress-admin-columns.php:1401
265
+ msgid "Url"
266
+ msgstr "Adres URL"
267
+
268
+ #: ../codepress-admin-columns.php:1404
269
+ msgid "Registered"
270
+ msgstr "Zarejestrowany"
271
+
272
+ #: ../codepress-admin-columns.php:1407
273
+ #: ../codepress-admin-columns.php:1477
274
+ #: ../codepress-admin-columns.php:1599
275
+ msgid "Description"
276
+ msgstr "Opis"
277
+
278
+ #: ../codepress-admin-columns.php:1423
279
+ msgid "Postcount"
280
+ msgstr "Liczba wpisów"
281
+
282
+ #: ../codepress-admin-columns.php:1459
283
+ msgid "Mime type"
284
+ msgstr "Typ pliku"
285
+
286
+ #: ../codepress-admin-columns.php:1462
287
+ msgid "File name"
288
+ msgstr "Nazwa pliku"
289
+
290
+ #: ../codepress-admin-columns.php:1465
291
+ msgid "Dimensions"
292
+ msgstr "Wymiary"
293
+
294
+ #: ../codepress-admin-columns.php:1468
295
+ msgid "Height"
296
+ msgstr "Wysokość"
297
+
298
+ #: ../codepress-admin-columns.php:1474
299
+ #: ../codepress-admin-columns.php:1522
300
+ msgid "Caption"
301
+ msgstr "Tytuł"
302
+
303
+ #: ../codepress-admin-columns.php:1480
304
+ msgid "Alt"
305
+ msgstr "Tekst alternatywny"
306
+
307
+ #: ../codepress-admin-columns.php:1483
308
+ msgid "Upload paths"
309
+ msgstr "Ścieżki plików"
310
+
311
+ #: ../codepress-admin-columns.php:1495
312
+ msgid "File size"
313
+ msgstr "Wielkość pliku"
314
+
315
+ #: ../codepress-admin-columns.php:1504
316
+ msgid "Aperture"
317
+ msgstr "Przysłona"
318
+
319
+ #: ../codepress-admin-columns.php:1506
320
+ msgid "Aperture EXIF"
321
+ msgstr "Przysłona EXIF"
322
+
323
+ #: ../codepress-admin-columns.php:1510
324
+ msgid "Credit"
325
+ msgstr "Autor"
326
+
327
+ #: ../codepress-admin-columns.php:1512
328
+ msgid "Credit EXIF"
329
+ msgstr "Autor EXIF"
330
+
331
+ #: ../codepress-admin-columns.php:1516
332
+ msgid "Camera"
333
+ msgstr "Aparat"
334
+
335
+ #: ../codepress-admin-columns.php:1518
336
+ msgid "Camera EXIF"
337
+ msgstr "Aparat EXIF"
338
+
339
+ #: ../codepress-admin-columns.php:1524
340
+ msgid "Caption EXIF"
341
+ msgstr "Podpis EXIF"
342
+
343
+ #: ../codepress-admin-columns.php:1528
344
+ msgid "Timestamp"
345
+ msgstr "Data"
346
+
347
+ #: ../codepress-admin-columns.php:1530
348
+ msgid "Timestamp EXIF"
349
+ msgstr "Data EXIF"
350
+
351
+ #: ../codepress-admin-columns.php:1534
352
+ msgid "Copyright"
353
+ msgstr "Prawa autorskie"
354
+
355
+ #: ../codepress-admin-columns.php:1536
356
+ msgid "Copyright EXIF"
357
+ msgstr "Prawa autorskie EXIF"
358
+
359
+ #: ../codepress-admin-columns.php:1540
360
+ msgid "Focal Length"
361
+ msgstr "Ogniskowa"
362
+
363
+ #: ../codepress-admin-columns.php:1542
364
+ msgid "Focal Length EXIF"
365
+ msgstr "Ogniskowa EXIF"
366
+
367
+ #: ../codepress-admin-columns.php:1546
368
+ msgid "ISO"
369
+ msgstr "ISO"
370
+
371
+ #: ../codepress-admin-columns.php:1548
372
+ msgid "ISO EXIF"
373
+ msgstr "ISO EXIF"
374
+
375
+ #: ../codepress-admin-columns.php:1552
376
+ msgid "Shutter Speed"
377
+ msgstr "Szybkość migawki"
378
+
379
+ #: ../codepress-admin-columns.php:1554
380
+ msgid "Shutter Speed EXIF"
381
+ msgstr "Szybkość migawki EXIF"
382
+
383
+ #: ../codepress-admin-columns.php:1558
384
+ msgid "Title"
385
+ msgstr "Tytuł"
386
+
387
+ #: ../codepress-admin-columns.php:1560
388
+ msgid "Title EXIF"
389
+ msgstr "Tytuł EXIF"
390
+
391
+ #: ../codepress-admin-columns.php:1605
392
+ msgid "Target"
393
+ msgstr "Cel"
394
+
395
+ #: ../codepress-admin-columns.php:1608
396
+ msgid "Owner"
397
+ msgstr "Właściciel"
398
+
399
+ #: ../codepress-admin-columns.php:1611
400
+ msgid "Notes"
401
+ msgstr "Notatki"
402
+
403
+ #: ../codepress-admin-columns.php:1614
404
+ msgid "Rss"
405
+ msgstr "Rss"
406
+
407
+ #: ../codepress-admin-columns.php:1617
408
+ msgid "Length"
409
+ msgstr "Długość"
410
+
411
+ #: ../codepress-admin-columns.php:1645
412
+ msgid "Author Name"
413
+ msgstr "Imię Autora"
414
+
415
+ #: ../codepress-admin-columns.php:1648
416
+ msgid "Avatar"
417
+ msgstr "Avatar"
418
+
419
+ #: ../codepress-admin-columns.php:1651
420
+ msgid "Author url"
421
+ msgstr "URL Autora"
422
+
423
+ #: ../codepress-admin-columns.php:1654
424
+ msgid "Author IP"
425
+ msgstr "IP Autora"
426
+
427
+ #: ../codepress-admin-columns.php:1657
428
+ msgid "Author email"
429
+ msgstr "Email Autora"
430
+
431
+ #: ../codepress-admin-columns.php:1660
432
+ msgid "In Reply To"
433
+ msgstr "W odpowiedzi na"
434
+
435
+ #: ../codepress-admin-columns.php:1666
436
+ msgid "Approved"
437
+ msgstr "Zatwierdzony"
438
+
439
+ #: ../codepress-admin-columns.php:1672
440
+ msgid "Date GMT"
441
+ msgstr "Data GMT"
442
+
443
+ #: ../codepress-admin-columns.php:1675
444
+ msgid "Agent"
445
+ msgstr "Przeglądarka"
446
+
447
+ #: ../codepress-admin-columns.php:1734
448
+ msgid "Custom"
449
+ msgstr "Włąsne"
450
+
451
+ #: ../codepress-admin-columns.php:1811
452
+ msgid "Addons"
453
+ msgstr "Dodatki"
454
+
455
+ #: ../codepress-admin-columns.php:2263
456
+ #: ../codepress-admin-columns.php:2449
457
+ msgid "find out more"
458
+ msgstr "dowiedz się więcej"
459
+
460
+ #: ../codepress-admin-columns.php:2267
461
+ msgid "This will make all of the new columns support sorting"
462
+ msgstr "Dzięki temu wszystkie nowe kolumny będą sortowalne"
463
+
464
+ #: ../codepress-admin-columns.php:2268
465
+ msgid "By default WordPress let's you sort by title, date, comments and author. This will make you be able to <strong>sort by any column of any type!</strong>"
466
+ msgstr "Domyślnie, WordPress pozwala na sortowanie po tytule, dacie, komentarzu i autorze. Dzięi temu będziesz mógł <strong>sortować każdą kolumnę, każdego rodzaju!</strong>"
467
+
468
+ #: ../codepress-admin-columns.php:2269
469
+ msgid "Perfect for sorting your articles, media files, comments, links and users"
470
+ msgstr "Idealne rozwiązanie do sortowania wpisów, mediów, komentarzy, linków i użytkowników"
471
+
472
+ #: ../codepress-admin-columns.php:2270
473
+ #: ../codepress-admin-columns.php:2469
474
+ msgid "(columns that are added by other plugins are not supported)"
475
+ msgstr "(kolumny dodane przez inne wtyczki nie wspierane)"
476
+
477
+ #: ../codepress-admin-columns.php:2279
478
+ #: ../codepress-admin-columns.php:2281
479
+ msgid "Sortorder"
480
+ msgstr "Kierunek sortowania"
481
+
482
+ #: ../codepress-admin-columns.php:2289
483
+ msgid "Inactive"
484
+ msgstr "Nieaktywny"
485
+
486
+ #: ../codepress-admin-columns.php:2292
487
+ msgid "Active"
488
+ msgstr "Aktywny"
489
+
490
+ #: ../codepress-admin-columns.php:2297
491
+ msgid "Fill in your activation code"
492
+ msgstr "Wpisz kod aktywacyjny"
493
+
494
+ #: ../codepress-admin-columns.php:2298
495
+ msgid "Activate"
496
+ msgstr "Aktywuj"
497
+
498
+ #: ../codepress-admin-columns.php:2302
499
+ msgid "Deactivate"
500
+ msgstr "Deaktywuj"
501
+
502
+ #: ../codepress-admin-columns.php:2317
503
+ msgid "Activate Add-ons"
504
+ msgstr "Aktywuj dodatki"
505
+
506
+ #: ../codepress-admin-columns.php:2318
507
+ msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites"
508
+ msgstr "Dodatki mągą być aktywowane po zakupie licencji. Każdy klucz licencji może być sotsowany na wielu stronach"
509
+
510
+ #: ../codepress-admin-columns.php:2322
511
+ msgid "Addon"
512
+ msgstr "Dodatek"
513
+
514
+ #: ../codepress-admin-columns.php:2324
515
+ msgid "Activation Code"
516
+ msgstr "Kod aktywacyjny"
517
+
518
+ #: ../codepress-admin-columns.php:2333
519
+ msgid "Enter your activation code"
520
+ msgstr "Wpisz kod aktywacyjny"
521
+
522
+ #: ../codepress-admin-columns.php:2334
523
+ msgid "Activation code unrecognised"
524
+ msgstr "Kod aktywacyjny nie został rozpoznany"
525
+
526
+ #: ../codepress-admin-columns.php:2446
527
+ msgid "You will find a short overview at the <strong>Help</strong> section in the top-right screen."
528
+ msgstr "Krótkie podsumowanie znajdziesz w dziale <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
529
+
530
+ #: ../codepress-admin-columns.php:2454
531
+ msgid "Codepress Admin Columns"
532
+ msgstr "Edytor kolumn"
533
+
534
+ #: ../codepress-admin-columns.php:2464
535
+ msgid "Get the Addon"
536
+ msgstr "Kup dodatek"
537
+
538
+ #: ../codepress-admin-columns.php:2467
539
+ msgid "By default WordPress let's you only sort by title, date, comments and author."
540
+ msgstr "Domyślnie WordPress pozwala na sortowanie po tytule, dacie, komentarzu i autorze."
541
+
542
+ #: ../codepress-admin-columns.php:2468
543
+ msgid "Make <strong>all columns</strong> of <strong>all types</strong> within the plugin support sorting &#8212; with the sorting addon."
544
+ msgstr "Pozwól na sortowanie <strong>wszystkich kolumn, wszystkich typów</strong> uaktywniając dodatek umożłiwiający sortowanie."
545
+
546
+ #: ../codepress-admin-columns.php:2477
547
+ msgid "Like this plugin?"
548
+ msgstr "Lubisz tę wtyczkę?"
549
+
550
+ #: ../codepress-admin-columns.php:2480
551
+ msgid "Why not do any or all of the following"
552
+ msgstr "Dlaczego by nie zrobić jednej lub wszystkich z poniższych rzeczy"
553
+
554
+ #: ../codepress-admin-columns.php:2482
555
+ msgid "Give it a 5 star rating on WordPress.org."
556
+ msgstr "Przyznaj jej 5 gwaizdek na stronie WordPress.org."
557
+
558
+ #: ../codepress-admin-columns.php:2483
559
+ msgid "Link to it so other folks can find out about it."
560
+ msgstr "Dodaj link aby inni mogli się o niej dowiedzieć."
561
+
562
+ #: ../codepress-admin-columns.php:2484
563
+ msgid "Donate a token of your appreciation."
564
+ msgstr "Wspomóż drobną dotacją."
565
+
566
+ #: ../codepress-admin-columns.php:2492
567
+ msgid "Follow us"
568
+ msgstr "Śledź nas"
569
+
570
+ #: ../codepress-admin-columns.php:2496
571
+ msgid "Follow Codepress on Twitter."
572
+ msgstr "Śledź nas na Tweeterze."
573
+
574
+ #: ../codepress-admin-columns.php:2497
575
+ msgid "Like Codepress on Facebook."
576
+ msgstr "Polub Codepress na Facebooku."
577
+
578
+ #: ../codepress-admin-columns.php:2506
579
+ msgid "Need support?"
580
+ msgstr "Potrzebujesz pomocy?"
581
+
582
+ #: ../codepress-admin-columns.php:2510
583
+ #, php-format
584
+ msgid "If you are having problems with this plugin, please talk about them in the <a href=\"%s\">Support forums</a> or send me an email %s."
585
+ msgstr "Jeśli masz jakieś problemy z tą wtyczką, proszę napisz o tym na stronie <a href=\"%s\">Forum pomocy</a> lub wyślij do mnie maila na adres %s."
586
+
587
+ #: ../codepress-admin-columns.php:2511
588
+ #, php-format
589
+ msgid "If you're sure you've found a bug, or have a feature request, please <a href='%s'>submit your feedback</a>."
590
+ msgstr "Jeśli jeste przekonany, że znalazłeś bug'a lub masz prośbę o dodanie nowej funkcji, proszę <a href='%s'>wyślij do mnie maila.</a>."
591
+
592
+ #: ../codepress-admin-columns.php:2526
593
+ msgid "Admin Columns"
594
+ msgstr "Edytor kolumn"
595
+
596
+ #: ../codepress-admin-columns.php:2544
597
+ msgid "Save Changes"
598
+ msgstr "Zapisz zmiany"
599
+
600
+ #: ../codepress-admin-columns.php:2556
601
+ msgid "Restore defaults"
602
+ msgstr "Przywróć domyślne"
603
+
604
+ #: ../codepress-admin-columns.php:2560
605
+ msgid "Restore default settings"
606
+ msgstr "Przywróć ustawienia domyślne"
607
+
608
+ #: ../codepress-admin-columns.php:2560
609
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
610
+ msgstr "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
611
+
612
+ #: ../codepress-admin-columns.php:2562
613
+ msgid "This will delete all column settings and restore the default settings."
614
+ msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień domyślnych."
615
+
616
+ #: ../classes/sortable.php:1158
617
+ msgid "Show all "
618
+ msgstr "Pokaż wszystkie"
619
+
620
+ #: ../classes/values/comments.php:95
621
+ #: ../classes/values/comments.php:106
622
+ #, php-format
623
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
624
+ msgstr "Opublikowany dnia <a href=\"%1$s\">%2$s o godz. %3$s</a>"
625
+
626
+ #: ../classes/values/comments.php:195
627
+ #: ../classes/values/comments.php:200
628
+ msgid "Unapprove"
629
+ msgstr "Odrzuć"
630
+
631
+ #: ../classes/values/comments.php:197
632
+ #: ../classes/values/comments.php:199
633
+ msgid "Approve"
634
+ msgstr "Zatwierdź"
635
+
636
+ #: ../classes/values/comments.php:208
637
+ #: ../classes/values/posts.php:281
638
+ msgid "Restore"
639
+ msgstr "Przywróć"
640
+
641
+ #: ../classes/values/comments.php:212
642
+ #: ../classes/values/posts.php:285
643
+ msgid "Delete Permanently"
644
+ msgstr "Usuń na zawsze"
645
+
646
+ #: ../classes/values/comments.php:218
647
+ #: ../classes/values/link.php:117
648
+ #: ../classes/values/posts.php:276
649
+ #: ../classes/values/users.php:145
650
+ msgid "Edit"
651
+ msgstr "Edytuj"
652
+
653
+ #: ../classes/values/comments.php:219
654
+ #: ../classes/values/posts.php:277
655
+ msgid "Quick&nbsp;Edit"
656
+ msgstr "Szybka&nbsp;edycja"
657
+
658
+ #: ../classes/values/comments.php:220
659
+ msgid "Reply"
660
+ msgstr "Odpowiedź"
661
+
662
+ #: ../classes/values/link.php:118
663
+ #, php-format
664
+ msgid ""
665
+ "You are about to delete this link '%s'\n"
666
+ " 'Cancel' to stop, 'OK' to delete."
667
+ msgstr ""
668
+ "Zamierzasz usunąć ten link link '%s'\n"
669
+ " 'Cancel' to stop, 'OK' to delete."
670
+
671
+ #: ../classes/values/link.php:118
672
+ #: ../classes/values/users.php:151
673
+ msgid "Delete"
674
+ msgstr "Usuń"
675
+
676
+ #: ../classes/values/media.php:100
677
+ msgid "original"
678
+ msgstr "oryginalny"
679
+
680
+ #: ../classes/values/posts.php:107
681
+ msgid "Standard"
682
+ msgstr "Standardowe"
683
+
684
+ #: ../classes/values/posts.php:212
685
+ msgid "Published"
686
+ msgstr "Opublikowany"
687
+
688
+ #: ../classes/values/posts.php:213
689
+ msgid "Draft"
690
+ msgstr "Szkic"
691
+
692
+ #: ../classes/values/posts.php:214
693
+ msgid "Scheduled"
694
+ msgstr "Zaplanowany"
695
+
696
+ #: ../classes/values/posts.php:215
697
+ msgid "Private"
698
+ msgstr "Prywatny"
699
+
700
+ #: ../classes/values/posts.php:216
701
+ msgid "Pending Review"
702
+ msgstr "Oczekujący na przegląd"
703
+
704
+ #: ../classes/values/posts.php:217
705
+ #: ../classes/values/posts.php:283
706
+ msgid "Trash"
707
+ msgstr "Kosz"
708
+
709
+ #: ../classes/values/posts.php:238
710
+ msgid "approved"
711
+ msgstr "zatwierdzony"
712
+
713
+ #: ../classes/values/posts.php:242
714
+ msgid "pending"
715
+ msgstr "oczekujący"
716
+
717
+ #: ../classes/values/posts.php:246
718
+ msgid "spam"
719
+ msgstr "spam"
720
+
721
+ #: ../classes/values/posts.php:250
722
+ msgid "trash"
723
+ msgstr "kosz"
724
+
725
+ #: ../classes/values/posts.php:276
726
+ msgid "Edit this item"
727
+ msgstr "Edytuj element"
728
+
729
+ #: ../classes/values/posts.php:277
730
+ msgid "Edit this item inline"
731
+ msgstr "Edytuj element"
732
+
733
+ #: ../classes/values/posts.php:281
734
+ msgid "Restore this item from the Trash"
735
+ msgstr "Przywróć ten element z kosza"
736
+
737
+ #: ../classes/values/posts.php:283
738
+ msgid "Move this item to the Trash"
739
+ msgstr "Przenieś ten element do kosza"
740
+
741
+ #: ../classes/values/posts.php:285
742
+ msgid "Delete this item permanently"
743
+ msgstr "Usuń ten element na zawsze"
744
+
745
+ #: ../classes/values/posts.php:290
746
+ #, php-format
747
+ msgid "Preview &#8220;%s&#8221;"
748
+ msgstr "Podejrzyj &#8220;%s&#8221;"
749
+
750
+ #: ../classes/values/posts.php:290
751
+ msgid "Preview"
752
+ msgstr "Podejrzyj"
753
+
754
+ #: ../classes/values/posts.php:292
755
+ #, php-format
756
+ msgid "View &#8220;%s&#8221;"
757
+ msgstr "Zobacz &#8220;%s&#8221;"
758
+
759
+ #: ../classes/values/posts.php:292
760
+ msgid "View"
761
+ msgstr "Zobacz"
762
+
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.1
6
  Tested up to: 3.4
7
- Stable tag: 1.4.6.2
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
 
@@ -99,6 +99,7 @@ With the custom field column you can display any custom field values. It can sho
99
  * Multiple Values
100
  * Numeric value ( this also works for sorting by meta_value_num )
101
  * Post Titles
 
102
  * Checkmark Image ( for true or false values )
103
 
104
  = Sortable Custom Columns for all Screens =
@@ -167,6 +168,9 @@ add_filter('cpac_thumbnail_size', function() {
167
  ?>
168
  `
169
 
 
 
 
170
  = How can I enable the use of Hidden Custom Fields? =
171
 
172
  I am currently working on settings page where you can enable this feature. In the meanwhile you can enable this by adding
@@ -191,6 +195,42 @@ add_filter( 'cpac-remove-filtering-columns', '__return_false' ); // add dropdown
191
  ?>
192
  `
193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
 
195
  == Screenshots ==
196
 
@@ -204,10 +244,17 @@ add_filter( 'cpac-remove-filtering-columns', '__return_false' ); // add dropdown
204
 
205
  == Changelog ==
206
 
 
 
 
 
 
 
 
207
  = 1.4.6.2 =
208
 
209
  * bug fix with a static function which could cause an error in some cases
210
- * added filter to enable taxonomy filtering. add this to your functions.php to enable taxonomy filtering: `add_filter( 'cpac-remove-filtering-columns', '__return_false' )`
211
 
212
  = 1.4.6.1 =
213
 
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.1
6
  Tested up to: 3.4
7
+ Stable tag: 1.4.6.3
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
 
99
  * Multiple Values
100
  * Numeric value ( this also works for sorting by meta_value_num )
101
  * Post Titles
102
+ * Usernames
103
  * Checkmark Image ( for true or false values )
104
 
105
  = Sortable Custom Columns for all Screens =
168
  ?>
169
  `
170
 
171
+ **my already uploaded images have a wrong size**
172
+ If you want your already uploaded images to display the newly added size you will need to regenerate the thumbnail for them. Use this plugin to generate the newly added sized thumbnails: http://wordpress.org/extend/plugins/regenerate-thumbnails/.
173
+
174
  = How can I enable the use of Hidden Custom Fields? =
175
 
176
  I am currently working on settings page where you can enable this feature. In the meanwhile you can enable this by adding
195
  ?>
196
  `
197
 
198
+ = How can I display a custom value in the Custom Fields Column? =
199
+
200
+ With this filter 'cpac_get_column_value_custom_field' you can control what the value will be for any Custom Field Column.
201
+
202
+ Filter explained:
203
+
204
+ * **$value** is the orgignal value which would otherwise be displayed
205
+ * **$internal_field_key** is only used internally to store the column
206
+ * **$custom_field** is the name of your custom field
207
+ * **$type** will return either the posttype or if it is any other type it will return wp-comments, wp-links, wp-users, wp-media.
208
+ * **$object_id** will return the ID of the object.
209
+
210
+ For example if you have a custom posttype 'Demo' with a custom_field that is called 'city' and the result would be an integer '33'. You can change that integer '33' to Amsterdam.
211
+
212
+ `
213
+ <?php
214
+ function my_custom_field_value( $value, $internal_field_key, $custom_field, $type, $object_id )
215
+ {
216
+ $my_post_type = 'demo';
217
+ $my_field_name = 'city';
218
+
219
+ // make sure we have the correct posttype and fieldname
220
+ if ( $my_post_type == $type && $my_field_name == $custom_field ) {
221
+
222
+ if ( '33' == $value )
223
+ $value = 'Amsterdam';
224
+
225
+ elseif ( '34' == $value )
226
+ $value = 'New York';
227
+ }
228
+ return $value;
229
+ }
230
+ add_filter( 'cpac_get_column_value_custom_field', 'my_custom_field_value', 10, 5 );
231
+ ?>
232
+ `
233
+
234
 
235
  == Screenshots ==
236
 
244
 
245
  == Changelog ==
246
 
247
+ = 1.4.6.3 =
248
+
249
+ * Added new custom field type: User by User ID
250
+ * Added values to filter 'cpac_get_column_value_custom_field' for better control of the output
251
+ * Added an example for above filter to FAQ section
252
+ * Added fix where trash posts did not show with the sorting addon activated
253
+
254
  = 1.4.6.2 =
255
 
256
  * bug fix with a static function which could cause an error in some cases
257
+ * added filter to enable taxonomy filtering. add this to your functions.php to enable taxonomy filtering: `add_filter( 'cpac-remove-filtering-columns', '__return_false' );`
258
 
259
  = 1.4.6.1 =
260