Version Description
- bug fix for possible warning when using Custompress ( props to scottsalisbury for the fix! )
- bug fix for sorting by postcount for users
- added 'Display Author As' column for post(types)
- added sorting support for 'Display Author As' column
Download this release
Release Info
Developer | codepress |
Plugin | Admin Columns |
Version | 1.4.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.4.6 to 1.4.6.1
- classes/sortable.php +15 -1
- classes/values.php +1 -20
- classes/values/posts.php +40 -4
- classes/values/users.php +1 -1
- codepress-admin-columns.php +127 -9
- languages/codepress-admin-columns-nl_NL.po +716 -132
- readme.txt +20 -18
classes/sortable.php
CHANGED
@@ -296,7 +296,7 @@ class Codepress_Sortable_Columns extends Codepress_Admin_Columns
|
|
296 |
if ( $post_type ) {
|
297 |
$sort_flag = SORT_REGULAR;
|
298 |
foreach ( $this->get_users_data() as $u ) {
|
299 |
-
$count =
|
300 |
$cusers[$u->ID] = $this->prepare_sort_string_value($count);
|
301 |
}
|
302 |
}
|
@@ -879,6 +879,20 @@ class Codepress_Sortable_Columns extends Codepress_Admin_Columns
|
|
879 |
$taxonomy = str_replace('column-taxonomy-', '', $id);
|
880 |
$cposts = $this->get_posts_sorted_by_taxonomy($post_type, $taxonomy);
|
881 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
882 |
|
883 |
/** native WP columns */
|
884 |
|
296 |
if ( $post_type ) {
|
297 |
$sort_flag = SORT_REGULAR;
|
298 |
foreach ( $this->get_users_data() as $u ) {
|
299 |
+
$count = Codepress_Admin_Columns::get_post_count( $post_type, $u->ID );
|
300 |
$cusers[$u->ID] = $this->prepare_sort_string_value($count);
|
301 |
}
|
302 |
}
|
879 |
$taxonomy = str_replace('column-taxonomy-', '', $id);
|
880 |
$cposts = $this->get_posts_sorted_by_taxonomy($post_type, $taxonomy);
|
881 |
break;
|
882 |
+
|
883 |
+
case 'column-author-name' :
|
884 |
+
$sort_flag = SORT_STRING;
|
885 |
+
$display_as = $column[$id]['display_as'];
|
886 |
+
if( 'userid' == $display_as ) {
|
887 |
+
$sort_flag = SORT_NUMERIC;
|
888 |
+
}
|
889 |
+
foreach ( $this->get_any_posts_by_posttype($post_type) as $p ) {
|
890 |
+
if ( !empty($p->post_author) ) {
|
891 |
+
$name = Codepress_Admin_Columns::get_author_field_by_nametype($display_as, $p->post_author);
|
892 |
+
$cposts[$p->ID] = $name;
|
893 |
+
}
|
894 |
+
}
|
895 |
+
break;
|
896 |
|
897 |
/** native WP columns */
|
898 |
|
classes/values.php
CHANGED
@@ -192,26 +192,7 @@ class CPAC_Values
|
|
192 |
$thumbs .= wp_get_attachment_url($media_id) ? "<span class='cpac-column-value-image'>".wp_get_attachment_image( $media_id, array(80,80), true )."</span>" : '';
|
193 |
|
194 |
return $thumbs;
|
195 |
-
}
|
196 |
-
|
197 |
-
/**
|
198 |
-
* Get post count
|
199 |
-
*
|
200 |
-
* @since 1.3.1
|
201 |
-
*/
|
202 |
-
protected function get_post_count( $post_type, $user_id )
|
203 |
-
{
|
204 |
-
if ( ! post_type_exists($post_type) || ! get_userdata($user_id) )
|
205 |
-
return false;
|
206 |
-
|
207 |
-
$user_posts = get_posts(array(
|
208 |
-
'post_type' => $post_type,
|
209 |
-
'numberposts' => -1,
|
210 |
-
'author' => $user_id,
|
211 |
-
'post_status' => 'publish'
|
212 |
-
));
|
213 |
-
return count($user_posts);
|
214 |
-
}
|
215 |
|
216 |
/**
|
217 |
* Convert file size to readable format
|
192 |
$thumbs .= wp_get_attachment_url($media_id) ? "<span class='cpac-column-value-image'>".wp_get_attachment_image( $media_id, array(80,80), true )."</span>" : '';
|
193 |
|
194 |
return $thumbs;
|
195 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
|
197 |
/**
|
198 |
* Convert file size to readable format
|
classes/values/posts.php
CHANGED
@@ -182,8 +182,12 @@ class CPAC_Posts_Values extends CPAC_Values
|
|
182 |
// Post Comment count
|
183 |
case "column-comment-count" :
|
184 |
$result = WP_List_Table::comments_bubble( $post_id, get_pending_comments_num( $post_id ) );
|
185 |
-
$result .= $this->get_comment_count_details( $post_id );
|
186 |
-
|
|
|
|
|
|
|
|
|
187 |
break;
|
188 |
|
189 |
default :
|
@@ -287,11 +291,43 @@ class CPAC_Posts_Values extends CPAC_Values
|
|
287 |
} elseif ( 'trash' != $post->post_status ) {
|
288 |
$actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View “%s”' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
|
289 |
}
|
290 |
-
}
|
291 |
-
|
292 |
|
293 |
return implode(' | ', $actions);
|
294 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
}
|
296 |
|
297 |
?>
|
182 |
// Post Comment count
|
183 |
case "column-comment-count" :
|
184 |
$result = WP_List_Table::comments_bubble( $post_id, get_pending_comments_num( $post_id ) );
|
185 |
+
$result .= $this->get_comment_count_details( $post_id );
|
186 |
+
break;
|
187 |
+
|
188 |
+
// Author Name
|
189 |
+
case "column-author-name" :
|
190 |
+
$result = $this->get_column_value_authorname($post_id, $column_name);
|
191 |
break;
|
192 |
|
193 |
default :
|
291 |
} elseif ( 'trash' != $post->post_status ) {
|
292 |
$actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View “%s”' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
|
293 |
}
|
294 |
+
}
|
|
|
295 |
|
296 |
return implode(' | ', $actions);
|
297 |
}
|
298 |
+
|
299 |
+
/**
|
300 |
+
* Get column value of Custom Field
|
301 |
+
*
|
302 |
+
* @since 1.4.6.1
|
303 |
+
*/
|
304 |
+
protected function get_column_value_authorname($post_id, $column_name)
|
305 |
+
{
|
306 |
+
$type = get_post_type($post_id);
|
307 |
+
|
308 |
+
// get column
|
309 |
+
$columns = $this->get_stored_columns($type);
|
310 |
+
|
311 |
+
// get the type of author name
|
312 |
+
$display_as = isset($columns[$column_name]['display_as']) ? $columns[$column_name]['display_as'] : '';
|
313 |
+
|
314 |
+
// get the author
|
315 |
+
$post = get_post($post_id);
|
316 |
+
if ( !isset( $post->post_author) )
|
317 |
+
return false;
|
318 |
+
|
319 |
+
$name = Codepress_Admin_Columns::get_author_field_by_nametype($display_as, $post->post_author);
|
320 |
+
|
321 |
+
// filter for customization
|
322 |
+
$name = apply_filters('cpac_get_column_value_authorname', $name, $column_name, $post_id );
|
323 |
+
|
324 |
+
// add link filter
|
325 |
+
$class = isset( $_GET['author'] ) && $_GET['author'] == $userdata->ID ? ' class="current"' : '';
|
326 |
+
|
327 |
+
$name = "<a href='edit.php?post_type={$type}&author={$post->post_author}'{$class}>{$name}</a>";
|
328 |
+
|
329 |
+
return $name;
|
330 |
+
}
|
331 |
}
|
332 |
|
333 |
?>
|
classes/values/users.php
CHANGED
@@ -88,7 +88,7 @@ class CPAC_Users_Values extends CPAC_Values
|
|
88 |
$post_type = Codepress_Admin_Columns::get_posttype_by_postcount_column($column_name);
|
89 |
|
90 |
// get post count
|
91 |
-
$count =
|
92 |
|
93 |
// set result
|
94 |
$result = $count > 0 ? "<a href='edit.php?post_type={$post_type}&author={$user_id}'>{$count}</a>" : (string) $count;
|
88 |
$post_type = Codepress_Admin_Columns::get_posttype_by_postcount_column($column_name);
|
89 |
|
90 |
// get post count
|
91 |
+
$count = Codepress_Admin_Columns::get_post_count( $post_type, $user_id );
|
92 |
|
93 |
// set result
|
94 |
$result = $count > 0 ? "<a href='edit.php?post_type={$post_type}&author={$user_id}'>{$count}</a>" : (string) $count;
|
codepress-admin-columns.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Codepress Admin Columns
|
4 |
-
Version: 1.4.6
|
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' );
|
30 |
define( 'CPAC_TEXTDOMAIN', 'codepress-admin-columns' );
|
31 |
define( 'CPAC_SLUG', 'codepress-admin-columns' );
|
32 |
define( 'CPAC_URL', plugins_url('', __FILE__) );
|
@@ -221,8 +221,8 @@ class Codepress_Admin_Columns
|
|
221 |
* @since 1.0
|
222 |
*/
|
223 |
public function callback_add_posts_column_headings($columns)
|
224 |
-
{
|
225 |
-
return $this->add_columns_headings(
|
226 |
}
|
227 |
|
228 |
/**
|
@@ -545,8 +545,14 @@ class Codepress_Admin_Columns
|
|
545 |
$fields = '';
|
546 |
|
547 |
// Custom Fields
|
548 |
-
if
|
549 |
$fields = $this->get_box_options_customfields($type, $id, $values);
|
|
|
|
|
|
|
|
|
|
|
|
|
550 |
|
551 |
return $fields;
|
552 |
}
|
@@ -627,16 +633,16 @@ class Codepress_Admin_Columns
|
|
627 |
}
|
628 |
|
629 |
$inside = "
|
630 |
-
<label for='cpac-{$type}-{$id}-field'>Custom Field: </label>
|
631 |
<select name='cpac_options[columns][{$type}][{$id}][field]' id='cpac-{$type}-{$id}-field'>{$field_options}</select>
|
632 |
<br/>
|
633 |
-
<label for='cpac-{$type}-{$id}-field_type'>Field Type: </label>
|
634 |
<select name='cpac_options[columns][{$type}][{$id}][field_type]' id='cpac-{$type}-{$id}-field_type'>{$fieldtype_options}</select>
|
635 |
<br/>
|
636 |
-
<label for='cpac-{$type}-{$id}-before'>Before: </label>
|
637 |
<input type='text' class='cpac-before' name='cpac_options[columns][{$type}][{$id}][before]' id='cpac-{$type}-{$id}-before' value='{$before}'/>
|
638 |
<br/>
|
639 |
-
<label for='cpac-{$type}-{$id}-after'>After: </label>
|
640 |
<input type='text' class='cpac-after' name='cpac_options[columns][{$type}][{$id}][after]' id='cpac-{$type}-{$id}-after' value='{$after}'/>
|
641 |
<br/>
|
642 |
{$remove}
|
@@ -644,6 +650,40 @@ class Codepress_Admin_Columns
|
|
644 |
|
645 |
return $inside;
|
646 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
647 |
|
648 |
/**
|
649 |
* Get post meta fields by type; post(types) or users.
|
@@ -863,6 +903,61 @@ class Codepress_Admin_Columns
|
|
863 |
delete_option( 'cpac_options_default' );
|
864 |
}
|
865 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
866 |
/**
|
867 |
* Get WP default supported admin columns per post type.
|
868 |
*
|
@@ -1200,6 +1295,10 @@ class Codepress_Admin_Columns
|
|
1200 |
),
|
1201 |
'column-comment-count' => array(
|
1202 |
'label' => __('Comment count', CPAC_TEXTDOMAIN)
|
|
|
|
|
|
|
|
|
1203 |
)
|
1204 |
);
|
1205 |
|
@@ -2271,6 +2370,25 @@ class Codepress_Admin_Columns
|
|
2271 |
return $row;
|
2272 |
}
|
2273 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2274 |
/**
|
2275 |
* Settings Page Template.
|
2276 |
*
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Codepress Admin Columns
|
4 |
+
Version: 1.4.6.1
|
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.1' );
|
30 |
define( 'CPAC_TEXTDOMAIN', 'codepress-admin-columns' );
|
31 |
define( 'CPAC_SLUG', 'codepress-admin-columns' );
|
32 |
define( 'CPAC_URL', plugins_url('', __FILE__) );
|
221 |
* @since 1.0
|
222 |
*/
|
223 |
public function callback_add_posts_column_headings($columns)
|
224 |
+
{
|
225 |
+
return $this->add_columns_headings( get_post_type(), $columns);
|
226 |
}
|
227 |
|
228 |
/**
|
545 |
$fields = '';
|
546 |
|
547 |
// Custom Fields
|
548 |
+
if( $this->is_column_meta($id) ) {
|
549 |
$fields = $this->get_box_options_customfields($type, $id, $values);
|
550 |
+
}
|
551 |
+
|
552 |
+
// Author Fields
|
553 |
+
if( 'column-author-name' == $id) {
|
554 |
+
$fields = $this->get_box_options_author($type, $id, $values);
|
555 |
+
}
|
556 |
|
557 |
return $fields;
|
558 |
}
|
633 |
}
|
634 |
|
635 |
$inside = "
|
636 |
+
<label for='cpac-{$type}-{$id}-field'>".__('Custom Field', CPAC_TEXTDOMAIN).": </label>
|
637 |
<select name='cpac_options[columns][{$type}][{$id}][field]' id='cpac-{$type}-{$id}-field'>{$field_options}</select>
|
638 |
<br/>
|
639 |
+
<label for='cpac-{$type}-{$id}-field_type'>".__('Field Type', CPAC_TEXTDOMAIN).": </label>
|
640 |
<select name='cpac_options[columns][{$type}][{$id}][field_type]' id='cpac-{$type}-{$id}-field_type'>{$fieldtype_options}</select>
|
641 |
<br/>
|
642 |
+
<label for='cpac-{$type}-{$id}-before'>".__('Before', CPAC_TEXTDOMAIN).": </label>
|
643 |
<input type='text' class='cpac-before' name='cpac_options[columns][{$type}][{$id}][before]' id='cpac-{$type}-{$id}-before' value='{$before}'/>
|
644 |
<br/>
|
645 |
+
<label for='cpac-{$type}-{$id}-after'>".__('After', CPAC_TEXTDOMAIN).": </label>
|
646 |
<input type='text' class='cpac-after' name='cpac_options[columns][{$type}][{$id}][after]' id='cpac-{$type}-{$id}-after' value='{$after}'/>
|
647 |
<br/>
|
648 |
{$remove}
|
650 |
|
651 |
return $inside;
|
652 |
}
|
653 |
+
|
654 |
+
/**
|
655 |
+
* Box Options: Custom Fields
|
656 |
+
*
|
657 |
+
* @since 1.0
|
658 |
+
*/
|
659 |
+
private function get_box_options_author($type, $id, $values)
|
660 |
+
{
|
661 |
+
$options = '';
|
662 |
+
$author_types = array(
|
663 |
+
'display_name' => __('Display Name', CPAC_TEXTDOMAIN),
|
664 |
+
'first_name' => __('First Name', CPAC_TEXTDOMAIN),
|
665 |
+
'last_name' => __('Last Name', CPAC_TEXTDOMAIN),
|
666 |
+
'first_last_name' => __('First & Last Name', CPAC_TEXTDOMAIN),
|
667 |
+
'nickname' => __('Nickname', CPAC_TEXTDOMAIN),
|
668 |
+
'username' => __('Username', CPAC_TEXTDOMAIN),
|
669 |
+
'email' => __('Email', CPAC_TEXTDOMAIN),
|
670 |
+
'userid' => __('User ID', CPAC_TEXTDOMAIN)
|
671 |
+
);
|
672 |
+
$currentname = ! empty($values['display_as']) ? $values['display_as'] : '' ;
|
673 |
+
foreach ( $author_types as $k => $name ) {
|
674 |
+
$selected = selected( $k, $currentname, false);
|
675 |
+
$options .= "<option value='{$k}' {$selected}>{$name}</option>";
|
676 |
+
}
|
677 |
+
|
678 |
+
$inside = "
|
679 |
+
<label for='cpac-{$type}-{$id}-display_as'>".__('Display name as', CPAC_TEXTDOMAIN).": </label>
|
680 |
+
<select name='cpac_options[columns][{$type}][{$id}][display_as]' id='cpac-{$type}-{$id}-display_as'>
|
681 |
+
{$options}
|
682 |
+
</select>
|
683 |
+
";
|
684 |
+
|
685 |
+
return $inside;
|
686 |
+
}
|
687 |
|
688 |
/**
|
689 |
* Get post meta fields by type; post(types) or users.
|
903 |
delete_option( 'cpac_options_default' );
|
904 |
}
|
905 |
|
906 |
+
/**
|
907 |
+
* Get author field by nametype
|
908 |
+
*
|
909 |
+
* Used by posts and sortable
|
910 |
+
*
|
911 |
+
* @since 1.4.6.1
|
912 |
+
*/
|
913 |
+
public function get_author_field_by_nametype( $nametype, $user_id)
|
914 |
+
{
|
915 |
+
$userdata = get_userdata( $user_id );
|
916 |
+
|
917 |
+
switch ( $nametype ) :
|
918 |
+
|
919 |
+
case "display_name" :
|
920 |
+
$name = $userdata->display_name;
|
921 |
+
break;
|
922 |
+
|
923 |
+
case "first_name" :
|
924 |
+
$name = $userdata->first_name;
|
925 |
+
break;
|
926 |
+
|
927 |
+
case "last_name" :
|
928 |
+
$name = $userdata->last_name;
|
929 |
+
break;
|
930 |
+
|
931 |
+
case "first_last_name" :
|
932 |
+
$first = !empty($userdata->first_name) ? $userdata->first_name : '';
|
933 |
+
$last = !empty($userdata->last_name) ? " {$userdata->last_name}" : '';
|
934 |
+
$name = $first.$last;
|
935 |
+
break;
|
936 |
+
|
937 |
+
case "nickname" :
|
938 |
+
$name = $userdata->nickname;
|
939 |
+
break;
|
940 |
+
|
941 |
+
case "username" :
|
942 |
+
$name = $userdata->user_login;
|
943 |
+
break;
|
944 |
+
|
945 |
+
case "email" :
|
946 |
+
$name = $userdata->user_email;
|
947 |
+
break;
|
948 |
+
|
949 |
+
case "userid" :
|
950 |
+
$name = $userdata->ID;
|
951 |
+
break;
|
952 |
+
|
953 |
+
default :
|
954 |
+
$name = $userdata->display_name;
|
955 |
+
|
956 |
+
endswitch;
|
957 |
+
|
958 |
+
return $name;
|
959 |
+
}
|
960 |
+
|
961 |
/**
|
962 |
* Get WP default supported admin columns per post type.
|
963 |
*
|
1295 |
),
|
1296 |
'column-comment-count' => array(
|
1297 |
'label' => __('Comment count', CPAC_TEXTDOMAIN)
|
1298 |
+
),
|
1299 |
+
'column-author-name' => array(
|
1300 |
+
'label' => __('Display Author As', CPAC_TEXTDOMAIN),
|
1301 |
+
'display_as' => ''
|
1302 |
)
|
1303 |
);
|
1304 |
|
2370 |
return $row;
|
2371 |
}
|
2372 |
|
2373 |
+
/**
|
2374 |
+
* Get post count
|
2375 |
+
*
|
2376 |
+
* @since 1.3.1
|
2377 |
+
*/
|
2378 |
+
public function get_post_count( $post_type, $user_id )
|
2379 |
+
{
|
2380 |
+
if ( ! post_type_exists($post_type) || ! get_userdata($user_id) )
|
2381 |
+
return false;
|
2382 |
+
|
2383 |
+
$user_posts = get_posts(array(
|
2384 |
+
'post_type' => $post_type,
|
2385 |
+
'numberposts' => -1,
|
2386 |
+
'author' => $user_id,
|
2387 |
+
'post_status' => 'publish'
|
2388 |
+
));
|
2389 |
+
return count($user_posts);
|
2390 |
+
}
|
2391 |
+
|
2392 |
/**
|
2393 |
* Settings Page Template.
|
2394 |
*
|
languages/codepress-admin-columns-nl_NL.po
CHANGED
@@ -1,458 +1,1042 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Codepress Admin Columns\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2012-03-27 12:13+0100\n"
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Codepress <info@codepress.nl>\n"
|
8 |
"Language-Team: Codepress <info@codepress.nl>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-Language: Dutch\n"
|
15 |
"X-Poedit-Country: NETHERLANDS\n"
|
16 |
-
"
|
|
|
|
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
-
"X-
|
19 |
|
20 |
-
#:
|
|
|
21 |
msgid "Settings"
|
22 |
msgstr "Instellingen"
|
23 |
|
24 |
-
#:
|
|
|
25 |
msgid "Add Custom Field Column"
|
26 |
msgstr "Voeg custom field kolom toe"
|
27 |
|
28 |
-
#:
|
|
|
29 |
msgid "drag and drop to reorder"
|
30 |
msgstr "sleep om de volgorde te veranderen"
|
31 |
|
32 |
-
#:
|
33 |
-
#:
|
34 |
#, fuzzy
|
|
|
35 |
msgid "default"
|
36 |
msgstr "Herstel instellingen"
|
37 |
|
38 |
-
#:
|
39 |
-
#:
|
|
|
40 |
msgid "Width"
|
41 |
msgstr "Breedte"
|
42 |
|
43 |
-
#:
|
|
|
44 |
msgid "Default"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#:
|
48 |
-
#:
|
|
|
|
|
49 |
msgid "Image"
|
50 |
msgstr "Afbeelding"
|
51 |
|
52 |
-
#:
|
|
|
53 |
msgid "Media Library Icon"
|
54 |
msgstr "Media bibliotheek Icoon"
|
55 |
|
56 |
-
#:
|
57 |
-
#:
|
58 |
-
#:
|
|
|
|
|
59 |
msgid "Excerpt"
|
60 |
msgstr "Samenvatting"
|
61 |
|
62 |
-
#:
|
|
|
63 |
msgid "Multiple Values"
|
64 |
msgstr "Meerdere waarden"
|
65 |
|
66 |
-
#:
|
|
|
67 |
msgid "Numeric"
|
68 |
msgstr "Numerieke"
|
69 |
|
70 |
-
#:
|
71 |
-
#:
|
|
|
72 |
msgid "Date"
|
73 |
msgstr "Datum"
|
74 |
|
75 |
-
#:
|
|
|
76 |
msgid "Post Title (Post ID's)"
|
77 |
msgstr "Post Titel (Post ID's)"
|
78 |
|
79 |
-
#:
|
|
|
80 |
msgid "This field can not be removed"
|
81 |
msgstr "Dit veld kan niet worden verwijderd"
|
82 |
|
83 |
-
#:
|
|
|
|
|
84 |
msgid "Remove"
|
85 |
msgstr "Verwijder"
|
86 |
|
87 |
-
#:
|
|
|
88 |
msgid "Standard"
|
89 |
msgstr "Standaard"
|
90 |
|
91 |
-
#:
|
|
|
92 |
msgid "original"
|
93 |
msgstr "origineel"
|
94 |
|
95 |
-
#:
|
96 |
-
#:
|
97 |
#, php-format
|
|
|
98 |
msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
|
99 |
msgstr "Verstuurd op <a href=\"%1$s\">%2$s op %3$s</a>"
|
100 |
|
101 |
-
#:
|
|
|
102 |
msgid "Comments"
|
103 |
msgstr "Reacties"
|
104 |
|
105 |
-
#:
|
|
|
106 |
msgid "Icon"
|
107 |
msgstr "icoon"
|
108 |
|
109 |
-
#:
|
|
|
110 |
msgid "Featured Image"
|
111 |
msgstr "Uitgelichte afbeelding"
|
112 |
|
113 |
-
#:
|
114 |
-
#:
|
|
|
115 |
msgid "Page Order"
|
116 |
msgstr "Pagina Volgorde"
|
117 |
|
118 |
-
#:
|
119 |
-
#:
|
|
|
120 |
msgid "Post Format"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#:
|
124 |
-
#:
|
125 |
-
#:
|
126 |
-
#:
|
|
|
127 |
msgid "ID"
|
128 |
msgstr "ID"
|
129 |
|
130 |
-
#:
|
|
|
131 |
msgid "Slug"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#:
|
|
|
135 |
msgid "Attachment"
|
136 |
msgstr "Bijlage"
|
137 |
|
138 |
-
#:
|
|
|
139 |
msgid "No. of Attachments"
|
140 |
msgstr "Aantal attachments"
|
141 |
|
142 |
-
#:
|
|
|
143 |
msgid "Roles"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#:
|
147 |
-
#:
|
|
|
148 |
msgid "Status"
|
149 |
msgstr "Status"
|
150 |
|
151 |
-
#:
|
|
|
|
|
152 |
msgid "Word count"
|
153 |
msgstr "Aantal woorden"
|
154 |
|
155 |
-
#:
|
|
|
156 |
msgid "Sticky"
|
157 |
msgstr "Sticky"
|
158 |
|
159 |
-
#:
|
|
|
160 |
msgid "Order"
|
161 |
msgstr "Volgorde"
|
162 |
|
163 |
-
#:
|
|
|
164 |
msgid "Page Template"
|
165 |
msgstr "Pagina Template"
|
166 |
|
167 |
-
#:
|
|
|
168 |
msgid "Taxonomy"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#:
|
172 |
-
#:
|
173 |
-
#:
|
|
|
|
|
|
|
174 |
msgid "Custom Field"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#:
|
178 |
-
#:
|
179 |
-
#:
|
|
|
|
|
180 |
msgid "Field"
|
181 |
msgstr "Veld"
|
182 |
|
183 |
-
#:
|
|
|
|
|
184 |
msgid "User ID"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#:
|
|
|
|
|
188 |
msgid "Nickname"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#:
|
|
|
192 |
msgid "First name"
|
193 |
msgstr "Voornaam"
|
194 |
|
195 |
-
#:
|
|
|
196 |
msgid "Last name"
|
197 |
msgstr "Achternaam"
|
198 |
|
199 |
-
#:
|
|
|
200 |
msgid "Url"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#:
|
|
|
204 |
msgid "Registered"
|
205 |
msgstr "Registratie"
|
206 |
|
207 |
-
#:
|
208 |
-
#:
|
209 |
-
#:
|
|
|
210 |
msgid "Description"
|
211 |
msgstr "Beschrijving"
|
212 |
|
213 |
-
#:
|
214 |
#, fuzzy
|
|
|
215 |
msgid "Postcount"
|
216 |
msgstr "Aantal woorden"
|
217 |
|
218 |
-
#:
|
|
|
219 |
msgid "Mime type"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#:
|
223 |
#, fuzzy
|
|
|
224 |
msgid "File name"
|
225 |
msgstr "Voornaam"
|
226 |
|
227 |
-
#:
|
|
|
228 |
msgid "Dimensions"
|
229 |
msgstr "Afmetingen"
|
230 |
|
231 |
-
#:
|
|
|
232 |
msgid "Height"
|
233 |
msgstr "Hoogte"
|
234 |
|
235 |
-
#:
|
|
|
236 |
#, fuzzy
|
|
|
237 |
msgid "Caption"
|
238 |
msgstr "Locatie"
|
239 |
|
240 |
-
#:
|
|
|
241 |
msgid "Alt"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#:
|
|
|
245 |
msgid "Upload paths"
|
246 |
msgstr "Bestands-URLs"
|
247 |
|
248 |
-
#:
|
|
|
249 |
msgid "Target"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#:
|
253 |
#, fuzzy
|
|
|
254 |
msgid "Owner"
|
255 |
msgstr "Volgorde"
|
256 |
|
257 |
-
#:
|
|
|
258 |
msgid "Notes"
|
259 |
msgstr "Beschrijving"
|
260 |
|
261 |
-
#:
|
|
|
262 |
msgid "Rss"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#:
|
|
|
266 |
msgid "Length"
|
267 |
msgstr "Lengte"
|
268 |
|
269 |
-
#:
|
|
|
270 |
msgid "Author Name"
|
271 |
msgstr "Auteur"
|
272 |
|
273 |
-
#:
|
|
|
274 |
msgid "Avatar"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#:
|
|
|
278 |
msgid "Author url"
|
279 |
msgstr "Auteurs url"
|
280 |
|
281 |
-
#:
|
|
|
282 |
msgid "Author IP"
|
283 |
msgstr "Auteur IP"
|
284 |
|
285 |
-
#:
|
|
|
286 |
msgid "Author email"
|
287 |
msgstr "Auteurs email"
|
288 |
|
289 |
-
#:
|
|
|
290 |
msgid "In Reply To"
|
291 |
msgstr "Antwoord op"
|
292 |
|
293 |
-
#:
|
|
|
294 |
msgid "Approved"
|
295 |
msgstr "Goedgekeurd"
|
296 |
|
297 |
-
#:
|
|
|
298 |
msgid "Date GMT"
|
299 |
msgstr "Datum GMT"
|
300 |
|
301 |
-
#:
|
|
|
302 |
msgid "Agent"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#:
|
|
|
306 |
msgid "Custom"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#:
|
310 |
-
#: ../codepress-admin-columns.php:3105
|
311 |
#, fuzzy
|
|
|
312 |
msgid "Addons"
|
313 |
msgstr "Adres"
|
314 |
|
315 |
-
#:
|
316 |
-
#:
|
|
|
317 |
msgid "find out more"
|
318 |
msgstr "meer informatie"
|
319 |
|
320 |
-
#:
|
|
|
321 |
msgid "This will make all of the new columns support sorting"
|
322 |
msgstr "Dit maakt dat sorteren ondersteund wordt door alle nieuwe kolommen"
|
323 |
|
324 |
-
#:
|
|
|
325 |
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>"
|
326 |
msgstr "Standaard laat WordPress je sorteren bij titel, datum, reakties en auteur. De addon zorgt ervoor dat je kunt sorteren bij <strong>alle kolommen van alle typen!</strong>"
|
327 |
|
328 |
-
#:
|
|
|
329 |
msgid "Perfect for sorting your articles, media files, comments, links and users"
|
330 |
msgstr "Perfect voor het sorteren van je artikelen, media bestanden, reakties, links en gebruikers"
|
331 |
|
332 |
-
#:
|
333 |
-
#:
|
|
|
334 |
msgid "Sortorder"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#:
|
338 |
#, fuzzy
|
|
|
339 |
msgid "Inactive"
|
340 |
msgstr "Actief"
|
341 |
|
342 |
-
#:
|
|
|
343 |
msgid "Active"
|
344 |
msgstr "Actief"
|
345 |
|
346 |
-
#:
|
|
|
347 |
msgid "Fill in your activation code"
|
348 |
msgstr "Vul je activatiecode in"
|
349 |
|
350 |
-
#:
|
351 |
#, fuzzy
|
|
|
352 |
msgid "Activate"
|
353 |
msgstr "Actief"
|
354 |
|
355 |
-
#:
|
356 |
#, fuzzy
|
|
|
357 |
msgid "Deactivate"
|
358 |
msgstr "Actief"
|
359 |
|
360 |
-
#:
|
361 |
#, fuzzy
|
|
|
362 |
msgid "Activate Add-ons"
|
363 |
msgstr "Activeer Google Maps"
|
364 |
|
365 |
-
#:
|
|
|
366 |
msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites"
|
367 |
msgstr "Addons kunnen worden geactiveerd door een licentie sleutel aan te schaffen. De licentie sleutel kan gebruikt worden voor meerdere websites"
|
368 |
|
369 |
-
#:
|
|
|
370 |
msgid "Addon"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#:
|
|
|
374 |
msgid "Activation Code"
|
375 |
msgstr "Activatie code"
|
376 |
|
377 |
-
#:
|
|
|
378 |
msgid "Enter your activation code"
|
379 |
msgstr "Vul je activatie code in"
|
380 |
|
381 |
-
#:
|
|
|
382 |
msgid "Activation code unrecognised"
|
383 |
msgstr "Activatie code niet herkend"
|
384 |
|
385 |
-
#:
|
|
|
386 |
msgid "You will find a short overview at the <strong>Help</strong> section in the top-right screen."
|
387 |
msgstr "Je vindt een korte samenvatting in de <strong>Help</strong> sectie in de rechter bovenkant van het scherm."
|
388 |
|
389 |
-
|
|
|
|
|
|
|
390 |
msgid "Codepress Admin Columns"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#:
|
|
|
394 |
msgid "By default WordPress let's you only sort by title, date, comments and author."
|
395 |
msgstr "Standaard laat WordPress je sorteren bij titel, datum, reakties en auteur."
|
396 |
|
397 |
-
#:
|
398 |
-
|
399 |
-
msgstr "Zorg ervoor dat <strong>alle kolommen</strong> van <strong>alle typen</strong> sorteren ondersteund — met de sorting addon."
|
400 |
-
|
401 |
-
#: ../codepress-admin-columns.php:3117
|
402 |
msgid "Like this plugin?"
|
403 |
msgstr "Leuke plugin?"
|
404 |
|
405 |
-
#:
|
|
|
406 |
msgid "Why not do any or all of the following"
|
407 |
msgstr "Waarom doe je niet één van de volgende dingen:"
|
408 |
|
409 |
-
#:
|
|
|
410 |
msgid "Link to it so other folks can find out about it."
|
411 |
msgstr "Link naar ons zodat anderen deze plugin ook ontdekken."
|
412 |
|
413 |
-
#:
|
|
|
414 |
msgid "Give it a 5 star rating on WordPress.org."
|
415 |
msgstr "Geef het een goede score op WordPress.org."
|
416 |
|
417 |
-
#:
|
|
|
418 |
msgid "Donate a token of your appreciation."
|
419 |
msgstr "Doneer een blijk van uw waardering."
|
420 |
|
421 |
-
#:
|
|
|
422 |
msgid "Need support?"
|
423 |
msgstr "Hulp nodig?"
|
424 |
|
425 |
-
#:
|
426 |
#, php-format
|
|
|
427 |
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."
|
428 |
msgstr "Als je problem hebt met deze plugin, stel je vragen dan in de <a href=\"%s\">Support forums</a> of stuur me een email %s."
|
429 |
|
430 |
-
#:
|
431 |
#, php-format
|
|
|
432 |
msgid "If you're sure you've found a bug, or have a feature request, please <a href='%s'>submit your feedback</a>."
|
433 |
msgstr "Als een bug bent tegen gekomen, of een feature wil aanvragen, stuur ons dan <a href='%s'>je feedback</a>."
|
434 |
|
435 |
-
#:
|
|
|
|
|
436 |
msgid "Admin Columns"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#:
|
|
|
440 |
msgid "Save Changes"
|
441 |
msgstr "Wijzigingen opslaan"
|
442 |
|
443 |
-
#:
|
|
|
444 |
msgid "Restore defaults"
|
445 |
msgstr "Herstel instellingen"
|
446 |
|
447 |
-
#:
|
|
|
448 |
msgid "Restore default settings"
|
449 |
msgstr "Herstel standaard instellingen"
|
450 |
|
451 |
-
#:
|
|
|
452 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
|
453 |
msgstr "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
|
454 |
|
455 |
-
#:
|
|
|
456 |
msgid "This will delete all column settings and restore the default settings."
|
457 |
msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinstellingen hersteld."
|
458 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Codepress Admin Columns v1.4.6\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2012-03-27 12:13+0100\n"
|
6 |
+
"PO-Revision-Date: 2012-08-17 08:14:22+0000\n"
|
7 |
"Last-Translator: Codepress <info@codepress.nl>\n"
|
8 |
"Language-Team: Codepress <info@codepress.nl>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
13 |
"X-Poedit-Language: Dutch\n"
|
14 |
"X-Poedit-Country: NETHERLANDS\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: codepress-admin-columns.php:169
|
23 |
+
#@ default
|
24 |
msgid "Settings"
|
25 |
msgstr "Instellingen"
|
26 |
|
27 |
+
#: codepress-admin-columns.php:352
|
28 |
+
#@ codepress-admin-columns
|
29 |
msgid "Add Custom Field Column"
|
30 |
msgstr "Voeg custom field kolom toe"
|
31 |
|
32 |
+
#: codepress-admin-columns.php:360
|
33 |
+
#@ codepress-admin-columns
|
34 |
msgid "drag and drop to reorder"
|
35 |
msgstr "sleep om de volgorde te veranderen"
|
36 |
|
37 |
+
#: codepress-admin-columns.php:502
|
38 |
+
#: codepress-admin-columns.php:527
|
39 |
#, fuzzy
|
40 |
+
#@ codepress-admin-columns
|
41 |
msgid "default"
|
42 |
msgstr "Herstel instellingen"
|
43 |
|
44 |
+
#: codepress-admin-columns.php:525
|
45 |
+
#: codepress-admin-columns.php:1471
|
46 |
+
#@ codepress-admin-columns
|
47 |
msgid "Width"
|
48 |
msgstr "Breedte"
|
49 |
|
50 |
+
#: codepress-admin-columns.php:593
|
51 |
+
#@ default
|
52 |
msgid "Default"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: codepress-admin-columns.php:594
|
56 |
+
#: codepress-admin-columns.php:1602
|
57 |
+
#@ default
|
58 |
+
#@ codepress-admin-columns
|
59 |
msgid "Image"
|
60 |
msgstr "Afbeelding"
|
61 |
|
62 |
+
#: codepress-admin-columns.php:595
|
63 |
+
#@ codepress-admin-columns
|
64 |
msgid "Media Library Icon"
|
65 |
msgstr "Media bibliotheek Icoon"
|
66 |
|
67 |
+
#: codepress-admin-columns.php:596
|
68 |
+
#: codepress-admin-columns.php:1255
|
69 |
+
#: codepress-admin-columns.php:1678
|
70 |
+
#@ default
|
71 |
+
#@ codepress-admin-columns
|
72 |
msgid "Excerpt"
|
73 |
msgstr "Samenvatting"
|
74 |
|
75 |
+
#: codepress-admin-columns.php:597
|
76 |
+
#@ codepress-admin-columns
|
77 |
msgid "Multiple Values"
|
78 |
msgstr "Meerdere waarden"
|
79 |
|
80 |
+
#: codepress-admin-columns.php:598
|
81 |
+
#@ codepress-admin-columns
|
82 |
msgid "Numeric"
|
83 |
msgstr "Numerieke"
|
84 |
|
85 |
+
#: codepress-admin-columns.php:599
|
86 |
+
#: codepress-admin-columns.php:1669
|
87 |
+
#@ codepress-admin-columns
|
88 |
msgid "Date"
|
89 |
msgstr "Datum"
|
90 |
|
91 |
+
#: codepress-admin-columns.php:600
|
92 |
+
#@ codepress-admin-columns
|
93 |
msgid "Post Title (Post ID's)"
|
94 |
msgstr "Post Titel (Post ID's)"
|
95 |
|
96 |
+
#: codepress-admin-columns.php:626
|
97 |
+
#@ codepress-admin-columns
|
98 |
msgid "This field can not be removed"
|
99 |
msgstr "Dit veld kan niet worden verwijderd"
|
100 |
|
101 |
+
#: classes/values/users.php:153
|
102 |
+
#: codepress-admin-columns.php:630
|
103 |
+
#@ default
|
104 |
msgid "Remove"
|
105 |
msgstr "Verwijder"
|
106 |
|
107 |
+
#: classes/values/posts.php:107
|
108 |
+
#@ default
|
109 |
msgid "Standard"
|
110 |
msgstr "Standaard"
|
111 |
|
112 |
+
#: classes/values/media.php:100
|
113 |
+
#@ codepress-admin-columns
|
114 |
msgid "original"
|
115 |
msgstr "origineel"
|
116 |
|
117 |
+
#: classes/values/comments.php:95
|
118 |
+
#: classes/values/comments.php:106
|
119 |
#, php-format
|
120 |
+
#@ default
|
121 |
msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
|
122 |
msgstr "Verstuurd op <a href=\"%1$s\">%2$s op %3$s</a>"
|
123 |
|
124 |
+
#: codepress-admin-columns.php:1221
|
125 |
+
#@ codepress-admin-columns
|
126 |
msgid "Comments"
|
127 |
msgstr "Reacties"
|
128 |
|
129 |
+
#: codepress-admin-columns.php:1227
|
130 |
+
#@ codepress-admin-columns
|
131 |
msgid "Icon"
|
132 |
msgstr "icoon"
|
133 |
|
134 |
+
#: codepress-admin-columns.php:1252
|
135 |
+
#@ codepress-admin-columns
|
136 |
msgid "Featured Image"
|
137 |
msgstr "Uitgelichte afbeelding"
|
138 |
|
139 |
+
#: codepress-admin-columns.php:1258
|
140 |
+
#: codepress-admin-columns.php:1322
|
141 |
+
#@ codepress-admin-columns
|
142 |
msgid "Page Order"
|
143 |
msgstr "Pagina Volgorde"
|
144 |
|
145 |
+
#: codepress-admin-columns.php:1261
|
146 |
+
#: codepress-admin-columns.php:1339
|
147 |
+
#@ codepress-admin-columns
|
148 |
msgid "Post Format"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: codepress-admin-columns.php:1264
|
152 |
+
#: codepress-admin-columns.php:1456
|
153 |
+
#: codepress-admin-columns.php:1596
|
154 |
+
#: codepress-admin-columns.php:1642
|
155 |
+
#@ codepress-admin-columns
|
156 |
msgid "ID"
|
157 |
msgstr "ID"
|
158 |
|
159 |
+
#: codepress-admin-columns.php:1267
|
160 |
+
#@ codepress-admin-columns
|
161 |
msgid "Slug"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: codepress-admin-columns.php:1270
|
165 |
+
#@ codepress-admin-columns
|
166 |
msgid "Attachment"
|
167 |
msgstr "Bijlage"
|
168 |
|
169 |
+
#: codepress-admin-columns.php:1273
|
170 |
+
#@ codepress-admin-columns
|
171 |
msgid "No. of Attachments"
|
172 |
msgstr "Aantal attachments"
|
173 |
|
174 |
+
#: codepress-admin-columns.php:1276
|
175 |
+
#@ codepress-admin-columns
|
176 |
msgid "Roles"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: codepress-admin-columns.php:1279
|
180 |
+
#: codepress-admin-columns.php:2323
|
181 |
+
#@ codepress-admin-columns
|
182 |
msgid "Status"
|
183 |
msgstr "Status"
|
184 |
|
185 |
+
#: codepress-admin-columns.php:1308
|
186 |
+
#: codepress-admin-columns.php:1687
|
187 |
+
#@ codepress-admin-columns
|
188 |
msgid "Word count"
|
189 |
msgstr "Aantal woorden"
|
190 |
|
191 |
+
#: codepress-admin-columns.php:1315
|
192 |
+
#@ codepress-admin-columns
|
193 |
msgid "Sticky"
|
194 |
msgstr "Sticky"
|
195 |
|
196 |
+
#: codepress-admin-columns.php:1324
|
197 |
+
#@ codepress-admin-columns
|
198 |
msgid "Order"
|
199 |
msgstr "Volgorde"
|
200 |
|
201 |
+
#: codepress-admin-columns.php:1332
|
202 |
+
#@ codepress-admin-columns
|
203 |
msgid "Page Template"
|
204 |
msgstr "Pagina Template"
|
205 |
|
206 |
+
#: codepress-admin-columns.php:1352
|
207 |
+
#@ codepress-admin-columns
|
208 |
msgid "Taxonomy"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: codepress-admin-columns.php:636
|
212 |
+
#: codepress-admin-columns.php:1362
|
213 |
+
#: codepress-admin-columns.php:1430
|
214 |
+
#: codepress-admin-columns.php:1569
|
215 |
+
#: codepress-admin-columns.php:1697
|
216 |
+
#@ codepress-admin-columns
|
217 |
msgid "Custom Field"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: codepress-admin-columns.php:1368
|
221 |
+
#: codepress-admin-columns.php:1436
|
222 |
+
#: codepress-admin-columns.php:1575
|
223 |
+
#: codepress-admin-columns.php:1703
|
224 |
+
#@ codepress-admin-columns
|
225 |
msgid "Field"
|
226 |
msgstr "Veld"
|
227 |
|
228 |
+
#: codepress-admin-columns.php:670
|
229 |
+
#: codepress-admin-columns.php:1389
|
230 |
+
#@ codepress-admin-columns
|
231 |
msgid "User ID"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: codepress-admin-columns.php:667
|
235 |
+
#: codepress-admin-columns.php:1392
|
236 |
+
#@ codepress-admin-columns
|
237 |
msgid "Nickname"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: codepress-admin-columns.php:1395
|
241 |
+
#@ codepress-admin-columns
|
242 |
msgid "First name"
|
243 |
msgstr "Voornaam"
|
244 |
|
245 |
+
#: codepress-admin-columns.php:1398
|
246 |
+
#@ codepress-admin-columns
|
247 |
msgid "Last name"
|
248 |
msgstr "Achternaam"
|
249 |
|
250 |
+
#: codepress-admin-columns.php:1401
|
251 |
+
#@ codepress-admin-columns
|
252 |
msgid "Url"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: codepress-admin-columns.php:1404
|
256 |
+
#@ codepress-admin-columns
|
257 |
msgid "Registered"
|
258 |
msgstr "Registratie"
|
259 |
|
260 |
+
#: codepress-admin-columns.php:1407
|
261 |
+
#: codepress-admin-columns.php:1477
|
262 |
+
#: codepress-admin-columns.php:1599
|
263 |
+
#@ codepress-admin-columns
|
264 |
msgid "Description"
|
265 |
msgstr "Beschrijving"
|
266 |
|
267 |
+
#: codepress-admin-columns.php:1423
|
268 |
#, fuzzy
|
269 |
+
#@ codepress-admin-columns
|
270 |
msgid "Postcount"
|
271 |
msgstr "Aantal woorden"
|
272 |
|
273 |
+
#: codepress-admin-columns.php:1459
|
274 |
+
#@ codepress-admin-columns
|
275 |
msgid "Mime type"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: codepress-admin-columns.php:1462
|
279 |
#, fuzzy
|
280 |
+
#@ codepress-admin-columns
|
281 |
msgid "File name"
|
282 |
msgstr "Voornaam"
|
283 |
|
284 |
+
#: codepress-admin-columns.php:1465
|
285 |
+
#@ codepress-admin-columns
|
286 |
msgid "Dimensions"
|
287 |
msgstr "Afmetingen"
|
288 |
|
289 |
+
#: codepress-admin-columns.php:1468
|
290 |
+
#@ codepress-admin-columns
|
291 |
msgid "Height"
|
292 |
msgstr "Hoogte"
|
293 |
|
294 |
+
#: codepress-admin-columns.php:1474
|
295 |
+
#: codepress-admin-columns.php:1522
|
296 |
#, fuzzy
|
297 |
+
#@ codepress-admin-columns
|
298 |
msgid "Caption"
|
299 |
msgstr "Locatie"
|
300 |
|
301 |
+
#: codepress-admin-columns.php:1480
|
302 |
+
#@ codepress-admin-columns
|
303 |
msgid "Alt"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: codepress-admin-columns.php:1483
|
307 |
+
#@ codepress-admin-columns
|
308 |
msgid "Upload paths"
|
309 |
msgstr "Bestands-URLs"
|
310 |
|
311 |
+
#: codepress-admin-columns.php:1605
|
312 |
+
#@ codepress-admin-columns
|
313 |
msgid "Target"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: codepress-admin-columns.php:1608
|
317 |
#, fuzzy
|
318 |
+
#@ codepress-admin-columns
|
319 |
msgid "Owner"
|
320 |
msgstr "Volgorde"
|
321 |
|
322 |
+
#: codepress-admin-columns.php:1611
|
323 |
+
#@ codepress-admin-columns
|
324 |
msgid "Notes"
|
325 |
msgstr "Beschrijving"
|
326 |
|
327 |
+
#: codepress-admin-columns.php:1614
|
328 |
+
#@ codepress-admin-columns
|
329 |
msgid "Rss"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: codepress-admin-columns.php:1617
|
333 |
+
#@ codepress-admin-columns
|
334 |
msgid "Length"
|
335 |
msgstr "Lengte"
|
336 |
|
337 |
+
#: codepress-admin-columns.php:1645
|
338 |
+
#@ codepress-admin-columns
|
339 |
msgid "Author Name"
|
340 |
msgstr "Auteur"
|
341 |
|
342 |
+
#: codepress-admin-columns.php:1648
|
343 |
+
#@ codepress-admin-columns
|
344 |
msgid "Avatar"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: codepress-admin-columns.php:1651
|
348 |
+
#@ codepress-admin-columns
|
349 |
msgid "Author url"
|
350 |
msgstr "Auteurs url"
|
351 |
|
352 |
+
#: codepress-admin-columns.php:1654
|
353 |
+
#@ codepress-admin-columns
|
354 |
msgid "Author IP"
|
355 |
msgstr "Auteur IP"
|
356 |
|
357 |
+
#: codepress-admin-columns.php:1657
|
358 |
+
#@ codepress-admin-columns
|
359 |
msgid "Author email"
|
360 |
msgstr "Auteurs email"
|
361 |
|
362 |
+
#: codepress-admin-columns.php:1660
|
363 |
+
#@ codepress-admin-columns
|
364 |
msgid "In Reply To"
|
365 |
msgstr "Antwoord op"
|
366 |
|
367 |
+
#: codepress-admin-columns.php:1666
|
368 |
+
#@ codepress-admin-columns
|
369 |
msgid "Approved"
|
370 |
msgstr "Goedgekeurd"
|
371 |
|
372 |
+
#: codepress-admin-columns.php:1672
|
373 |
+
#@ codepress-admin-columns
|
374 |
msgid "Date GMT"
|
375 |
msgstr "Datum GMT"
|
376 |
|
377 |
+
#: codepress-admin-columns.php:1675
|
378 |
+
#@ codepress-admin-columns
|
379 |
msgid "Agent"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: codepress-admin-columns.php:1734
|
383 |
+
#@ codepress-admin-columns
|
384 |
msgid "Custom"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: codepress-admin-columns.php:1811
|
|
|
388 |
#, fuzzy
|
389 |
+
#@ default
|
390 |
msgid "Addons"
|
391 |
msgstr "Adres"
|
392 |
|
393 |
+
#: codepress-admin-columns.php:2263
|
394 |
+
#: codepress-admin-columns.php:2430
|
395 |
+
#@ codepress-admin-columns
|
396 |
msgid "find out more"
|
397 |
msgstr "meer informatie"
|
398 |
|
399 |
+
#: codepress-admin-columns.php:2267
|
400 |
+
#@ codepress-admin-columns
|
401 |
msgid "This will make all of the new columns support sorting"
|
402 |
msgstr "Dit maakt dat sorteren ondersteund wordt door alle nieuwe kolommen"
|
403 |
|
404 |
+
#: codepress-admin-columns.php:2268
|
405 |
+
#@ codepress-admin-columns
|
406 |
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>"
|
407 |
msgstr "Standaard laat WordPress je sorteren bij titel, datum, reakties en auteur. De addon zorgt ervoor dat je kunt sorteren bij <strong>alle kolommen van alle typen!</strong>"
|
408 |
|
409 |
+
#: codepress-admin-columns.php:2269
|
410 |
+
#@ codepress-admin-columns
|
411 |
msgid "Perfect for sorting your articles, media files, comments, links and users"
|
412 |
msgstr "Perfect voor het sorteren van je artikelen, media bestanden, reakties, links en gebruikers"
|
413 |
|
414 |
+
#: codepress-admin-columns.php:2279
|
415 |
+
#: codepress-admin-columns.php:2281
|
416 |
+
#@ codepress-admin-columns
|
417 |
msgid "Sortorder"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: codepress-admin-columns.php:2289
|
421 |
#, fuzzy
|
422 |
+
#@ codepress-admin-columns
|
423 |
msgid "Inactive"
|
424 |
msgstr "Actief"
|
425 |
|
426 |
+
#: codepress-admin-columns.php:2292
|
427 |
+
#@ codepress-admin-columns
|
428 |
msgid "Active"
|
429 |
msgstr "Actief"
|
430 |
|
431 |
+
#: codepress-admin-columns.php:2297
|
432 |
+
#@ codepress-admin-columns
|
433 |
msgid "Fill in your activation code"
|
434 |
msgstr "Vul je activatiecode in"
|
435 |
|
436 |
+
#: codepress-admin-columns.php:2298
|
437 |
#, fuzzy
|
438 |
+
#@ codepress-admin-columns
|
439 |
msgid "Activate"
|
440 |
msgstr "Actief"
|
441 |
|
442 |
+
#: codepress-admin-columns.php:2302
|
443 |
#, fuzzy
|
444 |
+
#@ codepress-admin-columns
|
445 |
msgid "Deactivate"
|
446 |
msgstr "Actief"
|
447 |
|
448 |
+
#: codepress-admin-columns.php:2317
|
449 |
#, fuzzy
|
450 |
+
#@ codepress-admin-columns
|
451 |
msgid "Activate Add-ons"
|
452 |
msgstr "Activeer Google Maps"
|
453 |
|
454 |
+
#: codepress-admin-columns.php:2318
|
455 |
+
#@ codepress-admin-columns
|
456 |
msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites"
|
457 |
msgstr "Addons kunnen worden geactiveerd door een licentie sleutel aan te schaffen. De licentie sleutel kan gebruikt worden voor meerdere websites"
|
458 |
|
459 |
+
#: codepress-admin-columns.php:2322
|
460 |
+
#@ codepress-admin-columns
|
461 |
msgid "Addon"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: codepress-admin-columns.php:2324
|
465 |
+
#@ codepress-admin-columns
|
466 |
msgid "Activation Code"
|
467 |
msgstr "Activatie code"
|
468 |
|
469 |
+
#: codepress-admin-columns.php:2333
|
470 |
+
#@ codepress-admin-columns
|
471 |
msgid "Enter your activation code"
|
472 |
msgstr "Vul je activatie code in"
|
473 |
|
474 |
+
#: codepress-admin-columns.php:2334
|
475 |
+
#@ codepress-admin-columns
|
476 |
msgid "Activation code unrecognised"
|
477 |
msgstr "Activatie code niet herkend"
|
478 |
|
479 |
+
#: codepress-admin-columns.php:2427
|
480 |
+
#@ codepress-admin-columns
|
481 |
msgid "You will find a short overview at the <strong>Help</strong> section in the top-right screen."
|
482 |
msgstr "Je vindt een korte samenvatting in de <strong>Help</strong> sectie in de rechter bovenkant van het scherm."
|
483 |
|
484 |
+
#. translators: plugin header field 'Name'
|
485 |
+
#: codepress-admin-columns.php:0
|
486 |
+
#: codepress-admin-columns.php:2435
|
487 |
+
#@ codepress-admin-columns
|
488 |
msgid "Codepress Admin Columns"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: codepress-admin-columns.php:2448
|
492 |
+
#@ codepress-admin-columns
|
493 |
msgid "By default WordPress let's you only sort by title, date, comments and author."
|
494 |
msgstr "Standaard laat WordPress je sorteren bij titel, datum, reakties en auteur."
|
495 |
|
496 |
+
#: codepress-admin-columns.php:2458
|
497 |
+
#@ codepress-admin-columns
|
|
|
|
|
|
|
498 |
msgid "Like this plugin?"
|
499 |
msgstr "Leuke plugin?"
|
500 |
|
501 |
+
#: codepress-admin-columns.php:2461
|
502 |
+
#@ codepress-admin-columns
|
503 |
msgid "Why not do any or all of the following"
|
504 |
msgstr "Waarom doe je niet één van de volgende dingen:"
|
505 |
|
506 |
+
#: codepress-admin-columns.php:2464
|
507 |
+
#@ codepress-admin-columns
|
508 |
msgid "Link to it so other folks can find out about it."
|
509 |
msgstr "Link naar ons zodat anderen deze plugin ook ontdekken."
|
510 |
|
511 |
+
#: codepress-admin-columns.php:2463
|
512 |
+
#@ codepress-admin-columns
|
513 |
msgid "Give it a 5 star rating on WordPress.org."
|
514 |
msgstr "Geef het een goede score op WordPress.org."
|
515 |
|
516 |
+
#: codepress-admin-columns.php:2465
|
517 |
+
#@ codepress-admin-columns
|
518 |
msgid "Donate a token of your appreciation."
|
519 |
msgstr "Doneer een blijk van uw waardering."
|
520 |
|
521 |
+
#: codepress-admin-columns.php:2487
|
522 |
+
#@ codepress-admin-columns
|
523 |
msgid "Need support?"
|
524 |
msgstr "Hulp nodig?"
|
525 |
|
526 |
+
#: codepress-admin-columns.php:2491
|
527 |
#, php-format
|
528 |
+
#@ codepress-admin-columns
|
529 |
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."
|
530 |
msgstr "Als je problem hebt met deze plugin, stel je vragen dan in de <a href=\"%s\">Support forums</a> of stuur me een email %s."
|
531 |
|
532 |
+
#: codepress-admin-columns.php:2492
|
533 |
#, php-format
|
534 |
+
#@ codepress-admin-columns
|
535 |
msgid "If you're sure you've found a bug, or have a feature request, please <a href='%s'>submit your feedback</a>."
|
536 |
msgstr "Als een bug bent tegen gekomen, of een feature wil aanvragen, stuur ons dan <a href='%s'>je feedback</a>."
|
537 |
|
538 |
+
#: codepress-admin-columns.php:139
|
539 |
+
#: codepress-admin-columns.php:2507
|
540 |
+
#@ codepress-admin-columns
|
541 |
msgid "Admin Columns"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: codepress-admin-columns.php:2525
|
545 |
+
#@ default
|
546 |
msgid "Save Changes"
|
547 |
msgstr "Wijzigingen opslaan"
|
548 |
|
549 |
+
#: codepress-admin-columns.php:2537
|
550 |
+
#@ codepress-admin-columns
|
551 |
msgid "Restore defaults"
|
552 |
msgstr "Herstel instellingen"
|
553 |
|
554 |
+
#: codepress-admin-columns.php:2541
|
555 |
+
#@ codepress-admin-columns
|
556 |
msgid "Restore default settings"
|
557 |
msgstr "Herstel standaard instellingen"
|
558 |
|
559 |
+
#: codepress-admin-columns.php:2541
|
560 |
+
#@ codepress-admin-columns
|
561 |
msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
|
562 |
msgstr "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
|
563 |
|
564 |
+
#: codepress-admin-columns.php:2543
|
565 |
+
#@ codepress-admin-columns
|
566 |
msgid "This will delete all column settings and restore the default settings."
|
567 |
msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinstellingen hersteld."
|
568 |
|
569 |
+
#: classes/_org.sortable.php:1134
|
570 |
+
#: classes/_sortable.php:1140
|
571 |
+
#: classes/sortable.php:1157
|
572 |
+
#@ codepress-admin-columns
|
573 |
+
msgid "Show all "
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: classes/values/comments.php:195
|
577 |
+
#: classes/values/comments.php:200
|
578 |
+
#@ default
|
579 |
+
msgid "Unapprove this comment"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: classes/values/comments.php:195
|
583 |
+
#: classes/values/comments.php:200
|
584 |
+
#@ default
|
585 |
+
msgid "Unapprove"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: classes/values/comments.php:197
|
589 |
+
#: classes/values/comments.php:199
|
590 |
+
#@ default
|
591 |
+
msgid "Approve this comment"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: classes/values/comments.php:197
|
595 |
+
#: classes/values/comments.php:199
|
596 |
+
#@ default
|
597 |
+
msgid "Approve"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: classes/values/comments.php:204
|
601 |
+
#@ default
|
602 |
+
msgid "Mark this comment as spam"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#. translators: mark as spam link
|
606 |
+
#: classes/values/comments.php:204
|
607 |
+
#@ default
|
608 |
+
msgctxt "verb"
|
609 |
+
msgid "Spam"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: classes/values/comments.php:206
|
613 |
+
#@ default
|
614 |
+
msgctxt "comment"
|
615 |
+
msgid "Not Spam"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: classes/values/comments.php:208
|
619 |
+
#: classes/values/posts.php:281
|
620 |
+
#@ default
|
621 |
+
msgid "Restore"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: classes/values/comments.php:212
|
625 |
+
#: classes/values/posts.php:285
|
626 |
+
#@ default
|
627 |
+
msgid "Delete Permanently"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: classes/values/comments.php:214
|
631 |
+
#@ default
|
632 |
+
msgid "Move this comment to the trash"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: classes/values/comments.php:214
|
636 |
+
#@ default
|
637 |
+
msgctxt "verb"
|
638 |
+
msgid "Trash"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: classes/values/comments.php:218
|
642 |
+
#@ default
|
643 |
+
msgid "Edit comment"
|
644 |
+
msgstr ""
|
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 |
+
#@ default
|
651 |
+
msgid "Edit"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: classes/values/comments.php:219
|
655 |
+
#@ default
|
656 |
+
msgid "Quick Edit"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: classes/values/comments.php:219
|
660 |
+
#: classes/values/posts.php:277
|
661 |
+
#@ default
|
662 |
+
msgid "Quick Edit"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: classes/values/comments.php:220
|
666 |
+
#@ default
|
667 |
+
msgid "Reply to this comment"
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: classes/values/comments.php:220
|
671 |
+
#@ default
|
672 |
+
msgid "Reply"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: classes/values/link.php:118
|
676 |
+
#, php-format
|
677 |
+
#@ default
|
678 |
+
msgid ""
|
679 |
+
"You are about to delete this link '%s'\n"
|
680 |
+
" 'Cancel' to stop, 'OK' to delete."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: classes/values/link.php:118
|
684 |
+
#: classes/values/users.php:151
|
685 |
+
#@ default
|
686 |
+
msgid "Delete"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: classes/values/posts.php:212
|
690 |
+
#@ codepress-admin-columns
|
691 |
+
msgid "Published"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: classes/values/posts.php:213
|
695 |
+
#@ codepress-admin-columns
|
696 |
+
msgid "Draft"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: classes/values/posts.php:214
|
700 |
+
#@ codepress-admin-columns
|
701 |
+
msgid "Scheduled"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: classes/values/posts.php:215
|
705 |
+
#@ codepress-admin-columns
|
706 |
+
msgid "Private"
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: classes/values/posts.php:216
|
710 |
+
#@ codepress-admin-columns
|
711 |
+
msgid "Pending Review"
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: classes/values/posts.php:217
|
715 |
+
#: classes/values/posts.php:283
|
716 |
+
#@ codepress-admin-columns
|
717 |
+
#@ default
|
718 |
+
msgid "Trash"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: classes/values/posts.php:238
|
722 |
+
#@ codepress-admin-columns
|
723 |
+
msgid "approved"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: classes/values/posts.php:242
|
727 |
+
#@ codepress-admin-columns
|
728 |
+
msgid "pending"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: classes/values/posts.php:246
|
732 |
+
#@ codepress-admin-columns
|
733 |
+
msgid "spam"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: classes/values/posts.php:250
|
737 |
+
#@ codepress-admin-columns
|
738 |
+
msgid "trash"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: classes/values/posts.php:276
|
742 |
+
#@ default
|
743 |
+
msgid "Edit this item"
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#: classes/values/posts.php:277
|
747 |
+
#@ default
|
748 |
+
msgid "Edit this item inline"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: classes/values/posts.php:281
|
752 |
+
#@ default
|
753 |
+
msgid "Restore this item from the Trash"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: classes/values/posts.php:283
|
757 |
+
#@ default
|
758 |
+
msgid "Move this item to the Trash"
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: classes/values/posts.php:285
|
762 |
+
#@ default
|
763 |
+
msgid "Delete this item permanently"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: classes/values/posts.php:290
|
767 |
+
#, php-format
|
768 |
+
#@ default
|
769 |
+
msgid "Preview “%s”"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: classes/values/posts.php:290
|
773 |
+
#@ default
|
774 |
+
msgid "Preview"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: classes/values/posts.php:292
|
778 |
+
#, php-format
|
779 |
+
#@ default
|
780 |
+
msgid "View “%s”"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: classes/values/posts.php:292
|
784 |
+
#@ default
|
785 |
+
msgid "View"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#. translators: plugin header field 'PluginURI'
|
789 |
+
#: codepress-admin-columns.php:0
|
790 |
+
#@ codepress-admin-columns
|
791 |
+
msgid "http://www.codepress.nl/plugins/codepress-admin-columns/"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#. translators: plugin header field 'Description'
|
795 |
+
#: codepress-admin-columns.php:0
|
796 |
+
#@ codepress-admin-columns
|
797 |
+
msgid "Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface."
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#. translators: plugin header field 'Author'
|
801 |
+
#: codepress-admin-columns.php:0
|
802 |
+
#@ codepress-admin-columns
|
803 |
+
msgid "Codepress"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#. translators: plugin header field 'AuthorURI'
|
807 |
+
#: codepress-admin-columns.php:0
|
808 |
+
#@ codepress-admin-columns
|
809 |
+
msgid "http://www.codepress.nl"
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#. translators: plugin header field 'Version'
|
813 |
+
#: codepress-admin-columns.php:0
|
814 |
+
#@ codepress-admin-columns
|
815 |
+
msgid "1.4.6"
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
#: codepress-admin-columns.php:137
|
819 |
+
#@ codepress-admin-columns
|
820 |
+
msgid "Admin Columns Settings"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: codepress-admin-columns.php:601
|
824 |
+
#@ codepress-admin-columns
|
825 |
+
msgid "Checkmark (true/false)"
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: codepress-admin-columns.php:639
|
829 |
+
#@ codepress-admin-columns
|
830 |
+
msgid "Field Type"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: codepress-admin-columns.php:642
|
834 |
+
#@ codepress-admin-columns
|
835 |
+
msgid "Before"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: codepress-admin-columns.php:645
|
839 |
+
#@ codepress-admin-columns
|
840 |
+
msgid "After"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: codepress-admin-columns.php:663
|
844 |
+
#@ codepress-admin-columns
|
845 |
+
msgid "Display Name"
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: codepress-admin-columns.php:664
|
849 |
+
#@ codepress-admin-columns
|
850 |
+
msgid "First Name"
|
851 |
+
msgstr ""
|
852 |
+
|
853 |
+
#: codepress-admin-columns.php:665
|
854 |
+
#@ codepress-admin-columns
|
855 |
+
msgid "Last Name"
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: codepress-admin-columns.php:666
|
859 |
+
#@ codepress-admin-columns
|
860 |
+
msgid "First & Last Name"
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: codepress-admin-columns.php:668
|
864 |
+
#@ codepress-admin-columns
|
865 |
+
msgid "Username"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: codepress-admin-columns.php:669
|
869 |
+
#@ codepress-admin-columns
|
870 |
+
msgid "Email"
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: codepress-admin-columns.php:679
|
874 |
+
#@ codepress-admin-columns
|
875 |
+
msgid "Display name as"
|
876 |
+
msgstr ""
|
877 |
+
|
878 |
+
#: codepress-admin-columns.php:1282
|
879 |
+
#@ codepress-admin-columns
|
880 |
+
msgid "Comment status"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: codepress-admin-columns.php:1285
|
884 |
+
#@ codepress-admin-columns
|
885 |
+
msgid "Ping status"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: codepress-admin-columns.php:1288
|
889 |
+
#: codepress-admin-columns.php:1410
|
890 |
+
#: codepress-admin-columns.php:1489
|
891 |
+
#: codepress-admin-columns.php:1620
|
892 |
+
#: codepress-admin-columns.php:1681
|
893 |
+
#@ codepress-admin-columns
|
894 |
+
msgid "Actions"
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: codepress-admin-columns.php:1294
|
898 |
+
#@ codepress-admin-columns
|
899 |
+
msgid "Last modified"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#: codepress-admin-columns.php:1297
|
903 |
+
#@ codepress-admin-columns
|
904 |
+
msgid "Comment count"
|
905 |
+
msgstr ""
|
906 |
+
|
907 |
+
#: codepress-admin-columns.php:1300
|
908 |
+
#@ codepress-admin-columns
|
909 |
+
msgid "Display Author As"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: codepress-admin-columns.php:1495
|
913 |
+
#@ codepress-admin-columns
|
914 |
+
msgid "File size"
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#: codepress-admin-columns.php:1504
|
918 |
+
#@ codepress-admin-columns
|
919 |
+
msgid "Aperture"
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: codepress-admin-columns.php:1506
|
923 |
+
#@ codepress-admin-columns
|
924 |
+
msgid "Aperture EXIF"
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: codepress-admin-columns.php:1510
|
928 |
+
#@ codepress-admin-columns
|
929 |
+
msgid "Credit"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: codepress-admin-columns.php:1512
|
933 |
+
#@ codepress-admin-columns
|
934 |
+
msgid "Credit EXIF"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: codepress-admin-columns.php:1516
|
938 |
+
#@ codepress-admin-columns
|
939 |
+
msgid "Camera"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: codepress-admin-columns.php:1518
|
943 |
+
#@ codepress-admin-columns
|
944 |
+
msgid "Camera EXIF"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: codepress-admin-columns.php:1524
|
948 |
+
#@ codepress-admin-columns
|
949 |
+
msgid "Caption EXIF"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: codepress-admin-columns.php:1528
|
953 |
+
#@ codepress-admin-columns
|
954 |
+
msgid "Timestamp"
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: codepress-admin-columns.php:1530
|
958 |
+
#@ codepress-admin-columns
|
959 |
+
msgid "Timestamp EXIF"
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: codepress-admin-columns.php:1534
|
963 |
+
#@ codepress-admin-columns
|
964 |
+
msgid "Copyright"
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: codepress-admin-columns.php:1536
|
968 |
+
#@ codepress-admin-columns
|
969 |
+
msgid "Copyright EXIF"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: codepress-admin-columns.php:1540
|
973 |
+
#@ codepress-admin-columns
|
974 |
+
msgid "Focal Length"
|
975 |
+
msgstr ""
|
976 |
+
|
977 |
+
#: codepress-admin-columns.php:1542
|
978 |
+
#@ codepress-admin-columns
|
979 |
+
msgid "Focal Length EXIF"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: codepress-admin-columns.php:1546
|
983 |
+
#@ codepress-admin-columns
|
984 |
+
msgid "ISO"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: codepress-admin-columns.php:1548
|
988 |
+
#@ codepress-admin-columns
|
989 |
+
msgid "ISO EXIF"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: codepress-admin-columns.php:1552
|
993 |
+
#@ codepress-admin-columns
|
994 |
+
msgid "Shutter Speed"
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: codepress-admin-columns.php:1554
|
998 |
+
#@ codepress-admin-columns
|
999 |
+
msgid "Shutter Speed EXIF"
|
1000 |
+
msgstr ""
|
1001 |
+
|
1002 |
+
#: codepress-admin-columns.php:1558
|
1003 |
+
#@ codepress-admin-columns
|
1004 |
+
msgid "Title"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: codepress-admin-columns.php:1560
|
1008 |
+
#@ codepress-admin-columns
|
1009 |
+
msgid "Title EXIF"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: codepress-admin-columns.php:2270
|
1013 |
+
#: codepress-admin-columns.php:2450
|
1014 |
+
#@ codepress-admin-columns
|
1015 |
+
msgid "(columns that are added by other plugins are not supported)"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: codepress-admin-columns.php:2445
|
1019 |
+
#@ codepress-admin-columns
|
1020 |
+
msgid "Get the Addon"
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: codepress-admin-columns.php:2449
|
1024 |
+
#@ codepress-admin-columns
|
1025 |
+
msgid "Make <strong>all columns</strong> of <strong>all types</strong> within the plugin support sorting — with the sorting addon."
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: codepress-admin-columns.php:2473
|
1029 |
+
#@ codepress-admin-columns
|
1030 |
+
msgid "Follow us"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: codepress-admin-columns.php:2477
|
1034 |
+
#@ codepress-admin-columns
|
1035 |
+
msgid "Follow Codepress on Twitter."
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: codepress-admin-columns.php:2478
|
1039 |
+
#@ codepress-admin-columns
|
1040 |
+
msgid "Like Codepress on Facebook."
|
1041 |
+
msgstr ""
|
1042 |
+
|
readme.txt
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
=== Codepress Admin Columns ===
|
2 |
-
Contributors: codepress, tschutter
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZDZRSYLQ4Z76J
|
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
|
|
|
|
|
8 |
|
9 |
== Description ==
|
10 |
|
@@ -148,27 +150,20 @@ Leave your feedback at http://www.codepress.nl/plugins/codepress-admin-columns/f
|
|
148 |
You can use the build in filter to set your own thumbnail size. Just add this piece of code to your
|
149 |
theme's functions.php.
|
150 |
|
151 |
-
To set a custom size use, for example
|
152 |
|
153 |
`
|
154 |
<?php
|
155 |
-
add_filter('cpac_thumbnail_size','my_custom_thumbsize');
|
156 |
-
function my_custom_thumbsize()
|
157 |
-
{
|
158 |
-
return array(30,30); // width, height
|
159 |
-
}
|
160 |
-
?>
|
161 |
-
`
|
162 |
|
163 |
-
|
|
|
|
|
|
|
164 |
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
{
|
170 |
-
return 'thumbnail';
|
171 |
-
}
|
172 |
?>
|
173 |
`
|
174 |
|
@@ -197,6 +192,13 @@ Now you can select your HIDDEN custom fields in de dropdown menu under "Custom F
|
|
197 |
|
198 |
== Changelog ==
|
199 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
= 1.4.6 =
|
201 |
|
202 |
* added german language ( thanks to Uli )
|
1 |
=== Codepress Admin Columns ===
|
2 |
+
Contributors: codepress, tschutter, davidmosterd
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZDZRSYLQ4Z76J
|
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.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 |
|
11 |
== Description ==
|
12 |
|
150 |
You can use the build in filter to set your own thumbnail size. Just add this piece of code to your
|
151 |
theme's functions.php.
|
152 |
|
153 |
+
To set a custom size use, for example 194 width by 63 height pixels:
|
154 |
|
155 |
`
|
156 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
|
158 |
+
// edit here: fill in your thumbnail height and width
|
159 |
+
$my_height = 63;
|
160 |
+
$my_width = 194;
|
161 |
+
// stop editing
|
162 |
|
163 |
+
add_image_size( 'admin-columns', $my_width, $my_height, true );
|
164 |
+
add_filter('cpac_thumbnail_size', function() {
|
165 |
+
return 'admin-columns';
|
166 |
+
});
|
|
|
|
|
|
|
167 |
?>
|
168 |
`
|
169 |
|
192 |
|
193 |
== Changelog ==
|
194 |
|
195 |
+
= 1.4.6.1 =
|
196 |
+
|
197 |
+
* bug fix for possible warning when using Custompress ( props to scottsalisbury for the fix! )
|
198 |
+
* bug fix for sorting by postcount for users
|
199 |
+
* added 'Display Author As' column for post(types)
|
200 |
+
* added sorting support for 'Display Author As' column
|
201 |
+
|
202 |
= 1.4.6 =
|
203 |
|
204 |
* added german language ( thanks to Uli )
|