Admin Columns - Version 2.0.3

Version Description

  • [Updated] Danish translation - thanks to iosoftgame
  • [Updated] Spanish translation - thanks to redywebs
  • [Added] Chinese translation - thanks to
  • [Fixed] Solved bug with before and after field
  • [Added] Fieldtype "Counter" to Custom Fields
  • [Added] Column type ID when you hover over the column type label
  • [Added] Support for raw values
  • [Updated] Changed filter for cac/column/value. See: http://www.codepresshq.com/documentation.
Download this release

Release Info

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

Code changes from version 2.0.2 to 2.0.3

Files changed (71) hide show
  1. README.md +0 -0
  2. assets/css/admin-column.css +7 -1
  3. assets/js/admin-columns.js +37 -21
  4. classes/api.php +0 -8
  5. classes/column.php +19 -5
  6. classes/column/custom-field.php +96 -41
  7. classes/column/post/ID.php +8 -0
  8. classes/column/post/attachment-count.php +9 -0
  9. classes/column/post/attachment.php +12 -3
  10. classes/column/post/author-name.php +14 -4
  11. classes/column/post/before-moretag.php +9 -0
  12. classes/column/post/comment-count.php +21 -4
  13. classes/column/post/comment-status.php +16 -6
  14. classes/column/post/excerpt.php +12 -2
  15. classes/column/post/featured-image.php +20 -4
  16. classes/column/post/formats.php +13 -1
  17. classes/column/post/modified.php +12 -1
  18. classes/column/post/order.php +9 -0
  19. classes/column/post/page-template.php +9 -2
  20. classes/column/post/parent.php +19 -5
  21. classes/column/post/ping-status.php +16 -7
  22. classes/column/post/roles.php +11 -2
  23. classes/column/post/slug.php +9 -0
  24. classes/column/post/status.php +15 -2
  25. classes/column/post/sticky.php +10 -1
  26. classes/column/post/taxonomy.php +10 -4
  27. classes/column/post/word-count.php +9 -0
  28. classes/column/user/ID.php +9 -0
  29. classes/column/user/actions.php +9 -0
  30. classes/column/user/comment-count.php +10 -3
  31. classes/column/user/description.php +9 -0
  32. classes/column/user/first-name.php +9 -0
  33. classes/column/user/last-name.php +9 -0
  34. classes/column/user/nickname.php +9 -0
  35. classes/column/user/post-count.php +12 -5
  36. classes/column/user/registered.php +12 -1
  37. classes/column/user/url.php +9 -0
  38. classes/settings.php +40 -21
  39. classes/storage_model.php +44 -10
  40. classes/storage_model/comment.php +8 -3
  41. classes/storage_model/link.php +7 -1
  42. classes/storage_model/media.php +13 -4
  43. classes/storage_model/post.php +14 -16
  44. classes/storage_model/user.php +27 -8
  45. classes/utility.php +2 -9
  46. codepress-admin-columns.php +11 -16
  47. languages/cac-addon-pro.po +0 -265
  48. languages/cpac-ar.mo +0 -0
  49. languages/cpac-ar.po +203 -272
  50. languages/cpac-da_DK.mo +0 -0
  51. languages/cpac-da_DK.po +354 -620
  52. languages/cpac-de_DE.mo +0 -0
  53. languages/cpac-de_DE.po +234 -505
  54. languages/cpac-es_ES.mo +0 -0
  55. languages/cpac-es_ES.po +1170 -0
  56. languages/cpac-fr_FR.mo +0 -0
  57. languages/cpac-fr_FR.po +232 -447
  58. languages/cpac-it_IT.mo +0 -0
  59. languages/cpac-it_IT.po +1170 -0
  60. languages/cpac-nl_NL.mo +0 -0
  61. languages/cpac-nl_NL.po +207 -492
  62. languages/cpac-pl_PL.mo +0 -0
  63. languages/cpac-pl_PL.po +344 -629
  64. languages/cpac-pt_BR.mo +0 -0
  65. languages/{cpac.po → cpac-pt_BR.po} +54 -47
  66. languages/cpac-sv_SE.mo +0 -0
  67. languages/cpac-sv_SE.po +352 -628
  68. languages/cpac-zh_CN.mo +0 -0
  69. languages/cpac-zh_CN.po +1170 -0
  70. languages/cpac.mo +0 -0
  71. readme.txt +30 -12
README.md ADDED
File without changes
assets/css/admin-column.css CHANGED
@@ -430,6 +430,10 @@ tr.column_image_size.hidden {
430
  padding: 5px 8px !important;
431
  font-weight: normal;
432
  }
 
 
 
 
433
  .rtl .column-form tr td.label p.description {
434
  right: 0;
435
  left: auto;
@@ -596,14 +600,16 @@ tr.column_image_size.hidden {
596
  padding: 8px;
597
  }
598
  #form-actions .submit-update {
 
599
  width: 100%;
600
  height: 28px;
601
  line-height: 28px;
 
602
  }
603
 
604
  /* =Sidebar: Pro
605
  --------------------------------*/
606
- #pro-version {
607
  background: transparent url(../images/get_the_addon.png) no-repeat 0 0;
608
  }
609
  #pro-version .padding-box {
430
  padding: 5px 8px !important;
431
  font-weight: normal;
432
  }
433
+ .column-form tr td.label p.description em {
434
+ display: block;
435
+ color: #999;
436
+ }
437
  .rtl .column-form tr td.label p.description {
438
  right: 0;
439
  left: auto;
600
  padding: 8px;
601
  }
602
  #form-actions .submit-update {
603
+ display: block;
604
  width: 100%;
605
  height: 28px;
606
  line-height: 28px;
607
+ text-align: center;
608
  }
609
 
610
  /* =Sidebar: Pro
611
  --------------------------------*/
612
+ #pro-version .cta {
613
  background: transparent url(../images/get_the_addon.png) no-repeat 0 0;
614
  }
615
  #pro-version .padding-box {
assets/js/admin-columns.js CHANGED
@@ -10,6 +10,7 @@ jQuery(document).ready(function() {
10
 
11
  // General
12
  cpac_pointer();
 
13
 
14
  // Settings Page
15
  cpac_clear_input_defaults();
@@ -28,6 +29,21 @@ jQuery(document).ready(function() {
28
  });
29
  });
30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  /*
32
  * Column: bind toggle events
33
  *
@@ -270,7 +286,7 @@ function cpac_add_column() {
270
  if ( clone.length > 0 ) {
271
 
272
  // add to DOM
273
- jQuery('.cpac-columns', container).append( clone );
274
 
275
  // increment clone id
276
  clone.cpac_update_clone_id();
@@ -303,32 +319,31 @@ function cpac_add_column() {
303
  * @since 1.5
304
  */
305
  function cpac_sidebar_scroll() {
306
- var msie6 = jQuery.browser == 'msie' && jQuery.browser.version < 7;
307
 
308
- if (!msie6 && jQuery('.columns-right-inside').length !== 0 ) {
 
309
 
310
- if ( jQuery('.columns-right-inside:visible').offset() ) {
311
 
312
- // top position of the sidebar on loading
313
- var top = jQuery('.columns-right-inside:visible').offset().top - parseFloat( jQuery('.columns-right-inside:visible').css('margin-top').replace(/auto/, 0) ) - 70;
314
 
315
- jQuery(window).scroll(function (event) {
316
- // y position of the scroll
317
- var y = jQuery(this).scrollTop();
318
 
319
- // top position of div#cpac is calculated everytime incase of an opened help screen
320
- var offset = jQuery('#cpac').offset().top - parseFloat( jQuery('#cpac').css('margin-top').replace(/auto/, 0) );
321
 
322
- // whether that's below
323
- if (y >= top + offset ) {
324
- // if so, ad the fixed class
325
- jQuery('.columns-right-inside:visible').addClass('fixed');
326
- } else {
327
- // otherwise remove it
328
- jQuery('.columns-right-inside:visible').removeClass('fixed');
329
- }
330
- });
331
- }
332
  }
333
  }
334
 
@@ -440,6 +455,7 @@ function cpac_pointer() {
440
  */
441
  function cpac_sortable() {
442
  jQuery('div.cpac-columns').sortable({
 
443
  revert : 250,
444
  handle : 'td.column_sort',
445
  placeholder : 'cpac-placeholder',
10
 
11
  // General
12
  cpac_pointer();
13
+ cpac_submit_form();
14
 
15
  // Settings Page
16
  cpac_clear_input_defaults();
29
  });
30
  });
31
 
32
+
33
+
34
+ /*
35
+ * Submit Form
36
+ *
37
+ * @since 2.0.2
38
+ */
39
+ function cpac_submit_form() {
40
+ jQuery('.form-update a.submit-update').click( function(e){
41
+ e.preventDefault();
42
+
43
+ jQuery(this).closest('.columns-container').find('.cpac-columns form').submit();
44
+ });
45
+ }
46
+
47
  /*
48
  * Column: bind toggle events
49
  *
286
  if ( clone.length > 0 ) {
287
 
288
  // add to DOM
289
+ jQuery('.cpac-columns form', container).append( clone );
290
 
291
  // increment clone id
292
  clone.cpac_update_clone_id();
319
  * @since 1.5
320
  */
321
  function cpac_sidebar_scroll() {
 
322
 
323
+ if( jQuery('.columns-right-inside').length === 0 )
324
+ return;
325
 
326
+ if ( jQuery('.columns-right-inside:visible').offset() ) {
327
 
328
+ // top position of the sidebar on loading
329
+ var top = jQuery('.columns-right-inside:visible').offset().top - parseFloat( jQuery('.columns-right-inside:visible').css('margin-top').replace(/auto/, 0) ) - 70;
330
 
331
+ jQuery(window).scroll(function (event) {
332
+ // y position of the scroll
333
+ var y = jQuery(this).scrollTop();
334
 
335
+ // top position of div#cpac is calculated everytime incase of an opened help screen
336
+ var offset = jQuery('#cpac').offset().top - parseFloat( jQuery('#cpac').css('margin-top').replace(/auto/, 0) );
337
 
338
+ // whether that's below
339
+ if (y >= top + offset ) {
340
+ // if so, ad the fixed class
341
+ jQuery('.columns-right-inside:visible').addClass('fixed');
342
+ } else {
343
+ // otherwise remove it
344
+ jQuery('.columns-right-inside:visible').removeClass('fixed');
345
+ }
346
+ });
 
347
  }
348
  }
349
 
455
  */
456
  function cpac_sortable() {
457
  jQuery('div.cpac-columns').sortable({
458
+ items : '.cpac-column',
459
  revert : 250,
460
  handle : 'td.column_sort',
461
  placeholder : 'cpac-placeholder',
classes/api.php DELETED
@@ -1,8 +0,0 @@
1
- <?php
2
-
3
- /**
4
- * Admin Columns - API
5
- *
6
- * @since 2.0.0
7
- * @todo: build API
8
- */
 
 
 
 
 
 
 
 
classes/column.php CHANGED
@@ -53,6 +53,16 @@ class CPAC_Column {
53
  */
54
  public function get_value( $id ) {}
55
 
 
 
 
 
 
 
 
 
 
 
56
  /**
57
  * Display_settings
58
  *
@@ -863,10 +873,11 @@ class CPAC_Column {
863
  public function get_column_list( $columns = array(), $label = '' ) {
864
 
865
  if ( empty( $columns ) )
866
- return array();
867
 
868
  $list = '';
869
 
 
870
  $_columns = array();
871
  foreach ( $columns as $column ) {
872
  $_columns[ $column->properties->type ] = 0 === strlen( strip_tags( $column->properties->label ) ) ? ucfirst( $column->properties->type ) : $column->properties->label;
@@ -894,7 +905,7 @@ class CPAC_Column {
894
  $classes = implode( ' ', array_filter( array ( "cpac-box-{$this->properties->type}", $this->properties->classes ) ) );
895
 
896
  // column list
897
- $column_list = $this->get_column_list( $this->storage_model->get_custom_registered_columns(), __( 'Custom', 'cpac' ) );
898
  $column_list .= $this->get_column_list( $this->storage_model->get_default_registered_columns(), __( 'Default', 'cpac' ) );
899
 
900
  // clone attribute
@@ -913,7 +924,7 @@ class CPAC_Column {
913
  <div class="inner">
914
  <div class="meta">
915
 
916
- <?php do_action( 'cac/column/label', $this ); ?>
917
 
918
  </div>
919
  <a class="toggle" href="javascript:;">
@@ -939,7 +950,7 @@ class CPAC_Column {
939
  <table class="widefat">
940
  <tbody>
941
  <tr class="column_type">
942
- <?php $this->label_view( __( 'Type', 'cpac' ), __( 'Choose a column type.', 'cpac' ), 'type' ); ?>
943
  <td class="input">
944
  <select name="<?php $this->attr_name( 'type' ); ?>" id="<?php $this->attr_id( 'type' ); ?>">
945
  <?php echo $column_list; ?>
@@ -981,7 +992,10 @@ class CPAC_Column {
981
 
982
  <tr class="column_action">
983
  <td colspan="2">
984
- <p><a href="javascript:;" class="remove-button"><?php _e( 'Remove' );?></a></p>
 
 
 
985
  </td>
986
  </tr>
987
 
53
  */
54
  public function get_value( $id ) {}
55
 
56
+ /**
57
+ * Get the raw, underlying value for the column
58
+ * Not suitable for direct display, use get_value() for that
59
+ *
60
+ * @since 2.0.3
61
+ * @param int $id ID
62
+ * @return mixed Value
63
+ */
64
+ public function get_raw_value( $id ) {}
65
+
66
  /**
67
  * Display_settings
68
  *
873
  public function get_column_list( $columns = array(), $label = '' ) {
874
 
875
  if ( empty( $columns ) )
876
+ return false;
877
 
878
  $list = '';
879
 
880
+ // sort by alphabet
881
  $_columns = array();
882
  foreach ( $columns as $column ) {
883
  $_columns[ $column->properties->type ] = 0 === strlen( strip_tags( $column->properties->label ) ) ? ucfirst( $column->properties->type ) : $column->properties->label;
905
  $classes = implode( ' ', array_filter( array ( "cpac-box-{$this->properties->type}", $this->properties->classes ) ) );
906
 
907
  // column list
908
+ $column_list = $this->get_column_list( $this->storage_model->get_custom_registered_columns(), __( 'Custom', 'cpac' ) );
909
  $column_list .= $this->get_column_list( $this->storage_model->get_default_registered_columns(), __( 'Default', 'cpac' ) );
910
 
911
  // clone attribute
924
  <div class="inner">
925
  <div class="meta">
926
 
927
+ <?php do_action( 'cac/column/label', $this ); ?>
928
 
929
  </div>
930
  <a class="toggle" href="javascript:;">
950
  <table class="widefat">
951
  <tbody>
952
  <tr class="column_type">
953
+ <?php $this->label_view( __( 'Type', 'cpac' ), __( 'Choose a column type.', 'cpac' ) . '<em>' . __('ID','cpac') . ': ' . $this->properties->type . '</em>', 'type' ); ?>
954
  <td class="input">
955
  <select name="<?php $this->attr_name( 'type' ); ?>" id="<?php $this->attr_id( 'type' ); ?>">
956
  <?php echo $column_list; ?>
992
 
993
  <tr class="column_action">
994
  <td colspan="2">
995
+ <p>
996
+ <a href="javascript:;" class="remove-button"><?php _e( 'Remove' );?></a>
997
+ <!--<span class="description alignright"><?php _e('type','cpac'); ?>: <em><?php echo $this->properties->type; ?></em></span>-->
998
+ </p>
999
  </td>
1000
  </tr>
1001
 
classes/column/custom-field.php CHANGED
@@ -34,7 +34,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
34
  // for retireving sorting preference
35
  $this->user_settings = get_option( 'cpac_general_options' );
36
 
37
- // call contruct
38
  parent::__construct( $storage_model );
39
  }
40
 
@@ -44,13 +44,11 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
44
  */
45
  function sanitize_options( $options ) {
46
 
47
- if ( ! empty( $options['before'] ) ) {
48
- $options['before'] = trim( $options['before'] );
49
- }
50
 
51
- if ( ! empty( $options['after'] ) ) {
52
- $options['after'] = trim( $options['after'] );
53
- }
54
 
55
  if ( empty( $options['date_format'] ) ) {
56
  $options['date_format'] = get_option( 'date_format' );
@@ -70,36 +68,43 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
70
 
71
  $custom_field_types = array(
72
  '' => __( 'Default'),
 
 
 
 
 
73
  'image' => __( 'Image', 'cpac' ),
74
  'library_id' => __( 'Media Library', 'cpac' ),
75
- 'excerpt' => __( 'Excerpt'),
76
  'array' => __( 'Multiple Values', 'cpac' ),
77
  'numeric' => __( 'Numeric', 'cpac' ),
78
- 'date' => __( 'Date', 'cpac' ),
79
  'title_by_id' => __( 'Post Title (Post ID\'s)', 'cpac' ),
80
  'user_by_id' => __( 'Username (User ID\'s)', 'cpac' ),
81
- 'checkmark' => __( 'Checkmark (true/false)', 'cpac' ),
82
- 'color' => __( 'Color', 'cpac' ),
83
  );
84
 
85
- return apply_filters( 'cpac_custom_field_types', $custom_field_types );
 
 
 
 
 
 
86
  }
87
 
88
  /**
89
- * Get Title by ID - Value method
90
  *
91
  * @since 1.0
92
  *
93
  * @param string $meta
94
  * @return string Titles
95
  */
96
- private function get_titles_by_id( $meta ) {
97
 
98
  //remove white spaces and strip tags
99
  $meta = $this->strip_trim( str_replace( ' ','', $meta ) );
100
 
101
  // var
102
- $ids = $titles = array();
103
 
104
  // check for multiple id's
105
  if ( strpos( $meta, ',' ) !== false )
@@ -107,12 +112,28 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
107
  elseif ( is_numeric( $meta ) )
108
  $ids[] = $meta;
109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  // display title with link
111
  if ( $ids && is_array( $ids ) ) {
112
  foreach ( $ids as $id ) {
113
- $title = is_numeric( $id ) ? get_the_title( $id ) : '';
 
114
  $link = get_edit_post_link( $id );
115
- if ( $title )
116
  $titles[] = $link ? "<a href='{$link}'>{$title}</a>" : $title;
117
  }
118
  }
@@ -130,25 +151,12 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
130
  */
131
  private function get_users_by_id( $meta ) {
132
 
133
- //remove white spaces and strip tags
134
- $meta = $this->strip_trim( str_replace( ' ', '', $meta ) );
135
-
136
- // var
137
- $ids = $names = array();
138
-
139
- // check for multiple id's
140
- if ( strpos( $meta, ',' ) !== false ) {
141
- $ids = explode( ',',$meta );
142
- }
143
- elseif ( is_numeric( $meta ) ) {
144
- $ids[] = $meta;
145
- }
146
 
147
  // display username
148
  if ( $ids && is_array( $ids ) ) {
149
  foreach ( $ids as $id ) {
150
- if ( ! is_numeric( $id ) )
151
- continue;
152
 
153
  $userdata = get_userdata( $id );
154
  if ( is_object( $userdata ) && ! empty( $userdata->display_name ) ) {
@@ -169,10 +177,11 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
169
  *
170
  * @since 2.0.0
171
  *
172
- * @param string $meta
 
173
  * @return string Users
174
  */
175
- function get_value_by_meta( $meta ) {
176
 
177
  switch ( $this->options->field_type ) :
178
 
@@ -220,6 +229,11 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
220
  }
221
  break;
222
 
 
 
 
 
 
223
  endswitch;
224
 
225
  return $meta;
@@ -259,21 +273,30 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
259
  return $rgb;
260
  }
261
 
 
 
 
 
 
 
 
 
 
 
 
 
262
  /**
263
  * Get meta by ID
264
  *
265
- * @since 1.0
266
  *
267
  * @param int $id ID
268
  * @return string Meta Value
269
  */
270
  public function get_meta_by_id( $id ) {
271
 
272
- // rename hidden custom fields to their original name
273
- $field = substr( $this->options->field, 0, 10 ) == "cpachidden" ? str_replace( 'cpachidden', '', $this->options->field ) : $this->options->field;
274
-
275
  // get metadata
276
- $meta = get_metadata( $this->storage_model->type, $id, $field, true );
277
 
278
  // try to turn any array into a comma seperated string for further use
279
  if ( ( 'array' == $this->options->field_type && is_array( $meta ) ) || is_array( $meta ) ) {
@@ -286,6 +309,35 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
286
  return $meta;
287
  }
288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  /**
290
  * @see CPAC_Column::get_value()
291
  * @since 1.0
@@ -297,14 +349,17 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
297
  if ( $meta = $this->get_meta_by_id( $id ) ) {
298
 
299
  // get value by meta
300
- $value = $this->get_value_by_meta( $meta );
301
  }
302
 
303
  $value = apply_filters( 'cac/column/meta/value', $value, $id, $this );
304
 
 
 
 
305
  // add before and after string
306
  if ( $value ) {
307
- $value = "{$this->options->before}{$value}{$this->options->after}";
308
  }
309
 
310
  return $value;
34
  // for retireving sorting preference
35
  $this->user_settings = get_option( 'cpac_general_options' );
36
 
37
+ // call construct
38
  parent::__construct( $storage_model );
39
  }
40
 
44
  */
45
  function sanitize_options( $options ) {
46
 
47
+ //if ( ! empty( $options['before'] ) )
48
+ // $options['before'] = trim( $options['before'] );
 
49
 
50
+ //if ( ! empty( $options['after'] ) )
51
+ // $options['after'] = trim( $options['after'] );
 
52
 
53
  if ( empty( $options['date_format'] ) ) {
54
  $options['date_format'] = get_option( 'date_format' );
68
 
69
  $custom_field_types = array(
70
  '' => __( 'Default'),
71
+ 'checkmark' => __( 'Checkmark (true/false)', 'cpac' ),
72
+ 'color' => __( 'Color', 'cpac' ),
73
+ 'count' => __( 'Counter', 'cpac' ),
74
+ 'date' => __( 'Date', 'cpac' ),
75
+ 'excerpt' => __( 'Excerpt'),
76
  'image' => __( 'Image', 'cpac' ),
77
  'library_id' => __( 'Media Library', 'cpac' ),
 
78
  'array' => __( 'Multiple Values', 'cpac' ),
79
  'numeric' => __( 'Numeric', 'cpac' ),
 
80
  'title_by_id' => __( 'Post Title (Post ID\'s)', 'cpac' ),
81
  'user_by_id' => __( 'Username (User ID\'s)', 'cpac' ),
 
 
82
  );
83
 
84
+ // deprecated. do not use, will be removed.
85
+ $custom_field_types = apply_filters( 'cpac_custom_field_types', $custom_field_types );
86
+
87
+ // Filter
88
+ $custom_field_types = apply_filters( 'cac/column/meta/types', $custom_field_types );
89
+
90
+ return $custom_field_types;
91
  }
92
 
93
  /**
94
+ * Get First ID from array
95
  *
96
  * @since 1.0
97
  *
98
  * @param string $meta
99
  * @return string Titles
100
  */
101
+ public function get_ids_from_meta( $meta ) {
102
 
103
  //remove white spaces and strip tags
104
  $meta = $this->strip_trim( str_replace( ' ','', $meta ) );
105
 
106
  // var
107
+ $ids = array();
108
 
109
  // check for multiple id's
110
  if ( strpos( $meta, ',' ) !== false )
112
  elseif ( is_numeric( $meta ) )
113
  $ids[] = $meta;
114
 
115
+ return $ids;
116
+ }
117
+
118
+ /**
119
+ * Get Title by ID - Value method
120
+ *
121
+ * @since 1.0
122
+ *
123
+ * @param string $meta
124
+ * @return string Titles
125
+ */
126
+ private function get_titles_by_id( $meta ) {
127
+
128
+ $ids = $this->get_ids_from_meta( $meta );
129
+
130
  // display title with link
131
  if ( $ids && is_array( $ids ) ) {
132
  foreach ( $ids as $id ) {
133
+ if ( ! is_numeric( $id ) ) continue;
134
+
135
  $link = get_edit_post_link( $id );
136
+ if ( $title = get_the_title( $id ) )
137
  $titles[] = $link ? "<a href='{$link}'>{$title}</a>" : $title;
138
  }
139
  }
151
  */
152
  private function get_users_by_id( $meta ) {
153
 
154
+ $ids = $this->get_ids_from_meta( $meta );
 
 
 
 
 
 
 
 
 
 
 
 
155
 
156
  // display username
157
  if ( $ids && is_array( $ids ) ) {
158
  foreach ( $ids as $id ) {
159
+ if ( ! is_numeric( $id ) ) continue;
 
160
 
161
  $userdata = get_userdata( $id );
162
  if ( is_object( $userdata ) && ! empty( $userdata->display_name ) ) {
177
  *
178
  * @since 2.0.0
179
  *
180
+ * @param string $meta Contains Meta Value
181
+ * @param int $id Optional Object ID
182
  * @return string Users
183
  */
184
+ function get_value_by_meta( $meta, $id = null ) {
185
 
186
  switch ( $this->options->field_type ) :
187
 
229
  }
230
  break;
231
 
232
+ case "count" :
233
+ if ( $count = $this->get_raw_value( $id, false ) )
234
+ $meta = count( $count );
235
+ break;
236
+
237
  endswitch;
238
 
239
  return $meta;
273
  return $rgb;
274
  }
275
 
276
+ /**
277
+ * Get Field key
278
+ *
279
+ * @since 2.0.3
280
+ *
281
+ * @param string Custom Field Key
282
+ */
283
+ function get_field_key() {
284
+
285
+ return substr( $this->options->field, 0, 10 ) == "cpachidden" ? str_replace( 'cpachidden', '', $this->options->field ) : $this->options->field;
286
+ }
287
+
288
  /**
289
  * Get meta by ID
290
  *
291
+ * @since 1.0.0
292
  *
293
  * @param int $id ID
294
  * @return string Meta Value
295
  */
296
  public function get_meta_by_id( $id ) {
297
 
 
 
 
298
  // get metadata
299
+ $meta = $this->get_raw_value( $id );
300
 
301
  // try to turn any array into a comma seperated string for further use
302
  if ( ( 'array' == $this->options->field_type && is_array( $meta ) ) || is_array( $meta ) ) {
309
  return $meta;
310
  }
311
 
312
+ /**
313
+ * Get before value
314
+ *
315
+ * @since 1.0
316
+ */
317
+ function get_before() {
318
+
319
+ return stripslashes( $this->options->before );
320
+ }
321
+
322
+ /**
323
+ * Get after value
324
+ *
325
+ * @since 1.0
326
+ */
327
+ function get_after() {
328
+
329
+ return stripslashes( $this->options->after );
330
+ }
331
+
332
+ /**
333
+ * @see CPAC_Column::get_raw_value()
334
+ * @since 2.0.3
335
+ */
336
+ function get_raw_value( $id, $single = true ) {
337
+
338
+ return get_metadata( $this->storage_model->type, $id, $this->get_field_key(), $single );
339
+ }
340
+
341
  /**
342
  * @see CPAC_Column::get_value()
343
  * @since 1.0
349
  if ( $meta = $this->get_meta_by_id( $id ) ) {
350
 
351
  // get value by meta
352
+ $value = $this->get_value_by_meta( $meta, $id );
353
  }
354
 
355
  $value = apply_filters( 'cac/column/meta/value', $value, $id, $this );
356
 
357
+ $before = $this->get_before();
358
+ $after = $this->get_after();
359
+
360
  // add before and after string
361
  if ( $value ) {
362
+ $value = "{$before}{$value}{$after}";
363
  }
364
 
365
  return $value;
classes/column/post/ID.php CHANGED
@@ -19,6 +19,14 @@ class CPAC_Column_Post_ID extends CPAC_Column {
19
  * @since 2.0.0
20
  */
21
  function get_value( $post_id ) {
 
 
 
 
 
 
 
 
22
  return $post_id;
23
  }
24
  }
19
  * @since 2.0.0
20
  */
21
  function get_value( $post_id ) {
22
+ return $this->get_raw_value( $post_id );
23
+ }
24
+
25
+ /**
26
+ * @see CPAC_Column::get_value()
27
+ * @since 2.0.3
28
+ */
29
+ function get_raw_value( $post_id ) {
30
  return $post_id;
31
  }
32
  }
classes/column/post/attachment-count.php CHANGED
@@ -20,6 +20,15 @@ class CPAC_Column_Post_Attachment_Count extends CPAC_Column {
20
  */
21
  function get_value( $post_id ) {
22
 
 
 
 
 
 
 
 
 
 
23
  $attachment_ids = get_posts( array(
24
  'post_type' => 'attachment',
25
  'numberposts' => -1,
20
  */
21
  function get_value( $post_id ) {
22
 
23
+ return $this->get_raw_value( $post_id );
24
+ }
25
+
26
+ /**
27
+ * @see CPAC_Column::get_raw_value()
28
+ * @since 2.0.3
29
+ */
30
+ function get_raw_value( $post_id ) {
31
+
32
  $attachment_ids = get_posts( array(
33
  'post_type' => 'attachment',
34
  'numberposts' => -1,
classes/column/post/attachment.php CHANGED
@@ -25,15 +25,24 @@ class CPAC_Column_Post_Attachment extends CPAC_Column {
25
  */
26
  function get_value( $post_id ) {
27
 
28
- $attachment_ids = get_posts( array(
 
 
 
 
 
 
 
 
 
 
 
29
  'post_type' => 'attachment',
30
  'numberposts' => -1,
31
  'post_status' => null,
32
  'post_parent' => $post_id,
33
  'fields' => 'ids'
34
  ));
35
-
36
- return implode( $this->get_thumbnails( $attachment_ids, $this->options ) );
37
  }
38
 
39
  /**
25
  */
26
  function get_value( $post_id ) {
27
 
28
+ $attachment_ids = $this->get_raw_value( $post_id );
29
+
30
+ return implode( $this->get_thumbnails( $attachment_ids, $this->options ) );
31
+ }
32
+
33
+ /**
34
+ * @see CPAC_Column::get_raw_value()
35
+ * @since 2.0.3
36
+ */
37
+ function get_raw_value( $post_id ) {
38
+
39
+ return get_posts( array(
40
  'post_type' => 'attachment',
41
  'numberposts' => -1,
42
  'post_status' => null,
43
  'post_parent' => $post_id,
44
  'fields' => 'ids'
45
  ));
 
 
46
  }
47
 
48
  /**
classes/column/post/author-name.php CHANGED
@@ -8,9 +8,10 @@ class CPAC_Column_Post_Author_Name extends CPAC_Column {
8
 
9
  function __construct( $storage_model ) {
10
 
11
- $this->properties['type'] = 'column-author_name';
12
- $this->properties['label'] = __( 'Display Author As', 'cpac' );
13
- $this->properties['is_cloneable'] = true;
 
14
 
15
  // define additional options
16
  $this->options['display_author_as'] = '';
@@ -84,7 +85,7 @@ class CPAC_Column_Post_Author_Name extends CPAC_Column {
84
 
85
  $nametypes = $this->get_nametypes();
86
  if ( isset( $nametypes[ $this->options->display_author_as ] ) ) {
87
- if( $author = get_post_field( 'post_author', $post_id ) ) {
88
  $value = $this->get_display_name( $author );
89
  }
90
  }
@@ -92,6 +93,15 @@ class CPAC_Column_Post_Author_Name extends CPAC_Column {
92
  return $value;
93
  }
94
 
 
 
 
 
 
 
 
 
 
95
  /**
96
  * Display Settings
97
  *
8
 
9
  function __construct( $storage_model ) {
10
 
11
+ $this->properties['type'] = 'column-author_name';
12
+ $this->properties['label'] = __( 'Display Author As', 'cpac' );
13
+ $this->properties['is_cloneable'] = true;
14
+ $this->properties['object_property'] = 'post_author';
15
 
16
  // define additional options
17
  $this->options['display_author_as'] = '';
85
 
86
  $nametypes = $this->get_nametypes();
87
  if ( isset( $nametypes[ $this->options->display_author_as ] ) ) {
88
+ if( $author = $this->get_raw_value( $post_id ) ) {
89
  $value = $this->get_display_name( $author );
90
  }
91
  }
93
  return $value;
94
  }
95
 
96
+ /**
97
+ * @see CPAC_Column::get_raw_value()
98
+ * @since 2.0.3
99
+ */
100
+ function get_raw_value( $post_id ) {
101
+
102
+ return get_post_field( 'post_author', $post_id );
103
+ }
104
+
105
  /**
106
  * Display Settings
107
  *
classes/column/post/before-moretag.php CHANGED
@@ -25,6 +25,15 @@ class CPAC_Column_Post_Before_Moretag extends CPAC_Column {
25
  */
26
  function get_value( $post_id ) {
27
 
 
 
 
 
 
 
 
 
 
28
  $value = '';
29
 
30
  $p = get_post( $post_id );
25
  */
26
  function get_value( $post_id ) {
27
 
28
+ return $this->get_raw_value( $post_id );
29
+ }
30
+
31
+ /**
32
+ * @see CPAC_Column::get_raw_value()
33
+ * @since 2.0.3
34
+ */
35
+ function get_raw_value( $post_id ) {
36
+
37
  $value = '';
38
 
39
  $p = get_post( $post_id );
classes/column/post/comment-count.php CHANGED
@@ -44,14 +44,31 @@ class CPAC_Column_Post_Comment_Count extends CPAC_Column {
44
  $value = '';
45
 
46
  $status = $this->options->comment_status;
47
- $count = wp_count_comments( $post_id );
48
-
49
- if ( isset( $count->{$status} ) ) {
50
 
 
51
  $names = $this->get_comment_stati();
52
 
53
  $url = esc_url( add_query_arg( array( 'p' => $post_id, 'comment_status' => $status ), admin_url( 'edit-comments.php' ) ) );
54
- $value = "<a href='{$url}' class='cp-{$status}' title='" . $names[ $status ] . "'>{$count->approved}</a>";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  }
56
 
57
  return $value;
44
  $value = '';
45
 
46
  $status = $this->options->comment_status;
47
+ $count = $this->get_raw_value( $post_id );
 
 
48
 
49
+ if ( $count !== '' ) {
50
  $names = $this->get_comment_stati();
51
 
52
  $url = esc_url( add_query_arg( array( 'p' => $post_id, 'comment_status' => $status ), admin_url( 'edit-comments.php' ) ) );
53
+ $value = "<a href='{$url}' class='cp-{$status}' title='" . $names[ $status ] . "'>{$count}</a>";
54
+ }
55
+
56
+ return $value;
57
+ }
58
+
59
+ /**
60
+ * @see CPAC_Column::get_raw_value()
61
+ * @since 2.0.3
62
+ */
63
+ function get_raw_value( $post_id ) {
64
+
65
+ $value = '';
66
+
67
+ $status = $this->options->comment_status;
68
+ $count = wp_count_comments( $post_id );
69
+
70
+ if ( isset( $count->{$status} ) ) {
71
+ $value = $count->{$status};
72
  }
73
 
74
  return $value;
classes/column/post/comment-status.php CHANGED
@@ -10,8 +10,9 @@ class CPAC_Column_Post_Comment_Status extends CPAC_Column {
10
  function __construct( $storage_model ) {
11
 
12
  // define properties
13
- $this->properties['type'] = 'column-comment_status';
14
- $this->properties['label'] = __( 'Comment status', 'cpac' );
 
15
 
16
  parent::__construct( $storage_model );
17
  }
@@ -22,12 +23,21 @@ class CPAC_Column_Post_Comment_Status extends CPAC_Column {
22
  */
23
  function get_value( $post_id ) {
24
 
25
- $p = get_post( $post_id );
26
 
27
- $value = $this->get_asset_image( 'no.png', $p->comment_status );
28
- if ( 'open' == $p->comment_status )
29
- $value = $this->get_asset_image( 'checkmark.png', $p->comment_status );
30
 
31
  return $value;
32
  }
 
 
 
 
 
 
 
 
 
33
  }
10
  function __construct( $storage_model ) {
11
 
12
  // define properties
13
+ $this->properties['type'] = 'column-comment_status';
14
+ $this->properties['label'] = __( 'Comment status', 'cpac' );
15
+ $this->properties['object_property'] = 'comment_status';
16
 
17
  parent::__construct( $storage_model );
18
  }
23
  */
24
  function get_value( $post_id ) {
25
 
26
+ $comment_status = $this->get_raw_value( $post_id );
27
 
28
+ $value = $this->get_asset_image( 'no.png', $comment_status );
29
+ if ( 'open' == $comment_status )
30
+ $value = $this->get_asset_image( 'checkmark.png', $comment_status );
31
 
32
  return $value;
33
  }
34
+
35
+ /**
36
+ * @see CPAC_Column::get_raw_value()
37
+ * @since 2.0.3
38
+ */
39
+ function get_raw_value( $post_id ) {
40
+
41
+ return get_post_field( 'comment_status', $post_id, 'raw' );
42
+ }
43
  }
classes/column/post/excerpt.php CHANGED
@@ -9,8 +9,9 @@ class CPAC_Column_Post_Excerpt extends CPAC_Column {
9
  function __construct( $storage_model ) {
10
 
11
  // define properties
12
- $this->properties['type'] = 'column-excerpt';
13
- $this->properties['label'] = __( 'Excerpt', 'cpac' );
 
14
 
15
  // define additional options
16
  $this->options['excerpt_length'] = 30;
@@ -27,6 +28,15 @@ class CPAC_Column_Post_Excerpt extends CPAC_Column {
27
  return $this->get_post_excerpt( $post_id, $this->options->excerpt_length );
28
  }
29
 
 
 
 
 
 
 
 
 
 
30
  /**
31
  * @see CPAC_Column::display_settings()
32
  * @since 2.0.0
9
  function __construct( $storage_model ) {
10
 
11
  // define properties
12
+ $this->properties['type'] = 'column-excerpt';
13
+ $this->properties['label'] = __( 'Excerpt', 'cpac' );
14
+ $this->properties['object_property'] = 'post_excerpt';
15
 
16
  // define additional options
17
  $this->options['excerpt_length'] = 30;
28
  return $this->get_post_excerpt( $post_id, $this->options->excerpt_length );
29
  }
30
 
31
+ /**
32
+ * @see CPAC_Column::get_raw_value()
33
+ * @since 2.0.3
34
+ */
35
+ function get_raw_value( $post_id ) {
36
+
37
+ return get_post_field( 'post_excerpt', $post_id, 'raw' );
38
+ }
39
+
40
  /**
41
  * @see CPAC_Column::display_settings()
42
  * @since 2.0.0
classes/column/post/featured-image.php CHANGED
@@ -10,8 +10,8 @@ class CPAC_Column_Post_Featured_Image extends CPAC_Column {
10
  function __construct( $storage_model ) {
11
 
12
  // define properties
13
- $this->properties['type'] = 'column-featured_image';
14
- $this->properties['label'] = __( 'Featured Image', 'cpac' );
15
 
16
  // define additional options
17
  $this->options['image_size'] = '';
@@ -26,15 +26,31 @@ class CPAC_Column_Post_Featured_Image extends CPAC_Column {
26
  * @since 2.0.0
27
  */
28
  function get_value( $post_id ) {
29
- if ( ! has_post_thumbnail( $post_id ) )
 
 
 
30
  return false;
 
31
 
32
- $thumb = implode( $this->get_thumbnails( get_post_thumbnail_id( $post_id ), (array) $this->options ) );
33
  $link = get_edit_post_link( $post_id );
34
 
35
  return $link ? "<a href='{$link}#postimagediv'>{$thumb}</a>" : $thumb;
36
  }
37
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  /**
39
  * @see CPAC_Column::display_settings()
40
  * @since 2.0.0
10
  function __construct( $storage_model ) {
11
 
12
  // define properties
13
+ $this->properties['type'] = 'column-featured_image';
14
+ $this->properties['label'] = __( 'Featured Image', 'cpac' );
15
 
16
  // define additional options
17
  $this->options['image_size'] = '';
26
  * @since 2.0.0
27
  */
28
  function get_value( $post_id ) {
29
+
30
+ $thumbnail_id = $this->get_raw_value( $post_id );
31
+
32
+ if ( !$thumbnail_id ) {
33
  return false;
34
+ }
35
 
36
+ $thumb = implode( $this->get_thumbnails( $thumbnail_id, (array) $this->options ) );
37
  $link = get_edit_post_link( $post_id );
38
 
39
  return $link ? "<a href='{$link}#postimagediv'>{$thumb}</a>" : $thumb;
40
  }
41
 
42
+ /**
43
+ * @see CPAC_Column::get_raw_value()
44
+ * @since 2.0.3
45
+ */
46
+ function get_raw_value( $post_id ) {
47
+
48
+ if ( ! has_post_thumbnail( $post_id ) )
49
+ return false;
50
+
51
+ return get_post_thumbnail_id( $post_id );
52
+ }
53
+
54
  /**
55
  * @see CPAC_Column::display_settings()
56
  * @since 2.0.0
classes/column/post/formats.php CHANGED
@@ -34,9 +34,21 @@ class CPAC_Column_Post_Formats extends CPAC_Column {
34
  */
35
  function get_value( $post_id ) {
36
 
37
- if ( ! $format = get_post_format( $post_id ) )
38
  return false;
39
 
40
  return esc_html( get_post_format_string( $format ) );
41
  }
 
 
 
 
 
 
 
 
 
 
 
 
42
  }
34
  */
35
  function get_value( $post_id ) {
36
 
37
+ if ( ! $format = $this->get_raw_value( $post_id ) )
38
  return false;
39
 
40
  return esc_html( get_post_format_string( $format ) );
41
  }
42
+
43
+ /**
44
+ * @see CPAC_Column::get_raw_value()
45
+ * @since 2.0.3
46
+ */
47
+ function get_raw_value( $post_id ) {
48
+
49
+ if ( ! $format = get_post_format( $post_id ) )
50
+ return false;
51
+
52
+ return $format;
53
+ }
54
  }
classes/column/post/modified.php CHANGED
@@ -22,8 +22,19 @@ class CPAC_Column_Post_Modified extends CPAC_Column {
22
  */
23
  function get_value( $post_id ) {
24
 
 
 
 
 
 
 
 
 
 
 
 
25
  $p = get_post( $post_id );
26
 
27
- return $this->get_date( $p->post_modified ) . ' ' . $this->get_time( $p->post_modified );
28
  }
29
  }
22
  */
23
  function get_value( $post_id ) {
24
 
25
+ $modified = $this->get_raw_value( $post_id );
26
+
27
+ return $this->get_date( $modified ) . ' ' . $this->get_time( $modified );
28
+ }
29
+
30
+ /**
31
+ * @see CPAC_Column::get_raw_value()
32
+ * @since 2.0.3
33
+ */
34
+ function get_raw_value( $post_id ) {
35
+
36
  $p = get_post( $post_id );
37
 
38
+ return $p->post_modified;
39
  }
40
  }
classes/column/post/order.php CHANGED
@@ -34,6 +34,15 @@ class CPAC_Column_Post_Order extends CPAC_Column {
34
  */
35
  function get_value( $post_id ) {
36
 
 
 
 
 
 
 
 
 
 
37
  return get_post_field( 'menu_order', $post_id );
38
  }
39
  }
34
  */
35
  function get_value( $post_id ) {
36
 
37
+ return $this->get_raw_value( $post_id );
38
+ }
39
+
40
+ /**
41
+ * @see CPAC_Column::get_raw_value()
42
+ * @since 2.0.3
43
+ */
44
+ function get_raw_value( $post_id ) {
45
+
46
  return get_post_field( 'menu_order', $post_id );
47
  }
48
  }
classes/column/post/page-template.php CHANGED
@@ -20,9 +20,16 @@ class CPAC_Column_Post_Page_Template extends CPAC_Column {
20
  */
21
  function get_value( $post_id ) {
22
 
23
- $page_template = get_post_meta( $post_id, '_wp_page_template', true );
 
 
 
 
 
 
 
24
 
25
- return array_search( $page_template, get_page_templates() );
26
  }
27
 
28
  /**
20
  */
21
  function get_value( $post_id ) {
22
 
23
+ return array_search( $this->get_raw_value( $post_id ), get_page_templates() );
24
+ }
25
+
26
+ /**
27
+ * @see CPAC_Column::get_raw_value()
28
+ * @since 2.0.3
29
+ */
30
+ function get_raw_value( $post_id ) {
31
 
32
+ return get_post_meta( $post_id, '_wp_page_template', true );
33
  }
34
 
35
  /**
classes/column/post/parent.php CHANGED
@@ -8,8 +8,9 @@ class CPAC_Column_Post_Parent extends CPAC_Column {
8
 
9
  function __construct( $storage_model ) {
10
 
11
- $this->properties['type'] = 'column-parent';
12
- $this->properties['label'] = __( 'Parent', 'cpac' );
 
13
 
14
  parent::__construct( $storage_model );
15
  }
@@ -20,10 +21,9 @@ class CPAC_Column_Post_Parent extends CPAC_Column {
20
  */
21
  function get_value( $post_id ) {
22
 
23
- $parent_id = get_post_field( 'post_parent', $post_id );
24
-
25
- if ( !$parent_id || !is_numeric( $parent_id ) )
26
  return false;
 
27
 
28
  $title = get_the_title( $parent_id );
29
  $link = get_edit_post_link( $parent_id );
@@ -31,6 +31,20 @@ class CPAC_Column_Post_Parent extends CPAC_Column {
31
  return $link ? "<a href='{$link}'>{$title}</a>" : $title;
32
  }
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  /**
35
  * @see CPAC_Column::apply_conditional()
36
  * @since 2.0.0
8
 
9
  function __construct( $storage_model ) {
10
 
11
+ $this->properties['type'] = 'column-parent';
12
+ $this->properties['label'] = __( 'Parent', 'cpac' );
13
+ $this->properties['object_property'] = 'post_parent';
14
 
15
  parent::__construct( $storage_model );
16
  }
21
  */
22
  function get_value( $post_id ) {
23
 
24
+ if ( !( $parent_id = $this->get_raw_value( $post_id ) ) ) {
 
 
25
  return false;
26
+ }
27
 
28
  $title = get_the_title( $parent_id );
29
  $link = get_edit_post_link( $parent_id );
31
  return $link ? "<a href='{$link}'>{$title}</a>" : $title;
32
  }
33
 
34
+ /**
35
+ * @see CPAC_Column::get_raw_value()
36
+ * @since 2.0.3
37
+ */
38
+ function get_raw_value( $post_id ) {
39
+
40
+ $parent_id = get_post_field( 'post_parent', $post_id );
41
+
42
+ if ( !$parent_id || !is_numeric( $parent_id ) )
43
+ return false;
44
+
45
+ return $parent_id;
46
+ }
47
+
48
  /**
49
  * @see CPAC_Column::apply_conditional()
50
  * @since 2.0.0
classes/column/post/ping-status.php CHANGED
@@ -10,8 +10,9 @@ class CPAC_Column_Post_Ping_Status extends CPAC_Column {
10
  function __construct( $storage_model ) {
11
 
12
  // define properties
13
- $this->properties['type'] = 'column-ping_status';
14
- $this->properties['label'] = __( 'Ping status', 'cpac' );
 
15
 
16
  parent::__construct( $storage_model );
17
  }
@@ -22,13 +23,21 @@ class CPAC_Column_Post_Ping_Status extends CPAC_Column {
22
  */
23
  function get_value( $post_id ) {
24
 
25
- $p = get_post( $post_id );
26
 
27
- $value = $this->get_asset_image( 'no.png', $p->ping_status );
28
-
29
- if ( 'open' == $p->ping_status )
30
- $value = $this->get_asset_image( 'checkmark.png', $p->ping_status );
31
 
32
  return $value;
33
  }
 
 
 
 
 
 
 
 
 
34
  }
10
  function __construct( $storage_model ) {
11
 
12
  // define properties
13
+ $this->properties['type'] = 'column-ping_status';
14
+ $this->properties['label'] = __( 'Ping status', 'cpac' );
15
+ $this->properties['object_property'] = 'ping_status';
16
 
17
  parent::__construct( $storage_model );
18
  }
23
  */
24
  function get_value( $post_id ) {
25
 
26
+ $ping_status = $this->get_raw_value( $post_id );
27
 
28
+ $value = $this->get_asset_image( 'no.png', $ping_status );
29
+ if ( 'open' == $ping_status )
30
+ $value = $this->get_asset_image( 'checkmark.png', $ping_status );
 
31
 
32
  return $value;
33
  }
34
+
35
+ /**
36
+ * @see CPAC_Column::get_raw_value()
37
+ * @since 2.0.3
38
+ */
39
+ function get_raw_value( $post_id ) {
40
+
41
+ return get_post_field( 'ping_status', $post_id, 'raw' );
42
+ }
43
  }
classes/column/post/roles.php CHANGED
@@ -22,11 +22,20 @@ class CPAC_Column_Post_Roles extends CPAC_Column {
22
  */
23
  function get_value( $post_id ) {
24
 
 
 
 
 
 
 
 
 
 
25
  $userdata = get_userdata( get_post_field( 'post_author', $post_id ) );
26
 
27
  if ( empty( $userdata->roles[0] ) )
28
- return false;
29
 
30
- return implode( ', ',$userdata->roles );
31
  }
32
  }
22
  */
23
  function get_value( $post_id ) {
24
 
25
+ return implode( ', ', $this->get_raw_value( $post_id ) );
26
+ }
27
+
28
+ /**
29
+ * @see CPAC_Column::get_raw_value()
30
+ * @since 2.0.3
31
+ */
32
+ function get_raw_value( $post_id ) {
33
+
34
  $userdata = get_userdata( get_post_field( 'post_author', $post_id ) );
35
 
36
  if ( empty( $userdata->roles[0] ) )
37
+ return array();
38
 
39
+ return $userdata->roles;
40
  }
41
  }
classes/column/post/slug.php CHANGED
@@ -20,6 +20,15 @@ class CPAC_Column_Post_Slug extends CPAC_Column {
20
  */
21
  function get_value( $post_id ) {
22
 
 
 
 
 
 
 
 
 
 
23
  return get_post_field( 'post_name', $post_id );
24
  }
25
  }
20
  */
21
  function get_value( $post_id ) {
22
 
23
+ return $this->get_raw_value( $post_id );
24
+ }
25
+
26
+ /**
27
+ * @see CPAC_Column::get_raw_value()
28
+ * @since 2.0.3
29
+ */
30
+ function get_raw_value( $post_id ) {
31
+
32
  return get_post_field( 'post_name', $post_id );
33
  }
34
  }
classes/column/post/status.php CHANGED
@@ -24,6 +24,8 @@ class CPAC_Column_Post_Status extends CPAC_Column {
24
 
25
  $value = '';
26
 
 
 
27
  $p = get_post( $post_id );
28
 
29
  $builtin_status = array(
@@ -35,9 +37,20 @@ class CPAC_Column_Post_Status extends CPAC_Column {
35
  'trash' => __( 'Trash', 'cpac' ),
36
  );
37
 
38
- if ( isset( $builtin_status[ $p->post_status ] ) )
39
- $value = $builtin_status[ $p->post_status ];
40
 
41
  return $value;
42
  }
 
 
 
 
 
 
 
 
 
 
 
43
  }
24
 
25
  $value = '';
26
 
27
+ $post_status = $this->get_raw_value( $post_id );
28
+
29
  $p = get_post( $post_id );
30
 
31
  $builtin_status = array(
37
  'trash' => __( 'Trash', 'cpac' ),
38
  );
39
 
40
+ if ( isset( $builtin_status[ $post_status ] ) )
41
+ $value = $builtin_status[ $post_status ];
42
 
43
  return $value;
44
  }
45
+
46
+ /**
47
+ * @see CPAC_Column::get_raw_value()
48
+ * @since 2.0.3
49
+ */
50
+ function get_raw_value( $post_id ) {
51
+
52
+ $p = get_post( $post_id );
53
+
54
+ return $p->post_status;
55
+ }
56
  }
classes/column/post/sticky.php CHANGED
@@ -33,9 +33,18 @@ class CPAC_Column_Post_Sticky extends CPAC_Column {
33
  * @since 2.0.0
34
  */
35
  function get_value( $post_id ) {
36
- if ( ! is_sticky( $post_id ) )
37
  return false;
38
 
39
  return $this->get_asset_image( 'checkmark.png' );
40
  }
 
 
 
 
 
 
 
 
 
41
  }
33
  * @since 2.0.0
34
  */
35
  function get_value( $post_id ) {
36
+ if ( ! ( $sticky = $this->get_raw_value( $post_id ) ) )
37
  return false;
38
 
39
  return $this->get_asset_image( 'checkmark.png' );
40
  }
41
+
42
+ /**
43
+ * @see CPAC_Column::get_raw_value()
44
+ * @since 2.0.3
45
+ */
46
+ function get_raw_value( $post_id ) {
47
+
48
+ return is_sticky( $post_id );
49
+ }
50
  }
classes/column/post/taxonomy.php CHANGED
@@ -26,20 +26,26 @@ class CPAC_Column_Post_Taxonomy extends CPAC_Column {
26
 
27
  $values = array();
28
 
29
- if ( $terms = get_the_terms( $post_id, $this->options->taxonomy ) ) {
30
- $values = array();
31
-
32
  foreach ( $terms as $term ) {
33
 
34
  $title = esc_html( sanitize_term_field( 'name', $term->name, $term->term_id, $term->taxonomy, 'edit' ) );
35
  $values[] = "<a href='edit.php?post_type={$this->storage_model->key}&{$term->taxonomy}={$term->slug}'>{$title}</a>";
36
  }
37
- $value = implode( ', ', $values );
38
  }
39
 
40
  return implode( ', ', $values );
41
  }
42
 
 
 
 
 
 
 
 
 
 
43
  /**
44
  * @see CPAC_Column::apply_conditional()
45
  * @since 2.0.0
26
 
27
  $values = array();
28
 
29
+ if ( $terms = $this->get_raw_value( $post_id ) ) {
 
 
30
  foreach ( $terms as $term ) {
31
 
32
  $title = esc_html( sanitize_term_field( 'name', $term->name, $term->term_id, $term->taxonomy, 'edit' ) );
33
  $values[] = "<a href='edit.php?post_type={$this->storage_model->key}&{$term->taxonomy}={$term->slug}'>{$title}</a>";
34
  }
 
35
  }
36
 
37
  return implode( ', ', $values );
38
  }
39
 
40
+ /**
41
+ * @see CPAC_Column::get_raw_value()
42
+ * @since 2.0.3
43
+ */
44
+ function get_raw_value( $post_id ) {
45
+
46
+ return get_the_terms( $post_id, $this->options->taxonomy );
47
+ }
48
+
49
  /**
50
  * @see CPAC_Column::apply_conditional()
51
  * @since 2.0.0
classes/column/post/word-count.php CHANGED
@@ -20,6 +20,15 @@ class CPAC_Column_Post_Word_Count extends CPAC_Column {
20
  */
21
  function get_value( $post_id ) {
22
 
 
 
 
 
 
 
 
 
 
23
  return str_word_count( $this->strip_trim( get_post_field( 'post_content', $post_id ) ) );
24
  }
25
 
20
  */
21
  function get_value( $post_id ) {
22
 
23
+ return $this->get_raw_value( $post_id );
24
+ }
25
+
26
+ /**
27
+ * @see CPAC_Column::get_raw_value()
28
+ * @since 2.0.3
29
+ */
30
+ function get_raw_value( $post_id ) {
31
+
32
  return str_word_count( $this->strip_trim( get_post_field( 'post_content', $post_id ) ) );
33
  }
34
 
classes/column/user/ID.php CHANGED
@@ -22,6 +22,15 @@ class CPAC_Column_User_ID extends CPAC_Column {
22
  */
23
  function get_value( $user_id ) {
24
 
 
 
 
 
 
 
 
 
 
25
  return $user_id;
26
  }
27
  }
22
  */
23
  function get_value( $user_id ) {
24
 
25
+ return $this->get_raw_value( $user_id );
26
+ }
27
+
28
+ /**
29
+ * @see CPAC_Column::get_raw_value()
30
+ * @since 2.0.3
31
+ */
32
+ function get_raw_value( $user_id ) {
33
+
34
  return $user_id;
35
  }
36
  }
classes/column/user/actions.php CHANGED
@@ -22,6 +22,15 @@ class CPAC_Column_User_Actions extends CPAC_Column {
22
  */
23
  function get_value( $user_id ) {
24
 
 
 
 
 
 
 
 
 
 
25
  return $this->get_column_value_actions( $user_id );
26
  }
27
 
22
  */
23
  function get_value( $user_id ) {
24
 
25
+ return $this->get_raw_value( $user_id );
26
+ }
27
+
28
+ /**
29
+ * @see CPAC_Column::get_raw_value()
30
+ * @since 2.0.3
31
+ */
32
+ function get_raw_value( $user_id ) {
33
+
34
  return $this->get_column_value_actions( $user_id );
35
  }
36
 
classes/column/user/comment-count.php CHANGED
@@ -22,11 +22,18 @@ class CPAC_Column_User_Comment_Count extends CPAC_Column {
22
  */
23
  function get_value( $user_id ) {
24
 
25
- $value = get_comments( array(
 
 
 
 
 
 
 
 
 
26
  'user_id' => $user_id,
27
  'count' => true
28
  ));
29
-
30
- return $value;
31
  }
32
  }
22
  */
23
  function get_value( $user_id ) {
24
 
25
+ return $this->get_raw_value( $user_id );
26
+ }
27
+
28
+ /**
29
+ * @see CPAC_Column::get_raw_value()
30
+ * @since 2.0.3
31
+ */
32
+ function get_raw_value( $user_id ) {
33
+
34
+ return get_comments( array(
35
  'user_id' => $user_id,
36
  'count' => true
37
  ));
 
 
38
  }
39
  }
classes/column/user/description.php CHANGED
@@ -25,6 +25,15 @@ class CPAC_Column_User_Description extends CPAC_Column {
25
  */
26
  function get_value( $user_id ) {
27
 
 
 
 
 
 
 
 
 
 
28
  return $this->get_shortened_string( get_the_author_meta( 'user_description', $user_id ), $this->options->excerpt_length );
29
  }
30
 
25
  */
26
  function get_value( $user_id ) {
27
 
28
+ return $this->get_raw_value( $user_id );
29
+ }
30
+
31
+ /**
32
+ * @see CPAC_Column::get_raw_value()
33
+ * @since 2.0.3
34
+ */
35
+ function get_raw_value( $user_id ) {
36
+
37
  return $this->get_shortened_string( get_the_author_meta( 'user_description', $user_id ), $this->options->excerpt_length );
38
  }
39
 
classes/column/user/first-name.php CHANGED
@@ -22,6 +22,15 @@ class CPAC_Column_User_First_Name extends CPAC_Column {
22
  */
23
  function get_value( $user_id ) {
24
 
 
 
 
 
 
 
 
 
 
25
  $userdata = get_userdata( $user_id );
26
 
27
  return $userdata->first_name;
22
  */
23
  function get_value( $user_id ) {
24
 
25
+ return $this->get_raw_value( $user_id );
26
+ }
27
+
28
+ /**
29
+ * @see CPAC_Column::get_raw_value()
30
+ * @since 2.0.3
31
+ */
32
+ function get_raw_value( $user_id ) {
33
+
34
  $userdata = get_userdata( $user_id );
35
 
36
  return $userdata->first_name;
classes/column/user/last-name.php CHANGED
@@ -22,6 +22,15 @@ class CPAC_Column_User_Last_Name extends CPAC_Column {
22
  */
23
  function get_value( $user_id ) {
24
 
 
 
 
 
 
 
 
 
 
25
  $userdata = get_userdata( $user_id );
26
 
27
  return $userdata->last_name;
22
  */
23
  function get_value( $user_id ) {
24
 
25
+ return $this->get_raw_value( $user_id );
26
+ }
27
+
28
+ /**
29
+ * @see CPAC_Column::get_raw_value()
30
+ * @since 2.0.3
31
+ */
32
+ function get_raw_value( $user_id ) {
33
+
34
  $userdata = get_userdata( $user_id );
35
 
36
  return $userdata->last_name;
classes/column/user/nickname.php CHANGED
@@ -22,6 +22,15 @@ class CPAC_Column_User_Nickname extends CPAC_Column {
22
  */
23
  function get_value( $user_id ) {
24
 
 
 
 
 
 
 
 
 
 
25
  $userdata = get_userdata( $user_id );
26
 
27
  return $userdata->nickname;
22
  */
23
  function get_value( $user_id ) {
24
 
25
+ return $this->get_raw_value( $user_id );
26
+ }
27
+
28
+ /**
29
+ * @see CPAC_Column::get_raw_value()
30
+ * @since 2.0.3
31
+ */
32
+ function get_raw_value( $user_id ) {
33
+
34
  $userdata = get_userdata( $user_id );
35
 
36
  return $userdata->nickname;
classes/column/user/post-count.php CHANGED
@@ -47,19 +47,26 @@ class CPAC_Column_User_Post_Count extends CPAC_Column {
47
  * @see CPAC_Column::get_value()
48
  * @since 2.0.0
49
  */
50
- public function get_value( $user_id ) {
51
-
52
- global $wpdb;
53
 
54
  $value = '0';
55
 
56
- $count = $this->get_count( $user_id );
57
  if ( $count > 0 )
58
  $value = "<a href='edit.php?post_type={$this->options->post_type}&author={$user_id}'>{$count}</a>";
59
 
60
  return $value;
61
  }
62
 
 
 
 
 
 
 
 
 
 
63
  /**
64
  * Display Settings
65
  *
@@ -84,7 +91,7 @@ class CPAC_Column_User_Post_Count extends CPAC_Column {
84
  $post_types = array();
85
  foreach ( $ptypes as $type ) {
86
  $obj = get_post_type_object( $type );
87
- $post_types[ $type ] = $obj->labels->singular_name;
88
  }
89
 
90
  ?>
47
  * @see CPAC_Column::get_value()
48
  * @since 2.0.0
49
  */
50
+ function get_value( $user_id ) {
 
 
51
 
52
  $value = '0';
53
 
54
+ $count = $this->get_raw_value( $user_id );
55
  if ( $count > 0 )
56
  $value = "<a href='edit.php?post_type={$this->options->post_type}&author={$user_id}'>{$count}</a>";
57
 
58
  return $value;
59
  }
60
 
61
+ /**
62
+ * @see CPAC_Column::get_raw_value()
63
+ * @since 2.0.3
64
+ */
65
+ function get_raw_value( $user_id ) {
66
+
67
+ return $this->get_count( $user_id );
68
+ }
69
+
70
  /**
71
  * Display Settings
72
  *
91
  $post_types = array();
92
  foreach ( $ptypes as $type ) {
93
  $obj = get_post_type_object( $type );
94
+ $post_types[ $type ] = $obj->labels->name;
95
  }
96
 
97
  ?>
classes/column/user/registered.php CHANGED
@@ -24,9 +24,20 @@ class CPAC_Column_User_Registered extends CPAC_Column {
24
  */
25
  function get_value( $user_id ) {
26
 
 
 
 
 
 
 
 
 
 
 
 
27
  $userdata = get_userdata( $user_id );
28
 
29
- return $this->get_date( $userdata->user_registered, $this->options->date_format );
30
  }
31
 
32
  /**
24
  */
25
  function get_value( $user_id ) {
26
 
27
+ $user_registered = $this->get_raw_value( $user_id );
28
+
29
+ return $this->get_date( $user_registered, $this->options->date_format );
30
+ }
31
+
32
+ /**
33
+ * @see CPAC_Column::get_raw_value()
34
+ * @since 2.0.3
35
+ */
36
+ function get_raw_value( $user_id ) {
37
+
38
  $userdata = get_userdata( $user_id );
39
 
40
+ return $userdata->user_registered;
41
  }
42
 
43
  /**
classes/column/user/url.php CHANGED
@@ -22,6 +22,15 @@ class CPAC_Column_User_Url extends CPAC_Column {
22
  */
23
  function get_value( $user_id ) {
24
 
 
 
 
 
 
 
 
 
 
25
  $userdata = get_userdata( $user_id );
26
 
27
  return $userdata->user_url;
22
  */
23
  function get_value( $user_id ) {
24
 
25
+ return $this->get_raw_value( $user_id );
26
+ }
27
+
28
+ /**
29
+ * @see CPAC_Column::get_raw_value()
30
+ * @since 2.0.3
31
+ */
32
+ function get_raw_value( $user_id ) {
33
+
34
  $userdata = get_userdata( $user_id );
35
 
36
  return $userdata->user_url;
classes/settings.php CHANGED
@@ -60,10 +60,6 @@ class CPAC_Settings {
60
  */
61
  public function settings_menu() {
62
 
63
- // add pages @remove
64
- //$this->admin_page = add_menu_page( __( 'Admin Columns Settings', 'cpac' ), __( 'Admin Columns', 'cpac' ), 'manage_admin_columns', 'codepress-admin-columns', array( $this, 'column_settings' ), false, 98 );
65
- //$settings_page = add_submenu_page( 'codepress-admin-columns', __( 'Settings', 'cpac' ), __( 'Settings', 'cpac' ), 'manage_admin_columns', 'cpac-settings', array( $this, 'general_settings' ) );
66
-
67
  // add settings page
68
  $settings_page = add_submenu_page( 'options-general.php', __( 'Admin Columns Settings', 'cpac' ), __( 'Admin Columns', 'cpac' ), 'manage_admin_columns', 'codepress-admin-columns', array( $this, 'display' ), false, 98 );
69
 
@@ -149,6 +145,7 @@ class CPAC_Settings {
149
  switch ( $action ) :
150
 
151
  case 'update_by_type' :
 
152
  if ( wp_verify_nonce( $nonce, 'update-type' ) ) {
153
  $storage_model = $this->cpac->get_storage_model( $key );
154
  $storage_model->store();
@@ -231,6 +228,7 @@ class CPAC_Settings {
231
  <li><strong>". __( "Usernames", 'cpac' ) . "</strong><br/>". __( "Value: can be one or more User ID's (seperated by ',').", 'cpac' ) . "</li>
232
  <li><strong>". __( "Checkmark", 'cpac' ) . "</strong><br/>". __( "Value: should be a 1 (one) or 0 (zero).", 'cpac' ) . "</li>
233
  <li><strong>". __( "Color", 'cpac' ) . "</strong><br/>". __( "Value: hex value color, such as #808080.", 'cpac' ) . "</li>
 
234
  </ul>
235
  "
236
  )
@@ -559,10 +557,6 @@ class CPAC_Settings {
559
  <?php foreach ( $this->cpac->storage_models as $storage_model ) : ?>
560
 
561
  <div class="columns-container" data-type="<?php echo $storage_model->key ?>"<?php echo $storage_model->is_menu_type_current( $first ) ? '' : ' style="display:none"'; ?>>
562
- <form method="post" action="">
563
-
564
- <?php wp_nonce_field( 'update-type', '_cpac_nonce'); ?>
565
- <input type="hidden" name="cpac_key" value="<?php echo $storage_model->key; ?>" />
566
 
567
  <div class="columns-left">
568
  <div id="titlediv">
@@ -581,8 +575,7 @@ class CPAC_Settings {
581
  </h3>
582
  <?php $has_been_stored = $storage_model->get_stored_columns() ? true : false; ?>
583
  <div class="form-update">
584
- <input type="hidden" name="cpac_action" value="update_by_type" />
585
- <input type="submit" class="button-primary submit-update" value="<?php echo $has_been_stored ? __( 'Update' ) : __('Publish'); ?> <?php echo $storage_model->label; ?>" accesskey="u" >
586
  </div>
587
  <?php if ( $has_been_stored ) : ?>
588
  <div class="form-reset">
@@ -591,11 +584,14 @@ class CPAC_Settings {
591
  </a>
592
  </div>
593
  <?php endif; ?>
 
 
 
594
  </div><!--form-actions-->
595
 
596
  <?php if ( ! class_exists( 'CAC_Addon_Pro' ) ) : ?>
597
  <div class="sidebox" id="pro-version">
598
- <div class="padding-box">
599
  <h3>
600
  <a href="<?php echo $this->get_url('pro_addon'); ?>"><?php _e( 'Get the Pro Add-on', 'cpac' ) ?></a>
601
  </h3>
@@ -610,6 +606,25 @@ class CPAC_Settings {
610
  </p>
611
  </div>
612
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
613
  </div>
614
  <?php endif; ?>
615
 
@@ -630,11 +645,18 @@ class CPAC_Settings {
630
  <div class="cpac-boxes">
631
  <div class="cpac-columns">
632
 
633
- <?php
634
- foreach ( $storage_model->get_columns() as $column ) {
635
- $column->display();
636
- }
637
- ?>
 
 
 
 
 
 
 
638
 
639
  </div><!--.cpac-columns-->
640
 
@@ -650,8 +672,6 @@ class CPAC_Settings {
650
  </div><!--.columns-left-->
651
  <div class="clear"></div>
652
 
653
- </form>
654
-
655
  <div class="for-cloning-only" style="display:none">
656
  <?php
657
  foreach ( $storage_model->get_registered_columns() as $column ) {
@@ -667,12 +687,11 @@ class CPAC_Settings {
667
  <div class="clear"></div>
668
 
669
  <?php
670
- break; // case: general
671
 
672
  case 'settings' :
673
-
674
  $this->display_settings();
675
- break; // case: settings
676
 
677
  endswitch;
678
  ?>
60
  */
61
  public function settings_menu() {
62
 
 
 
 
 
63
  // add settings page
64
  $settings_page = add_submenu_page( 'options-general.php', __( 'Admin Columns Settings', 'cpac' ), __( 'Admin Columns', 'cpac' ), 'manage_admin_columns', 'codepress-admin-columns', array( $this, 'display' ), false, 98 );
65
 
145
  switch ( $action ) :
146
 
147
  case 'update_by_type' :
148
+
149
  if ( wp_verify_nonce( $nonce, 'update-type' ) ) {
150
  $storage_model = $this->cpac->get_storage_model( $key );
151
  $storage_model->store();
228
  <li><strong>". __( "Usernames", 'cpac' ) . "</strong><br/>". __( "Value: can be one or more User ID's (seperated by ',').", 'cpac' ) . "</li>
229
  <li><strong>". __( "Checkmark", 'cpac' ) . "</strong><br/>". __( "Value: should be a 1 (one) or 0 (zero).", 'cpac' ) . "</li>
230
  <li><strong>". __( "Color", 'cpac' ) . "</strong><br/>". __( "Value: hex value color, such as #808080.", 'cpac' ) . "</li>
231
+ <li><strong>". __( "Counter", 'cpac' ) . "</strong><br/>". __( "Value: Can be either a string or array. This will display a count of the number of times the meta key is used by the item.", 'cpac' ) . "</li>
232
  </ul>
233
  "
234
  )
557
  <?php foreach ( $this->cpac->storage_models as $storage_model ) : ?>
558
 
559
  <div class="columns-container" data-type="<?php echo $storage_model->key ?>"<?php echo $storage_model->is_menu_type_current( $first ) ? '' : ' style="display:none"'; ?>>
 
 
 
 
560
 
561
  <div class="columns-left">
562
  <div id="titlediv">
575
  </h3>
576
  <?php $has_been_stored = $storage_model->get_stored_columns() ? true : false; ?>
577
  <div class="form-update">
578
+ <a href="javascript:;" class="button-primary submit-update"><?php echo $has_been_stored ? __( 'Update' ) : __('Publish'); ?> <?php echo $storage_model->label; ?></a>
 
579
  </div>
580
  <?php if ( $has_been_stored ) : ?>
581
  <div class="form-reset">
584
  </a>
585
  </div>
586
  <?php endif; ?>
587
+
588
+ <?php do_action( 'cac/settings/form_actions', $storage_model ); ?>
589
+
590
  </div><!--form-actions-->
591
 
592
  <?php if ( ! class_exists( 'CAC_Addon_Pro' ) ) : ?>
593
  <div class="sidebox" id="pro-version">
594
+ <div class="padding-box cta">
595
  <h3>
596
  <a href="<?php echo $this->get_url('pro_addon'); ?>"><?php _e( 'Get the Pro Add-on', 'cpac' ) ?></a>
597
  </h3>
606
  </p>
607
  </div>
608
  </div>
609
+ <!--
610
+ <div class="padding-box newsletter">
611
+ <form action="http://codepress.us4.list-manage.com/subscribe/post?u=902ae7f162ce5bc38a0bc8a4f&amp;id=183e843a76" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" target="_blank">
612
+ <?php $user = wp_get_current_user(); ?>
613
+ <p>
614
+ <?php _e ( "Subscribe to receive news &amp; updates below.", 'cpac' ); ?>
615
+ </p>
616
+ <div class="mc-field-group">
617
+ <label for="mce-FNAME"><?php _e( 'First Name', 'cpac' ); ?></label>
618
+ <input type="text" value="<?php echo trim( esc_attr( $user->first_name ) ); ?>" name="FNAME" class="" id="mce-FNAME">
619
+ </div>
620
+ <div class="mc-field-group">
621
+ <label for="mce-EMAIL"><?php _e( 'Your Email', 'cpac' ); ?></label>
622
+ <input type="email" value="<?php echo trim( esc_attr( $user->user_email ) ); ?>" name="EMAIL" class="required email" id="mce-EMAIL">
623
+ </div>
624
+ <input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button">
625
+ </form>
626
+ </div>
627
+ -->
628
  </div>
629
  <?php endif; ?>
630
 
645
  <div class="cpac-boxes">
646
  <div class="cpac-columns">
647
 
648
+ <form method="post" action="">
649
+ <?php wp_nonce_field( 'update-type', '_cpac_nonce'); ?>
650
+
651
+ <input type="hidden" name="cpac_key" value="<?php echo $storage_model->key; ?>" />
652
+ <input type="hidden" name="cpac_action" value="update_by_type" />
653
+
654
+ <?php
655
+ foreach ( $storage_model->get_columns() as $column ) {
656
+ $column->display();
657
+ }
658
+ ?>
659
+ </form>
660
 
661
  </div><!--.cpac-columns-->
662
 
672
  </div><!--.columns-left-->
673
  <div class="clear"></div>
674
 
 
 
675
  <div class="for-cloning-only" style="display:none">
676
  <?php
677
  foreach ( $storage_model->get_registered_columns() as $column ) {
687
  <div class="clear"></div>
688
 
689
  <?php
690
+ break; // case: general
691
 
692
  case 'settings' :
 
693
  $this->display_settings();
694
+ break;
695
 
696
  endswitch;
697
  ?>
classes/storage_model.php CHANGED
@@ -51,7 +51,7 @@ abstract class CPAC_Storage_Model {
51
  *
52
  * @since 2.0.1
53
  */
54
- protected $columns;
55
 
56
  /**
57
  * Get default columns
@@ -237,6 +237,11 @@ abstract class CPAC_Storage_Model {
237
  $columns[ 'CPAC_Column_' . ucfirst( $this->type ) . '_' . $class_name ] = $leaf->getPathname();
238
  }
239
 
 
 
 
 
 
240
  $this->custom_columns = apply_filters( 'cac/columns/custom/type=' . $this->type, $columns, $this );
241
  }
242
 
@@ -282,7 +287,7 @@ abstract class CPAC_Storage_Model {
282
  *
283
  * @return array Column Type | Column Instance
284
  */
285
- function get_default_registered_columns() {
286
 
287
  $columns = array();
288
 
@@ -480,11 +485,6 @@ abstract class CPAC_Storage_Model {
480
  */
481
  function get_column_by_name( $name ) {
482
 
483
- // @todo check if no issues come up by using $this->columns
484
- //$columns = $this->get_columns();
485
- //if ( ! isset( $columns[ $name ] ) )
486
- // return false;*/
487
-
488
  if ( ! isset( $this->columns[ $name ] ) )
489
  return false;
490
 
@@ -543,15 +543,12 @@ abstract class CPAC_Storage_Model {
543
  // @todo: check if working properly. cuurently issues with woocommerce columns
544
  /*
545
  if ( $diff = array_diff( $this->get_default_stored_columns(), array_keys( $columns ) ) ) {
546
- //echo '<pre>'; print_r( $diff ); echo '</pre>';
547
  foreach ( $diff as $column_name ) {
548
  if( isset( $column_headings[ $column_name ] ) )
549
  unset( $column_headings[ $column_name ] );
550
  }
551
  }*/
552
 
553
-
554
-
555
  return $column_headings;
556
  }
557
 
@@ -586,4 +583,41 @@ abstract class CPAC_Storage_Model {
586
 
587
  return add_query_arg( array( 'page' => 'codepress-admin-columns', 'cpac_key' => $this->key ), admin_url( 'options-general.php' ) );
588
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
589
  }
51
  *
52
  * @since 2.0.1
53
  */
54
+ public $columns;
55
 
56
  /**
57
  * Get default columns
237
  $columns[ 'CPAC_Column_' . ucfirst( $this->type ) . '_' . $class_name ] = $leaf->getPathname();
238
  }
239
 
240
+ // cac/columns/custom - filter to register column
241
+ $this->custom_columns = apply_filters( 'cac/columns/custom', $columns, $this );
242
+
243
+ // cac/columns/custom/type={$type} - filter to register column based on it's content type
244
+ // type can be either a posttype or wp-users/wp-comments/wp-links/wp-media
245
  $this->custom_columns = apply_filters( 'cac/columns/custom/type=' . $this->type, $columns, $this );
246
  }
247
 
287
  *
288
  * @return array Column Type | Column Instance
289
  */
290
+ public function get_default_registered_columns() {
291
 
292
  $columns = array();
293
 
485
  */
486
  function get_column_by_name( $name ) {
487
 
 
 
 
 
 
488
  if ( ! isset( $this->columns[ $name ] ) )
489
  return false;
490
 
543
  // @todo: check if working properly. cuurently issues with woocommerce columns
544
  /*
545
  if ( $diff = array_diff( $this->get_default_stored_columns(), array_keys( $columns ) ) ) {
 
546
  foreach ( $diff as $column_name ) {
547
  if( isset( $column_headings[ $column_name ] ) )
548
  unset( $column_headings[ $column_name ] );
549
  }
550
  }*/
551
 
 
 
552
  return $column_headings;
553
  }
554
 
583
 
584
  return add_query_arg( array( 'page' => 'codepress-admin-columns', 'cpac_key' => $this->key ), admin_url( 'options-general.php' ) );
585
  }
586
+
587
+ /**
588
+ * Is columns screen
589
+ *
590
+ * @since 2.0.3
591
+ *
592
+ * @global string $pagenow
593
+ * @global object $current_screen
594
+ * @return boolean
595
+ */
596
+ function is_columns_screen() {
597
+
598
+ global $pagenow, $current_screen;
599
+
600
+ if ( $this->page . '.php' != $pagenow )
601
+ return false;
602
+
603
+ if ( ! empty( $current_screen->post_type ) && $this->key != $current_screen->post_type )
604
+ return false;
605
+
606
+ return true;
607
+ }
608
+
609
+ /**
610
+ * Checks if the current page is the settings page
611
+ *
612
+ * @since 2.0.2
613
+ *
614
+ * @global string $pagenow
615
+ * @global string $plugin_page
616
+ * @return boolean
617
+ */
618
+ public function is_settings_page() {
619
+ global $pagenow, $plugin_page;
620
+
621
+ return 'options-general.php' == $pagenow && ! empty( $plugin_page ) && 'codepress-admin-columns' == $plugin_page;
622
+ }
623
  }
classes/storage_model/comment.php CHANGED
@@ -37,12 +37,14 @@ class CPAC_Storage_Model_Comment extends CPAC_Storage_Model {
37
  */
38
  public function get_default_columns() {
39
 
 
 
40
  // You can use this filter to add thirdparty columns by hooking into this.
41
  // See classes/third_party.php for an example.
42
  do_action( "cac/columns/default/storage_key={$this->key}" );
43
 
44
  // get columns
45
- $table = _get_list_table( 'WP_Comments_List_Table', array( 'screen' => 'link-manager' ) );
46
  $columns = $table->get_columns();
47
 
48
  return $columns;
@@ -78,8 +80,11 @@ class CPAC_Storage_Model_Comment extends CPAC_Storage_Model {
78
  $value = $column->get_value( $comment_id );
79
  }
80
 
81
- // add hook
82
- echo apply_filters( "cac/column/value/type={$this->key}", $value, $column );
 
 
 
83
  }
84
 
85
  }
37
  */
38
  public function get_default_columns() {
39
 
40
+ if ( ! function_exists('_get_list_table') ) return array();
41
+
42
  // You can use this filter to add thirdparty columns by hooking into this.
43
  // See classes/third_party.php for an example.
44
  do_action( "cac/columns/default/storage_key={$this->key}" );
45
 
46
  // get columns
47
+ $table = _get_list_table( 'WP_Comments_List_Table', array( 'screen' => 'comments' ) );
48
  $columns = $table->get_columns();
49
 
50
  return $columns;
80
  $value = $column->get_value( $comment_id );
81
  }
82
 
83
+ // filters
84
+ $value = apply_filters( "cac/column/value", $value, $comment_id, $column, $this->key );
85
+ $value = apply_filters( "cac/column/value/{$this->type}", $value, $comment_id, $column, $this->key );
86
+
87
+ echo $value;
88
  }
89
 
90
  }
classes/storage_model/link.php CHANGED
@@ -35,6 +35,9 @@ class CPAC_Storage_Model_Link extends CPAC_Storage_Model {
35
  * @return array
36
  */
37
  public function get_default_columns() {
 
 
 
38
  // You can use this filter to add thirdparty columns by hooking into this.
39
  // See classes/third_party.php for an example.
40
  do_action( "cac/columns/default/storage_key={$this->key}" );
@@ -73,7 +76,10 @@ class CPAC_Storage_Model_Link extends CPAC_Storage_Model {
73
  }
74
 
75
  // add hook
76
- echo apply_filters( "cac/column/value/type={$this->key}", $value, $column );
 
 
 
77
  }
78
 
79
  }
35
  * @return array
36
  */
37
  public function get_default_columns() {
38
+
39
+ if ( ! function_exists('_get_list_table') ) return array();
40
+
41
  // You can use this filter to add thirdparty columns by hooking into this.
42
  // See classes/third_party.php for an example.
43
  do_action( "cac/columns/default/storage_key={$this->key}" );
76
  }
77
 
78
  // add hook
79
+ $value = apply_filters( "cac/column/value", $value, $link_id, $column, $this->key );
80
+ $value = apply_filters( "cac/column/value/{$this->type}", $value, $link_id, $column, $this->key );
81
+
82
+ echo $value;
83
  }
84
 
85
  }
classes/storage_model/media.php CHANGED
@@ -21,7 +21,8 @@ class CPAC_Storage_Model_Media extends CPAC_Storage_Model {
21
  add_action( 'admin_init', array( $this, 'set_columns' ) );
22
 
23
  // headings
24
- add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ) );
 
25
 
26
  // values
27
  add_action( 'manage_media_custom_column', array( $this, 'manage_value' ), 10, 2 );
@@ -36,13 +37,18 @@ class CPAC_Storage_Model_Media extends CPAC_Storage_Model {
36
  */
37
  public function get_default_columns() {
38
 
 
 
39
  // You can use this filter to add thirdparty columns by hooking into this.
40
  // See classes/third_party.php for an example.
41
  do_action( "cac/columns/default/storage_key={$this->key}" );
42
 
43
  // get columns
44
- $table = _get_list_table( 'WP_Media_List_Table', array( 'screen' => 'upload' ) );
45
- $columns = $table->get_columns();
 
 
 
46
 
47
  return $columns;
48
  }
@@ -78,7 +84,10 @@ class CPAC_Storage_Model_Media extends CPAC_Storage_Model {
78
  }
79
 
80
  // add hook
81
- echo apply_filters( "cac/column/value/type={$this->key}", $value, $column );
 
 
 
82
  }
83
 
84
  }
21
  add_action( 'admin_init', array( $this, 'set_columns' ) );
22
 
23
  // headings
24
+ // Increased the priority to overrule 3th party plugins such as Media Tags
25
+ add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ), 15 );
26
 
27
  // values
28
  add_action( 'manage_media_custom_column', array( $this, 'manage_value' ), 10, 2 );
37
  */
38
  public function get_default_columns() {
39
 
40
+ if ( ! function_exists('_get_list_table') ) return array();
41
+
42
  // You can use this filter to add thirdparty columns by hooking into this.
43
  // See classes/third_party.php for an example.
44
  do_action( "cac/columns/default/storage_key={$this->key}" );
45
 
46
  // get columns
47
+ $table = _get_list_table ( 'WP_Media_List_Table', array( 'screen' => 'upload' ) );
48
+ $columns = $table->get_columns();
49
+
50
+ if ( $this->is_settings_page() )
51
+ $columns = array_merge( get_column_headers( 'upload' ), $columns );
52
 
53
  return $columns;
54
  }
84
  }
85
 
86
  // add hook
87
+ $value = apply_filters( "cac/column/value", $value, $media_id, $column, $this->key );
88
+ $value = apply_filters( "cac/column/value/{$this->type}", $value, $media_id, $column, $this->key );
89
+
90
+ echo $value;
91
  }
92
 
93
  }
classes/storage_model/post.php CHANGED
@@ -73,30 +73,27 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
73
  * @return array
74
  */
75
  public function get_default_columns() {
76
- global $pagenow;
 
77
 
78
  // You can use this filter to add thirdparty columns by hooking into this.
79
  // See classes/third_party.php for an example.
80
  do_action( "cac/columns/default/posts" );
81
  do_action( "cac/columns/default/storage_key={$this->key}" );
82
 
83
- // Get columns that have been set by other plugins. If a plugin use the hook "manage_edit-{$post_type}_columns"
 
 
 
 
84
  // we know that the columns have been overwritten. Use these columns instead of the WP default ones.
85
- //
86
  // We have to make sure this filter only loads on the Admin Columns settings page. To prevent a loop
87
  // when it's being called by CPAC_Storage_Model::add_headings()
88
- $columns = array();
89
-
90
- if ( 'options-general.php' == $pagenow && isset( $_GET['page'] ) && 'codepress-admin-columns' == $_GET['page'] )
91
- $columns = get_column_headers( "edit-{$this->key}" );
92
-
93
- // Get the WP default columns
94
- $table = _get_list_table( 'WP_Posts_List_Table', array( 'screen' => $this->key ) );
95
-
96
- // Merge the available hooked columns with the WP default columns
97
- $columns = array_filter( array_merge( $columns, $table->get_columns() ) );
98
 
99
- return $columns;
100
  }
101
 
102
  /**
@@ -130,8 +127,9 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
130
  if ( $column )
131
  $value = $column->get_value( $post_id );
132
 
133
- $value = apply_filters( "cac/column/value/posts", $value, $column );
134
- $value = apply_filters( "cac/column/value/type={$this->key}", $value, $column );
 
135
 
136
  echo $value;
137
  }
73
  * @return array
74
  */
75
  public function get_default_columns() {
76
+
77
+ if ( ! function_exists('_get_list_table') ) return array();
78
 
79
  // You can use this filter to add thirdparty columns by hooking into this.
80
  // See classes/third_party.php for an example.
81
  do_action( "cac/columns/default/posts" );
82
  do_action( "cac/columns/default/storage_key={$this->key}" );
83
 
84
+ // Get the WP default columns
85
+ $table = _get_list_table( 'WP_Posts_List_Table', array( 'screen' => $this->key ) );
86
+ $columns = $table->get_columns();
87
+
88
+ // Get columns that have been set by other plugins. If a plugin use the hook "manage_edit-{$post_type}_columns"
89
  // we know that the columns have been overwritten. Use these columns instead of the WP default ones.
90
+ //
91
  // We have to make sure this filter only loads on the Admin Columns settings page. To prevent a loop
92
  // when it's being called by CPAC_Storage_Model::add_headings()
93
+ if ( $this->is_settings_page() )
94
+ $columns = array_merge( get_column_headers( 'edit-' . $this->key ), $columns );
 
 
 
 
 
 
 
 
95
 
96
+ return array_filter( $columns );
97
  }
98
 
99
  /**
127
  if ( $column )
128
  $value = $column->get_value( $post_id );
129
 
130
+ // Filters
131
+ $value = apply_filters( "cac/column/value", $value, $post_id, $column, $this->key );
132
+ $value = apply_filters( "cac/column/value/{$this->type}", $value, $post_id, $column, $this->key );
133
 
134
  echo $value;
135
  }
classes/storage_model/user.php CHANGED
@@ -24,7 +24,7 @@ class CPAC_Storage_Model_User extends CPAC_Storage_Model {
24
  add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ) );
25
 
26
  // values
27
- add_filter( 'manage_users_custom_column', array( $this, 'manage_value' ), 10, 3 );
28
 
29
  //@todo: remove parent::__construct();
30
  }
@@ -39,6 +39,8 @@ class CPAC_Storage_Model_User extends CPAC_Storage_Model {
39
  */
40
  public function get_default_columns() {
41
 
 
 
42
  // You can use this filter to add third_party columns by hooking into this.
43
  do_action( "cac/columns/default/storage_key={$this->key}" );
44
 
@@ -52,13 +54,13 @@ class CPAC_Storage_Model_User extends CPAC_Storage_Model {
52
  /**
53
  * Manage value
54
  *
55
- * @since 2.0.0
56
  *
57
- * @param string $value
58
  * @param string $column_name
59
- * @param int $post_id
 
60
  */
61
- public function manage_value( $value, $column_name, $user_id ) {
62
 
63
  // get column instance
64
  $column = $this->get_column_by_name( $column_name );
@@ -69,13 +71,30 @@ class CPAC_Storage_Model_User extends CPAC_Storage_Model {
69
  // get value
70
  $custom_value = $column->get_value( $user_id );
71
 
72
- // get value
73
  // make sure it absolutely empty and check for (string) 0
74
- if ( ! empty( $custom_value ) || $custom_value === '0' ) {
75
  $value = $custom_value;
76
  }
77
 
78
- return apply_filters( "cac/column/value/type={$this->key}", $value, $column );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  }
80
 
81
  /**
24
  add_filter( "manage_{$this->page}_columns", array( $this, 'add_headings' ) );
25
 
26
  // values
27
+ add_filter( 'manage_users_custom_column', array( $this, 'manage_value_callback' ), 10, 3 );
28
 
29
  //@todo: remove parent::__construct();
30
  }
39
  */
40
  public function get_default_columns() {
41
 
42
+ if ( ! function_exists('_get_list_table') ) return array();
43
+
44
  // You can use this filter to add third_party columns by hooking into this.
45
  do_action( "cac/columns/default/storage_key={$this->key}" );
46
 
54
  /**
55
  * Manage value
56
  *
57
+ * @since 2.0.2
58
  *
 
59
  * @param string $column_name
60
+ * @param int $user_id
61
+ * @param string $value
62
  */
63
+ function manage_value( $column_name, $user_id, $value = '' ) {
64
 
65
  // get column instance
66
  $column = $this->get_column_by_name( $column_name );
71
  // get value
72
  $custom_value = $column->get_value( $user_id );
73
 
 
74
  // make sure it absolutely empty and check for (string) 0
75
+ if ( ! empty( $custom_value ) || '0' === $custom_value ) {
76
  $value = $custom_value;
77
  }
78
 
79
+ // filters
80
+ $value = apply_filters( "cac/column/value", $value, $user_id, $column, $this->key );
81
+ $value = apply_filters( "cac/column/value/{$this->type}", $value, $user_id, $column, $this->key );
82
+
83
+ return $value;
84
+ }
85
+
86
+ /**
87
+ * Callback Manage value
88
+ *
89
+ * @since 2.0.2
90
+ *
91
+ * @param string $value
92
+ * @param string $column_name
93
+ * @param int $user_id
94
+ */
95
+ public function manage_value_callback( $value, $column_name, $user_id ) {
96
+
97
+ return $this->manage_value( $column_name, $user_id, $value );
98
  }
99
 
100
  /**
classes/utility.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * Admin message
4
  *
@@ -24,15 +25,7 @@ function cpac_admin_message( $message = '', $type = 'updated' ) {
24
  * @return string Message.
25
  */
26
  function cpac_admin_notice() {
 
27
  echo implode( $GLOBALS['cpac_messages'] );
28
  }
29
 
30
- /**
31
- * Don't display unused licences
32
- *
33
- * @since 2.0.0
34
- */
35
- add_filter( 'cac/display_licence/addon=cac-filtering', '__return_false' );
36
- add_filter( 'cac/display_licence/addon=cac-custom-fields', '__return_false' );
37
-
38
-
1
  <?php
2
+
3
  /**
4
  * Admin message
5
  *
25
  * @return string Message.
26
  */
27
  function cpac_admin_notice() {
28
+
29
  echo implode( $GLOBALS['cpac_messages'] );
30
  }
31
 
 
 
 
 
 
 
 
 
 
codepress-admin-columns.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
 
4
  Plugin Name: Codepress Admin Columns
5
- Version: 2.0.2
6
  Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
7
  Author: Codepress
8
  Author URI: http://www.codepresshq.com
@@ -29,7 +29,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
29
 
30
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
31
 
32
- define( 'CPAC_VERSION', '2.0.2' ); // current plugin version
33
  define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // this is the latest version which requires an upgrade
34
  define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
35
  define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
@@ -44,9 +44,7 @@ if ( ! is_admin() )
44
  * @since 1.3.0
45
  */
46
  require_once CPAC_DIR . 'classes/utility.php';
47
- require_once CPAC_DIR . 'classes/deprecated.php';
48
  require_once CPAC_DIR . 'classes/third_party.php';
49
- require_once CPAC_DIR . 'classes/api.php';
50
 
51
  /**
52
  * The Codepress Admin Columns Class
@@ -156,14 +154,14 @@ class CPAC {
156
  *
157
  * @since 2.0.0
158
  *
159
- * @return array object Storage Model
160
  */
161
  public function get_storage_model( $key ) {
162
 
163
- if ( ! isset( $this->storage_models[ $key ] ) )
164
- return false;
165
 
166
- return $this->storage_models[ $key ];
167
  }
168
 
169
  /**
@@ -253,21 +251,18 @@ class CPAC {
253
  * @return string
254
  */
255
  function admin_class( $classes ) {
256
-
257
  global $current_screen;
258
 
259
  // we dont need the 'edit-' part
260
  $screen = str_replace( 'edit-', '', $current_screen->id );
261
 
262
  // media library exception
263
- if ( $current_screen->base == 'upload' && $current_screen->id == 'upload' ) {
264
  $screen = 'media';
265
- }
266
 
267
  // link exception
268
- if ( $current_screen->base == 'link-manager' && $current_screen->id == 'link-manager' ) {
269
  $screen = 'links';
270
- }
271
 
272
  // loop the available types
273
  foreach ( $this->storage_models as $storage_model ) {
@@ -287,14 +282,13 @@ class CPAC {
287
  * @since 1.4.0
288
  */
289
  function admin_scripts() {
290
-
291
  global $pagenow, $current_screen;
292
 
293
  // CSS column widths
294
- $css_column_width = '';
295
 
296
  // JS
297
- $edit_link = '';
298
 
299
  foreach ( $this->storage_models as $storage_model ) {
300
 
@@ -362,3 +356,4 @@ class CPAC {
362
  */
363
  $cpac = new CPAC();
364
 
 
2
  /*
3
 
4
  Plugin Name: Codepress Admin Columns
5
+ Version: 2.0.3
6
  Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
7
  Author: Codepress
8
  Author URI: http://www.codepresshq.com
29
 
30
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
31
 
32
+ define( 'CPAC_VERSION', '2.0.3' ); // current plugin version
33
  define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // this is the latest version which requires an upgrade
34
  define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
35
  define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
44
  * @since 1.3.0
45
  */
46
  require_once CPAC_DIR . 'classes/utility.php';
 
47
  require_once CPAC_DIR . 'classes/third_party.php';
 
48
 
49
  /**
50
  * The Codepress Admin Columns Class
154
  *
155
  * @since 2.0.0
156
  *
157
+ * @return array|false object Storage Model
158
  */
159
  public function get_storage_model( $key ) {
160
 
161
+ if ( isset( $this->storage_models[ $key ] ) )
162
+ return $this->storage_models[ $key ];
163
 
164
+ return false;
165
  }
166
 
167
  /**
251
  * @return string
252
  */
253
  function admin_class( $classes ) {
 
254
  global $current_screen;
255
 
256
  // we dont need the 'edit-' part
257
  $screen = str_replace( 'edit-', '', $current_screen->id );
258
 
259
  // media library exception
260
+ if ( $current_screen->base == 'upload' && $current_screen->id == 'upload' )
261
  $screen = 'media';
 
262
 
263
  // link exception
264
+ if ( $current_screen->base == 'link-manager' && $current_screen->id == 'link-manager' )
265
  $screen = 'links';
 
266
 
267
  // loop the available types
268
  foreach ( $this->storage_models as $storage_model ) {
282
  * @since 1.4.0
283
  */
284
  function admin_scripts() {
 
285
  global $pagenow, $current_screen;
286
 
287
  // CSS column widths
288
+ $css_column_width = '';
289
 
290
  // JS
291
+ $edit_link = '';
292
 
293
  foreach ( $this->storage_models as $storage_model ) {
294
 
356
  */
357
  $cpac = new CPAC();
358
 
359
+
languages/cac-addon-pro.po DELETED
@@ -1,265 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Admin Columns - Pro Addon\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-08-14 15:29+0100\n"
6
- "PO-Revision-Date: 2013-08-14 15:29+0100\n"
7
- "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Codepress <info@codepress.nl>\n"
9
- "Language: English\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
- "X-Poedit-SearchPath-1: ..\n"
19
-
20
- #: ../cac-addon-pro.php:91
21
- msgid ""
22
- "Sortorder has been <strong>deactivated</strong>. You are using the Pro add-"
23
- "on, which contains the same functionality."
24
- msgstr ""
25
-
26
- #: ../cac-addon-pro.php:117
27
- msgid "Pro add-on"
28
- msgstr ""
29
-
30
- #: ../cac-addon-pro.php:133
31
- #, php-format
32
- msgid ""
33
- "The Pro add-on is enabled but not effective. It requires %s in order to work."
34
- msgstr ""
35
-
36
- #: ../classes/update.php:159
37
- msgid "Could not connect to API. Try again at a later time please."
38
- msgstr ""
39
-
40
- #: ../classes/update.php:167
41
- msgid "Wrong response from API."
42
- msgstr ""
43
-
44
- #: ../classes/update.php:209
45
- msgid "licence is empty."
46
- msgstr ""
47
-
48
- #: ../classes/update.php:227
49
- msgid "error"
50
- msgstr ""
51
-
52
- #: ../classes/update.php:228
53
- #, php-format
54
- msgid "Login into your account at %s to see your current licence activations."
55
- msgstr ""
56
-
57
- #: ../classes/update.php:232
58
- msgid "activation failed"
59
- msgstr ""
60
-
61
- #: ../classes/update.php:239
62
- msgid "licence is <strong>activated</strong>."
63
- msgstr ""
64
-
65
- #: ../classes/update.php:260
66
- msgid "No licence key found."
67
- msgstr ""
68
-
69
- #: ../classes/update.php:265
70
- msgid "Licence key is not active."
71
- msgstr ""
72
-
73
- #: ../classes/update.php:288
74
- msgid "licence is <strong>deactivated</strong>."
75
- msgstr ""
76
-
77
- #: ../classes/update.php:320
78
- msgid "Add-ons updates"
79
- msgstr ""
80
-
81
- #: ../classes/update.php:321 ../classes/update.php:367
82
- msgid "Enter your licence to receive automatic updates."
83
- msgstr ""
84
-
85
- #: ../classes/update.php:357
86
- msgid "Automatic updates are enabled."
87
- msgstr ""
88
-
89
- #: ../classes/update.php:358
90
- msgid "Deactivate licence"
91
- msgstr ""
92
-
93
- #: ../classes/update.php:364
94
- msgid "Fill in your licence code"
95
- msgstr ""
96
-
97
- #: ../classes/update.php:365
98
- msgid "Update licence"
99
- msgstr ""
100
-
101
- #: ../classes/export-import/classes/export_import.php:43
102
- msgid "Export Settings"
103
- msgstr ""
104
-
105
- #: ../classes/export-import/classes/export_import.php:45
106
- msgid ""
107
- "Pick the types for export from the left column. Click export to download "
108
- "your column settings."
109
- msgstr ""
110
-
111
- #: ../classes/export-import/classes/export_import.php:46
112
- #: ../classes/export-import/classes/export_import.php:49
113
- #: ../classes/export-import/classes/export_import.php:63
114
- #: ../classes/export-import/classes/export_import.php:66
115
- msgid "Instructions"
116
- msgstr ""
117
-
118
- #: ../classes/export-import/classes/export_import.php:48
119
- msgid "Export Columns Types"
120
- msgstr ""
121
-
122
- #: ../classes/export-import/classes/export_import.php:51
123
- msgid "Select one or more Column Types from the left section by clicking them."
124
- msgstr ""
125
-
126
- #: ../classes/export-import/classes/export_import.php:52
127
- msgid "Click export."
128
- msgstr ""
129
-
130
- #: ../classes/export-import/classes/export_import.php:53
131
- msgid "Save the export file when prompted."
132
- msgstr ""
133
-
134
- #: ../classes/export-import/classes/export_import.php:54
135
- msgid "Upload and import your settings file through Import Settings."
136
- msgstr ""
137
-
138
- #: ../classes/export-import/classes/export_import.php:60
139
- msgid "Import Settings"
140
- msgstr ""
141
-
142
- #: ../classes/export-import/classes/export_import.php:62
143
- msgid "Copy and paste your import settings here."
144
- msgstr ""
145
-
146
- #: ../classes/export-import/classes/export_import.php:65
147
- msgid "Import Columns Types"
148
- msgstr ""
149
-
150
- #: ../classes/export-import/classes/export_import.php:68
151
- msgid "Choose a Admin Columns Export file to upload."
152
- msgstr ""
153
-
154
- #: ../classes/export-import/classes/export_import.php:69
155
- msgid "Click upload file and import."
156
- msgstr ""
157
-
158
- #: ../classes/export-import/classes/export_import.php:70
159
- msgid "That's it! You imported settings are now active."
160
- msgstr ""
161
-
162
- #: ../classes/export-import/classes/export_import.php:94
163
- msgid "General"
164
- msgstr ""
165
-
166
- #: ../classes/export-import/classes/export_import.php:95
167
- msgid "Posts"
168
- msgstr ""
169
-
170
- #: ../classes/export-import/classes/export_import.php:106
171
- msgid "select all"
172
- msgstr ""
173
-
174
- #: ../classes/export-import/classes/export_import.php:107
175
- msgid "Export"
176
- msgstr ""
177
-
178
- #: ../classes/export-import/classes/export_import.php:111
179
- msgid "No stored column settings are found."
180
- msgstr ""
181
-
182
- #: ../classes/export-import/classes/export_import.php:129
183
- msgid "Upload file and import"
184
- msgstr ""
185
-
186
- #: ../classes/export-import/classes/export_import.php:218
187
- msgid "Export field is empty. Please select your types from the left column."
188
- msgstr ""
189
-
190
- #: ../classes/export-import/classes/export_import.php:253
191
- #: ../classes/export-import/classes/export_import.php:255
192
- msgid "Sorry, there has been an error."
193
- msgstr ""
194
-
195
- #: ../classes/export-import/classes/export_import.php:255
196
- #, php-format
197
- msgid ""
198
- "The export file could not be found at <code>%s</code>. It is likely that "
199
- "this was caused by a permissions problem."
200
- msgstr ""
201
-
202
- #: ../classes/export-import/classes/export_import.php:273
203
- msgid "Import failed. File does not contain Admin Column settings."
204
- msgstr ""
205
-
206
- #: ../classes/export-import/classes/export_import.php:283
207
- #, php-format
208
- msgid "Screen %s does not exist."
209
- msgstr ""
210
-
211
- #: ../classes/filtering/filtering.php:56
212
- msgid "Filtering add-on"
213
- msgstr ""
214
-
215
- #: ../classes/filtering/filtering.php:110
216
- msgid "Enable filtering?"
217
- msgstr ""
218
-
219
- #: ../classes/filtering/filtering.php:110
220
- msgid "This will make the column support filering."
221
- msgstr ""
222
-
223
- #: ../classes/filtering/filtering.php:114 ../classes/sortable/sortable.php:128
224
- msgid "Yes"
225
- msgstr ""
226
-
227
- #: ../classes/filtering/filtering.php:118 ../classes/sortable/sortable.php:132
228
- msgid "No"
229
- msgstr ""
230
-
231
- #: ../classes/filtering/filtering.php:137
232
- msgid "filter"
233
- msgstr ""
234
-
235
- #: ../classes/filtering/classes/model.php:114
236
- msgid "All"
237
- msgstr ""
238
-
239
- #: ../classes/filtering/classes/model.php:116
240
- msgid "Empty"
241
- msgstr ""
242
-
243
- #: ../classes/filtering/classes/model.php:117
244
- msgid "Not empty"
245
- msgstr ""
246
-
247
- #: ../classes/sortable/sortable.php:65
248
- msgid "Sortable add-on"
249
- msgstr ""
250
-
251
- #: ../classes/sortable/sortable.php:124
252
- msgid "Enable sorting?"
253
- msgstr ""
254
-
255
- #: ../classes/sortable/sortable.php:124
256
- msgid "This will make the column support sorting."
257
- msgstr ""
258
-
259
- #: ../classes/sortable/sortable.php:151
260
- msgid "sort"
261
- msgstr ""
262
-
263
- #: ../classes/sortable/classes/model.php:53
264
- msgid "Reset sorting"
265
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cpac-ar.mo CHANGED
Binary file
languages/cpac-ar.po CHANGED
@@ -1,33 +1,31 @@
1
- #
2
  # Translators:
3
  # TheHassan, 2013
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2013-08-08 08:49+0100\n"
9
- "PO-Revision-Date: 2013-08-13 14:18+0100\n"
10
- "Last-Translator: Codepress <info@codepress.nl>\n"
11
- "Language-Team: Arabic (http://www.transifex.com/projects/p/admin-columns/"
12
- "language/ar/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: ar\n"
17
- "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
18
- "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
19
  "X-Generator: Poedit 1.5.7\n"
20
  "X-Poedit-Basepath: .\n"
21
  "X-Poedit-KeywordsList: __;_e\n"
22
- "X-Poedit-SourceCharset: utf-8\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPath-1: ..\n"
 
25
 
26
- #: ../codepress-admin-columns.php:226 ../classes/settings.php:530
27
  msgid "Settings"
28
  msgstr "إعدادات"
29
 
30
- #: ../codepress-admin-columns.php:345
31
  msgid "Edit columns"
32
  msgstr "تحرير الأعمدة"
33
 
@@ -47,654 +45,590 @@ msgstr "كبير"
47
  msgid "Full"
48
  msgstr "كامل"
49
 
50
- #: ../classes/column.php:776
51
  msgid "Date Format"
52
  msgstr "تنسيق التاريخ"
53
 
54
- #: ../classes/column.php:777
55
  msgid "This will determine how the date will be displayed."
56
  msgstr "هذا سيحدد كيف سيتم عرض التاريخ."
57
 
58
- #: ../classes/column.php:783
59
  msgid "Example:"
60
  msgstr "مثال:"
61
 
62
- #: ../classes/column.php:785
63
  #, php-format
64
  msgid ""
65
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
66
  "date format here</a>."
67
- msgstr ""
68
- "أترك خاليا لتنسيق ووردبريس الإفتراضي للتاريخ، قم بتغيير <a href=\"%s\">تنسيق "
69
- "التاريخ الخاص بك هنا</a>."
70
 
71
- #: ../classes/column.php:786
72
  msgid "Documentation on date and time formatting."
73
  msgstr "توثيق حول تنسيق التاريخ والوقت."
74
 
75
- #: ../classes/column.php:803
76
  msgid "Excerpt length"
77
  msgstr "طول المقتطف"
78
 
79
- #: ../classes/column.php:804
80
  msgid "Number of words"
81
  msgstr "عدد الكلمات"
82
 
83
- #: ../classes/column.php:826
84
  msgid "Preview size"
85
  msgstr "حجم المعاينة"
86
 
87
- #: ../classes/column.php:843 ../classes/column.php:899
88
  msgid "Custom"
89
  msgstr "مخصوص"
90
 
91
- #: ../classes/column.php:846
92
  msgid "width"
93
  msgstr "عرض"
94
 
95
- #: ../classes/column.php:849
96
  msgid "height"
97
  msgstr "إرتفاع"
98
 
99
- #: ../classes/column.php:900 ../classes/settings.php:220
100
  #: ../classes/column/custom-field.php:72
101
  msgid "Default"
102
  msgstr "إفتراضي"
103
 
104
- #: ../classes/column.php:925 ../classes/column.php:986
105
  #: ../classes/column/user/actions.php:65
106
  msgid "Remove"
107
  msgstr "إزالة"
108
 
109
- #: ../classes/column.php:944
110
  msgid "Type"
111
  msgstr "نوع"
112
 
113
- #: ../classes/column.php:944
114
  msgid "Choose a column type."
115
  msgstr "اختر نوع عمود"
116
 
117
- #: ../classes/column.php:954
118
  msgid "Label"
119
  msgstr "العنوان"
120
 
121
- #: ../classes/column.php:954
122
  msgid "This is the name which will appear as the column header."
123
  msgstr "هذا هو الاسم الذي سيظهر كترويسة العمود."
124
 
125
- #: ../classes/column.php:961 ../classes/column/media/width.php:12
126
  msgid "Width"
127
  msgstr "عرض"
128
 
129
- #: ../classes/column.php:963 ../classes/column.php:964
130
  msgid "default"
131
  msgstr "إفتراضي"
132
 
133
- #: ../classes/export_import.php:64
134
- msgid "Export field is empty. Please select your types from the left column."
135
- msgstr "حقل التصدير خالي. الرجاء اختيار أنواعك من العمود الأيمن."
136
-
137
- #: ../classes/export_import.php:99 ../classes/export_import.php:101
138
- msgid "Sorry, there has been an error."
139
- msgstr "عفوا، حدث خطأ ما."
140
-
141
- #: ../classes/export_import.php:101
142
- #, php-format
143
- msgid ""
144
- "The export file could not be found at <code>%s</code>. It is likely that "
145
- "this was caused by a permissions problem."
146
- msgstr ""
147
- "ملف التصدير لم يتم العثور عليه في <code>%s</code>. غالبا ما يكون السبب هو "
148
- "خطأ قي الصلاحيات."
149
-
150
- #: ../classes/export_import.php:119
151
- msgid "Import failed. File does not contain Admin Column settings."
152
- msgstr "فشل الاستيراد. الملف لا يحتوي على إعدادات Admin Column."
153
-
154
  #: ../classes/settings.php:68
155
  msgid "Admin Columns Settings"
156
  msgstr "إعدادات Admin Columns"
157
 
158
- #: ../classes/settings.php:68 ../classes/settings.php:529
159
- #: ../classes/upgrade.php:93
160
  msgid "Admin Columns"
161
  msgstr "Admin Columns"
162
 
163
- #: ../classes/settings.php:179
 
 
 
 
 
164
  msgid "Default settings succesfully restored."
165
  msgstr "تمت إستعادة الإعدادات الإفتراضية بنجاح."
166
 
167
- #: ../classes/settings.php:197 ../classes/settings.php:453
168
  msgid "Overview"
169
  msgstr "نظرة عامة"
170
 
171
- #: ../classes/settings.php:200
172
  msgid ""
173
  "This plugin is for adding and removing additional columns to the "
174
  "administration screens for post(types), pages, media library, comments, "
175
  "links and users. Change the column's label and reorder them."
176
- msgstr ""
177
- "هذا البرنامج هو لإضافة وإزالة أعمدة إضافية في الشاشات الإدارية لـ(أنواع) "
178
- "التدوينات، الصفحات، مكتبة الوسائط، التعليقات، الوصلات والمستخدمين. قم بتغيير "
179
- "تسمية الأعمدة وإعادة ترتيبها."
180
 
181
- #: ../classes/settings.php:203
182
  msgid "Basics"
183
  msgstr "مبادئ"
184
 
185
- #: ../classes/settings.php:205
186
- msgid "Show / Hide"
187
- msgstr "إظهار / إخفاء"
188
-
189
- #: ../classes/settings.php:206
190
- msgid ""
191
- "You can switch columns on or off by clicking on the checkbox. This will show "
192
- "or hide each column heading."
193
- msgstr ""
194
- "يمكنك تشغيل أو إيقاف الأعمدة عن طريق النقر على مربع الاختيار. هذا سوف يظهر "
195
- "أو يخفي ترويسة كل عمود."
196
-
197
- #: ../classes/settings.php:207
198
  msgid "Change order"
199
  msgstr "تغيير الترتيب"
200
 
201
- #: ../classes/settings.php:208
202
  msgid ""
203
  "By dragging the columns you can change the order which they will appear in."
204
  msgstr "عن طريق سحب الأعمدة يمكنك تغيير ترتيب الذي سوف تظهر فيه."
205
 
206
- #: ../classes/settings.php:209
207
  msgid "Change label"
208
  msgstr "تغيير العنوان"
209
 
210
- #: ../classes/settings.php:210
211
  msgid ""
212
  "By clicking on the triangle you will see the column options. Here you can "
213
  "change each label of the columns heading."
214
- msgstr ""
215
- "بالنقر على المثلث سترى خيارات العمود. هنا يمكنك تغيير تسمية ترويسات الأعمدة."
216
 
217
- #: ../classes/settings.php:211
218
  msgid "Change column width"
219
  msgstr "تغيير عرض العمود"
220
 
221
- #: ../classes/settings.php:212
222
  msgid ""
223
  "By clicking on the triangle you will see the column options. By using the "
224
- "draggable slider yo can set the width of the columns in percentages."
225
- msgstr ""
226
- "بالنقر على المثلث سترى خيارات العمود. باستخدام شريط التمرير القابل للسحب "
227
- "يمكنك تعيين عرض الأعمدة بالنسب المئوية."
228
 
229
- #: ../classes/settings.php:215 ../classes/column/custom-field.php:16
230
- #: ../classes/column/custom-field.php:320
231
  msgid "Custom Field"
232
  msgstr "حقل مخصوص"
233
 
234
- #: ../classes/settings.php:217
235
  msgid "'Custom Field' column"
236
  msgstr "عمود 'حقل مخصوص'"
237
 
238
- #: ../classes/settings.php:218
239
  msgid ""
240
  "The custom field colum uses the custom fields from posts and users. There "
241
  "are 10 types which you can set."
242
- msgstr ""
243
- "يستخدم عمود الحقل المخصوص الحقول المخصوصة من التدوينات والمستخدمين. هناك 10 "
244
- "أنواع يمكنك تعيينها."
245
 
246
- #: ../classes/settings.php:220
247
  msgid ""
248
  "Value: Can be either a string or array. Arrays will be flattened and values "
249
  "are seperated by a ',' comma."
250
- msgstr ""
251
- "قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم "
252
- "بـ '،' فاصلة."
253
 
254
- #: ../classes/settings.php:221 ../classes/column/custom-field.php:73
255
  #: ../classes/column/link/image.php:12
256
  msgid "Image"
257
  msgstr "صورة"
258
 
259
- #: ../classes/settings.php:221
260
  msgid ""
261
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
262
  "comma )."
263
- msgstr ""
264
- "قيمة: يجب أن يحتوي عنوان URL للصورة أو معرفات المرفقات (مفصولة بـ '،' فاصلة)."
265
 
266
- #: ../classes/settings.php:222 ../classes/column/custom-field.php:75
267
  #: ../classes/column/comment/excerpt.php:13
268
  #: ../classes/column/post/excerpt.php:13
269
  msgid "Excerpt"
270
  msgstr "مقتطف"
271
 
272
- #: ../classes/settings.php:222
273
  msgid "Value: This will show the first 20 words of the Post content."
274
  msgstr "قيمة: سيقوم هذا بإظهار أول 20 كلمة من محتوى التدوينة."
275
 
276
- #: ../classes/settings.php:223 ../classes/column/custom-field.php:76
277
  msgid "Multiple Values"
278
  msgstr "قيم متعددة"
279
 
280
- #: ../classes/settings.php:223
281
  msgid ""
282
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
283
  msgstr "قيمة: يجب أن يكون مصفوفة. هذا سوف يسطح أي مصفوفة (متعددة الأبعاد)."
284
 
285
- #: ../classes/settings.php:224 ../classes/column/custom-field.php:77
286
  msgid "Numeric"
287
  msgstr "رقمي"
288
 
289
- #: ../classes/settings.php:224
290
  msgid ""
291
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
292
  "for sorting, so you can sort your posts on numeric (custom field) values."
293
- msgstr ""
294
- "القيمة: الأعداد الصحيحة فقط <br/> إذا كان لديك 'ملحق الترتيب' سيتم استخدام "
295
- "هذه للترتيب، بحيث يمكنك ترتيب تدويناتك على القيم الرقمية (الحقل المخصوص)."
296
 
297
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:78
298
  #: ../classes/column/comment/date.php:12
299
  msgid "Date"
300
  msgstr "تاريخ"
301
 
302
- #: ../classes/settings.php:225
303
  #, php-format
304
  msgid ""
305
  "Value: Can be unix time stamp or a date format as described in the <a "
306
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
307
  "href='%s'>general settings</a> page."
308
- msgstr ""
309
- "قيمة: يمكن أن تكون طابع يونكس زمني أو تنسيق تاريخ كما هو موضح في <a "
310
- "href='%s'>Codex</a>. يمكنك تغيير تنسيق التاريخ المخرج من صفحة <a "
311
- "href='%s'>الإعدادات العامة</a>."
312
 
313
- #: ../classes/settings.php:226
314
  msgid "Post Titles"
315
  msgstr "عناوين تدوينات"
316
 
317
- #: ../classes/settings.php:226
318
  msgid "Value: can be one or more Post ID's (seperated by ',')."
319
  msgstr "قيمة: يمكن أن تكون رقم تدوينة واحدة أو أكثر (مفصولة بـ',')."
320
 
321
- #: ../classes/settings.php:227
322
  msgid "Usernames"
323
  msgstr "أسماء مستخدمين"
324
 
325
- #: ../classes/settings.php:227
326
  msgid "Value: can be one or more User ID's (seperated by ',')."
327
  msgstr "قيمة: يمكن أن تكون رقم مستخدم واحد أو أكثر (مفصولة بـ',')."
328
 
329
- #: ../classes/settings.php:228
330
  msgid "Checkmark"
331
  msgstr "علامة اختيار"
332
 
333
- #: ../classes/settings.php:228
334
  msgid "Value: should be a 1 (one) or 0 (zero)."
335
  msgstr "قيمة: يجب أن تكون 1 (واحد) أو 0 (صفر)."
336
 
337
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:82
338
  msgid "Color"
339
  msgstr "لون"
340
 
341
- #: ../classes/settings.php:229
342
  msgid "Value: hex value color, such as #808080."
343
  msgstr "قيمة: لون بقيمة عشرية، مثل 808080#."
344
 
345
- #: ../classes/settings.php:373
346
  msgid "Welcome to Admin Columns"
347
  msgstr "مرحبا في Admin Columns"
348
 
349
- #: ../classes/settings.php:376
350
  msgid "Thank you for updating to the latest version!"
351
  msgstr "شكرا لك على التحديث للنسخة الأخيرة!"
352
 
353
- #: ../classes/settings.php:377
354
  msgid ""
355
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
356
  "like it."
357
- msgstr ""
358
- "Admin Columns أصبحت مصقولة وممتعة أكثر من أي وقت مضى. نأمل أن تنال إعجابكم."
359
 
360
- #: ../classes/settings.php:382
361
  msgid "What’s New"
362
  msgstr "ما الجديد"
363
 
364
- #: ../classes/settings.php:383
365
  msgid "Changelog"
366
  msgstr "سجل التغييرات"
367
 
368
- #: ../classes/settings.php:385
369
  msgid "Download Addons"
370
  msgstr "تنزيل الإضافات"
371
 
372
- #: ../classes/settings.php:391
373
  msgid "Addons"
374
  msgstr "إضافات"
375
 
376
- #: ../classes/settings.php:393
377
  msgid ""
378
  "Addons are now activated by downloading and installing individual plugins. "
379
  "Although these plugins will not be hosted on the wordpress.org repository, "
380
  "each Add-on will continue to receive updates in the usual way."
381
- msgstr ""
382
- "يتم تنشيط الملحقات الآن عن طريق تحميل وتثبيت الإضافات الفردية. على الرغم من "
383
- "أنه لن يتم استضافة هذه الإضافات على مستودع wordpress.org، سوف تستمر كل إضافة "
384
- "بتلقي التحديثات بالطريقة المعتادة."
385
 
386
- #: ../classes/settings.php:396
387
  msgid ""
388
  "This website uses the Sortorder Addon. This addon needs to be downloaded."
389
  msgstr "هذا الموقع يستخدم ملحق الترتيب. يجب تنزيل هذه الإضافة."
390
 
391
- #: ../classes/settings.php:399
392
  msgid "Addons are seperate plugins which need to be downloaded."
393
  msgstr "الملحقات هي إضافات منفصلة يجب تنزيلها."
394
 
395
- #: ../classes/settings.php:399
396
  msgid "Download your Addons"
397
  msgstr "قم بتنزيل إضافاتك"
398
 
399
- #: ../classes/settings.php:405
400
  msgid "This website does not use add-ons"
401
  msgstr "هذا الموقع لا يستخدم ملحقات"
402
 
403
- #: ../classes/settings.php:405
404
  msgid "See our website for the Pro-addon."
405
  msgstr "انظر موقعنا للملحق الإحترافي."
406
 
407
- #: ../classes/settings.php:412
408
  msgid "Important"
409
  msgstr "مهم"
410
 
411
- #: ../classes/settings.php:414
412
  msgid "Database Changes"
413
  msgstr "تغييرات قاعدة البيانات"
414
 
415
- #: ../classes/settings.php:415
416
  msgid ""
417
- "The database has been changed between versions 1 and 2. But we made sure you "
418
- "can still roll back to version 1x without any issues."
419
- msgstr ""
420
- "تم تغيير قاعدة البيانات بين الإصدارات 1 و 2. ولكن حرصنا على ألا يزال بإمكانك "
421
- "الرجوع إلى إصدار 1x دون أية مشاكل."
422
 
423
- #: ../classes/settings.php:418
424
  msgid "Make sure you backup your database and then click"
425
  msgstr "تأكد من عمل نسخة احتياطية لقاعدة بياناتك ثم انقر"
426
 
427
- #: ../classes/settings.php:418 ../classes/upgrade.php:101
428
  msgid "Upgrade Database"
429
  msgstr "تحديث قاعدة البيانات"
430
 
431
- #: ../classes/settings.php:421
432
  msgid "Potential Issues"
433
  msgstr "مشاكل محتملة"
434
 
435
- #: ../classes/settings.php:422
436
  msgid ""
437
- "Do to the sizable refactoring the code, surounding Addons and action/"
438
- "filters, your website may not operate correctly. It is important that you "
439
- "read the full"
440
- msgstr ""
441
- "نسبة إلى إعادة بناء كود الإضافة بشكل كبير، وكذلك الملحاقت والدوال، قد لا "
442
- "يعمل موقع الويب الخاص بك بشكل صحيح. من المهم أن تقرأ بشكل كامل"
443
 
444
- #: ../classes/settings.php:422
445
  msgid "Migrating from v1 to v2"
446
  msgstr "الانتقال من النسخة 1 إلى النسخة 2"
447
 
448
- #: ../classes/settings.php:422
449
  msgid "guide to view the full list of changes."
450
  msgstr "توجيه لعرض القائمة الكاملة للتغييرات."
451
 
452
- #: ../classes/settings.php:422
453
  #, php-format
454
  msgid ""
455
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
456
  "can fix it in the next release."
457
- msgstr ""
458
- "عندما تجد أخطاء الرجاء <a href=\"%s\">التبيلغ عنها لنا</a> لكي نتمكن من "
459
- "إصلاحها في النسخة القادمة."
460
 
461
- #: ../classes/settings.php:425
462
  msgid "Important!"
463
  msgstr "مهم!"
464
 
465
- #: ../classes/settings.php:425
466
  msgid ""
467
  "If you updated the Admin Columns plugin without prior knowledge of such "
468
  "changes, Please roll back to the latest"
469
- msgstr ""
470
- "إذا قمت بتحديث Admin Columns دون معرفة مسبقة بهذه التغييرات، فالرجاء الرجوع "
471
- "لآخر"
472
 
473
- #: ../classes/settings.php:425
474
  msgid "version 1"
475
  msgstr "النسخة 1"
476
 
477
- #: ../classes/settings.php:425
478
  msgid "of this plugin."
479
  msgstr "من هذه الإضافة"
480
 
481
- #: ../classes/settings.php:431
482
  msgid "Changelog for"
483
  msgstr "سجل التغييرات لـ"
484
 
485
- #: ../classes/settings.php:446
486
  msgid "Learn more"
487
  msgstr "تعلم المزيد"
488
 
489
- #: ../classes/settings.php:455
490
  msgid ""
491
  "New to v2, all Addons act as separate plugins which need to be individually "
492
  "downloaded, installed and updated."
493
- msgstr ""
494
- "جديدة في النسخة 2، كل الملحقات عبارة عن إضافات منفصلة وتحتاج ليتم تحميلها، "
495
- "تركيبها وتحديثها بشكل فردي."
496
 
497
- #: ../classes/settings.php:456
498
  msgid ""
499
- "This page will assist you in downloading and installing each available Addon."
 
500
  msgstr "هذه الصفحة سوف تساعدك في تحميل وتثبيت كل الملحقات المتاحة."
501
 
502
- #: ../classes/settings.php:457
503
  msgid "Available Addons"
504
  msgstr "الإضافات المتوفرة"
505
 
506
- #: ../classes/settings.php:462
507
  msgid "Name"
508
  msgstr "الاسم"
509
 
510
- #: ../classes/settings.php:463 ../classes/settings.php:471
511
  msgid "Download"
512
  msgstr "تنزيل"
513
 
514
- #: ../classes/settings.php:469
515
  msgid "Pro Add-on (includes Sortorder add-on)"
516
  msgstr "الملحق الإحترافي (يتضمن ملحق الترتيب)"
517
 
518
- #: ../classes/settings.php:479
519
  msgid "Installation"
520
  msgstr "تنصيب"
521
 
522
- #: ../classes/settings.php:481
523
  msgid "For each Add-on available, please perform the following:"
524
  msgstr "لكل ملحق متاح، يرجى القيام بما يلي:"
525
 
526
- #: ../classes/settings.php:483
527
  msgid "Download the Addon plugin (.zip file) to your desktop"
528
  msgstr "تنزيل إضافة الملحقات (ملف .zip) إلى سطح مكتبك"
529
 
530
- #: ../classes/settings.php:484
531
  msgid "Navigate to"
532
  msgstr "انتقل إلى"
533
 
534
- #: ../classes/settings.php:484
535
  msgid "Plugins > Add New > Upload"
536
  msgstr "إضافات > أضف جديد > تحميل"
537
 
538
- #: ../classes/settings.php:485
539
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
540
  msgstr "استخدام الرافع للتصفح واختيار وتثبيت (ملف .zip) الخاص بإضافتك"
541
 
542
- #: ../classes/settings.php:486
543
  msgid ""
544
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
545
- "link"
546
  msgstr "عندما يتم رفع وتنصيب الإضافة، انقر على رابط 'تنشيط الإضافة'"
547
 
548
- #: ../classes/settings.php:487
549
  msgid "The Add-on is now installed and activated!"
550
  msgstr "تم تنصيب وتفعيل الملحق!"
551
 
552
- #: ../classes/settings.php:488
553
  #, php-format
554
  msgid ""
555
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
556
  msgstr "من أجل التحديثات الإضافية تأكد من <a href='%s'>إدخال مفتاح رخصتك</a>."
557
 
558
- #: ../classes/settings.php:498
559
  msgid "Start using Admin Columns"
560
  msgstr "البدء باستخدام Admin Columns"
561
 
562
- #: ../classes/settings.php:575
563
  msgid "Store settings"
564
  msgstr "حفظ الإعدادات"
565
 
566
- #: ../classes/settings.php:580
567
  msgid "Update"
568
  msgstr "تحديث"
569
 
570
- #: ../classes/settings.php:580
571
  msgid "Publish"
572
  msgstr "نشر"
573
 
574
- #: ../classes/settings.php:584
575
  #, php-format
576
  msgid ""
577
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
578
- "\\' to delete, \\'Cancel\\' to stop"
579
- msgstr ""
580
- "تحذير! بيانات أعمدة %s سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' "
581
- "للحذف، \\'إلغاء\\' للإيقاف"
582
 
583
- #: ../classes/settings.php:585 ../classes/column/comment/actions.php:86
584
  #: ../classes/column/post/actions.php:53
585
  msgid "Restore"
586
  msgstr "استرجاع"
587
 
588
- #: ../classes/settings.php:585
589
  msgid "columns"
590
  msgstr "أعمدة"
591
 
592
- #: ../classes/settings.php:595
593
  msgid "Get the Pro Add-on"
594
  msgstr "احصل على الملحق الإحترافي"
595
 
596
- #: ../classes/settings.php:599
597
  msgid "Add Sorting"
598
  msgstr "أضف ترتيب"
599
 
600
- #: ../classes/settings.php:600
601
  msgid "Add Filtering"
602
  msgstr "أضف تصفية"
603
 
604
- #: ../classes/settings.php:601
605
  msgid "Add Import/Export"
606
  msgstr "أضف استيراد/تصدير"
607
 
608
- #: ../classes/settings.php:604
609
  #, php-format
610
  msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
611
  msgstr "تعرف على <a href=\"%s\">الملحق الإحترافي</a> للمزيد من التفاصيل!"
612
 
613
- #: ../classes/settings.php:612
614
  msgid "Support"
615
  msgstr "دعم"
616
 
617
- #: ../classes/settings.php:615
618
  msgid "Check the <strong>Help</strong> section in the top-right screen."
619
- msgstr ""
620
- "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
621
 
622
- #: ../classes/settings.php:617
623
  #, php-format
624
  msgid ""
625
  "For full documentation, bug reports, feature suggestions and other tips <a "
626
  "href='%s'>visit the Admin Columns website</a>"
627
- msgstr ""
628
- "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من "
629
- "النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
630
 
631
- #: ../classes/settings.php:637
632
  msgid "Drag and drop to reorder"
633
  msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
634
 
635
- #: ../classes/settings.php:640
636
  msgid "Add Column"
637
  msgstr "أضف عمود"
638
 
639
- #: ../classes/settings.php:691
640
  msgid "General Settings"
641
  msgstr "إعدادات عامة"
642
 
643
- #: ../classes/settings.php:692
644
  msgid "Customize your Admin Columns settings."
645
  msgstr "قم بتخصيص إعدادات Admin Columns."
646
 
647
- #: ../classes/settings.php:699
648
- msgid "Custom field settings"
649
- msgstr "إعدادات الحقل المخصوص"
650
-
651
- #: ../classes/settings.php:703
652
  msgid "Show hidden custom fields. Default is <code>off</code>."
653
  msgstr "إظهار الحقول المخصوصة المخفية. الإفتراضي هو <code>لا</code>."
654
 
655
- #: ../classes/settings.php:710
 
 
 
 
 
656
  msgid "Save"
657
  msgstr "حفظ"
658
 
659
- #: ../classes/settings.php:750
660
  msgid "Restore Settings"
661
  msgstr "استرجاع الإعدادات"
662
 
663
- #: ../classes/settings.php:751
664
  msgid "This will delete all column settings and restore the default settings."
665
  msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
666
 
667
- #: ../classes/settings.php:757
668
  msgid "Restore default settings"
669
  msgstr "استرجاع الإعدادات الإفتراضية"
670
 
671
- #: ../classes/settings.php:757
672
  msgid ""
673
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
674
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
675
- msgstr ""
676
- "تحذير! كافة بيانات الأعمدة المحفوظة سيتم حذفها. لا يمكن التراجع عن هذا. "
677
- "\\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
678
 
679
- #: ../classes/storage_model.php:153
680
  msgid "settings succesfully restored."
681
  msgstr "تمت إستعادة الإعدادات بنجاح."
682
 
683
- #: ../classes/storage_model.php:167
684
  msgid "No columns settings available."
685
  msgstr "لا توجد إعدادات أعمدة متوفرة."
686
 
687
- #: ../classes/storage_model.php:190
688
  #, php-format
689
  msgid "You are trying to store the same settings for %s."
690
  msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
691
 
692
- #: ../classes/storage_model.php:194
693
  #, php-format
694
  msgid "Settings for %s updated succesfully."
695
  msgstr "إعدادات %s تم تحديثها بنجاح."
696
 
697
- #: ../classes/storage_model.php:575 ../classes/column/post/actions.php:64
698
  msgid "View"
699
  msgstr "عرض"
700
 
@@ -702,56 +636,55 @@ msgstr "عرض"
702
  msgid "Upgrade"
703
  msgstr "تحديث"
704
 
705
- #: ../classes/upgrade.php:94
706
  msgid "requires a database upgrade"
707
  msgstr "يتطلب ترقية قاعدة البيانات"
708
 
709
- #: ../classes/upgrade.php:97
710
  msgid "why?"
711
  msgstr "لماذا؟"
712
 
713
- #: ../classes/upgrade.php:98
714
  msgid "Please"
715
  msgstr "فضلا"
716
 
717
- #: ../classes/upgrade.php:99
718
  msgid "backup your database"
719
  msgstr "قم بعمل نسخة إحتياطية من قاعدة بياناتك"
720
 
721
- #: ../classes/upgrade.php:100
722
  msgid "then click"
723
  msgstr "ثم انقر"
724
 
725
- #: ../classes/upgrade.php:308
726
  msgid "Migrating Column Settings"
727
  msgstr "نقل إعدادات الأعمدة"
728
 
729
- #: ../classes/upgrade.php:344
730
  msgid "No Upgrade Required"
731
  msgstr "لا تحديث مطلوب"
732
 
733
- #: ../classes/upgrade.php:345
734
  msgid "Return to welcome screen."
735
  msgstr "رجوع إلى صفحة الترحيب."
736
 
737
- #: ../classes/upgrade.php:361
738
  msgid "Upgrade Complete!"
739
  msgstr "اكتمل التحديث"
740
 
741
- #: ../classes/upgrade.php:361
742
  msgid "Return to settings."
743
  msgstr "العودة للإعدادات."
744
 
745
- #: ../classes/upgrade.php:362
746
  msgid "Error"
747
  msgstr "خطأ"
748
 
749
- #: ../classes/upgrade.php:363
750
  msgid ""
751
  "Sorry. Something went wrong during the upgrade process. Please report this "
752
  "on the support forum."
753
- msgstr ""
754
- "عفوا. حدث خطأ أثناء عملية الترقية. الرجاء التبليغ عن هذا في منتديات الدعم."
755
 
756
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
757
  msgid "Media Library"
@@ -769,35 +702,35 @@ msgstr "اسم مستخدم (أرقام مستخدمين)"
769
  msgid "Checkmark (true/false)"
770
  msgstr "علامة إختيار (صح/خطأ)"
771
 
772
- #: ../classes/column/custom-field.php:320
773
  msgid "Select your custom field."
774
  msgstr "اختر حقلك المخصوص"
775
 
776
- #: ../classes/column/custom-field.php:330
777
  msgid "No custom fields available."
778
  msgstr "لا توجد حقول مخصوصة متوفرة."
779
 
780
- #: ../classes/column/custom-field.php:337
781
  msgid "Field Type"
782
  msgstr "نوع الحقل"
783
 
784
- #: ../classes/column/custom-field.php:337
785
  msgid "This will determine how the value will be displayed."
786
  msgstr "هذا سيحدد كيف سيتم عرض القيمة."
787
 
788
- #: ../classes/column/custom-field.php:380
789
  msgid "Before"
790
  msgstr "قبل"
791
 
792
- #: ../classes/column/custom-field.php:380
793
  msgid "This text will appear before the custom field value."
794
  msgstr "هذا النص سيظهر قبل الحقل المخصوص."
795
 
796
- #: ../classes/column/custom-field.php:386
797
  msgid "After"
798
  msgstr "بعد"
799
 
800
- #: ../classes/column/custom-field.php:386
801
  msgid "This text will appear after the custom field value."
802
  msgstr "هذا النص سيظهر بعد الحقل المخصوص."
803
 
@@ -896,9 +829,7 @@ msgstr "عدد الكلمات"
896
  msgid ""
897
  "You are about to delete this link '%s'\n"
898
  " 'Cancel' to stop, 'OK' to delete."
899
- msgstr ""
900
- "انت على وشك حذف هذا الرابط '%s'\n"
901
- " 'إلغاء' للإيقاف، 'موافق' للحذف."
902
 
903
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
904
  msgid "Delete"
1
+ #
2
  # Translators:
3
  # TheHassan, 2013
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-08-29 20:04+0000\n"
10
+ "Last-Translator: TheHassan\n"
11
+ "Language-Team: Arabic (http://www.transifex.com/projects/p/admin-columns/language/ar/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: ar\n"
16
+ "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
 
24
+ #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
26
  msgstr "إعدادات"
27
 
28
+ #: ../codepress-admin-columns.php:350
29
  msgid "Edit columns"
30
  msgstr "تحرير الأعمدة"
31
 
45
  msgid "Full"
46
  msgstr "كامل"
47
 
48
+ #: ../classes/column.php:774
49
  msgid "Date Format"
50
  msgstr "تنسيق التاريخ"
51
 
52
+ #: ../classes/column.php:775
53
  msgid "This will determine how the date will be displayed."
54
  msgstr "هذا سيحدد كيف سيتم عرض التاريخ."
55
 
56
+ #: ../classes/column.php:781
57
  msgid "Example:"
58
  msgstr "مثال:"
59
 
60
+ #: ../classes/column.php:783
61
  #, php-format
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
+ msgstr "أترك خاليا لتنسيق ووردبريس الإفتراضي للتاريخ، قم بتغيير <a href=\"%s\">تنسيق التاريخ الخاص بك هنا</a>."
 
 
66
 
67
+ #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
69
  msgstr "توثيق حول تنسيق التاريخ والوقت."
70
 
71
+ #: ../classes/column.php:801
72
  msgid "Excerpt length"
73
  msgstr "طول المقتطف"
74
 
75
+ #: ../classes/column.php:802
76
  msgid "Number of words"
77
  msgstr "عدد الكلمات"
78
 
79
+ #: ../classes/column.php:824
80
  msgid "Preview size"
81
  msgstr "حجم المعاينة"
82
 
83
+ #: ../classes/column.php:841 ../classes/column.php:897
84
  msgid "Custom"
85
  msgstr "مخصوص"
86
 
87
+ #: ../classes/column.php:844
88
  msgid "width"
89
  msgstr "عرض"
90
 
91
+ #: ../classes/column.php:847
92
  msgid "height"
93
  msgstr "إرتفاع"
94
 
95
+ #: ../classes/column.php:898 ../classes/settings.php:224
96
  #: ../classes/column/custom-field.php:72
97
  msgid "Default"
98
  msgstr "إفتراضي"
99
 
100
+ #: ../classes/column.php:923 ../classes/column.php:984
101
  #: ../classes/column/user/actions.php:65
102
  msgid "Remove"
103
  msgstr "إزالة"
104
 
105
+ #: ../classes/column.php:942
106
  msgid "Type"
107
  msgstr "نوع"
108
 
109
+ #: ../classes/column.php:942
110
  msgid "Choose a column type."
111
  msgstr "اختر نوع عمود"
112
 
113
+ #: ../classes/column.php:952
114
  msgid "Label"
115
  msgstr "العنوان"
116
 
117
+ #: ../classes/column.php:952
118
  msgid "This is the name which will appear as the column header."
119
  msgstr "هذا هو الاسم الذي سيظهر كترويسة العمود."
120
 
121
+ #: ../classes/column.php:959 ../classes/column/media/width.php:12
122
  msgid "Width"
123
  msgstr "عرض"
124
 
125
+ #: ../classes/column.php:961 ../classes/column.php:962
126
  msgid "default"
127
  msgstr "إفتراضي"
128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
  #: ../classes/settings.php:68
130
  msgid "Admin Columns Settings"
131
  msgstr "إعدادات Admin Columns"
132
 
133
+ #: ../classes/settings.php:68 ../classes/settings.php:534
134
+ #: ../classes/upgrade.php:89
135
  msgid "Admin Columns"
136
  msgstr "Admin Columns"
137
 
138
+ #: ../classes/settings.php:129
139
+ #, php-format
140
+ msgid "%s column is already present and can not be duplicated."
141
+ msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
142
+
143
+ #: ../classes/settings.php:184
144
  msgid "Default settings succesfully restored."
145
  msgstr "تمت إستعادة الإعدادات الإفتراضية بنجاح."
146
 
147
+ #: ../classes/settings.php:202 ../classes/settings.php:457
148
  msgid "Overview"
149
  msgstr "نظرة عامة"
150
 
151
+ #: ../classes/settings.php:205
152
  msgid ""
153
  "This plugin is for adding and removing additional columns to the "
154
  "administration screens for post(types), pages, media library, comments, "
155
  "links and users. Change the column's label and reorder them."
156
+ msgstr "هذا البرنامج هو لإضافة وإزالة أعمدة إضافية في الشاشات الإدارية لـ(أنواع) التدوينات، الصفحات، مكتبة الوسائط، التعليقات، الوصلات والمستخدمين. قم بتغيير تسمية الأعمدة وإعادة ترتيبها."
 
 
 
157
 
158
+ #: ../classes/settings.php:208
159
  msgid "Basics"
160
  msgstr "مبادئ"
161
 
162
+ #: ../classes/settings.php:210
 
 
 
 
 
 
 
 
 
 
 
 
163
  msgid "Change order"
164
  msgstr "تغيير الترتيب"
165
 
166
+ #: ../classes/settings.php:211
167
  msgid ""
168
  "By dragging the columns you can change the order which they will appear in."
169
  msgstr "عن طريق سحب الأعمدة يمكنك تغيير ترتيب الذي سوف تظهر فيه."
170
 
171
+ #: ../classes/settings.php:212
172
  msgid "Change label"
173
  msgstr "تغيير العنوان"
174
 
175
+ #: ../classes/settings.php:213
176
  msgid ""
177
  "By clicking on the triangle you will see the column options. Here you can "
178
  "change each label of the columns heading."
179
+ msgstr "بالنقر على المثلث سترى خيارات العمود. هنا يمكنك تغيير تسمية ترويسات الأعمدة."
 
180
 
181
+ #: ../classes/settings.php:214
182
  msgid "Change column width"
183
  msgstr "تغيير عرض العمود"
184
 
185
+ #: ../classes/settings.php:215
186
  msgid ""
187
  "By clicking on the triangle you will see the column options. By using the "
188
+ "draggable slider you can set the width of the columns in percentages."
189
+ msgstr "بالنقر على المثلث سترى خيارات العمود. باستخدام شريط التمرير القابل للسحب يمكنك تعيين عرض الأعمدة بالنسب المئوية."
 
 
190
 
191
+ #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
+ #: ../classes/column/custom-field.php:324
193
  msgid "Custom Field"
194
  msgstr "حقل مخصوص"
195
 
196
+ #: ../classes/settings.php:221
197
  msgid "'Custom Field' column"
198
  msgstr "عمود 'حقل مخصوص'"
199
 
200
+ #: ../classes/settings.php:222
201
  msgid ""
202
  "The custom field colum uses the custom fields from posts and users. There "
203
  "are 10 types which you can set."
204
+ msgstr "يستخدم عمود الحقل المخصوص الحقول المخصوصة من التدوينات والمستخدمين. هناك 10 أنواع يمكنك تعيينها."
 
 
205
 
206
+ #: ../classes/settings.php:224
207
  msgid ""
208
  "Value: Can be either a string or array. Arrays will be flattened and values "
209
  "are seperated by a ',' comma."
210
+ msgstr "قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم بـ '،' فاصلة."
 
 
211
 
212
+ #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
  #: ../classes/column/link/image.php:12
214
  msgid "Image"
215
  msgstr "صورة"
216
 
217
+ #: ../classes/settings.php:225
218
  msgid ""
219
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
  "comma )."
221
+ msgstr "قيمة: يجب أن يحتوي عنوان URL للصورة أو معرفات المرفقات (مفصولة بـ '،' فاصلة)."
 
222
 
223
+ #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
  #: ../classes/column/comment/excerpt.php:13
225
  #: ../classes/column/post/excerpt.php:13
226
  msgid "Excerpt"
227
  msgstr "مقتطف"
228
 
229
+ #: ../classes/settings.php:226
230
  msgid "Value: This will show the first 20 words of the Post content."
231
  msgstr "قيمة: سيقوم هذا بإظهار أول 20 كلمة من محتوى التدوينة."
232
 
233
+ #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
234
  msgid "Multiple Values"
235
  msgstr "قيم متعددة"
236
 
237
+ #: ../classes/settings.php:227
238
  msgid ""
239
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
240
+ "array."
241
  msgstr "قيمة: يجب أن يكون مصفوفة. هذا سوف يسطح أي مصفوفة (متعددة الأبعاد)."
242
 
243
+ #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
244
  msgid "Numeric"
245
  msgstr "رقمي"
246
 
247
+ #: ../classes/settings.php:228
248
  msgid ""
249
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
  "for sorting, so you can sort your posts on numeric (custom field) values."
251
+ msgstr "القيمة: الأعداد الصحيحة فقط <br/> إذا كان لديك 'ملحق الترتيب' سيتم استخدام هذه للترتيب، بحيث يمكنك ترتيب تدويناتك على القيم الرقمية (الحقل المخصوص)."
 
 
252
 
253
+ #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
  #: ../classes/column/comment/date.php:12
255
  msgid "Date"
256
  msgstr "تاريخ"
257
 
258
+ #: ../classes/settings.php:229
259
  #, php-format
260
  msgid ""
261
  "Value: Can be unix time stamp or a date format as described in the <a "
262
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
  "href='%s'>general settings</a> page."
264
+ msgstr "قيمة: يمكن أن تكون طابع يونكس زمني أو تنسيق تاريخ كما هو موضح في <a href='%s'>Codex</a>. يمكنك تغيير تنسيق التاريخ المخرج من صفحة <a href='%s'>الإعدادات العامة</a>."
 
 
 
265
 
266
+ #: ../classes/settings.php:230
267
  msgid "Post Titles"
268
  msgstr "عناوين تدوينات"
269
 
270
+ #: ../classes/settings.php:230
271
  msgid "Value: can be one or more Post ID's (seperated by ',')."
272
  msgstr "قيمة: يمكن أن تكون رقم تدوينة واحدة أو أكثر (مفصولة بـ',')."
273
 
274
+ #: ../classes/settings.php:231
275
  msgid "Usernames"
276
  msgstr "أسماء مستخدمين"
277
 
278
+ #: ../classes/settings.php:231
279
  msgid "Value: can be one or more User ID's (seperated by ',')."
280
  msgstr "قيمة: يمكن أن تكون رقم مستخدم واحد أو أكثر (مفصولة بـ',')."
281
 
282
+ #: ../classes/settings.php:232
283
  msgid "Checkmark"
284
  msgstr "علامة اختيار"
285
 
286
+ #: ../classes/settings.php:232
287
  msgid "Value: should be a 1 (one) or 0 (zero)."
288
  msgstr "قيمة: يجب أن تكون 1 (واحد) أو 0 (صفر)."
289
 
290
+ #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
291
  msgid "Color"
292
  msgstr "لون"
293
 
294
+ #: ../classes/settings.php:233
295
  msgid "Value: hex value color, such as #808080."
296
  msgstr "قيمة: لون بقيمة عشرية، مثل 808080#."
297
 
298
+ #: ../classes/settings.php:377
299
  msgid "Welcome to Admin Columns"
300
  msgstr "مرحبا في Admin Columns"
301
 
302
+ #: ../classes/settings.php:380
303
  msgid "Thank you for updating to the latest version!"
304
  msgstr "شكرا لك على التحديث للنسخة الأخيرة!"
305
 
306
+ #: ../classes/settings.php:381
307
  msgid ""
308
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
  "like it."
310
+ msgstr "Admin Columns أصبحت مصقولة وممتعة أكثر من أي وقت مضى. نأمل أن تنال إعجابكم."
 
311
 
312
+ #: ../classes/settings.php:386
313
  msgid "What’s New"
314
  msgstr "ما الجديد"
315
 
316
+ #: ../classes/settings.php:387
317
  msgid "Changelog"
318
  msgstr "سجل التغييرات"
319
 
320
+ #: ../classes/settings.php:389
321
  msgid "Download Addons"
322
  msgstr "تنزيل الإضافات"
323
 
324
+ #: ../classes/settings.php:395
325
  msgid "Addons"
326
  msgstr "إضافات"
327
 
328
+ #: ../classes/settings.php:397
329
  msgid ""
330
  "Addons are now activated by downloading and installing individual plugins. "
331
  "Although these plugins will not be hosted on the wordpress.org repository, "
332
  "each Add-on will continue to receive updates in the usual way."
333
+ msgstr "يتم تنشيط الملحقات الآن عن طريق تحميل وتثبيت الإضافات الفردية. على الرغم من أنه لن يتم استضافة هذه الإضافات على مستودع wordpress.org، سوف تستمر كل إضافة بتلقي التحديثات بالطريقة المعتادة."
 
 
 
334
 
335
+ #: ../classes/settings.php:400
336
  msgid ""
337
  "This website uses the Sortorder Addon. This addon needs to be downloaded."
338
  msgstr "هذا الموقع يستخدم ملحق الترتيب. يجب تنزيل هذه الإضافة."
339
 
340
+ #: ../classes/settings.php:403
341
  msgid "Addons are seperate plugins which need to be downloaded."
342
  msgstr "الملحقات هي إضافات منفصلة يجب تنزيلها."
343
 
344
+ #: ../classes/settings.php:403
345
  msgid "Download your Addons"
346
  msgstr "قم بتنزيل إضافاتك"
347
 
348
+ #: ../classes/settings.php:409
349
  msgid "This website does not use add-ons"
350
  msgstr "هذا الموقع لا يستخدم ملحقات"
351
 
352
+ #: ../classes/settings.php:409
353
  msgid "See our website for the Pro-addon."
354
  msgstr "انظر موقعنا للملحق الإحترافي."
355
 
356
+ #: ../classes/settings.php:416
357
  msgid "Important"
358
  msgstr "مهم"
359
 
360
+ #: ../classes/settings.php:418
361
  msgid "Database Changes"
362
  msgstr "تغييرات قاعدة البيانات"
363
 
364
+ #: ../classes/settings.php:419
365
  msgid ""
366
+ "The database has been changed between versions 1 and 2. But we made sure you"
367
+ " can still roll back to version 1x without any issues."
368
+ msgstr "تم تغيير قاعدة البيانات بين الإصدارات 1 و 2. ولكن حرصنا على ألا يزال بإمكانك الرجوع إلى إصدار 1x دون أية مشاكل."
 
 
369
 
370
+ #: ../classes/settings.php:422
371
  msgid "Make sure you backup your database and then click"
372
  msgstr "تأكد من عمل نسخة احتياطية لقاعدة بياناتك ثم انقر"
373
 
374
+ #: ../classes/settings.php:422 ../classes/upgrade.php:97
375
  msgid "Upgrade Database"
376
  msgstr "تحديث قاعدة البيانات"
377
 
378
+ #: ../classes/settings.php:425
379
  msgid "Potential Issues"
380
  msgstr "مشاكل محتملة"
381
 
382
+ #: ../classes/settings.php:426
383
  msgid ""
384
+ "Do to the sizable refactoring the code, surounding Addons and "
385
+ "action/filters, your website may not operate correctly. It is important that"
386
+ " you read the full"
387
+ msgstr "نسبة إلى إعادة بناء كود الإضافة بشكل كبير، وكذلك الملحاقت والدوال، قد لا يعمل موقع الويب الخاص بك بشكل صحيح. من المهم أن تقرأ بشكل كامل"
 
 
388
 
389
+ #: ../classes/settings.php:426
390
  msgid "Migrating from v1 to v2"
391
  msgstr "الانتقال من النسخة 1 إلى النسخة 2"
392
 
393
+ #: ../classes/settings.php:426
394
  msgid "guide to view the full list of changes."
395
  msgstr "توجيه لعرض القائمة الكاملة للتغييرات."
396
 
397
+ #: ../classes/settings.php:426
398
  #, php-format
399
  msgid ""
400
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
  "can fix it in the next release."
402
+ msgstr "عندما تجد أخطاء الرجاء <a href=\"%s\">التبيلغ عنها لنا</a> لكي نتمكن من إصلاحها في النسخة القادمة."
 
 
403
 
404
+ #: ../classes/settings.php:429
405
  msgid "Important!"
406
  msgstr "مهم!"
407
 
408
+ #: ../classes/settings.php:429
409
  msgid ""
410
  "If you updated the Admin Columns plugin without prior knowledge of such "
411
  "changes, Please roll back to the latest"
412
+ msgstr "إذا قمت بتحديث Admin Columns دون معرفة مسبقة بهذه التغييرات، فالرجاء الرجوع لآخر"
 
 
413
 
414
+ #: ../classes/settings.php:429
415
  msgid "version 1"
416
  msgstr "النسخة 1"
417
 
418
+ #: ../classes/settings.php:429
419
  msgid "of this plugin."
420
  msgstr "من هذه الإضافة"
421
 
422
+ #: ../classes/settings.php:435
423
  msgid "Changelog for"
424
  msgstr "سجل التغييرات لـ"
425
 
426
+ #: ../classes/settings.php:450
427
  msgid "Learn more"
428
  msgstr "تعلم المزيد"
429
 
430
+ #: ../classes/settings.php:459
431
  msgid ""
432
  "New to v2, all Addons act as separate plugins which need to be individually "
433
  "downloaded, installed and updated."
434
+ msgstr "جديدة في النسخة 2، كل الملحقات عبارة عن إضافات منفصلة وتحتاج ليتم تحميلها، تركيبها وتحديثها بشكل فردي."
 
 
435
 
436
+ #: ../classes/settings.php:460
437
  msgid ""
438
+ "This page will assist you in downloading and installing each available "
439
+ "Addon."
440
  msgstr "هذه الصفحة سوف تساعدك في تحميل وتثبيت كل الملحقات المتاحة."
441
 
442
+ #: ../classes/settings.php:461
443
  msgid "Available Addons"
444
  msgstr "الإضافات المتوفرة"
445
 
446
+ #: ../classes/settings.php:466
447
  msgid "Name"
448
  msgstr "الاسم"
449
 
450
+ #: ../classes/settings.php:467 ../classes/settings.php:475
451
  msgid "Download"
452
  msgstr "تنزيل"
453
 
454
+ #: ../classes/settings.php:473
455
  msgid "Pro Add-on (includes Sortorder add-on)"
456
  msgstr "الملحق الإحترافي (يتضمن ملحق الترتيب)"
457
 
458
+ #: ../classes/settings.php:483
459
  msgid "Installation"
460
  msgstr "تنصيب"
461
 
462
+ #: ../classes/settings.php:485
463
  msgid "For each Add-on available, please perform the following:"
464
  msgstr "لكل ملحق متاح، يرجى القيام بما يلي:"
465
 
466
+ #: ../classes/settings.php:487
467
  msgid "Download the Addon plugin (.zip file) to your desktop"
468
  msgstr "تنزيل إضافة الملحقات (ملف .zip) إلى سطح مكتبك"
469
 
470
+ #: ../classes/settings.php:488
471
  msgid "Navigate to"
472
  msgstr "انتقل إلى"
473
 
474
+ #: ../classes/settings.php:488
475
  msgid "Plugins > Add New > Upload"
476
  msgstr "إضافات > أضف جديد > تحميل"
477
 
478
+ #: ../classes/settings.php:489
479
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
480
  msgstr "استخدام الرافع للتصفح واختيار وتثبيت (ملف .zip) الخاص بإضافتك"
481
 
482
+ #: ../classes/settings.php:490
483
  msgid ""
484
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
+ " link"
486
  msgstr "عندما يتم رفع وتنصيب الإضافة، انقر على رابط 'تنشيط الإضافة'"
487
 
488
+ #: ../classes/settings.php:491
489
  msgid "The Add-on is now installed and activated!"
490
  msgstr "تم تنصيب وتفعيل الملحق!"
491
 
492
+ #: ../classes/settings.php:492
493
  #, php-format
494
  msgid ""
495
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
496
  msgstr "من أجل التحديثات الإضافية تأكد من <a href='%s'>إدخال مفتاح رخصتك</a>."
497
 
498
+ #: ../classes/settings.php:502
499
  msgid "Start using Admin Columns"
500
  msgstr "البدء باستخدام Admin Columns"
501
 
502
+ #: ../classes/settings.php:580
503
  msgid "Store settings"
504
  msgstr "حفظ الإعدادات"
505
 
506
+ #: ../classes/settings.php:585
507
  msgid "Update"
508
  msgstr "تحديث"
509
 
510
+ #: ../classes/settings.php:585
511
  msgid "Publish"
512
  msgstr "نشر"
513
 
514
+ #: ../classes/settings.php:589
515
  #, php-format
516
  msgid ""
517
+ "Warning! The %s columns data will be deleted. This cannot be undone. "
518
+ "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
+ msgstr "تحذير! بيانات أعمدة %s سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
 
 
520
 
521
+ #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
  #: ../classes/column/post/actions.php:53
523
  msgid "Restore"
524
  msgstr "استرجاع"
525
 
526
+ #: ../classes/settings.php:590
527
  msgid "columns"
528
  msgstr "أعمدة"
529
 
530
+ #: ../classes/settings.php:600
531
  msgid "Get the Pro Add-on"
532
  msgstr "احصل على الملحق الإحترافي"
533
 
534
+ #: ../classes/settings.php:604
535
  msgid "Add Sorting"
536
  msgstr "أضف ترتيب"
537
 
538
+ #: ../classes/settings.php:605
539
  msgid "Add Filtering"
540
  msgstr "أضف تصفية"
541
 
542
+ #: ../classes/settings.php:606
543
  msgid "Add Import/Export"
544
  msgstr "أضف استيراد/تصدير"
545
 
546
+ #: ../classes/settings.php:609
547
  #, php-format
548
  msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
549
  msgstr "تعرف على <a href=\"%s\">الملحق الإحترافي</a> للمزيد من التفاصيل!"
550
 
551
+ #: ../classes/settings.php:617
552
  msgid "Support"
553
  msgstr "دعم"
554
 
555
+ #: ../classes/settings.php:620
556
  msgid "Check the <strong>Help</strong> section in the top-right screen."
557
+ msgstr "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
 
558
 
559
+ #: ../classes/settings.php:622
560
  #, php-format
561
  msgid ""
562
  "For full documentation, bug reports, feature suggestions and other tips <a "
563
  "href='%s'>visit the Admin Columns website</a>"
564
+ msgstr "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
 
 
565
 
566
+ #: ../classes/settings.php:642
567
  msgid "Drag and drop to reorder"
568
  msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
569
 
570
+ #: ../classes/settings.php:645
571
  msgid "Add Column"
572
  msgstr "أضف عمود"
573
 
574
+ #: ../classes/settings.php:696
575
  msgid "General Settings"
576
  msgstr "إعدادات عامة"
577
 
578
+ #: ../classes/settings.php:697
579
  msgid "Customize your Admin Columns settings."
580
  msgstr "قم بتخصيص إعدادات Admin Columns."
581
 
582
+ #: ../classes/settings.php:710
 
 
 
 
583
  msgid "Show hidden custom fields. Default is <code>off</code>."
584
  msgstr "إظهار الحقول المخصوصة المخفية. الإفتراضي هو <code>لا</code>."
585
 
586
+ #: ../classes/settings.php:716
587
+ msgid ""
588
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
589
+ msgstr "إظهار زر \"تحرير الأعمدة\" على الشاشات الإدارية. الإفتراضي هو <code>لا</code>."
590
+
591
+ #: ../classes/settings.php:723
592
  msgid "Save"
593
  msgstr "حفظ"
594
 
595
+ #: ../classes/settings.php:763
596
  msgid "Restore Settings"
597
  msgstr "استرجاع الإعدادات"
598
 
599
+ #: ../classes/settings.php:764
600
  msgid "This will delete all column settings and restore the default settings."
601
  msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
602
 
603
+ #: ../classes/settings.php:770
604
  msgid "Restore default settings"
605
  msgstr "استرجاع الإعدادات الإفتراضية"
606
 
607
+ #: ../classes/settings.php:770
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
+ msgstr "تحذير! كافة بيانات الأعمدة المحفوظة سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
 
 
612
 
613
+ #: ../classes/storage_model.php:167
614
  msgid "settings succesfully restored."
615
  msgstr "تمت إستعادة الإعدادات بنجاح."
616
 
617
+ #: ../classes/storage_model.php:181
618
  msgid "No columns settings available."
619
  msgstr "لا توجد إعدادات أعمدة متوفرة."
620
 
621
+ #: ../classes/storage_model.php:204
622
  #, php-format
623
  msgid "You are trying to store the same settings for %s."
624
  msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
625
 
626
+ #: ../classes/storage_model.php:208
627
  #, php-format
628
  msgid "Settings for %s updated succesfully."
629
  msgstr "إعدادات %s تم تحديثها بنجاح."
630
 
631
+ #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
632
  msgid "View"
633
  msgstr "عرض"
634
 
636
  msgid "Upgrade"
637
  msgstr "تحديث"
638
 
639
+ #: ../classes/upgrade.php:90
640
  msgid "requires a database upgrade"
641
  msgstr "يتطلب ترقية قاعدة البيانات"
642
 
643
+ #: ../classes/upgrade.php:93
644
  msgid "why?"
645
  msgstr "لماذا؟"
646
 
647
+ #: ../classes/upgrade.php:94
648
  msgid "Please"
649
  msgstr "فضلا"
650
 
651
+ #: ../classes/upgrade.php:95
652
  msgid "backup your database"
653
  msgstr "قم بعمل نسخة إحتياطية من قاعدة بياناتك"
654
 
655
+ #: ../classes/upgrade.php:96
656
  msgid "then click"
657
  msgstr "ثم انقر"
658
 
659
+ #: ../classes/upgrade.php:304
660
  msgid "Migrating Column Settings"
661
  msgstr "نقل إعدادات الأعمدة"
662
 
663
+ #: ../classes/upgrade.php:340
664
  msgid "No Upgrade Required"
665
  msgstr "لا تحديث مطلوب"
666
 
667
+ #: ../classes/upgrade.php:341
668
  msgid "Return to welcome screen."
669
  msgstr "رجوع إلى صفحة الترحيب."
670
 
671
+ #: ../classes/upgrade.php:359
672
  msgid "Upgrade Complete!"
673
  msgstr "اكتمل التحديث"
674
 
675
+ #: ../classes/upgrade.php:359
676
  msgid "Return to settings."
677
  msgstr "العودة للإعدادات."
678
 
679
+ #: ../classes/upgrade.php:360
680
  msgid "Error"
681
  msgstr "خطأ"
682
 
683
+ #: ../classes/upgrade.php:361
684
  msgid ""
685
  "Sorry. Something went wrong during the upgrade process. Please report this "
686
  "on the support forum."
687
+ msgstr "عفوا. حدث خطأ أثناء عملية الترقية. الرجاء التبليغ عن هذا في منتديات الدعم."
 
688
 
689
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
690
  msgid "Media Library"
702
  msgid "Checkmark (true/false)"
703
  msgstr "علامة إختيار (صح/خطأ)"
704
 
705
+ #: ../classes/column/custom-field.php:324
706
  msgid "Select your custom field."
707
  msgstr "اختر حقلك المخصوص"
708
 
709
+ #: ../classes/column/custom-field.php:334
710
  msgid "No custom fields available."
711
  msgstr "لا توجد حقول مخصوصة متوفرة."
712
 
713
+ #: ../classes/column/custom-field.php:341
714
  msgid "Field Type"
715
  msgstr "نوع الحقل"
716
 
717
+ #: ../classes/column/custom-field.php:341
718
  msgid "This will determine how the value will be displayed."
719
  msgstr "هذا سيحدد كيف سيتم عرض القيمة."
720
 
721
+ #: ../classes/column/custom-field.php:384
722
  msgid "Before"
723
  msgstr "قبل"
724
 
725
+ #: ../classes/column/custom-field.php:384
726
  msgid "This text will appear before the custom field value."
727
  msgstr "هذا النص سيظهر قبل الحقل المخصوص."
728
 
729
+ #: ../classes/column/custom-field.php:390
730
  msgid "After"
731
  msgstr "بعد"
732
 
733
+ #: ../classes/column/custom-field.php:390
734
  msgid "This text will appear after the custom field value."
735
  msgstr "هذا النص سيظهر بعد الحقل المخصوص."
736
 
829
  msgid ""
830
  "You are about to delete this link '%s'\n"
831
  " 'Cancel' to stop, 'OK' to delete."
832
+ msgstr "انت على وشك حذف هذا الرابط '%s'\n 'إلغاء' للإيقاف، 'موافق' للحذف."
 
 
833
 
834
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
  msgid "Delete"
languages/cpac-da_DK.mo CHANGED
Binary file
languages/cpac-da_DK.po CHANGED
@@ -1,788 +1,695 @@
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Codepress Admin Columns\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-18 15:23+0100\n"
6
- "PO-Revision-Date: 2013-07-18 15:23+0100\n"
7
- "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: IO SoftGame <support@iosoftgame.com>\n"
9
- "Language: da\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Generator: Poedit 1.5.7\n"
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPath-1: ..\n"
 
19
 
20
- #: ../codepress-admin-columns.php:230 ../classes/settings.php:534
21
  msgid "Settings"
22
  msgstr "Indstillinger"
23
 
24
  #: ../codepress-admin-columns.php:350
25
- #, fuzzy
26
  msgid "Edit columns"
27
- msgstr "Admin Columns"
28
-
29
- #: ../classes/addons.php:27
30
- #, fuzzy
31
- msgid "Add-ons"
32
- msgstr "Aktiver udvidelsesmoduler"
33
-
34
- #: ../classes/addons.php:63
35
- msgid ""
36
- "There was an error retrieving the extensions list from the server. Please "
37
- "try again later."
38
- msgstr ""
39
-
40
- #: ../classes/addons.php:88 ../classes/addons.php:94
41
- #, fuzzy
42
- msgid "Add-ons for Admin Columns"
43
- msgstr "Admin Columns"
44
-
45
- #: ../classes/addons.php:95
46
- msgid "These add-ons extend the functionality of Admin Columns."
47
- msgstr ""
48
-
49
- #: ../classes/addons.php:96
50
- msgid "Browse All Add-ons"
51
- msgstr ""
52
-
53
- #: ../classes/addons.php:96
54
- msgid "Browse all Add-ons"
55
- msgstr ""
56
 
57
  #: ../classes/column.php:479
58
  msgid "Thumbnail"
59
- msgstr ""
60
 
61
  #: ../classes/column.php:480
62
  msgid "Medium"
63
- msgstr ""
64
 
65
  #: ../classes/column.php:481
66
- #, fuzzy
67
  msgid "Large"
68
- msgstr "Mål"
69
 
70
  #: ../classes/column.php:482
71
  msgid "Full"
72
- msgstr ""
73
 
74
- #: ../classes/column.php:776
75
- #, fuzzy
76
  msgid "Date Format"
77
- msgstr "Indlæg format"
78
 
79
- #: ../classes/column.php:777
80
  msgid "This will determine how the date will be displayed."
81
- msgstr ""
82
 
83
- #: ../classes/column.php:783
84
  msgid "Example:"
85
- msgstr ""
86
 
87
- #: ../classes/column.php:785
88
  #, php-format
89
  msgid ""
90
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
91
  "date format here</a>."
92
- msgstr ""
93
 
94
- #: ../classes/column.php:786
95
  msgid "Documentation on date and time formatting."
96
- msgstr ""
97
 
98
- #: ../classes/column.php:803
99
- #, fuzzy
100
  msgid "Excerpt length"
101
- msgstr "Uddrag"
102
 
103
- #: ../classes/column.php:804
104
  msgid "Number of words"
105
- msgstr ""
106
 
107
- #: ../classes/column.php:826
108
- #, fuzzy
109
  msgid "Preview size"
110
- msgstr "Eksempel"
111
 
112
- #: ../classes/column.php:843 ../classes/column.php:899
113
  msgid "Custom"
114
  msgstr "Brugerdefineret"
115
 
116
- #: ../classes/column.php:846
117
- #, fuzzy
118
  msgid "width"
119
- msgstr "Bredde"
120
 
121
- #: ../classes/column.php:849
122
- #, fuzzy
123
  msgid "height"
124
- msgstr "Højde"
125
 
126
- #: ../classes/column.php:900 ../classes/settings.php:221
127
  #: ../classes/column/custom-field.php:72
128
  msgid "Default"
129
  msgstr "Standard"
130
 
131
- #: ../classes/column.php:925 ../classes/column.php:986
132
  #: ../classes/column/user/actions.php:65
133
  msgid "Remove"
134
  msgstr "Fjern"
135
 
136
- #: ../classes/column.php:944
137
  msgid "Type"
138
- msgstr ""
139
 
140
- #: ../classes/column.php:944
141
  msgid "Choose a column type."
142
- msgstr ""
143
 
144
- #: ../classes/column.php:954
145
  msgid "Label"
146
- msgstr ""
147
 
148
- #: ../classes/column.php:954
149
  msgid "This is the name which will appear as the column header."
150
- msgstr ""
151
 
152
- #: ../classes/column.php:961 ../classes/column/media/width.php:12
153
  msgid "Width"
154
  msgstr "Bredde"
155
 
156
- #: ../classes/column.php:963 ../classes/column.php:964
157
  msgid "default"
158
  msgstr "standard"
159
 
160
- #: ../classes/export_import.php:64
161
- msgid "Export field is empty. Please select your types from the left column."
162
- msgstr ""
163
-
164
- #: ../classes/export_import.php:99 ../classes/export_import.php:101
165
- msgid "Sorry, there has been an error."
166
- msgstr ""
167
-
168
- #: ../classes/export_import.php:101
169
- #, php-format
170
- msgid ""
171
- "The export file could not be found at <code>%s</code>. It is likely that "
172
- "this was caused by a permissions problem."
173
- msgstr ""
174
-
175
- #: ../classes/export_import.php:119
176
- msgid "Import failed. File does not contain Admin Column settings."
177
- msgstr ""
178
-
179
- #: ../classes/settings.php:69
180
- #, fuzzy
181
  msgid "Admin Columns Settings"
182
- msgstr "Admin Columns"
183
 
184
- #: ../classes/settings.php:69 ../classes/settings.php:533
185
- #: ../classes/upgrade.php:93
186
  msgid "Admin Columns"
187
  msgstr "Admin Columns"
188
 
189
- #: ../classes/settings.php:180
 
 
 
 
 
190
  msgid "Default settings succesfully restored."
191
- msgstr ""
192
 
193
- #: ../classes/settings.php:198 ../classes/settings.php:450
194
- #, fuzzy
195
  msgid "Overview"
196
- msgstr "Eksempel"
197
 
198
- #: ../classes/settings.php:201
199
  msgid ""
200
  "This plugin is for adding and removing additional columns to the "
201
  "administration screens for post(types), pages, media library, comments, "
202
  "links and users. Change the column's label and reorder them."
203
- msgstr ""
204
 
205
- #: ../classes/settings.php:204
206
  msgid "Basics"
207
- msgstr ""
208
-
209
- #: ../classes/settings.php:206
210
- #, fuzzy
211
- msgid "Show / Hide"
212
- msgstr "Vis alle"
213
 
214
- #: ../classes/settings.php:207
215
- msgid ""
216
- "You can switch columns on or off by clicking on the checkbox. This will show "
217
- "or hide each column heading."
218
- msgstr ""
219
-
220
- #: ../classes/settings.php:208
221
- #, fuzzy
222
  msgid "Change order"
223
- msgstr "Siderækkefølge"
224
 
225
- #: ../classes/settings.php:209
226
  msgid ""
227
  "By dragging the columns you can change the order which they will appear in."
228
- msgstr ""
229
 
230
- #: ../classes/settings.php:210
231
  msgid "Change label"
232
- msgstr ""
233
 
234
- #: ../classes/settings.php:211
235
  msgid ""
236
  "By clicking on the triangle you will see the column options. Here you can "
237
  "change each label of the columns heading."
238
- msgstr ""
239
 
240
- #: ../classes/settings.php:212
241
  msgid "Change column width"
242
- msgstr ""
243
 
244
- #: ../classes/settings.php:213
245
  msgid ""
246
  "By clicking on the triangle you will see the column options. By using the "
247
- "draggable slider yo can set the width of the columns in percentages."
248
- msgstr ""
249
 
250
- #: ../classes/settings.php:216 ../classes/column/custom-field.php:16
251
- #: ../classes/column/custom-field.php:320
252
  msgid "Custom Field"
253
  msgstr "Brugerdefineret felt"
254
 
255
- #: ../classes/settings.php:218
256
- #, fuzzy
257
  msgid "'Custom Field' column"
258
- msgstr "Tilføj brugerdefineret felt kolonne"
259
 
260
- #: ../classes/settings.php:219
261
  msgid ""
262
  "The custom field colum uses the custom fields from posts and users. There "
263
  "are 10 types which you can set."
264
- msgstr ""
265
 
266
- #: ../classes/settings.php:221
267
  msgid ""
268
  "Value: Can be either a string or array. Arrays will be flattened and values "
269
  "are seperated by a ',' comma."
270
- msgstr ""
271
 
272
- #: ../classes/settings.php:222 ../classes/column/custom-field.php:73
273
  #: ../classes/column/link/image.php:12
274
  msgid "Image"
275
  msgstr "Billede"
276
 
277
- #: ../classes/settings.php:222
278
  msgid ""
279
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
280
  "comma )."
281
- msgstr ""
282
 
283
- #: ../classes/settings.php:223 ../classes/column/custom-field.php:75
284
  #: ../classes/column/comment/excerpt.php:13
285
  #: ../classes/column/post/excerpt.php:13
286
  msgid "Excerpt"
287
  msgstr "Uddrag"
288
 
289
- #: ../classes/settings.php:223
290
  msgid "Value: This will show the first 20 words of the Post content."
291
- msgstr ""
292
 
293
- #: ../classes/settings.php:224 ../classes/column/custom-field.php:76
294
  msgid "Multiple Values"
295
  msgstr "Flere værdier"
296
 
297
- #: ../classes/settings.php:224
298
  msgid ""
299
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
300
- msgstr ""
 
301
 
302
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:77
303
  msgid "Numeric"
304
  msgstr "Numerisk"
305
 
306
- #: ../classes/settings.php:225
307
  msgid ""
308
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
309
  "for sorting, so you can sort your posts on numeric (custom field) values."
310
- msgstr ""
311
 
312
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:78
313
  #: ../classes/column/comment/date.php:12
314
  msgid "Date"
315
  msgstr "Dato"
316
 
317
- #: ../classes/settings.php:226
318
  #, php-format
319
  msgid ""
320
  "Value: Can be unix time stamp or a date format as described in the <a "
321
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
322
  "href='%s'>general settings</a> page."
323
- msgstr ""
324
 
325
- #: ../classes/settings.php:227
326
- #, fuzzy
327
  msgid "Post Titles"
328
- msgstr "Indlæg titel (Indlæg ID)"
329
 
330
- #: ../classes/settings.php:227
331
  msgid "Value: can be one or more Post ID's (seperated by ',')."
332
- msgstr ""
333
 
334
- #: ../classes/settings.php:228
335
  msgid "Usernames"
336
- msgstr ""
337
 
338
- #: ../classes/settings.php:228
339
  msgid "Value: can be one or more User ID's (seperated by ',')."
340
- msgstr ""
341
 
342
- #: ../classes/settings.php:229
343
  msgid "Checkmark"
344
- msgstr ""
345
 
346
- #: ../classes/settings.php:229
347
  msgid "Value: should be a 1 (one) or 0 (zero)."
348
- msgstr ""
349
 
350
- #: ../classes/settings.php:230 ../classes/column/custom-field.php:82
351
  msgid "Color"
352
- msgstr ""
353
 
354
- #: ../classes/settings.php:230
355
  msgid "Value: hex value color, such as #808080."
356
- msgstr ""
357
 
358
- #: ../classes/settings.php:370
359
- #, fuzzy
360
  msgid "Welcome to Admin Columns"
361
- msgstr "Admin Columns"
362
 
363
- #: ../classes/settings.php:372
364
  msgid "Thank you for updating to the latest version!"
365
- msgstr ""
366
 
367
- #: ../classes/settings.php:373
368
  msgid ""
369
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
370
  "like it."
371
- msgstr ""
372
 
373
- #: ../classes/settings.php:378
374
  msgid "What’s New"
375
- msgstr ""
376
 
377
- #: ../classes/settings.php:379
378
  msgid "Changelog"
379
- msgstr ""
380
 
381
- #: ../classes/settings.php:381
382
  msgid "Download Addons"
383
- msgstr ""
384
 
385
- #: ../classes/settings.php:387 ../classes/settings.php:613
386
  msgid "Addons"
387
  msgstr "Udvidelsesmoduler"
388
 
389
- #: ../classes/settings.php:389
390
  msgid ""
391
  "Addons are now activated by downloading and installing individual plugins. "
392
  "Although these plugins will not be hosted on the wordpress.org repository, "
393
  "each Add-on will continue to receive updates in the usual way."
394
- msgstr ""
395
-
396
- #: ../classes/settings.php:393
397
- #, fuzzy
398
- msgid "the Custom Fields columns"
399
- msgstr "Tilføj brugerdefineret felt kolonne"
400
 
401
- #: ../classes/settings.php:394
402
- #, fuzzy
403
- msgid "the Sortorder Addon"
404
- msgstr "Rækkefølge"
405
-
406
- #: ../classes/settings.php:397
407
- #, php-format
408
- msgid "This website uses %s. These addons need to be downloaded."
409
- msgstr ""
410
-
411
- #: ../classes/settings.php:397
412
- msgid "and"
413
- msgstr ""
414
 
415
  #: ../classes/settings.php:403
416
- msgid "Addons are sperate plugins which need to be downloaded."
417
- msgstr ""
418
 
419
  #: ../classes/settings.php:403
420
  msgid "Download your Addons"
421
- msgstr ""
422
 
423
  #: ../classes/settings.php:409
 
 
 
 
 
 
 
 
424
  msgid "Important"
425
- msgstr ""
426
 
427
- #: ../classes/settings.php:411
428
- #, fuzzy
429
  msgid "Database Changes"
430
- msgstr "Gem ændringer"
431
 
432
- #: ../classes/settings.php:412
433
  msgid ""
434
- "The database has been changed between versions 1 and 2. But we made sure you "
435
- "can still roll back to version 1x without any issues."
436
- msgstr ""
437
 
438
- #: ../classes/settings.php:415
439
  msgid "Make sure you backup your database and then click"
440
- msgstr ""
441
 
442
- #: ../classes/settings.php:415 ../classes/upgrade.php:101
443
  msgid "Upgrade Database"
444
- msgstr ""
445
 
446
- #: ../classes/settings.php:418
447
  msgid "Potential Issues"
448
- msgstr ""
449
 
450
- #: ../classes/settings.php:419
451
  msgid ""
452
- "Do to the sizable refactoring the code, surounding Addons and action/"
453
- "filters, your website may not operate correctly. It is important that you "
454
- "read the full"
455
- msgstr ""
456
 
457
- #: ../classes/settings.php:419
458
  msgid "Migrating from v1 to v2"
459
- msgstr ""
460
 
461
- #: ../classes/settings.php:419
462
  msgid "guide to view the full list of changes."
463
- msgstr ""
464
 
465
- #: ../classes/settings.php:419
466
  #, php-format
467
  msgid ""
468
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
469
  "can fix it in the next release."
470
- msgstr ""
471
 
472
- #: ../classes/settings.php:422
473
  msgid "Important!"
474
- msgstr ""
475
 
476
- #: ../classes/settings.php:422
477
  msgid ""
478
  "If you updated the Admin Columns plugin without prior knowledge of such "
479
  "changes, Please roll back to the latest"
480
- msgstr ""
481
 
482
- #: ../classes/settings.php:422
483
  msgid "version 1"
484
- msgstr ""
485
 
486
- #: ../classes/settings.php:422
487
- #, fuzzy
488
  msgid "of this plugin."
489
- msgstr "Kan du lide dette plugin?"
490
 
491
- #: ../classes/settings.php:428
492
  msgid "Changelog for"
493
- msgstr ""
494
 
495
- #: ../classes/settings.php:443
496
  msgid "Learn more"
497
- msgstr ""
498
 
499
- #: ../classes/settings.php:452
500
  msgid ""
501
  "New to v2, all Addons act as separate plugins which need to be individually "
502
  "downloaded, installed and updated."
503
- msgstr ""
504
 
505
- #: ../classes/settings.php:453
506
  msgid ""
507
- "This page will assist you in downloading and installing each available Addon."
508
- msgstr ""
 
509
 
510
- #: ../classes/settings.php:454
511
- #, fuzzy
512
  msgid "Available Addons"
513
- msgstr "Aktiver udvidelsesmoduler"
514
 
515
- #: ../classes/settings.php:459
516
  msgid "Name"
517
- msgstr ""
518
 
519
- #: ../classes/settings.php:460 ../classes/settings.php:468
520
- #: ../classes/settings.php:476
521
  msgid "Download"
522
- msgstr ""
523
-
524
- #: ../classes/settings.php:466
525
- #, fuzzy
526
- msgid "Sortorder Addon"
527
- msgstr "Rækkefølge"
528
-
529
- #: ../classes/settings.php:474
530
- #, fuzzy
531
- msgid "Custom Fields Addon"
532
- msgstr "Brugerdefineret felt"
533
 
534
- #: ../classes/settings.php:474
535
- msgid "This website is currently using custom field columns."
536
- msgstr ""
537
 
538
  #: ../classes/settings.php:483
539
  msgid "Installation"
540
- msgstr ""
541
 
542
  #: ../classes/settings.php:485
543
  msgid "For each Add-on available, please perform the following:"
544
- msgstr ""
545
 
546
  #: ../classes/settings.php:487
547
  msgid "Download the Addon plugin (.zip file) to your desktop"
548
- msgstr ""
549
 
550
  #: ../classes/settings.php:488
551
  msgid "Navigate to"
552
- msgstr ""
553
 
554
  #: ../classes/settings.php:488
555
  msgid "Plugins > Add New > Upload"
556
- msgstr ""
557
 
558
  #: ../classes/settings.php:489
559
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
560
- msgstr ""
561
 
562
  #: ../classes/settings.php:490
563
  msgid ""
564
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
565
- "link"
566
- msgstr ""
567
 
568
  #: ../classes/settings.php:491
569
  msgid "The Add-on is now installed and activated!"
570
- msgstr ""
571
 
572
  #: ../classes/settings.php:492
573
  #, php-format
574
  msgid ""
575
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
576
- msgstr ""
577
 
578
  #: ../classes/settings.php:502
579
- #, fuzzy
580
  msgid "Start using Admin Columns"
581
- msgstr "Admin Columns"
582
 
583
- #: ../classes/settings.php:579
584
- #, fuzzy
585
  msgid "Store settings"
586
- msgstr "Indstillinger"
587
 
588
- #: ../classes/settings.php:584
589
  msgid "Update"
590
- msgstr ""
591
 
592
- #: ../classes/settings.php:584
593
- #, fuzzy
594
  msgid "Publish"
595
- msgstr "Udgivet"
596
 
597
- #: ../classes/settings.php:588
598
- #, fuzzy, php-format
599
  msgid ""
600
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
601
- "\\' to delete, \\'Cancel\\' to stop"
602
- msgstr ""
603
- "Advarsel! Alle gemte admin kolonner data vil blive slettet. Dette kan ikke "
604
- "fortrydes. \\'OK\\' for at slette, \\'Annuller\\ ' for at stoppe"
605
 
606
- #: ../classes/settings.php:589 ../classes/column/comment/actions.php:86
607
  #: ../classes/column/post/actions.php:53
608
  msgid "Restore"
609
  msgstr "Gendan"
610
 
611
- #: ../classes/settings.php:589
612
- #, fuzzy
613
  msgid "columns"
614
- msgstr "Admin Columns"
615
 
616
- #: ../classes/settings.php:596
617
- #, fuzzy
618
- msgid "Get the Pro addon"
619
- msgstr "Få udvidelsesmodul"
620
 
621
- #: ../classes/settings.php:622
622
- #, fuzzy
623
- msgid "find more addons"
624
- msgstr "finde ud af mere"
 
 
 
 
 
 
 
625
 
626
- #: ../classes/settings.php:625
627
  #, php-format
628
- msgid "Check the <a href=\"%s\">Add-on section</a> for more details."
629
- msgstr ""
630
 
631
- #: ../classes/settings.php:633
632
- #, fuzzy
633
  msgid "Support"
634
- msgstr "Brug for hjælp?"
635
 
636
- #: ../classes/settings.php:636
637
- #, fuzzy
638
  msgid "Check the <strong>Help</strong> section in the top-right screen."
639
- msgstr ""
640
- "Du vil finde en kort oversigt under <strong>Hjælp</strong> i øverste højre "
641
- "af skærmen."
642
 
643
- #: ../classes/settings.php:638
644
  #, php-format
645
  msgid ""
646
  "For full documentation, bug reports, feature suggestions and other tips <a "
647
  "href='%s'>visit the Admin Columns website</a>"
648
- msgstr ""
649
 
650
- #: ../classes/settings.php:658
651
- #, fuzzy
652
  msgid "Drag and drop to reorder"
653
- msgstr "træk og slip for at omarrangere"
654
 
655
- #: ../classes/settings.php:661
656
- #, fuzzy
657
  msgid "Add Column"
658
- msgstr "Admin Columns"
659
 
660
- #: ../classes/settings.php:712
661
- #, fuzzy
662
  msgid "General Settings"
663
- msgstr "Indstillinger"
664
 
665
- #: ../classes/settings.php:713
666
  msgid "Customize your Admin Columns settings."
667
- msgstr ""
668
 
669
- #: ../classes/settings.php:720
670
- #, fuzzy
671
- msgid "Custom field settings"
672
- msgstr "Gendan standard indstillinger"
673
-
674
- #: ../classes/settings.php:724
675
  msgid "Show hidden custom fields. Default is <code>off</code>."
676
- msgstr ""
 
 
 
 
 
677
 
678
- #: ../classes/settings.php:731
679
  msgid "Save"
680
- msgstr ""
681
 
682
- #: ../classes/settings.php:771
683
- #, fuzzy
684
  msgid "Restore Settings"
685
- msgstr "Gendan standard indstillinger"
686
 
687
- #: ../classes/settings.php:772
688
  msgid "This will delete all column settings and restore the default settings."
689
- msgstr ""
690
- "Dette vil slette alle kolonneindstillinger og gendanne "
691
- "standardindstillingerne."
692
 
693
- #: ../classes/settings.php:778
694
  msgid "Restore default settings"
695
  msgstr "Gendan standard indstillinger"
696
 
697
- #: ../classes/settings.php:778
698
  msgid ""
699
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
700
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
701
- msgstr ""
702
- "Advarsel! Alle gemte admin kolonner data vil blive slettet. Dette kan ikke "
703
- "fortrydes. \\'OK\\' for at slette, \\'Annuller\\ ' for at stoppe"
704
 
705
- #: ../classes/storage_model.php:153
706
  msgid "settings succesfully restored."
707
- msgstr ""
708
 
709
- #: ../classes/storage_model.php:167
710
  msgid "No columns settings available."
711
- msgstr ""
712
 
713
- #: ../classes/storage_model.php:190
714
  #, php-format
715
  msgid "You are trying to store the same settings for %s."
716
- msgstr ""
717
 
718
- #: ../classes/storage_model.php:194
719
  #, php-format
720
  msgid "Settings for %s updated succesfully."
721
- msgstr ""
722
 
723
- #: ../classes/storage_model.php:564 ../classes/column/post/actions.php:64
724
  msgid "View"
725
  msgstr "Vis"
726
 
727
- #: ../classes/upgrade.php:48
728
  msgid "Upgrade"
729
- msgstr ""
730
 
731
- #: ../classes/upgrade.php:94
732
  msgid "requires a database upgrade"
733
- msgstr ""
734
 
735
- #: ../classes/upgrade.php:97
736
  msgid "why?"
737
- msgstr ""
738
 
739
- #: ../classes/upgrade.php:98
740
  msgid "Please"
741
- msgstr ""
742
 
743
- #: ../classes/upgrade.php:99
744
  msgid "backup your database"
745
- msgstr ""
746
 
747
- #: ../classes/upgrade.php:100
748
  msgid "then click"
749
- msgstr ""
750
 
751
- #: ../classes/upgrade.php:308
752
  msgid "Migrating Column Settings"
753
- msgstr ""
754
 
755
- #: ../classes/upgrade.php:344
756
  msgid "No Upgrade Required"
757
- msgstr ""
758
 
759
- #: ../classes/upgrade.php:345
760
  msgid "Return to welcome screen."
761
- msgstr ""
762
 
763
- #: ../classes/upgrade.php:361
764
  msgid "Upgrade Complete!"
765
- msgstr ""
766
 
767
- #: ../classes/upgrade.php:361
768
- #, fuzzy
769
  msgid "Return to settings."
770
- msgstr "Gendan standard indstillinger"
771
 
772
- #: ../classes/upgrade.php:362
773
  msgid "Error"
774
- msgstr ""
775
 
776
- #: ../classes/upgrade.php:363
777
  msgid ""
778
  "Sorry. Something went wrong during the upgrade process. Please report this "
779
  "on the support forum."
780
- msgstr ""
781
 
782
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
783
- #, fuzzy
784
  msgid "Media Library"
785
- msgstr "Mediebibliotek ikon"
786
 
787
  #: ../classes/column/custom-field.php:79
788
  msgid "Post Title (Post ID's)"
@@ -790,44 +697,43 @@ msgstr "Indlæg titel (Indlæg ID)"
790
 
791
  #: ../classes/column/custom-field.php:80
792
  msgid "Username (User ID's)"
793
- msgstr ""
794
 
795
  #: ../classes/column/custom-field.php:81
796
  msgid "Checkmark (true/false)"
797
- msgstr ""
798
 
799
- #: ../classes/column/custom-field.php:320
800
  msgid "Select your custom field."
801
- msgstr ""
802
 
803
- #: ../classes/column/custom-field.php:330
804
  msgid "No custom fields available."
805
- msgstr ""
806
 
807
- #: ../classes/column/custom-field.php:337
808
- #, fuzzy
809
  msgid "Field Type"
810
- msgstr "Felt"
811
 
812
- #: ../classes/column/custom-field.php:337
813
  msgid "This will determine how the value will be displayed."
814
- msgstr ""
815
 
816
- #: ../classes/column/custom-field.php:380
817
  msgid "Before"
818
- msgstr ""
819
 
820
- #: ../classes/column/custom-field.php:380
821
  msgid "This text will appear before the custom field value."
822
- msgstr ""
823
 
824
- #: ../classes/column/custom-field.php:386
825
  msgid "After"
826
- msgstr ""
827
 
828
- #: ../classes/column/custom-field.php:386
829
  msgid "This text will appear after the custom field value."
830
- msgstr ""
831
 
832
  #: ../classes/column/comment/actions.php:14
833
  #: ../classes/column/link/actions.php:14
@@ -892,9 +798,8 @@ msgid "Author url"
892
  msgstr "Forfatter webadresse"
893
 
894
  #: ../classes/column/comment/author.php:12
895
- #, fuzzy
896
  msgid "Author"
897
- msgstr "Forfatter IP"
898
 
899
  #: ../classes/column/comment/date-gmt.php:12
900
  msgid "Date GMT"
@@ -925,9 +830,7 @@ msgstr "Antal ord"
925
  msgid ""
926
  "You are about to delete this link '%s'\n"
927
  " 'Cancel' to stop, 'OK' to delete."
928
- msgstr ""
929
- "Du er ved at slette dette link '%s'\n"
930
- " 'Annuller' for at stoppe, 'OK' for at slette."
931
 
932
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
933
  msgid "Delete"
@@ -965,12 +868,11 @@ msgstr "Alt"
965
 
966
  #: ../classes/column/media/available-sizes.php:14
967
  msgid "Available Sizes"
968
- msgstr ""
969
 
970
  #: ../classes/column/media/available-sizes.php:37
971
- #, fuzzy
972
  msgid "full size"
973
- msgstr "Filstørrelse"
974
 
975
  #: ../classes/column/media/caption.php:12
976
  #: ../classes/column/media/exif-data.php:36
@@ -983,7 +885,7 @@ msgstr "Mål"
983
 
984
  #: ../classes/column/media/exif-data.php:12
985
  msgid "EXIF data"
986
- msgstr ""
987
 
988
  #: ../classes/column/media/exif-data.php:33
989
  msgid "Aperture"
@@ -1031,7 +933,7 @@ msgstr "Filstørrelse"
1031
 
1032
  #: ../classes/column/media/full-path.php:12
1033
  msgid "Full path"
1034
- msgstr ""
1035
 
1036
  #: ../classes/column/media/height.php:12
1037
  msgid "Height"
@@ -1091,19 +993,17 @@ msgstr "Vedhæftet fil"
1091
 
1092
  #: ../classes/column/post/author-name.php:12
1093
  msgid "Display Author As"
1094
- msgstr ""
1095
 
1096
  #: ../classes/column/post/author-name.php:33
1097
  msgid "Display Name"
1098
- msgstr ""
1099
 
1100
  #: ../classes/column/post/author-name.php:34
1101
- #, fuzzy
1102
  msgid "First Name"
1103
  msgstr "Fornavn"
1104
 
1105
  #: ../classes/column/post/author-name.php:35
1106
- #, fuzzy
1107
  msgid "Last Name"
1108
  msgstr "Efternavn"
1109
 
@@ -1114,28 +1014,27 @@ msgstr "Kaldenavn"
1114
 
1115
  #: ../classes/column/post/author-name.php:37
1116
  msgid "User Login"
1117
- msgstr ""
1118
 
1119
  #: ../classes/column/post/author-name.php:38
1120
  msgid "User Email"
1121
- msgstr ""
1122
 
1123
  #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1124
  msgid "User ID"
1125
  msgstr "Bruger ID"
1126
 
1127
  #: ../classes/column/post/author-name.php:40
1128
- #, fuzzy
1129
  msgid "First and Last Name"
1130
- msgstr "Fornavn"
1131
 
1132
  #: ../classes/column/post/author-name.php:106
1133
  msgid "This is the format of the author name."
1134
- msgstr ""
1135
 
1136
  #: ../classes/column/post/before-moretag.php:14
1137
  msgid "Before More Tag"
1138
- msgstr ""
1139
 
1140
  #: ../classes/column/post/comment-count.php:14
1141
  msgid "Comment count"
@@ -1143,16 +1042,15 @@ msgstr "Antal kommentare"
1143
 
1144
  #: ../classes/column/post/comment-count.php:30
1145
  msgid "Total"
1146
- msgstr ""
1147
 
1148
  #: ../classes/column/post/comment-count.php:32
1149
- #, fuzzy
1150
  msgid "Pending"
1151
- msgstr "afventer"
1152
 
1153
  #: ../classes/column/post/comment-count.php:33
1154
  msgid "Spam"
1155
- msgstr ""
1156
 
1157
  #: ../classes/column/post/comment-count.php:78
1158
  #: ../classes/column/post/comment-status.php:14
@@ -1161,7 +1059,7 @@ msgstr "Kommentar status"
1161
 
1162
  #: ../classes/column/post/comment-count.php:78
1163
  msgid "Select which comment status you like to display."
1164
- msgstr ""
1165
 
1166
  #: ../classes/column/post/featured-image.php:14
1167
  msgid "Featured Image"
@@ -1185,7 +1083,7 @@ msgstr "Sideskabelon"
1185
 
1186
  #: ../classes/column/post/parent.php:12
1187
  msgid "Parent"
1188
- msgstr ""
1189
 
1190
  #: ../classes/column/post/ping-status.php:14
1191
  msgid "Ping status"
@@ -1233,9 +1131,8 @@ msgid "Taxonomy"
1233
  msgstr "Taksonomi"
1234
 
1235
  #: ../classes/column/user/comment-count.php:14
1236
- #, fuzzy
1237
  msgid "Comment Count"
1238
- msgstr "Antal kommentare"
1239
 
1240
  #: ../classes/column/user/first-name.php:14
1241
  msgid "First name"
@@ -1246,13 +1143,12 @@ msgid "Last name"
1246
  msgstr "Efternavn"
1247
 
1248
  #: ../classes/column/user/post-count.php:14
1249
- #, fuzzy
1250
  msgid "Post Count"
1251
  msgstr "Antal indlæg"
1252
 
1253
  #: ../classes/column/user/post-count.php:92
1254
  msgid "Post Type"
1255
- msgstr ""
1256
 
1257
  #: ../classes/column/user/registered.php:14
1258
  msgid "Registered"
@@ -1268,170 +1164,8 @@ msgstr "Kommentarer"
1268
 
1269
  #: ../classes/storage_model/link.php:13
1270
  msgid "Links"
1271
- msgstr ""
1272
 
1273
  #: ../classes/storage_model/user.php:13
1274
- #, fuzzy
1275
  msgid "Users"
1276
- msgstr "Bruger ID"
1277
-
1278
- #~ msgid "This field can not be removed"
1279
- #~ msgstr "Dette felt kan ikke fjernes"
1280
-
1281
- #~ msgid "Icon"
1282
- #~ msgstr "Ikon"
1283
-
1284
- #~ msgid "Order"
1285
- #~ msgstr "Rækkefølge"
1286
-
1287
- #~ msgid "Upload paths"
1288
- #~ msgstr "Upload stier"
1289
-
1290
- #~ msgid "Aperture EXIF"
1291
- #~ msgstr "Aperture EXIF"
1292
-
1293
- #~ msgid "Credit EXIF"
1294
- #~ msgstr "Credit EXIF"
1295
-
1296
- #~ msgid "Camera EXIF"
1297
- #~ msgstr "Kamera EXIF"
1298
-
1299
- #~ msgid "Caption EXIF"
1300
- #~ msgstr "Caption EXIF"
1301
-
1302
- #~ msgid "Timestamp EXIF"
1303
- #~ msgstr "Timestamp EXIF"
1304
-
1305
- #~ msgid "Copyright"
1306
- #~ msgstr "Copyright"
1307
-
1308
- #~ msgid "Focal Length EXIF"
1309
- #~ msgstr "Focal Length EXIF"
1310
-
1311
- #~ msgid "ISO EXIF"
1312
- #~ msgstr "ISO EXIF"
1313
-
1314
- #~ msgid "Shutter Speed EXIF"
1315
- #~ msgstr "Shutter Speed EXIF"
1316
-
1317
- #~ msgid "Title EXIF"
1318
- #~ msgstr "Title EXIF"
1319
-
1320
- #~ msgid "Author Name"
1321
- #~ msgstr "Forfatterens navn"
1322
-
1323
- #~ msgid "This will make all of the new columns support sorting"
1324
- #~ msgstr "Dette vil gøre at alle de nye kolonner understøtter sortering"
1325
-
1326
- #~ msgid ""
1327
- #~ "By default WordPress let's you sort by title, date, comments and author. "
1328
- #~ "This will make you be able to <strong>sort by any column of any type!</"
1329
- #~ "strong>"
1330
- #~ msgstr ""
1331
- #~ "Som standard lader WordPress dig sortere efter titel, dato, kommentarer "
1332
- #~ "og forfatter. Dette vil gøre dig i stand til at <strong>sortere efter en "
1333
- #~ "kolonne af hvilken som helst type! </strong>"
1334
-
1335
- #~ msgid ""
1336
- #~ "Perfect for sorting your articles, media files, comments, links and users"
1337
- #~ msgstr ""
1338
- #~ "Perfekt til sortering dine artikler, mediefiler, kommentarer, links og "
1339
- #~ "brugere"
1340
-
1341
- #~ msgid "(columns that are added by other plugins are not supported)"
1342
- #~ msgstr "(kolonner, der er tilføjet af andre plugins understøttes ikke)"
1343
-
1344
- #~ msgid "Inactive"
1345
- #~ msgstr "Inaktiv"
1346
-
1347
- #~ msgid "Active"
1348
- #~ msgstr "Aktiv"
1349
-
1350
- #~ msgid "Fill in your activation code"
1351
- #~ msgstr "Udfyld din aktiveringskode"
1352
-
1353
- #~ msgid "Activate"
1354
- #~ msgstr "Aktiver"
1355
-
1356
- #~ msgid "Deactivate"
1357
- #~ msgstr "Deaktiver"
1358
-
1359
- #~ msgid ""
1360
- #~ "Add-ons can be unlocked by purchasing a license key. Each key can be used "
1361
- #~ "on multiple sites"
1362
- #~ msgstr ""
1363
- #~ "Udvidelsesmoduler kan låses op ved at købe en licens nøgle. Hver nøgle "
1364
- #~ "kan bruges på flere sites"
1365
-
1366
- #~ msgid "Addon"
1367
- #~ msgstr "Udvidelsesmodul"
1368
-
1369
- #~ msgid "Activation Code"
1370
- #~ msgstr "Aktiveringskode"
1371
-
1372
- #~ msgid "Enter your activation code"
1373
- #~ msgstr "Indtast din aktiveringskode"
1374
-
1375
- #~ msgid "Activation code unrecognised"
1376
- #~ msgstr "Aktiveringskode ukendt"
1377
-
1378
- #~ msgid "Codepress Admin Columns"
1379
- #~ msgstr "Codepress Admin Columns"
1380
-
1381
- #~ msgid ""
1382
- #~ "By default WordPress let's you only sort by title, date, comments and "
1383
- #~ "author."
1384
- #~ msgstr ""
1385
- #~ "Som standard lader WordPress dig kun sortere efter titel, dato, "
1386
- #~ "kommentarer og forfatter."
1387
-
1388
- #~ msgid ""
1389
- #~ "Make <strong>all columns</strong> of <strong>all types</strong> within "
1390
- #~ "the plugin support sorting &#8212; with the sorting addon."
1391
- #~ msgstr ""
1392
- #~ "Gør <strong>alle kolonner</strong> af <strong>alle typer</strong> inden "
1393
- #~ "plugin støtte sortering &#8212; med sortering addon."
1394
-
1395
- #~ msgid "Why not do any or all of the following"
1396
- #~ msgstr "Hvorfor ikke gøre en eller alle af følgende"
1397
-
1398
- #~ msgid "Link to it so other folks can find out about it."
1399
- #~ msgstr "Link til det, så andre folk kan finde ud af det."
1400
-
1401
- #~ msgid "Give it a 5 star rating on WordPress.org."
1402
- #~ msgstr "Giv det et 5-stjernet rating på WordPress.org."
1403
-
1404
- #~ msgid "Donate a token of your appreciation."
1405
- #~ msgstr "Donere som et udtryk for din påskønnelse."
1406
-
1407
- #~ msgid ""
1408
- #~ "If you are having problems with this plugin, please talk about them in "
1409
- #~ "the <a href=\"%s\">Support forums</a> or send me an email %s."
1410
- #~ msgstr ""
1411
- #~ "Hvis du har problemer med dette plugin, fortæl om det venligst i <a href="
1412
- #~ "\"%s\">Support Forums</a> eller send mig en e-mail %s."
1413
-
1414
- #~ msgid ""
1415
- #~ "If you're sure you've found a bug, or have a feature request, please <a "
1416
- #~ "href='%s'>submit your feedback</a>."
1417
- #~ msgstr ""
1418
- #~ "Hvis du er sikker på at du har fundet en fejl, eller har forslag til "
1419
- #~ "funktioner, bedes du <a href='%s'>sende din feedback</a>."
1420
-
1421
- #~ msgid "Restore defaults"
1422
- #~ msgstr "Gendan standard"
1423
-
1424
- #~ msgid "original"
1425
- #~ msgstr "original"
1426
-
1427
- #~ msgid "Standard"
1428
- #~ msgstr "Standard"
1429
-
1430
- #~ msgid "approved"
1431
- #~ msgstr "godkendt"
1432
-
1433
- #~ msgid "spam"
1434
- #~ msgstr "spam"
1435
-
1436
- #~ msgid "trash"
1437
- #~ msgstr "papirkurv"
1
+ #
2
+ # Translators:
3
+ # mikkelbreum <mikkel@wpkitchen.com>, 2013
4
+ # iosoftgame <support@iosoftgame.com>, 2013
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2013-08-26 16:51+0100\n"
10
+ "PO-Revision-Date: 2013-09-02 11:25+0000\n"
11
+ "Last-Translator: mikkelbreum <mikkel@wpkitchen.com>\n"
12
+ "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/admin-columns/language/da_DK/)\n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: da_DK\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
18
  "X-Generator: Poedit 1.5.7\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
+ "X-Poedit-SourceCharset: utf-8\n"
24
 
25
+ #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
  msgid "Settings"
27
  msgstr "Indstillinger"
28
 
29
  #: ../codepress-admin-columns.php:350
 
30
  msgid "Edit columns"
31
+ msgstr "Rediger kolonner"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
  #: ../classes/column.php:479
34
  msgid "Thumbnail"
35
+ msgstr "Miniaturebillede"
36
 
37
  #: ../classes/column.php:480
38
  msgid "Medium"
39
+ msgstr "Medium"
40
 
41
  #: ../classes/column.php:481
 
42
  msgid "Large"
43
+ msgstr "Stor"
44
 
45
  #: ../classes/column.php:482
46
  msgid "Full"
47
+ msgstr "Fuld"
48
 
49
+ #: ../classes/column.php:774
 
50
  msgid "Date Format"
51
+ msgstr "Datoformat"
52
 
53
+ #: ../classes/column.php:775
54
  msgid "This will determine how the date will be displayed."
55
+ msgstr "Dette vil bestmme hvordan datoen vil blive vist."
56
 
57
+ #: ../classes/column.php:781
58
  msgid "Example:"
59
+ msgstr "Eksempel:"
60
 
61
+ #: ../classes/column.php:783
62
  #, php-format
63
  msgid ""
64
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
65
  "date format here</a>."
66
+ msgstr "Lad være tomt for at benytte WordPress' datoformat, ændre dit <a href=\"%s\">standard datoformat her</a>."
67
 
68
+ #: ../classes/column.php:784
69
  msgid "Documentation on date and time formatting."
70
+ msgstr "Dokumentation for dato- og tidsformattering."
71
 
72
+ #: ../classes/column.php:801
 
73
  msgid "Excerpt length"
74
+ msgstr "Længden for uddrag"
75
 
76
+ #: ../classes/column.php:802
77
  msgid "Number of words"
78
+ msgstr "Antal ord"
79
 
80
+ #: ../classes/column.php:824
 
81
  msgid "Preview size"
82
+ msgstr "Forhåndsvisningsstørrelse"
83
 
84
+ #: ../classes/column.php:841 ../classes/column.php:897
85
  msgid "Custom"
86
  msgstr "Brugerdefineret"
87
 
88
+ #: ../classes/column.php:844
 
89
  msgid "width"
90
+ msgstr "bredde"
91
 
92
+ #: ../classes/column.php:847
 
93
  msgid "height"
94
+ msgstr "højde"
95
 
96
+ #: ../classes/column.php:898 ../classes/settings.php:224
97
  #: ../classes/column/custom-field.php:72
98
  msgid "Default"
99
  msgstr "Standard"
100
 
101
+ #: ../classes/column.php:923 ../classes/column.php:984
102
  #: ../classes/column/user/actions.php:65
103
  msgid "Remove"
104
  msgstr "Fjern"
105
 
106
+ #: ../classes/column.php:942
107
  msgid "Type"
108
+ msgstr "Type"
109
 
110
+ #: ../classes/column.php:942
111
  msgid "Choose a column type."
112
+ msgstr "Vælg en kolonne type."
113
 
114
+ #: ../classes/column.php:952
115
  msgid "Label"
116
+ msgstr "Etikette"
117
 
118
+ #: ../classes/column.php:952
119
  msgid "This is the name which will appear as the column header."
120
+ msgstr "Dette er navnet, som vil blive vist i kolonne toppen."
121
 
122
+ #: ../classes/column.php:959 ../classes/column/media/width.php:12
123
  msgid "Width"
124
  msgstr "Bredde"
125
 
126
+ #: ../classes/column.php:961 ../classes/column.php:962
127
  msgid "default"
128
  msgstr "standard"
129
 
130
+ #: ../classes/settings.php:68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  msgid "Admin Columns Settings"
132
+ msgstr "Admin Kolonne Indstillinger"
133
 
134
+ #: ../classes/settings.php:68 ../classes/settings.php:534
135
+ #: ../classes/upgrade.php:89
136
  msgid "Admin Columns"
137
  msgstr "Admin Columns"
138
 
139
+ #: ../classes/settings.php:129
140
+ #, php-format
141
+ msgid "%s column is already present and can not be duplicated."
142
+ msgstr "%s kolonne er allerede til stede og kan ikke duplikeres."
143
+
144
+ #: ../classes/settings.php:184
145
  msgid "Default settings succesfully restored."
146
+ msgstr "Standard indstillinger gendannet med success."
147
 
148
+ #: ../classes/settings.php:202 ../classes/settings.php:457
 
149
  msgid "Overview"
150
+ msgstr "Overblik"
151
 
152
+ #: ../classes/settings.php:205
153
  msgid ""
154
  "This plugin is for adding and removing additional columns to the "
155
  "administration screens for post(types), pages, media library, comments, "
156
  "links and users. Change the column's label and reorder them."
157
+ msgstr "Dette plugin er til at tilføje og fjerne tillægskolonner på administrationsskærme for indlægs(typer), sider, mediebibliotek, kommentarer, links og brugere. Ændre kolonnens etikette og rækkefølge."
158
 
159
+ #: ../classes/settings.php:208
160
  msgid "Basics"
161
+ msgstr "Grundlæggende"
 
 
 
 
 
162
 
163
+ #: ../classes/settings.php:210
 
 
 
 
 
 
 
164
  msgid "Change order"
165
+ msgstr "Ændre rækkefølge"
166
 
167
+ #: ../classes/settings.php:211
168
  msgid ""
169
  "By dragging the columns you can change the order which they will appear in."
170
+ msgstr "Ved at trække i kolonnerne kan du ændre rækkefølgen, som de bliver vist i."
171
 
172
+ #: ../classes/settings.php:212
173
  msgid "Change label"
174
+ msgstr "Ændre etikette"
175
 
176
+ #: ../classes/settings.php:213
177
  msgid ""
178
  "By clicking on the triangle you will see the column options. Here you can "
179
  "change each label of the columns heading."
180
+ msgstr "Ved at klikke på trekanten vil du se kolonne valgmuligheder. Her kan du vælge hver etikette for kolonnernes overskrift. "
181
 
182
+ #: ../classes/settings.php:214
183
  msgid "Change column width"
184
+ msgstr "Ændre kolonnebredden"
185
 
186
+ #: ../classes/settings.php:215
187
  msgid ""
188
  "By clicking on the triangle you will see the column options. By using the "
189
+ "draggable slider you can set the width of the columns in percentages."
190
+ msgstr "Tryk på trekanten for at se indstillingsmulighederne. Benyt slideren for at indstille kolonnebredden."
191
 
192
+ #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
193
+ #: ../classes/column/custom-field.php:324
194
  msgid "Custom Field"
195
  msgstr "Brugerdefineret felt"
196
 
197
+ #: ../classes/settings.php:221
 
198
  msgid "'Custom Field' column"
199
+ msgstr "'Brugerdefineret felt' kolonne"
200
 
201
+ #: ../classes/settings.php:222
202
  msgid ""
203
  "The custom field colum uses the custom fields from posts and users. There "
204
  "are 10 types which you can set."
205
+ msgstr "Den 'brugerdefineret felt' kolonne benytter brugerdefineret felter fra indlæg og brugere. Der er 10 typer som du kan sætte."
206
 
207
+ #: ../classes/settings.php:224
208
  msgid ""
209
  "Value: Can be either a string or array. Arrays will be flattened and values "
210
  "are seperated by a ',' comma."
211
+ msgstr "Værdi: Kan være enten en tekststreng eller en tabel. Tabeller vil blive fladtrykt og værdier separeret ved et ',' komma."
212
 
213
+ #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
214
  #: ../classes/column/link/image.php:12
215
  msgid "Image"
216
  msgstr "Billede"
217
 
218
+ #: ../classes/settings.php:225
219
  msgid ""
220
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
221
  "comma )."
222
+ msgstr "Værdi: skal indeholde en billede URL eller vedhæftnings ID'er ( separeret ved et ',' komma )."
223
 
224
+ #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
225
  #: ../classes/column/comment/excerpt.php:13
226
  #: ../classes/column/post/excerpt.php:13
227
  msgid "Excerpt"
228
  msgstr "Uddrag"
229
 
230
+ #: ../classes/settings.php:226
231
  msgid "Value: This will show the first 20 words of the Post content."
232
+ msgstr "Værdi: Dette vil vise de første 20 ord af indlæggets indhold."
233
 
234
+ #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
235
  msgid "Multiple Values"
236
  msgstr "Flere værdier"
237
 
238
+ #: ../classes/settings.php:227
239
  msgid ""
240
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
241
+ "array."
242
+ msgstr "Værdi: skal være en tabel. Dette vil fladtrykke enhver ( multi dimensionel ) tabel."
243
 
244
+ #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
245
  msgid "Numeric"
246
  msgstr "Numerisk"
247
 
248
+ #: ../classes/settings.php:228
249
  msgid ""
250
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
251
  "for sorting, so you can sort your posts on numeric (custom field) values."
252
+ msgstr "Værdi: Kun tal.<br/>Hvis du har sorteringsudvidelsen vil dette blive brugt til sortering, så du kan sortere dine indlæg på numeriske (brugerdefineret felt) værdier."
253
 
254
+ #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
255
  #: ../classes/column/comment/date.php:12
256
  msgid "Date"
257
  msgstr "Dato"
258
 
259
+ #: ../classes/settings.php:229
260
  #, php-format
261
  msgid ""
262
  "Value: Can be unix time stamp or a date format as described in the <a "
263
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
264
  "href='%s'>general settings</a> page."
265
+ msgstr "Værdi: Kan være unix tidsstempel eller et datoformat som beskrevet i <a href='%s'>Codex</a>. Du kan ændre det viste datoformat på <a href='%s'>generalle indstillinger</a> siden."
266
 
267
+ #: ../classes/settings.php:230
 
268
  msgid "Post Titles"
269
+ msgstr "Indlægstitler"
270
 
271
+ #: ../classes/settings.php:230
272
  msgid "Value: can be one or more Post ID's (seperated by ',')."
273
+ msgstr "Værdi: kan være ét eller flere indlægs ID'er (separeret med ',')"
274
 
275
+ #: ../classes/settings.php:231
276
  msgid "Usernames"
277
+ msgstr "Brugernavne"
278
 
279
+ #: ../classes/settings.php:231
280
  msgid "Value: can be one or more User ID's (seperated by ',')."
281
+ msgstr "Værdi: kan være ét eller flere bruger ID'er (separeret med ',')"
282
 
283
+ #: ../classes/settings.php:232
284
  msgid "Checkmark"
285
+ msgstr "Flueben"
286
 
287
+ #: ../classes/settings.php:232
288
  msgid "Value: should be a 1 (one) or 0 (zero)."
289
+ msgstr "Værdi: skal være 1 (en) eller 0 (nul)."
290
 
291
+ #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
292
  msgid "Color"
293
+ msgstr "Farve"
294
 
295
+ #: ../classes/settings.php:233
296
  msgid "Value: hex value color, such as #808080."
297
+ msgstr "Værdi: hex værdi farve, for eksempel #808080."
298
 
299
+ #: ../classes/settings.php:377
 
300
  msgid "Welcome to Admin Columns"
301
+ msgstr "Velkommen til Admin Columns"
302
 
303
+ #: ../classes/settings.php:380
304
  msgid "Thank you for updating to the latest version!"
305
+ msgstr "Tak fordi du opdaterede til den seneste version!"
306
 
307
+ #: ../classes/settings.php:381
308
  msgid ""
309
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
310
  "like it."
311
+ msgstr "Admin Columns er mere poleret og behageligt end nogensinde før. Vi håber du kan lide det."
312
 
313
+ #: ../classes/settings.php:386
314
  msgid "What’s New"
315
+ msgstr "Hvad er nyt"
316
 
317
+ #: ../classes/settings.php:387
318
  msgid "Changelog"
319
+ msgstr "Ændringslog"
320
 
321
+ #: ../classes/settings.php:389
322
  msgid "Download Addons"
323
+ msgstr "Hent udvidelser"
324
 
325
+ #: ../classes/settings.php:395
326
  msgid "Addons"
327
  msgstr "Udvidelsesmoduler"
328
 
329
+ #: ../classes/settings.php:397
330
  msgid ""
331
  "Addons are now activated by downloading and installing individual plugins. "
332
  "Although these plugins will not be hosted on the wordpress.org repository, "
333
  "each Add-on will continue to receive updates in the usual way."
334
+ msgstr "Udvidelser aktiveres nu ved hente og installere individuelle plugins. Selvom disse plugins ikke vil blive hosted på wordpress.org, vil disse udvidelser fortsat modtage opdatering på sædvanlig vis."
 
 
 
 
 
335
 
336
+ #: ../classes/settings.php:400
337
+ msgid ""
338
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
339
+ msgstr "Denne hjemmeside benytter Sortorder udvidelse. Denne udvidelse skal hentes."
 
 
 
 
 
 
 
 
 
340
 
341
  #: ../classes/settings.php:403
342
+ msgid "Addons are seperate plugins which need to be downloaded."
343
+ msgstr "Udvidelser er separate plugins, der skal hentes."
344
 
345
  #: ../classes/settings.php:403
346
  msgid "Download your Addons"
347
+ msgstr "Hent dine udvidelser"
348
 
349
  #: ../classes/settings.php:409
350
+ msgid "This website does not use add-ons"
351
+ msgstr "Denne hjemmeside benytter ikke udvidelser"
352
+
353
+ #: ../classes/settings.php:409
354
+ msgid "See our website for the Pro-addon."
355
+ msgstr "Se vores hjemmeside for Pro udvidelsen."
356
+
357
+ #: ../classes/settings.php:416
358
  msgid "Important"
359
+ msgstr "Vigtigt"
360
 
361
+ #: ../classes/settings.php:418
 
362
  msgid "Database Changes"
363
+ msgstr "Database ændringer"
364
 
365
+ #: ../classes/settings.php:419
366
  msgid ""
367
+ "The database has been changed between versions 1 and 2. But we made sure you"
368
+ " can still roll back to version 1x without any issues."
369
+ msgstr "Databasen er blevet ændret mellem version 1 og 2. Vi har dog sikret at du stadig kan gå tilbage til version 1x uden nogen problemer."
370
 
371
+ #: ../classes/settings.php:422
372
  msgid "Make sure you backup your database and then click"
373
+ msgstr "Vær sikker på at du tager backup af din database og derefter klikker"
374
 
375
+ #: ../classes/settings.php:422 ../classes/upgrade.php:97
376
  msgid "Upgrade Database"
377
+ msgstr "Opgradér database"
378
 
379
+ #: ../classes/settings.php:425
380
  msgid "Potential Issues"
381
+ msgstr "Mulige problemer"
382
 
383
+ #: ../classes/settings.php:426
384
  msgid ""
385
+ "Do to the sizable refactoring the code, surounding Addons and "
386
+ "action/filters, your website may not operate correctly. It is important that"
387
+ " you read the full"
388
+ msgstr "På grund af den betydelige omstrukturering af koden omkring udvidelser og action/filters, vil din hjemmeside måske ikke fungerer korrekt. Det er vigtigt at du læser den fulde"
389
 
390
+ #: ../classes/settings.php:426
391
  msgid "Migrating from v1 to v2"
392
+ msgstr "Migration fra v1 til v2"
393
 
394
+ #: ../classes/settings.php:426
395
  msgid "guide to view the full list of changes."
396
+ msgstr "guide for at vise den fulde liste med ændringer."
397
 
398
+ #: ../classes/settings.php:426
399
  #, php-format
400
  msgid ""
401
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
402
  "can fix it in the next release."
403
+ msgstr "Når du har fundet en fejl, venligst <a href=\"%s\">rapporter dem til os</a> så vi kan rette det inden næste udgivelse."
404
 
405
+ #: ../classes/settings.php:429
406
  msgid "Important!"
407
+ msgstr "Vigtigt!"
408
 
409
+ #: ../classes/settings.php:429
410
  msgid ""
411
  "If you updated the Admin Columns plugin without prior knowledge of such "
412
  "changes, Please roll back to the latest"
413
+ msgstr "Hvis du har opdateret Admin Columns plugin uden tidligere viden om sådanne ændringer, venligst gå tilbage til den seneste"
414
 
415
+ #: ../classes/settings.php:429
416
  msgid "version 1"
417
+ msgstr "version 1"
418
 
419
+ #: ../classes/settings.php:429
 
420
  msgid "of this plugin."
421
+ msgstr "af dette plugin."
422
 
423
+ #: ../classes/settings.php:435
424
  msgid "Changelog for"
425
+ msgstr "Ændringslog for"
426
 
427
+ #: ../classes/settings.php:450
428
  msgid "Learn more"
429
+ msgstr "Lær mere"
430
 
431
+ #: ../classes/settings.php:459
432
  msgid ""
433
  "New to v2, all Addons act as separate plugins which need to be individually "
434
  "downloaded, installed and updated."
435
+ msgstr "Nyt i v2, alle udvidelser fungerer som separate plugins, der hver skal hentes, installeres og opdateres."
436
 
437
+ #: ../classes/settings.php:460
438
  msgid ""
439
+ "This page will assist you in downloading and installing each available "
440
+ "Addon."
441
+ msgstr "Denne side vil hjælpe dig med at hente og installere hver tilgængelig udvidelse."
442
 
443
+ #: ../classes/settings.php:461
 
444
  msgid "Available Addons"
445
+ msgstr "Tilgængelige udvidelser"
446
 
447
+ #: ../classes/settings.php:466
448
  msgid "Name"
449
+ msgstr "Navn"
450
 
451
+ #: ../classes/settings.php:467 ../classes/settings.php:475
 
452
  msgid "Download"
453
+ msgstr "Hent"
 
 
 
 
 
 
 
 
 
 
454
 
455
+ #: ../classes/settings.php:473
456
+ msgid "Pro Add-on (includes Sortorder add-on)"
457
+ msgstr "Pro udvidelse (inkluderer Sortorder udvidelse)"
458
 
459
  #: ../classes/settings.php:483
460
  msgid "Installation"
461
+ msgstr "Installation"
462
 
463
  #: ../classes/settings.php:485
464
  msgid "For each Add-on available, please perform the following:"
465
+ msgstr "For hver tilgængelig udvidelse, gør venligst følgende:"
466
 
467
  #: ../classes/settings.php:487
468
  msgid "Download the Addon plugin (.zip file) to your desktop"
469
+ msgstr "Hent udvidelsesplugin (.zip fil) til dit skrivebord"
470
 
471
  #: ../classes/settings.php:488
472
  msgid "Navigate to"
473
+ msgstr "Gå til"
474
 
475
  #: ../classes/settings.php:488
476
  msgid "Plugins > Add New > Upload"
477
+ msgstr "Plugins > Tilføj nyt > Upload"
478
 
479
  #: ../classes/settings.php:489
480
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
481
+ msgstr "Brug uploadfunktionen til at gennemse, vælge og installere din udvidelse (.zip fil)"
482
 
483
  #: ../classes/settings.php:490
484
  msgid ""
485
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
486
+ " link"
487
+ msgstr "Når pluginet er blevet uploadet og installeret, klik på 'Aktiver plugin' linket"
488
 
489
  #: ../classes/settings.php:491
490
  msgid "The Add-on is now installed and activated!"
491
+ msgstr "Udvidelsen er nu installeret og aktiveret!"
492
 
493
  #: ../classes/settings.php:492
494
  #, php-format
495
  msgid ""
496
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
497
+ msgstr "For automatisk opdatering, sikre at du har <a href='%s'>indtastet din licensnøgle</a>."
498
 
499
  #: ../classes/settings.php:502
 
500
  msgid "Start using Admin Columns"
501
+ msgstr "Gå i gang med at bruge Admin Columns"
502
 
503
+ #: ../classes/settings.php:580
 
504
  msgid "Store settings"
505
+ msgstr "Gem indstillinger"
506
 
507
+ #: ../classes/settings.php:585
508
  msgid "Update"
509
+ msgstr "Opdater"
510
 
511
+ #: ../classes/settings.php:585
 
512
  msgid "Publish"
513
+ msgstr "Udgiv"
514
 
515
+ #: ../classes/settings.php:589
516
+ #, php-format
517
  msgid ""
518
+ "Warning! The %s columns data will be deleted. This cannot be undone. "
519
+ "\\'OK\\' to delete, \\'Cancel\\' to stop"
520
+ msgstr "Advarsel! %s kolonnernes data vil blive slettet. Dette kan ikke fortrydes. \\'OK\\' for at slette, \\'Annuller\\' for at afbryde"
 
 
521
 
522
+ #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
523
  #: ../classes/column/post/actions.php:53
524
  msgid "Restore"
525
  msgstr "Gendan"
526
 
527
+ #: ../classes/settings.php:590
 
528
  msgid "columns"
529
+ msgstr "kolonner"
530
 
531
+ #: ../classes/settings.php:600
532
+ msgid "Get the Pro Add-on"
533
+ msgstr " Pro udvidelsen"
 
534
 
535
+ #: ../classes/settings.php:604
536
+ msgid "Add Sorting"
537
+ msgstr "Tilføj sortering"
538
+
539
+ #: ../classes/settings.php:605
540
+ msgid "Add Filtering"
541
+ msgstr "Tilføj filtrering"
542
+
543
+ #: ../classes/settings.php:606
544
+ msgid "Add Import/Export"
545
+ msgstr "Tilføj import/eksport"
546
 
547
+ #: ../classes/settings.php:609
548
  #, php-format
549
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
550
+ msgstr "Tjek <a href=\"%s\">Pro udvidelsen</a> for flere detaljer!"
551
 
552
+ #: ../classes/settings.php:617
 
553
  msgid "Support"
554
+ msgstr "Hjælp"
555
 
556
+ #: ../classes/settings.php:620
 
557
  msgid "Check the <strong>Help</strong> section in the top-right screen."
558
+ msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
 
 
559
 
560
+ #: ../classes/settings.php:622
561
  #, php-format
562
  msgid ""
563
  "For full documentation, bug reports, feature suggestions and other tips <a "
564
  "href='%s'>visit the Admin Columns website</a>"
565
+ msgstr "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips <a href='%s'>besøg Admin Columns hjemmeside</a>"
566
 
567
+ #: ../classes/settings.php:642
 
568
  msgid "Drag and drop to reorder"
569
+ msgstr "Træk og slip for at ændre rækkefølgen"
570
 
571
+ #: ../classes/settings.php:645
 
572
  msgid "Add Column"
573
+ msgstr "Tilføj kolonne"
574
 
575
+ #: ../classes/settings.php:696
 
576
  msgid "General Settings"
577
+ msgstr "Generelle indstillinger"
578
 
579
+ #: ../classes/settings.php:697
580
  msgid "Customize your Admin Columns settings."
581
+ msgstr "Tilpas din Admin Columns indstillinger."
582
 
583
+ #: ../classes/settings.php:710
 
 
 
 
 
584
  msgid "Show hidden custom fields. Default is <code>off</code>."
585
+ msgstr "Vis skjulte brugerdefineret felter. Standard er <code>fra</code>."
586
+
587
+ #: ../classes/settings.php:716
588
+ msgid ""
589
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
590
+ msgstr "Vis \"Rediger kolonner\" knap på administrator skærme. Standard er <code>fra</code>."
591
 
592
+ #: ../classes/settings.php:723
593
  msgid "Save"
594
+ msgstr "Gem"
595
 
596
+ #: ../classes/settings.php:763
 
597
  msgid "Restore Settings"
598
+ msgstr "Gendan indstillinger"
599
 
600
+ #: ../classes/settings.php:764
601
  msgid "This will delete all column settings and restore the default settings."
602
+ msgstr "Dette vil slette alle kolonneindstillinger og gendanne standardindstillingerne."
 
 
603
 
604
+ #: ../classes/settings.php:770
605
  msgid "Restore default settings"
606
  msgstr "Gendan standard indstillinger"
607
 
608
+ #: ../classes/settings.php:770
609
  msgid ""
610
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
611
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
612
+ msgstr "Advarsel! Alle gemte admin kolonner data vil blive slettet. Dette kan ikke fortrydes. \\'OK\\' for at slette, \\'Annuller\\ ' for at stoppe"
 
 
613
 
614
+ #: ../classes/storage_model.php:167
615
  msgid "settings succesfully restored."
616
+ msgstr "indstillinger er gendannet med success."
617
 
618
+ #: ../classes/storage_model.php:181
619
  msgid "No columns settings available."
620
+ msgstr "Ingen kolonneindstillinger tilgængelige."
621
 
622
+ #: ../classes/storage_model.php:204
623
  #, php-format
624
  msgid "You are trying to store the same settings for %s."
625
+ msgstr "Du forsøger at gemme samme indstillinger for %s."
626
 
627
+ #: ../classes/storage_model.php:208
628
  #, php-format
629
  msgid "Settings for %s updated succesfully."
630
+ msgstr "Indstillinger for %s er opdateret med success."
631
 
632
+ #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
633
  msgid "View"
634
  msgstr "Vis"
635
 
636
+ #: ../classes/upgrade.php:45
637
  msgid "Upgrade"
638
+ msgstr "Opgrader"
639
 
640
+ #: ../classes/upgrade.php:90
641
  msgid "requires a database upgrade"
642
+ msgstr "en opgradering af databasen er påkrævet"
643
 
644
+ #: ../classes/upgrade.php:93
645
  msgid "why?"
646
+ msgstr "hvorfor?"
647
 
648
+ #: ../classes/upgrade.php:94
649
  msgid "Please"
650
+ msgstr "Venligst"
651
 
652
+ #: ../classes/upgrade.php:95
653
  msgid "backup your database"
654
+ msgstr "tag backup af din database"
655
 
656
+ #: ../classes/upgrade.php:96
657
  msgid "then click"
658
+ msgstr "derefter klik"
659
 
660
+ #: ../classes/upgrade.php:304
661
  msgid "Migrating Column Settings"
662
+ msgstr "Migration af kolonne indstillinger"
663
 
664
+ #: ../classes/upgrade.php:340
665
  msgid "No Upgrade Required"
666
+ msgstr "Ingen opgradering er påkrævet"
667
 
668
+ #: ../classes/upgrade.php:341
669
  msgid "Return to welcome screen."
670
+ msgstr "Gå tilbage til velkomstskærmen."
671
 
672
+ #: ../classes/upgrade.php:359
673
  msgid "Upgrade Complete!"
674
+ msgstr "Opgradering fuldført!"
675
 
676
+ #: ../classes/upgrade.php:359
 
677
  msgid "Return to settings."
678
+ msgstr " tilbage til indstillinger."
679
 
680
+ #: ../classes/upgrade.php:360
681
  msgid "Error"
682
+ msgstr "Fejl"
683
 
684
+ #: ../classes/upgrade.php:361
685
  msgid ""
686
  "Sorry. Something went wrong during the upgrade process. Please report this "
687
  "on the support forum."
688
+ msgstr "Beklager. Noget gik galt i opgraderingsprocessen. Venligst rapporter dette i support forummet."
689
 
690
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
 
691
  msgid "Media Library"
692
+ msgstr "Mediebibliotek"
693
 
694
  #: ../classes/column/custom-field.php:79
695
  msgid "Post Title (Post ID's)"
697
 
698
  #: ../classes/column/custom-field.php:80
699
  msgid "Username (User ID's)"
700
+ msgstr "Brugernavn (Bruger ID'er)"
701
 
702
  #: ../classes/column/custom-field.php:81
703
  msgid "Checkmark (true/false)"
704
+ msgstr "Flueben (ja/nej)"
705
 
706
+ #: ../classes/column/custom-field.php:324
707
  msgid "Select your custom field."
708
+ msgstr "Vælg dit brugerdefineret felt."
709
 
710
+ #: ../classes/column/custom-field.php:334
711
  msgid "No custom fields available."
712
+ msgstr "Ingen brugerdefineret felter tilgængelige."
713
 
714
+ #: ../classes/column/custom-field.php:341
 
715
  msgid "Field Type"
716
+ msgstr "Felttype"
717
 
718
+ #: ../classes/column/custom-field.php:341
719
  msgid "This will determine how the value will be displayed."
720
+ msgstr "Dette afgør hvordan værdien vil blive vist."
721
 
722
+ #: ../classes/column/custom-field.php:384
723
  msgid "Before"
724
+ msgstr "Før"
725
 
726
+ #: ../classes/column/custom-field.php:384
727
  msgid "This text will appear before the custom field value."
728
+ msgstr "Denne tekst vil blive vist før den brugerdefineret værdi."
729
 
730
+ #: ../classes/column/custom-field.php:390
731
  msgid "After"
732
+ msgstr "Efter"
733
 
734
+ #: ../classes/column/custom-field.php:390
735
  msgid "This text will appear after the custom field value."
736
+ msgstr "Denne tekst vil blive vist efter den brugerdefineret værdi."
737
 
738
  #: ../classes/column/comment/actions.php:14
739
  #: ../classes/column/link/actions.php:14
798
  msgstr "Forfatter webadresse"
799
 
800
  #: ../classes/column/comment/author.php:12
 
801
  msgid "Author"
802
+ msgstr "Forfatter"
803
 
804
  #: ../classes/column/comment/date-gmt.php:12
805
  msgid "Date GMT"
830
  msgid ""
831
  "You are about to delete this link '%s'\n"
832
  " 'Cancel' to stop, 'OK' to delete."
833
+ msgstr "Du er ved at slette dette link '%s'\n 'Annuller' for at stoppe, 'OK' for at slette."
 
 
834
 
835
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
836
  msgid "Delete"
868
 
869
  #: ../classes/column/media/available-sizes.php:14
870
  msgid "Available Sizes"
871
+ msgstr "Tilgængelige størrelser"
872
 
873
  #: ../classes/column/media/available-sizes.php:37
 
874
  msgid "full size"
875
+ msgstr "fuld størrelse"
876
 
877
  #: ../classes/column/media/caption.php:12
878
  #: ../classes/column/media/exif-data.php:36
885
 
886
  #: ../classes/column/media/exif-data.php:12
887
  msgid "EXIF data"
888
+ msgstr "EXIF data"
889
 
890
  #: ../classes/column/media/exif-data.php:33
891
  msgid "Aperture"
933
 
934
  #: ../classes/column/media/full-path.php:12
935
  msgid "Full path"
936
+ msgstr "Fuld sti"
937
 
938
  #: ../classes/column/media/height.php:12
939
  msgid "Height"
993
 
994
  #: ../classes/column/post/author-name.php:12
995
  msgid "Display Author As"
996
+ msgstr "Vis forfatter som"
997
 
998
  #: ../classes/column/post/author-name.php:33
999
  msgid "Display Name"
1000
+ msgstr "Offentligt navn"
1001
 
1002
  #: ../classes/column/post/author-name.php:34
 
1003
  msgid "First Name"
1004
  msgstr "Fornavn"
1005
 
1006
  #: ../classes/column/post/author-name.php:35
 
1007
  msgid "Last Name"
1008
  msgstr "Efternavn"
1009
 
1014
 
1015
  #: ../classes/column/post/author-name.php:37
1016
  msgid "User Login"
1017
+ msgstr "Brugerlogin"
1018
 
1019
  #: ../classes/column/post/author-name.php:38
1020
  msgid "User Email"
1021
+ msgstr "Bruger e-mail"
1022
 
1023
  #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1024
  msgid "User ID"
1025
  msgstr "Bruger ID"
1026
 
1027
  #: ../classes/column/post/author-name.php:40
 
1028
  msgid "First and Last Name"
1029
+ msgstr "For- og efternavn"
1030
 
1031
  #: ../classes/column/post/author-name.php:106
1032
  msgid "This is the format of the author name."
1033
+ msgstr "Dette er formattet for forfatterens navn"
1034
 
1035
  #: ../classes/column/post/before-moretag.php:14
1036
  msgid "Before More Tag"
1037
+ msgstr "Før mere-mærket"
1038
 
1039
  #: ../classes/column/post/comment-count.php:14
1040
  msgid "Comment count"
1042
 
1043
  #: ../classes/column/post/comment-count.php:30
1044
  msgid "Total"
1045
+ msgstr "Total"
1046
 
1047
  #: ../classes/column/post/comment-count.php:32
 
1048
  msgid "Pending"
1049
+ msgstr "Afventende"
1050
 
1051
  #: ../classes/column/post/comment-count.php:33
1052
  msgid "Spam"
1053
+ msgstr "Spam"
1054
 
1055
  #: ../classes/column/post/comment-count.php:78
1056
  #: ../classes/column/post/comment-status.php:14
1059
 
1060
  #: ../classes/column/post/comment-count.php:78
1061
  msgid "Select which comment status you like to display."
1062
+ msgstr "Vælg hvilken kommentarstatus du vil vise."
1063
 
1064
  #: ../classes/column/post/featured-image.php:14
1065
  msgid "Featured Image"
1083
 
1084
  #: ../classes/column/post/parent.php:12
1085
  msgid "Parent"
1086
+ msgstr "Forældre"
1087
 
1088
  #: ../classes/column/post/ping-status.php:14
1089
  msgid "Ping status"
1131
  msgstr "Taksonomi"
1132
 
1133
  #: ../classes/column/user/comment-count.php:14
 
1134
  msgid "Comment Count"
1135
+ msgstr "Antal kommentarer"
1136
 
1137
  #: ../classes/column/user/first-name.php:14
1138
  msgid "First name"
1143
  msgstr "Efternavn"
1144
 
1145
  #: ../classes/column/user/post-count.php:14
 
1146
  msgid "Post Count"
1147
  msgstr "Antal indlæg"
1148
 
1149
  #: ../classes/column/user/post-count.php:92
1150
  msgid "Post Type"
1151
+ msgstr "Indlægstype"
1152
 
1153
  #: ../classes/column/user/registered.php:14
1154
  msgid "Registered"
1164
 
1165
  #: ../classes/storage_model/link.php:13
1166
  msgid "Links"
1167
+ msgstr "Links"
1168
 
1169
  #: ../classes/storage_model/user.php:13
 
1170
  msgid "Users"
1171
+ msgstr "Brugere"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cpac-de_DE.mo CHANGED
Binary file
languages/cpac-de_DE.po CHANGED
@@ -1,57 +1,31 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Codepress Admin Columns\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-18 15:23+0100\n"
6
- "PO-Revision-Date: 2013-07-18 15:23+0100\n"
7
- "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: robotect <info@codepress.nl>\n"
9
- "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.5.7\n"
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPath-1: ..\n"
 
19
 
20
- #: ../codepress-admin-columns.php:230 ../classes/settings.php:534
21
  msgid "Settings"
22
  msgstr "Einstellungen"
23
 
24
  #: ../codepress-admin-columns.php:350
25
- #, fuzzy
26
  msgid "Edit columns"
27
- msgstr "Admin Spalten"
28
-
29
- #: ../classes/addons.php:27
30
- #, fuzzy
31
- msgid "Add-ons"
32
- msgstr "Add Ons aktivieren"
33
-
34
- #: ../classes/addons.php:63
35
- msgid ""
36
- "There was an error retrieving the extensions list from the server. Please "
37
- "try again later."
38
- msgstr ""
39
-
40
- #: ../classes/addons.php:88 ../classes/addons.php:94
41
- #, fuzzy
42
- msgid "Add-ons for Admin Columns"
43
- msgstr "Admin Spalten"
44
-
45
- #: ../classes/addons.php:95
46
- msgid "These add-ons extend the functionality of Admin Columns."
47
- msgstr ""
48
-
49
- #: ../classes/addons.php:96
50
- msgid "Browse All Add-ons"
51
- msgstr ""
52
-
53
- #: ../classes/addons.php:96
54
- msgid "Browse all Add-ons"
55
  msgstr ""
56
 
57
  #: ../classes/column.php:479
@@ -63,258 +37,224 @@ msgid "Medium"
63
  msgstr ""
64
 
65
  #: ../classes/column.php:481
66
- #, fuzzy
67
  msgid "Large"
68
- msgstr "Ziel"
69
 
70
  #: ../classes/column.php:482
71
  msgid "Full"
72
  msgstr ""
73
 
74
- #: ../classes/column.php:776
75
- #, fuzzy
76
  msgid "Date Format"
77
- msgstr "Post Format"
78
 
79
- #: ../classes/column.php:777
80
  msgid "This will determine how the date will be displayed."
81
  msgstr ""
82
 
83
- #: ../classes/column.php:783
84
  msgid "Example:"
85
  msgstr ""
86
 
87
- #: ../classes/column.php:785
88
  #, php-format
89
  msgid ""
90
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
91
  "date format here</a>."
92
  msgstr ""
93
 
94
- #: ../classes/column.php:786
95
  msgid "Documentation on date and time formatting."
96
  msgstr ""
97
 
98
- #: ../classes/column.php:803
99
- #, fuzzy
100
  msgid "Excerpt length"
101
- msgstr "Auszug"
102
 
103
- #: ../classes/column.php:804
104
  msgid "Number of words"
105
  msgstr ""
106
 
107
- #: ../classes/column.php:826
108
- #, fuzzy
109
  msgid "Preview size"
110
- msgstr "Vorschau"
111
 
112
- #: ../classes/column.php:843 ../classes/column.php:899
113
  msgid "Custom"
114
  msgstr "Benutzerdefiniert"
115
 
116
- #: ../classes/column.php:846
117
- #, fuzzy
118
  msgid "width"
119
- msgstr "Breite"
120
 
121
- #: ../classes/column.php:849
122
- #, fuzzy
123
  msgid "height"
124
- msgstr "Höhe"
125
 
126
- #: ../classes/column.php:900 ../classes/settings.php:221
127
  #: ../classes/column/custom-field.php:72
128
  msgid "Default"
129
  msgstr "Vorgabe"
130
 
131
- #: ../classes/column.php:925 ../classes/column.php:986
132
  #: ../classes/column/user/actions.php:65
133
  msgid "Remove"
134
  msgstr "Entfernen"
135
 
136
- #: ../classes/column.php:944
137
  msgid "Type"
138
  msgstr ""
139
 
140
- #: ../classes/column.php:944
141
  msgid "Choose a column type."
142
  msgstr ""
143
 
144
- #: ../classes/column.php:954
145
  msgid "Label"
146
  msgstr ""
147
 
148
- #: ../classes/column.php:954
149
  msgid "This is the name which will appear as the column header."
150
  msgstr ""
151
 
152
- #: ../classes/column.php:961 ../classes/column/media/width.php:12
153
  msgid "Width"
154
  msgstr "Breite"
155
 
156
- #: ../classes/column.php:963 ../classes/column.php:964
157
  msgid "default"
158
  msgstr "Vorgabe"
159
 
160
- #: ../classes/export_import.php:64
161
- msgid "Export field is empty. Please select your types from the left column."
162
  msgstr ""
163
 
164
- #: ../classes/export_import.php:99 ../classes/export_import.php:101
165
- msgid "Sorry, there has been an error."
166
- msgstr ""
 
167
 
168
- #: ../classes/export_import.php:101
169
  #, php-format
170
- msgid ""
171
- "The export file could not be found at <code>%s</code>. It is likely that "
172
- "this was caused by a permissions problem."
173
  msgstr ""
174
 
175
- #: ../classes/export_import.php:119
176
- msgid "Import failed. File does not contain Admin Column settings."
177
- msgstr ""
178
-
179
- #: ../classes/settings.php:69
180
- #, fuzzy
181
- msgid "Admin Columns Settings"
182
- msgstr "Admin Spalten"
183
-
184
- #: ../classes/settings.php:69 ../classes/settings.php:533
185
- #: ../classes/upgrade.php:93
186
- msgid "Admin Columns"
187
- msgstr "Admin Spalten"
188
-
189
- #: ../classes/settings.php:180
190
  msgid "Default settings succesfully restored."
191
  msgstr ""
192
 
193
- #: ../classes/settings.php:198 ../classes/settings.php:450
194
- #, fuzzy
195
  msgid "Overview"
196
- msgstr "Vorschau"
197
 
198
- #: ../classes/settings.php:201
199
  msgid ""
200
  "This plugin is for adding and removing additional columns to the "
201
  "administration screens for post(types), pages, media library, comments, "
202
  "links and users. Change the column's label and reorder them."
203
  msgstr ""
204
 
205
- #: ../classes/settings.php:204
206
  msgid "Basics"
207
  msgstr ""
208
 
209
- #: ../classes/settings.php:206
210
- #, fuzzy
211
- msgid "Show / Hide"
212
- msgstr "Alles anzeigen"
213
-
214
- #: ../classes/settings.php:207
215
- msgid ""
216
- "You can switch columns on or off by clicking on the checkbox. This will show "
217
- "or hide each column heading."
218
- msgstr ""
219
-
220
- #: ../classes/settings.php:208
221
- #, fuzzy
222
  msgid "Change order"
223
- msgstr "Seitenreihenfolge"
224
 
225
- #: ../classes/settings.php:209
226
  msgid ""
227
  "By dragging the columns you can change the order which they will appear in."
228
  msgstr ""
229
 
230
- #: ../classes/settings.php:210
231
  msgid "Change label"
232
  msgstr ""
233
 
234
- #: ../classes/settings.php:211
235
  msgid ""
236
  "By clicking on the triangle you will see the column options. Here you can "
237
  "change each label of the columns heading."
238
  msgstr ""
239
 
240
- #: ../classes/settings.php:212
241
  msgid "Change column width"
242
  msgstr ""
243
 
244
- #: ../classes/settings.php:213
245
  msgid ""
246
  "By clicking on the triangle you will see the column options. By using the "
247
- "draggable slider yo can set the width of the columns in percentages."
248
  msgstr ""
249
 
250
- #: ../classes/settings.php:216 ../classes/column/custom-field.php:16
251
- #: ../classes/column/custom-field.php:320
252
  msgid "Custom Field"
253
  msgstr "Benutzerdefiniertes Feld"
254
 
255
- #: ../classes/settings.php:218
256
- #, fuzzy
257
  msgid "'Custom Field' column"
258
- msgstr "Custom Field Spalte hinzufügen"
259
 
260
- #: ../classes/settings.php:219
261
  msgid ""
262
  "The custom field colum uses the custom fields from posts and users. There "
263
  "are 10 types which you can set."
264
  msgstr ""
265
 
266
- #: ../classes/settings.php:221
267
  msgid ""
268
  "Value: Can be either a string or array. Arrays will be flattened and values "
269
  "are seperated by a ',' comma."
270
  msgstr ""
271
 
272
- #: ../classes/settings.php:222 ../classes/column/custom-field.php:73
273
  #: ../classes/column/link/image.php:12
274
  msgid "Image"
275
  msgstr "Bild"
276
 
277
- #: ../classes/settings.php:222
278
  msgid ""
279
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
280
  "comma )."
281
  msgstr ""
282
 
283
- #: ../classes/settings.php:223 ../classes/column/custom-field.php:75
284
  #: ../classes/column/comment/excerpt.php:13
285
  #: ../classes/column/post/excerpt.php:13
286
  msgid "Excerpt"
287
  msgstr "Auszug"
288
 
289
- #: ../classes/settings.php:223
290
  msgid "Value: This will show the first 20 words of the Post content."
291
  msgstr ""
292
 
293
- #: ../classes/settings.php:224 ../classes/column/custom-field.php:76
294
  msgid "Multiple Values"
295
  msgstr "Multiple Werte"
296
 
297
- #: ../classes/settings.php:224
298
  msgid ""
299
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
300
  msgstr ""
301
 
302
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:77
303
  msgid "Numeric"
304
  msgstr "Numerisch"
305
 
306
- #: ../classes/settings.php:225
307
  msgid ""
308
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
309
  "for sorting, so you can sort your posts on numeric (custom field) values."
310
  msgstr ""
311
 
312
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:78
313
  #: ../classes/column/comment/date.php:12
314
  msgid "Date"
315
  msgstr "Datum"
316
 
317
- #: ../classes/settings.php:226
318
  #, php-format
319
  msgid ""
320
  "Value: Can be unix time stamp or a date format as described in the <a "
@@ -322,98 +262,82 @@ msgid ""
322
  "href='%s'>general settings</a> page."
323
  msgstr ""
324
 
325
- #: ../classes/settings.php:227
326
- #, fuzzy
327
  msgid "Post Titles"
328
- msgstr "Post Titel (Post ID's)"
329
 
330
- #: ../classes/settings.php:227
331
  msgid "Value: can be one or more Post ID's (seperated by ',')."
332
  msgstr ""
333
 
334
- #: ../classes/settings.php:228
335
  msgid "Usernames"
336
  msgstr ""
337
 
338
- #: ../classes/settings.php:228
339
  msgid "Value: can be one or more User ID's (seperated by ',')."
340
  msgstr ""
341
 
342
- #: ../classes/settings.php:229
343
  msgid "Checkmark"
344
  msgstr ""
345
 
346
- #: ../classes/settings.php:229
347
  msgid "Value: should be a 1 (one) or 0 (zero)."
348
  msgstr ""
349
 
350
- #: ../classes/settings.php:230 ../classes/column/custom-field.php:82
351
  msgid "Color"
352
  msgstr ""
353
 
354
- #: ../classes/settings.php:230
355
  msgid "Value: hex value color, such as #808080."
356
  msgstr ""
357
 
358
- #: ../classes/settings.php:370
359
- #, fuzzy
360
  msgid "Welcome to Admin Columns"
361
- msgstr "Admin Spalten"
362
 
363
- #: ../classes/settings.php:372
364
  msgid "Thank you for updating to the latest version!"
365
  msgstr ""
366
 
367
- #: ../classes/settings.php:373
368
  msgid ""
369
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
370
  "like it."
371
  msgstr ""
372
 
373
- #: ../classes/settings.php:378
374
  msgid "What’s New"
375
  msgstr ""
376
 
377
- #: ../classes/settings.php:379
378
  msgid "Changelog"
379
  msgstr ""
380
 
381
- #: ../classes/settings.php:381
382
  msgid "Download Addons"
383
  msgstr ""
384
 
385
- #: ../classes/settings.php:387 ../classes/settings.php:613
386
  msgid "Addons"
387
  msgstr "Add Ons"
388
 
389
- #: ../classes/settings.php:389
390
  msgid ""
391
  "Addons are now activated by downloading and installing individual plugins. "
392
  "Although these plugins will not be hosted on the wordpress.org repository, "
393
  "each Add-on will continue to receive updates in the usual way."
394
  msgstr ""
395
 
396
- #: ../classes/settings.php:393
397
- #, fuzzy
398
- msgid "the Custom Fields columns"
399
- msgstr "Custom Field Spalte hinzufügen"
400
-
401
- #: ../classes/settings.php:394
402
- #, fuzzy
403
- msgid "the Sortorder Addon"
404
- msgstr "Sortierreihenfolge"
405
-
406
- #: ../classes/settings.php:397
407
- #, php-format
408
- msgid "This website uses %s. These addons need to be downloaded."
409
- msgstr ""
410
-
411
- #: ../classes/settings.php:397
412
- msgid "and"
413
  msgstr ""
414
 
415
  #: ../classes/settings.php:403
416
- msgid "Addons are sperate plugins which need to be downloaded."
417
  msgstr ""
418
 
419
  #: ../classes/settings.php:403
@@ -421,118 +345,113 @@ msgid "Download your Addons"
421
  msgstr ""
422
 
423
  #: ../classes/settings.php:409
 
 
 
 
 
 
 
 
424
  msgid "Important"
425
  msgstr ""
426
 
427
- #: ../classes/settings.php:411
428
- #, fuzzy
429
  msgid "Database Changes"
430
- msgstr "Änderungen speichern"
431
 
432
- #: ../classes/settings.php:412
433
  msgid ""
434
- "The database has been changed between versions 1 and 2. But we made sure you "
435
- "can still roll back to version 1x without any issues."
436
  msgstr ""
437
 
438
- #: ../classes/settings.php:415
439
  msgid "Make sure you backup your database and then click"
440
  msgstr ""
441
 
442
- #: ../classes/settings.php:415 ../classes/upgrade.php:101
443
  msgid "Upgrade Database"
444
  msgstr ""
445
 
446
- #: ../classes/settings.php:418
447
  msgid "Potential Issues"
448
  msgstr ""
449
 
450
- #: ../classes/settings.php:419
451
  msgid ""
452
- "Do to the sizable refactoring the code, surounding Addons and action/"
453
- "filters, your website may not operate correctly. It is important that you "
454
- "read the full"
455
  msgstr ""
456
 
457
- #: ../classes/settings.php:419
458
  msgid "Migrating from v1 to v2"
459
  msgstr ""
460
 
461
- #: ../classes/settings.php:419
462
  msgid "guide to view the full list of changes."
463
  msgstr ""
464
 
465
- #: ../classes/settings.php:419
466
  #, php-format
467
  msgid ""
468
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
469
  "can fix it in the next release."
470
  msgstr ""
471
 
472
- #: ../classes/settings.php:422
473
  msgid "Important!"
474
  msgstr ""
475
 
476
- #: ../classes/settings.php:422
477
  msgid ""
478
  "If you updated the Admin Columns plugin without prior knowledge of such "
479
  "changes, Please roll back to the latest"
480
  msgstr ""
481
 
482
- #: ../classes/settings.php:422
483
  msgid "version 1"
484
  msgstr ""
485
 
486
- #: ../classes/settings.php:422
487
- #, fuzzy
488
  msgid "of this plugin."
489
- msgstr "Gefällt mir!"
490
 
491
- #: ../classes/settings.php:428
492
  msgid "Changelog for"
493
  msgstr ""
494
 
495
- #: ../classes/settings.php:443
496
  msgid "Learn more"
497
  msgstr ""
498
 
499
- #: ../classes/settings.php:452
500
  msgid ""
501
  "New to v2, all Addons act as separate plugins which need to be individually "
502
  "downloaded, installed and updated."
503
  msgstr ""
504
 
505
- #: ../classes/settings.php:453
506
  msgid ""
507
- "This page will assist you in downloading and installing each available Addon."
 
508
  msgstr ""
509
 
510
- #: ../classes/settings.php:454
511
- #, fuzzy
512
  msgid "Available Addons"
513
- msgstr "Add Ons aktivieren"
514
 
515
- #: ../classes/settings.php:459
516
  msgid "Name"
517
  msgstr ""
518
 
519
- #: ../classes/settings.php:460 ../classes/settings.php:468
520
- #: ../classes/settings.php:476
521
  msgid "Download"
522
  msgstr ""
523
 
524
- #: ../classes/settings.php:466
525
- #, fuzzy
526
- msgid "Sortorder Addon"
527
- msgstr "Sortierreihenfolge"
528
-
529
- #: ../classes/settings.php:474
530
- #, fuzzy
531
- msgid "Custom Fields Addon"
532
- msgstr "Benutzerdefiniertes Feld"
533
-
534
- #: ../classes/settings.php:474
535
- msgid "This website is currently using custom field columns."
536
  msgstr ""
537
 
538
  #: ../classes/settings.php:483
@@ -561,8 +480,8 @@ msgstr ""
561
 
562
  #: ../classes/settings.php:490
563
  msgid ""
564
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
565
- "link"
566
  msgstr ""
567
 
568
  #: ../classes/settings.php:491
@@ -576,213 +495,199 @@ msgid ""
576
  msgstr ""
577
 
578
  #: ../classes/settings.php:502
579
- #, fuzzy
580
  msgid "Start using Admin Columns"
581
- msgstr "Admin Spalten"
582
 
583
- #: ../classes/settings.php:579
584
- #, fuzzy
585
  msgid "Store settings"
586
- msgstr "Einstellungen"
587
 
588
- #: ../classes/settings.php:584
589
  msgid "Update"
590
  msgstr ""
591
 
592
- #: ../classes/settings.php:584
593
- #, fuzzy
594
  msgid "Publish"
595
- msgstr "Veröffentlicht"
596
 
597
- #: ../classes/settings.php:588
598
- #, fuzzy, php-format
599
  msgid ""
600
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
601
- "\\' to delete, \\'Cancel\\' to stop"
602
  msgstr ""
603
- "Warnung! Alle Admin Spalteneinstellungen werden endgültig gelöscht. \\'OK\\' "
604
- "zum Löschen, \\'Cancel\\' für Abbruch"
605
 
606
- #: ../classes/settings.php:589 ../classes/column/comment/actions.php:86
607
  #: ../classes/column/post/actions.php:53
608
  msgid "Restore"
609
  msgstr "Wiederherstellen"
610
 
611
- #: ../classes/settings.php:589
612
- #, fuzzy
613
  msgid "columns"
614
- msgstr "Admin Spalten"
615
 
616
- #: ../classes/settings.php:596
617
- #, fuzzy
618
- msgid "Get the Pro addon"
619
- msgstr "Hol Dir das Add On"
620
 
621
- #: ../classes/settings.php:622
622
- #, fuzzy
623
- msgid "find more addons"
624
- msgstr "mehr erfahren"
625
 
626
- #: ../classes/settings.php:625
 
 
 
 
 
 
 
 
627
  #, php-format
628
- msgid "Check the <a href=\"%s\">Add-on section</a> for more details."
629
  msgstr ""
630
 
631
- #: ../classes/settings.php:633
632
- #, fuzzy
633
  msgid "Support"
634
- msgstr "Sie benötigen Hilfe ?"
635
 
636
- #: ../classes/settings.php:636
637
- #, fuzzy
638
  msgid "Check the <strong>Help</strong> section in the top-right screen."
639
  msgstr ""
640
- "Eine kurze Übersicht finden Sie im <strong>Hilfe</strong> Bereich oben "
641
- "rechts auf dem Screen."
642
 
643
- #: ../classes/settings.php:638
644
  #, php-format
645
  msgid ""
646
  "For full documentation, bug reports, feature suggestions and other tips <a "
647
  "href='%s'>visit the Admin Columns website</a>"
648
  msgstr ""
649
 
650
- #: ../classes/settings.php:658
651
- #, fuzzy
652
  msgid "Drag and drop to reorder"
653
- msgstr "Ordnen per drag & drop"
654
 
655
- #: ../classes/settings.php:661
656
- #, fuzzy
657
  msgid "Add Column"
658
- msgstr "Admin Spalten"
659
 
660
- #: ../classes/settings.php:712
661
- #, fuzzy
662
  msgid "General Settings"
663
- msgstr "Einstellungen"
664
 
665
- #: ../classes/settings.php:713
666
  msgid "Customize your Admin Columns settings."
667
  msgstr ""
668
 
669
- #: ../classes/settings.php:720
670
- #, fuzzy
671
- msgid "Custom field settings"
672
- msgstr "Vorgabewerte wiederherstellen"
673
-
674
- #: ../classes/settings.php:724
675
  msgid "Show hidden custom fields. Default is <code>off</code>."
676
  msgstr ""
677
 
678
- #: ../classes/settings.php:731
 
 
 
 
 
679
  msgid "Save"
680
  msgstr ""
681
 
682
- #: ../classes/settings.php:771
683
- #, fuzzy
684
  msgid "Restore Settings"
685
- msgstr "Vorgabewerte wiederherstellen"
686
 
687
- #: ../classes/settings.php:772
688
  msgid "This will delete all column settings and restore the default settings."
689
- msgstr ""
690
- "Alle Einstellungen werden gelöscht und die Voreinstellungen "
691
- "wiederhergestellt."
692
 
693
- #: ../classes/settings.php:778
694
  msgid "Restore default settings"
695
  msgstr "Vorgabewerte wiederherstellen"
696
 
697
- #: ../classes/settings.php:778
698
  msgid ""
699
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
700
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
701
- msgstr ""
702
- "Warnung! Alle Admin Spalteneinstellungen werden endgültig gelöscht. \\'OK\\' "
703
- "zum Löschen, \\'Cancel\\' für Abbruch"
704
 
705
- #: ../classes/storage_model.php:153
706
  msgid "settings succesfully restored."
707
  msgstr ""
708
 
709
- #: ../classes/storage_model.php:167
710
  msgid "No columns settings available."
711
  msgstr ""
712
 
713
- #: ../classes/storage_model.php:190
714
  #, php-format
715
  msgid "You are trying to store the same settings for %s."
716
  msgstr ""
717
 
718
- #: ../classes/storage_model.php:194
719
  #, php-format
720
  msgid "Settings for %s updated succesfully."
721
  msgstr ""
722
 
723
- #: ../classes/storage_model.php:564 ../classes/column/post/actions.php:64
724
  msgid "View"
725
  msgstr "Ansicht"
726
 
727
- #: ../classes/upgrade.php:48
728
  msgid "Upgrade"
729
  msgstr ""
730
 
731
- #: ../classes/upgrade.php:94
732
  msgid "requires a database upgrade"
733
  msgstr ""
734
 
735
- #: ../classes/upgrade.php:97
736
  msgid "why?"
737
  msgstr ""
738
 
739
- #: ../classes/upgrade.php:98
740
  msgid "Please"
741
  msgstr ""
742
 
743
- #: ../classes/upgrade.php:99
744
  msgid "backup your database"
745
  msgstr ""
746
 
747
- #: ../classes/upgrade.php:100
748
  msgid "then click"
749
  msgstr ""
750
 
751
- #: ../classes/upgrade.php:308
752
  msgid "Migrating Column Settings"
753
  msgstr ""
754
 
755
- #: ../classes/upgrade.php:344
756
  msgid "No Upgrade Required"
757
  msgstr ""
758
 
759
- #: ../classes/upgrade.php:345
760
  msgid "Return to welcome screen."
761
  msgstr ""
762
 
763
- #: ../classes/upgrade.php:361
764
  msgid "Upgrade Complete!"
765
  msgstr ""
766
 
767
- #: ../classes/upgrade.php:361
768
- #, fuzzy
769
  msgid "Return to settings."
770
- msgstr "Vorgabewerte wiederherstellen"
771
 
772
- #: ../classes/upgrade.php:362
773
  msgid "Error"
774
  msgstr ""
775
 
776
- #: ../classes/upgrade.php:363
777
  msgid ""
778
  "Sorry. Something went wrong during the upgrade process. Please report this "
779
  "on the support forum."
780
  msgstr ""
781
 
782
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
783
- #, fuzzy
784
  msgid "Media Library"
785
- msgstr "Mediathek Icon"
786
 
787
  #: ../classes/column/custom-field.php:79
788
  msgid "Post Title (Post ID's)"
@@ -796,36 +701,35 @@ msgstr ""
796
  msgid "Checkmark (true/false)"
797
  msgstr ""
798
 
799
- #: ../classes/column/custom-field.php:320
800
  msgid "Select your custom field."
801
  msgstr ""
802
 
803
- #: ../classes/column/custom-field.php:330
804
  msgid "No custom fields available."
805
  msgstr ""
806
 
807
- #: ../classes/column/custom-field.php:337
808
- #, fuzzy
809
  msgid "Field Type"
810
- msgstr "Feld"
811
 
812
- #: ../classes/column/custom-field.php:337
813
  msgid "This will determine how the value will be displayed."
814
  msgstr ""
815
 
816
- #: ../classes/column/custom-field.php:380
817
  msgid "Before"
818
  msgstr ""
819
 
820
- #: ../classes/column/custom-field.php:380
821
  msgid "This text will appear before the custom field value."
822
  msgstr ""
823
 
824
- #: ../classes/column/custom-field.php:386
825
  msgid "After"
826
  msgstr ""
827
 
828
- #: ../classes/column/custom-field.php:386
829
  msgid "This text will appear after the custom field value."
830
  msgstr ""
831
 
@@ -892,9 +796,8 @@ msgid "Author url"
892
  msgstr "URL des Autors"
893
 
894
  #: ../classes/column/comment/author.php:12
895
- #, fuzzy
896
  msgid "Author"
897
- msgstr "IP des Autors"
898
 
899
  #: ../classes/column/comment/date-gmt.php:12
900
  msgid "Date GMT"
@@ -925,9 +828,7 @@ msgstr "Anzahl Worte"
925
  msgid ""
926
  "You are about to delete this link '%s'\n"
927
  " 'Cancel' to stop, 'OK' to delete."
928
- msgstr ""
929
- "Sie sind dabei diesen Link zu löschen '%s'\n"
930
- " 'Cancel' um Abzubrechen, 'OK' zum Löschen."
931
 
932
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
933
  msgid "Delete"
@@ -968,9 +869,8 @@ msgid "Available Sizes"
968
  msgstr ""
969
 
970
  #: ../classes/column/media/available-sizes.php:37
971
- #, fuzzy
972
  msgid "full size"
973
- msgstr "File Größe"
974
 
975
  #: ../classes/column/media/caption.php:12
976
  #: ../classes/column/media/exif-data.php:36
@@ -1098,14 +998,12 @@ msgid "Display Name"
1098
  msgstr ""
1099
 
1100
  #: ../classes/column/post/author-name.php:34
1101
- #, fuzzy
1102
  msgid "First Name"
1103
- msgstr "Vorname"
1104
 
1105
  #: ../classes/column/post/author-name.php:35
1106
- #, fuzzy
1107
  msgid "Last Name"
1108
- msgstr "Nachname"
1109
 
1110
  #: ../classes/column/post/author-name.php:36
1111
  #: ../classes/column/user/nickname.php:14
@@ -1125,9 +1023,8 @@ msgid "User ID"
1125
  msgstr "User ID"
1126
 
1127
  #: ../classes/column/post/author-name.php:40
1128
- #, fuzzy
1129
  msgid "First and Last Name"
1130
- msgstr "Vorname"
1131
 
1132
  #: ../classes/column/post/author-name.php:106
1133
  msgid "This is the format of the author name."
@@ -1146,9 +1043,8 @@ msgid "Total"
1146
  msgstr ""
1147
 
1148
  #: ../classes/column/post/comment-count.php:32
1149
- #, fuzzy
1150
  msgid "Pending"
1151
- msgstr "ausstehend"
1152
 
1153
  #: ../classes/column/post/comment-count.php:33
1154
  msgid "Spam"
@@ -1233,9 +1129,8 @@ msgid "Taxonomy"
1233
  msgstr "Klassifizierung"
1234
 
1235
  #: ../classes/column/user/comment-count.php:14
1236
- #, fuzzy
1237
  msgid "Comment Count"
1238
- msgstr "Anzahl Kommentare"
1239
 
1240
  #: ../classes/column/user/first-name.php:14
1241
  msgid "First name"
@@ -1246,9 +1141,8 @@ msgid "Last name"
1246
  msgstr "Nachname"
1247
 
1248
  #: ../classes/column/user/post-count.php:14
1249
- #, fuzzy
1250
  msgid "Post Count"
1251
- msgstr "Anzahl an Posts"
1252
 
1253
  #: ../classes/column/user/post-count.php:92
1254
  msgid "Post Type"
@@ -1271,170 +1165,5 @@ msgid "Links"
1271
  msgstr ""
1272
 
1273
  #: ../classes/storage_model/user.php:13
1274
- #, fuzzy
1275
  msgid "Users"
1276
- msgstr "User ID"
1277
-
1278
- #~ msgid "This field can not be removed"
1279
- #~ msgstr "Dieses Feld kann nicht entfernt werden"
1280
-
1281
- #~ msgid "Icon"
1282
- #~ msgstr "Icon"
1283
-
1284
- #~ msgid "Order"
1285
- #~ msgstr "Reihenfolge"
1286
-
1287
- #~ msgid "Upload paths"
1288
- #~ msgstr "Upload Pfad"
1289
-
1290
- #~ msgid "Aperture EXIF"
1291
- #~ msgstr "Blende EXIF"
1292
-
1293
- #~ msgid "Credit EXIF"
1294
- #~ msgstr "Name EXIF"
1295
-
1296
- #~ msgid "Camera EXIF"
1297
- #~ msgstr "Kamera EXIF"
1298
-
1299
- #~ msgid "Caption EXIF"
1300
- #~ msgstr "Untertitel EXIF"
1301
-
1302
- #~ msgid "Timestamp EXIF"
1303
- #~ msgstr "Zeitangabe EXIF"
1304
-
1305
- #~ msgid "Copyright"
1306
- #~ msgstr "Copyright"
1307
-
1308
- #~ msgid "Focal Length EXIF"
1309
- #~ msgstr "Brennweite EXIF"
1310
-
1311
- #~ msgid "ISO EXIF"
1312
- #~ msgstr "ISO EXIF"
1313
-
1314
- #~ msgid "Shutter Speed EXIF"
1315
- #~ msgstr "Verschlusszeit EXIF"
1316
-
1317
- #~ msgid "Title EXIF"
1318
- #~ msgstr "Titel EXIF"
1319
-
1320
- #~ msgid "Author Name"
1321
- #~ msgstr "Name des Autors"
1322
-
1323
- #~ msgid "This will make all of the new columns support sorting"
1324
- #~ msgstr "Unterstützt das Sortieren neuer Spalten"
1325
-
1326
- #~ msgid ""
1327
- #~ "By default WordPress let's you sort by title, date, comments and author. "
1328
- #~ "This will make you be able to <strong>sort by any column of any type!</"
1329
- #~ "strong>"
1330
- #~ msgstr ""
1331
- #~ "WordPress ermöglicht das Sortieren nach Titel, Datum, Kommentar und "
1332
- #~ "Autor. Dieses Plugin ermöglicht die Sortierung <strong>spaltenweise bei "
1333
- #~ "beliebigem Typ!</strong>"
1334
-
1335
- #~ msgid ""
1336
- #~ "Perfect for sorting your articles, media files, comments, links and users"
1337
- #~ msgstr ""
1338
- #~ "Perfekt um Ihre Artikel, Mediathek, Kommentare, Links und Nutzer zu "
1339
- #~ "sortieren."
1340
-
1341
- #~ msgid "(columns that are added by other plugins are not supported)"
1342
- #~ msgstr ""
1343
- #~ "(Benutzerdefinierte Spalten die durch andere Plugins erzeugt werden, "
1344
- #~ "werden nicht unterstützt)"
1345
-
1346
- #~ msgid "Inactive"
1347
- #~ msgstr "Inaktiv"
1348
-
1349
- #~ msgid "Active"
1350
- #~ msgstr "Aktiv"
1351
-
1352
- #~ msgid "Fill in your activation code"
1353
- #~ msgstr "Aktivierungscode eingeben"
1354
-
1355
- #~ msgid "Activate"
1356
- #~ msgstr "Aktivieren"
1357
-
1358
- #~ msgid "Deactivate"
1359
- #~ msgstr "Deaktivieren"
1360
-
1361
- #~ msgid ""
1362
- #~ "Add-ons can be unlocked by purchasing a license key. Each key can be used "
1363
- #~ "on multiple sites"
1364
- #~ msgstr ""
1365
- #~ "Add Ons können durch Kauf eines Lizenz Schlüssels aktiviert und auf "
1366
- #~ "beliebigen WebSites genutzt werden"
1367
-
1368
- #~ msgid "Addon"
1369
- #~ msgstr "Add On"
1370
-
1371
- #~ msgid "Activation Code"
1372
- #~ msgstr "Aktivierungscode"
1373
-
1374
- #~ msgid "Enter your activation code"
1375
- #~ msgstr "Aktivierungscode eingeben"
1376
-
1377
- #~ msgid "Activation code unrecognised"
1378
- #~ msgstr "Aktivierungscode nicht angenommen"
1379
-
1380
- #~ msgid "Codepress Admin Columns"
1381
- #~ msgstr "Codepress Admin Columns"
1382
-
1383
- #~ msgid ""
1384
- #~ "By default WordPress let's you only sort by title, date, comments and "
1385
- #~ "author."
1386
- #~ msgstr ""
1387
- #~ "WordPress ermöglicht per Vorgabe lediglich das Sortieren nach Titel, "
1388
- #~ "Datum, Kommentar und Autor."
1389
-
1390
- #~ msgid ""
1391
- #~ "Make <strong>all columns</strong> of <strong>all types</strong> within "
1392
- #~ "the plugin support sorting &#8212; with the sorting addon."
1393
- #~ msgstr ""
1394
- #~ "Das Sortier Add On ermöglicht das Sortieren <strong>aller Spalten</"
1395
- #~ "strong> und <strong>aller Typen</strong> innerhalb des Plugins gemäß "
1396
- #~ "&#8212;."
1397
-
1398
- #~ msgid "Why not do any or all of the following"
1399
- #~ msgstr "Dies und Das"
1400
-
1401
- #~ msgid "Link to it so other folks can find out about it."
1402
- #~ msgstr "Verlinken, damit andere das Plugin finden können."
1403
-
1404
- #~ msgid "Give it a 5 star rating on WordPress.org."
1405
- #~ msgstr "Gib dem Plugin eine 5-Sterne Bewertung auf WordPress.org."
1406
-
1407
- #~ msgid "Donate a token of your appreciation."
1408
- #~ msgstr "Spenden nach eigenem Dafürhalten."
1409
-
1410
- #~ msgid ""
1411
- #~ "If you are having problems with this plugin, please talk about them in "
1412
- #~ "the <a href=\"%s\">Support forums</a> or send me an email %s."
1413
- #~ msgstr ""
1414
- #~ "Probleme mit dem Plugin, dann sprechen Sie mich über das <a href=\"%s"
1415
- #~ "\">Support Forum</a> an oder senden eine Mail %s."
1416
-
1417
- #~ msgid ""
1418
- #~ "If you're sure you've found a bug, or have a feature request, please <a "
1419
- #~ "href='%s'>submit your feedback</a>."
1420
- #~ msgstr ""
1421
- #~ "BUG gefunden, oder eine Frage zu Features, bitte <a href='%s'>schreiben "
1422
- #~ "sie mir Ihr Feedback</a>."
1423
-
1424
- #~ msgid "Restore defaults"
1425
- #~ msgstr "Voreinstellungen wiederherstellen"
1426
-
1427
- #~ msgid "original"
1428
- #~ msgstr "original"
1429
-
1430
- #~ msgid "Standard"
1431
- #~ msgstr "Standard"
1432
-
1433
- #~ msgid "approved"
1434
- #~ msgstr "genehmigt"
1435
-
1436
- #~ msgid "spam"
1437
- #~ msgstr "SPAM"
1438
-
1439
- #~ msgid "trash"
1440
- #~ msgstr "Papierkorb"
1
+ #
2
+ # Translators:
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Admin Columns\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2013-08-26 16:51+0100\n"
8
+ "PO-Revision-Date: 2013-08-29 09:27+0000\n"
9
+ "Last-Translator: codepress <info@codepress.nl>\n"
10
+ "Language-Team: German (Germany) (http://www.transifex.com/projects/p/admin-columns/language/de_DE/)\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "Language: de_DE\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
16
  "X-Generator: Poedit 1.5.7\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-KeywordsList: __;_e\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPath-1: ..\n"
21
+ "X-Poedit-SourceCharset: utf-8\n"
22
 
23
+ #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
24
  msgid "Settings"
25
  msgstr "Einstellungen"
26
 
27
  #: ../codepress-admin-columns.php:350
 
28
  msgid "Edit columns"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgstr ""
30
 
31
  #: ../classes/column.php:479
37
  msgstr ""
38
 
39
  #: ../classes/column.php:481
 
40
  msgid "Large"
41
+ msgstr ""
42
 
43
  #: ../classes/column.php:482
44
  msgid "Full"
45
  msgstr ""
46
 
47
+ #: ../classes/column.php:774
 
48
  msgid "Date Format"
49
+ msgstr ""
50
 
51
+ #: ../classes/column.php:775
52
  msgid "This will determine how the date will be displayed."
53
  msgstr ""
54
 
55
+ #: ../classes/column.php:781
56
  msgid "Example:"
57
  msgstr ""
58
 
59
+ #: ../classes/column.php:783
60
  #, php-format
61
  msgid ""
62
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
63
  "date format here</a>."
64
  msgstr ""
65
 
66
+ #: ../classes/column.php:784
67
  msgid "Documentation on date and time formatting."
68
  msgstr ""
69
 
70
+ #: ../classes/column.php:801
 
71
  msgid "Excerpt length"
72
+ msgstr ""
73
 
74
+ #: ../classes/column.php:802
75
  msgid "Number of words"
76
  msgstr ""
77
 
78
+ #: ../classes/column.php:824
 
79
  msgid "Preview size"
80
+ msgstr ""
81
 
82
+ #: ../classes/column.php:841 ../classes/column.php:897
83
  msgid "Custom"
84
  msgstr "Benutzerdefiniert"
85
 
86
+ #: ../classes/column.php:844
 
87
  msgid "width"
88
+ msgstr ""
89
 
90
+ #: ../classes/column.php:847
 
91
  msgid "height"
92
+ msgstr ""
93
 
94
+ #: ../classes/column.php:898 ../classes/settings.php:224
95
  #: ../classes/column/custom-field.php:72
96
  msgid "Default"
97
  msgstr "Vorgabe"
98
 
99
+ #: ../classes/column.php:923 ../classes/column.php:984
100
  #: ../classes/column/user/actions.php:65
101
  msgid "Remove"
102
  msgstr "Entfernen"
103
 
104
+ #: ../classes/column.php:942
105
  msgid "Type"
106
  msgstr ""
107
 
108
+ #: ../classes/column.php:942
109
  msgid "Choose a column type."
110
  msgstr ""
111
 
112
+ #: ../classes/column.php:952
113
  msgid "Label"
114
  msgstr ""
115
 
116
+ #: ../classes/column.php:952
117
  msgid "This is the name which will appear as the column header."
118
  msgstr ""
119
 
120
+ #: ../classes/column.php:959 ../classes/column/media/width.php:12
121
  msgid "Width"
122
  msgstr "Breite"
123
 
124
+ #: ../classes/column.php:961 ../classes/column.php:962
125
  msgid "default"
126
  msgstr "Vorgabe"
127
 
128
+ #: ../classes/settings.php:68
129
+ msgid "Admin Columns Settings"
130
  msgstr ""
131
 
132
+ #: ../classes/settings.php:68 ../classes/settings.php:534
133
+ #: ../classes/upgrade.php:89
134
+ msgid "Admin Columns"
135
+ msgstr "Admin Spalten"
136
 
137
+ #: ../classes/settings.php:129
138
  #, php-format
139
+ msgid "%s column is already present and can not be duplicated."
 
 
140
  msgstr ""
141
 
142
+ #: ../classes/settings.php:184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  msgid "Default settings succesfully restored."
144
  msgstr ""
145
 
146
+ #: ../classes/settings.php:202 ../classes/settings.php:457
 
147
  msgid "Overview"
148
+ msgstr ""
149
 
150
+ #: ../classes/settings.php:205
151
  msgid ""
152
  "This plugin is for adding and removing additional columns to the "
153
  "administration screens for post(types), pages, media library, comments, "
154
  "links and users. Change the column's label and reorder them."
155
  msgstr ""
156
 
157
+ #: ../classes/settings.php:208
158
  msgid "Basics"
159
  msgstr ""
160
 
161
+ #: ../classes/settings.php:210
 
 
 
 
 
 
 
 
 
 
 
 
162
  msgid "Change order"
163
+ msgstr ""
164
 
165
+ #: ../classes/settings.php:211
166
  msgid ""
167
  "By dragging the columns you can change the order which they will appear in."
168
  msgstr ""
169
 
170
+ #: ../classes/settings.php:212
171
  msgid "Change label"
172
  msgstr ""
173
 
174
+ #: ../classes/settings.php:213
175
  msgid ""
176
  "By clicking on the triangle you will see the column options. Here you can "
177
  "change each label of the columns heading."
178
  msgstr ""
179
 
180
+ #: ../classes/settings.php:214
181
  msgid "Change column width"
182
  msgstr ""
183
 
184
+ #: ../classes/settings.php:215
185
  msgid ""
186
  "By clicking on the triangle you will see the column options. By using the "
187
+ "draggable slider you can set the width of the columns in percentages."
188
  msgstr ""
189
 
190
+ #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
191
+ #: ../classes/column/custom-field.php:324
192
  msgid "Custom Field"
193
  msgstr "Benutzerdefiniertes Feld"
194
 
195
+ #: ../classes/settings.php:221
 
196
  msgid "'Custom Field' column"
197
+ msgstr ""
198
 
199
+ #: ../classes/settings.php:222
200
  msgid ""
201
  "The custom field colum uses the custom fields from posts and users. There "
202
  "are 10 types which you can set."
203
  msgstr ""
204
 
205
+ #: ../classes/settings.php:224
206
  msgid ""
207
  "Value: Can be either a string or array. Arrays will be flattened and values "
208
  "are seperated by a ',' comma."
209
  msgstr ""
210
 
211
+ #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
212
  #: ../classes/column/link/image.php:12
213
  msgid "Image"
214
  msgstr "Bild"
215
 
216
+ #: ../classes/settings.php:225
217
  msgid ""
218
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
219
  "comma )."
220
  msgstr ""
221
 
222
+ #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
223
  #: ../classes/column/comment/excerpt.php:13
224
  #: ../classes/column/post/excerpt.php:13
225
  msgid "Excerpt"
226
  msgstr "Auszug"
227
 
228
+ #: ../classes/settings.php:226
229
  msgid "Value: This will show the first 20 words of the Post content."
230
  msgstr ""
231
 
232
+ #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
233
  msgid "Multiple Values"
234
  msgstr "Multiple Werte"
235
 
236
+ #: ../classes/settings.php:227
237
  msgid ""
238
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
239
+ "array."
240
  msgstr ""
241
 
242
+ #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
243
  msgid "Numeric"
244
  msgstr "Numerisch"
245
 
246
+ #: ../classes/settings.php:228
247
  msgid ""
248
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
249
  "for sorting, so you can sort your posts on numeric (custom field) values."
250
  msgstr ""
251
 
252
+ #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
253
  #: ../classes/column/comment/date.php:12
254
  msgid "Date"
255
  msgstr "Datum"
256
 
257
+ #: ../classes/settings.php:229
258
  #, php-format
259
  msgid ""
260
  "Value: Can be unix time stamp or a date format as described in the <a "
262
  "href='%s'>general settings</a> page."
263
  msgstr ""
264
 
265
+ #: ../classes/settings.php:230
 
266
  msgid "Post Titles"
267
+ msgstr ""
268
 
269
+ #: ../classes/settings.php:230
270
  msgid "Value: can be one or more Post ID's (seperated by ',')."
271
  msgstr ""
272
 
273
+ #: ../classes/settings.php:231
274
  msgid "Usernames"
275
  msgstr ""
276
 
277
+ #: ../classes/settings.php:231
278
  msgid "Value: can be one or more User ID's (seperated by ',')."
279
  msgstr ""
280
 
281
+ #: ../classes/settings.php:232
282
  msgid "Checkmark"
283
  msgstr ""
284
 
285
+ #: ../classes/settings.php:232
286
  msgid "Value: should be a 1 (one) or 0 (zero)."
287
  msgstr ""
288
 
289
+ #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
290
  msgid "Color"
291
  msgstr ""
292
 
293
+ #: ../classes/settings.php:233
294
  msgid "Value: hex value color, such as #808080."
295
  msgstr ""
296
 
297
+ #: ../classes/settings.php:377
 
298
  msgid "Welcome to Admin Columns"
299
+ msgstr ""
300
 
301
+ #: ../classes/settings.php:380
302
  msgid "Thank you for updating to the latest version!"
303
  msgstr ""
304
 
305
+ #: ../classes/settings.php:381
306
  msgid ""
307
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
308
  "like it."
309
  msgstr ""
310
 
311
+ #: ../classes/settings.php:386
312
  msgid "What’s New"
313
  msgstr ""
314
 
315
+ #: ../classes/settings.php:387
316
  msgid "Changelog"
317
  msgstr ""
318
 
319
+ #: ../classes/settings.php:389
320
  msgid "Download Addons"
321
  msgstr ""
322
 
323
+ #: ../classes/settings.php:395
324
  msgid "Addons"
325
  msgstr "Add Ons"
326
 
327
+ #: ../classes/settings.php:397
328
  msgid ""
329
  "Addons are now activated by downloading and installing individual plugins. "
330
  "Although these plugins will not be hosted on the wordpress.org repository, "
331
  "each Add-on will continue to receive updates in the usual way."
332
  msgstr ""
333
 
334
+ #: ../classes/settings.php:400
335
+ msgid ""
336
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
337
  msgstr ""
338
 
339
  #: ../classes/settings.php:403
340
+ msgid "Addons are seperate plugins which need to be downloaded."
341
  msgstr ""
342
 
343
  #: ../classes/settings.php:403
345
  msgstr ""
346
 
347
  #: ../classes/settings.php:409
348
+ msgid "This website does not use add-ons"
349
+ msgstr ""
350
+
351
+ #: ../classes/settings.php:409
352
+ msgid "See our website for the Pro-addon."
353
+ msgstr ""
354
+
355
+ #: ../classes/settings.php:416
356
  msgid "Important"
357
  msgstr ""
358
 
359
+ #: ../classes/settings.php:418
 
360
  msgid "Database Changes"
361
+ msgstr ""
362
 
363
+ #: ../classes/settings.php:419
364
  msgid ""
365
+ "The database has been changed between versions 1 and 2. But we made sure you"
366
+ " can still roll back to version 1x without any issues."
367
  msgstr ""
368
 
369
+ #: ../classes/settings.php:422
370
  msgid "Make sure you backup your database and then click"
371
  msgstr ""
372
 
373
+ #: ../classes/settings.php:422 ../classes/upgrade.php:97
374
  msgid "Upgrade Database"
375
  msgstr ""
376
 
377
+ #: ../classes/settings.php:425
378
  msgid "Potential Issues"
379
  msgstr ""
380
 
381
+ #: ../classes/settings.php:426
382
  msgid ""
383
+ "Do to the sizable refactoring the code, surounding Addons and "
384
+ "action/filters, your website may not operate correctly. It is important that"
385
+ " you read the full"
386
  msgstr ""
387
 
388
+ #: ../classes/settings.php:426
389
  msgid "Migrating from v1 to v2"
390
  msgstr ""
391
 
392
+ #: ../classes/settings.php:426
393
  msgid "guide to view the full list of changes."
394
  msgstr ""
395
 
396
+ #: ../classes/settings.php:426
397
  #, php-format
398
  msgid ""
399
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
400
  "can fix it in the next release."
401
  msgstr ""
402
 
403
+ #: ../classes/settings.php:429
404
  msgid "Important!"
405
  msgstr ""
406
 
407
+ #: ../classes/settings.php:429
408
  msgid ""
409
  "If you updated the Admin Columns plugin without prior knowledge of such "
410
  "changes, Please roll back to the latest"
411
  msgstr ""
412
 
413
+ #: ../classes/settings.php:429
414
  msgid "version 1"
415
  msgstr ""
416
 
417
+ #: ../classes/settings.php:429
 
418
  msgid "of this plugin."
419
+ msgstr ""
420
 
421
+ #: ../classes/settings.php:435
422
  msgid "Changelog for"
423
  msgstr ""
424
 
425
+ #: ../classes/settings.php:450
426
  msgid "Learn more"
427
  msgstr ""
428
 
429
+ #: ../classes/settings.php:459
430
  msgid ""
431
  "New to v2, all Addons act as separate plugins which need to be individually "
432
  "downloaded, installed and updated."
433
  msgstr ""
434
 
435
+ #: ../classes/settings.php:460
436
  msgid ""
437
+ "This page will assist you in downloading and installing each available "
438
+ "Addon."
439
  msgstr ""
440
 
441
+ #: ../classes/settings.php:461
 
442
  msgid "Available Addons"
443
+ msgstr ""
444
 
445
+ #: ../classes/settings.php:466
446
  msgid "Name"
447
  msgstr ""
448
 
449
+ #: ../classes/settings.php:467 ../classes/settings.php:475
 
450
  msgid "Download"
451
  msgstr ""
452
 
453
+ #: ../classes/settings.php:473
454
+ msgid "Pro Add-on (includes Sortorder add-on)"
 
 
 
 
 
 
 
 
 
 
455
  msgstr ""
456
 
457
  #: ../classes/settings.php:483
480
 
481
  #: ../classes/settings.php:490
482
  msgid ""
483
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
484
+ " link"
485
  msgstr ""
486
 
487
  #: ../classes/settings.php:491
495
  msgstr ""
496
 
497
  #: ../classes/settings.php:502
 
498
  msgid "Start using Admin Columns"
499
+ msgstr ""
500
 
501
+ #: ../classes/settings.php:580
 
502
  msgid "Store settings"
503
+ msgstr ""
504
 
505
+ #: ../classes/settings.php:585
506
  msgid "Update"
507
  msgstr ""
508
 
509
+ #: ../classes/settings.php:585
 
510
  msgid "Publish"
511
+ msgstr ""
512
 
513
+ #: ../classes/settings.php:589
514
+ #, php-format
515
  msgid ""
516
+ "Warning! The %s columns data will be deleted. This cannot be undone. "
517
+ "\\'OK\\' to delete, \\'Cancel\\' to stop"
518
  msgstr ""
 
 
519
 
520
+ #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
521
  #: ../classes/column/post/actions.php:53
522
  msgid "Restore"
523
  msgstr "Wiederherstellen"
524
 
525
+ #: ../classes/settings.php:590
 
526
  msgid "columns"
527
+ msgstr ""
528
 
529
+ #: ../classes/settings.php:600
530
+ msgid "Get the Pro Add-on"
531
+ msgstr ""
 
532
 
533
+ #: ../classes/settings.php:604
534
+ msgid "Add Sorting"
535
+ msgstr ""
 
536
 
537
+ #: ../classes/settings.php:605
538
+ msgid "Add Filtering"
539
+ msgstr ""
540
+
541
+ #: ../classes/settings.php:606
542
+ msgid "Add Import/Export"
543
+ msgstr ""
544
+
545
+ #: ../classes/settings.php:609
546
  #, php-format
547
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
548
  msgstr ""
549
 
550
+ #: ../classes/settings.php:617
 
551
  msgid "Support"
552
+ msgstr ""
553
 
554
+ #: ../classes/settings.php:620
 
555
  msgid "Check the <strong>Help</strong> section in the top-right screen."
556
  msgstr ""
 
 
557
 
558
+ #: ../classes/settings.php:622
559
  #, php-format
560
  msgid ""
561
  "For full documentation, bug reports, feature suggestions and other tips <a "
562
  "href='%s'>visit the Admin Columns website</a>"
563
  msgstr ""
564
 
565
+ #: ../classes/settings.php:642
 
566
  msgid "Drag and drop to reorder"
567
+ msgstr ""
568
 
569
+ #: ../classes/settings.php:645
 
570
  msgid "Add Column"
571
+ msgstr ""
572
 
573
+ #: ../classes/settings.php:696
 
574
  msgid "General Settings"
575
+ msgstr ""
576
 
577
+ #: ../classes/settings.php:697
578
  msgid "Customize your Admin Columns settings."
579
  msgstr ""
580
 
581
+ #: ../classes/settings.php:710
 
 
 
 
 
582
  msgid "Show hidden custom fields. Default is <code>off</code>."
583
  msgstr ""
584
 
585
+ #: ../classes/settings.php:716
586
+ msgid ""
587
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
588
+ msgstr ""
589
+
590
+ #: ../classes/settings.php:723
591
  msgid "Save"
592
  msgstr ""
593
 
594
+ #: ../classes/settings.php:763
 
595
  msgid "Restore Settings"
596
+ msgstr ""
597
 
598
+ #: ../classes/settings.php:764
599
  msgid "This will delete all column settings and restore the default settings."
600
+ msgstr "Alle Einstellungen werden gelöscht und die Voreinstellungen wiederhergestellt."
 
 
601
 
602
+ #: ../classes/settings.php:770
603
  msgid "Restore default settings"
604
  msgstr "Vorgabewerte wiederherstellen"
605
 
606
+ #: ../classes/settings.php:770
607
  msgid ""
608
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
609
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
610
+ msgstr "Warnung! Alle Admin Spalteneinstellungen werden endgültig gelöscht. \\'OK\\' zum Löschen, \\'Cancel\\' für Abbruch"
 
 
611
 
612
+ #: ../classes/storage_model.php:167
613
  msgid "settings succesfully restored."
614
  msgstr ""
615
 
616
+ #: ../classes/storage_model.php:181
617
  msgid "No columns settings available."
618
  msgstr ""
619
 
620
+ #: ../classes/storage_model.php:204
621
  #, php-format
622
  msgid "You are trying to store the same settings for %s."
623
  msgstr ""
624
 
625
+ #: ../classes/storage_model.php:208
626
  #, php-format
627
  msgid "Settings for %s updated succesfully."
628
  msgstr ""
629
 
630
+ #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
631
  msgid "View"
632
  msgstr "Ansicht"
633
 
634
+ #: ../classes/upgrade.php:45
635
  msgid "Upgrade"
636
  msgstr ""
637
 
638
+ #: ../classes/upgrade.php:90
639
  msgid "requires a database upgrade"
640
  msgstr ""
641
 
642
+ #: ../classes/upgrade.php:93
643
  msgid "why?"
644
  msgstr ""
645
 
646
+ #: ../classes/upgrade.php:94
647
  msgid "Please"
648
  msgstr ""
649
 
650
+ #: ../classes/upgrade.php:95
651
  msgid "backup your database"
652
  msgstr ""
653
 
654
+ #: ../classes/upgrade.php:96
655
  msgid "then click"
656
  msgstr ""
657
 
658
+ #: ../classes/upgrade.php:304
659
  msgid "Migrating Column Settings"
660
  msgstr ""
661
 
662
+ #: ../classes/upgrade.php:340
663
  msgid "No Upgrade Required"
664
  msgstr ""
665
 
666
+ #: ../classes/upgrade.php:341
667
  msgid "Return to welcome screen."
668
  msgstr ""
669
 
670
+ #: ../classes/upgrade.php:359
671
  msgid "Upgrade Complete!"
672
  msgstr ""
673
 
674
+ #: ../classes/upgrade.php:359
 
675
  msgid "Return to settings."
676
+ msgstr ""
677
 
678
+ #: ../classes/upgrade.php:360
679
  msgid "Error"
680
  msgstr ""
681
 
682
+ #: ../classes/upgrade.php:361
683
  msgid ""
684
  "Sorry. Something went wrong during the upgrade process. Please report this "
685
  "on the support forum."
686
  msgstr ""
687
 
688
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
 
689
  msgid "Media Library"
690
+ msgstr ""
691
 
692
  #: ../classes/column/custom-field.php:79
693
  msgid "Post Title (Post ID's)"
701
  msgid "Checkmark (true/false)"
702
  msgstr ""
703
 
704
+ #: ../classes/column/custom-field.php:324
705
  msgid "Select your custom field."
706
  msgstr ""
707
 
708
+ #: ../classes/column/custom-field.php:334
709
  msgid "No custom fields available."
710
  msgstr ""
711
 
712
+ #: ../classes/column/custom-field.php:341
 
713
  msgid "Field Type"
714
+ msgstr ""
715
 
716
+ #: ../classes/column/custom-field.php:341
717
  msgid "This will determine how the value will be displayed."
718
  msgstr ""
719
 
720
+ #: ../classes/column/custom-field.php:384
721
  msgid "Before"
722
  msgstr ""
723
 
724
+ #: ../classes/column/custom-field.php:384
725
  msgid "This text will appear before the custom field value."
726
  msgstr ""
727
 
728
+ #: ../classes/column/custom-field.php:390
729
  msgid "After"
730
  msgstr ""
731
 
732
+ #: ../classes/column/custom-field.php:390
733
  msgid "This text will appear after the custom field value."
734
  msgstr ""
735
 
796
  msgstr "URL des Autors"
797
 
798
  #: ../classes/column/comment/author.php:12
 
799
  msgid "Author"
800
+ msgstr ""
801
 
802
  #: ../classes/column/comment/date-gmt.php:12
803
  msgid "Date GMT"
828
  msgid ""
829
  "You are about to delete this link '%s'\n"
830
  " 'Cancel' to stop, 'OK' to delete."
831
+ msgstr "Sie sind dabei diesen Link zu löschen '%s'\n 'Cancel' um Abzubrechen, 'OK' zum Löschen."
 
 
832
 
833
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
834
  msgid "Delete"
869
  msgstr ""
870
 
871
  #: ../classes/column/media/available-sizes.php:37
 
872
  msgid "full size"
873
+ msgstr ""
874
 
875
  #: ../classes/column/media/caption.php:12
876
  #: ../classes/column/media/exif-data.php:36
998
  msgstr ""
999
 
1000
  #: ../classes/column/post/author-name.php:34
 
1001
  msgid "First Name"
1002
+ msgstr ""
1003
 
1004
  #: ../classes/column/post/author-name.php:35
 
1005
  msgid "Last Name"
1006
+ msgstr ""
1007
 
1008
  #: ../classes/column/post/author-name.php:36
1009
  #: ../classes/column/user/nickname.php:14
1023
  msgstr "User ID"
1024
 
1025
  #: ../classes/column/post/author-name.php:40
 
1026
  msgid "First and Last Name"
1027
+ msgstr ""
1028
 
1029
  #: ../classes/column/post/author-name.php:106
1030
  msgid "This is the format of the author name."
1043
  msgstr ""
1044
 
1045
  #: ../classes/column/post/comment-count.php:32
 
1046
  msgid "Pending"
1047
+ msgstr ""
1048
 
1049
  #: ../classes/column/post/comment-count.php:33
1050
  msgid "Spam"
1129
  msgstr "Klassifizierung"
1130
 
1131
  #: ../classes/column/user/comment-count.php:14
 
1132
  msgid "Comment Count"
1133
+ msgstr ""
1134
 
1135
  #: ../classes/column/user/first-name.php:14
1136
  msgid "First name"
1141
  msgstr "Nachname"
1142
 
1143
  #: ../classes/column/user/post-count.php:14
 
1144
  msgid "Post Count"
1145
+ msgstr ""
1146
 
1147
  #: ../classes/column/user/post-count.php:92
1148
  msgid "Post Type"
1165
  msgstr ""
1166
 
1167
  #: ../classes/storage_model/user.php:13
 
1168
  msgid "Users"
1169
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cpac-es_ES.mo ADDED
Binary file
languages/cpac-es_ES.po ADDED
@@ -0,0 +1,1170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # redywebs <correo.1@redywebs.com>, 2013
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: Admin Columns\n"
7
+ "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-08-29 09:44+0000\n"
10
+ "Last-Translator: redywebs <correo.1@redywebs.com>\n"
11
+ "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/admin-columns/language/es_ES/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: es_ES\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.5.7\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPath-1: ..\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
+
24
+ #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
+ msgid "Settings"
26
+ msgstr "Ajustes"
27
+
28
+ #: ../codepress-admin-columns.php:350
29
+ msgid "Edit columns"
30
+ msgstr "Editar columnas"
31
+
32
+ #: ../classes/column.php:479
33
+ msgid "Thumbnail"
34
+ msgstr "Miniatura"
35
+
36
+ #: ../classes/column.php:480
37
+ msgid "Medium"
38
+ msgstr "Medio"
39
+
40
+ #: ../classes/column.php:481
41
+ msgid "Large"
42
+ msgstr "Grande"
43
+
44
+ #: ../classes/column.php:482
45
+ msgid "Full"
46
+ msgstr "Original"
47
+
48
+ #: ../classes/column.php:774
49
+ msgid "Date Format"
50
+ msgstr "Formato de fecha"
51
+
52
+ #: ../classes/column.php:775
53
+ msgid "This will determine how the date will be displayed."
54
+ msgstr "Esto determinará como se mostrará la fecha."
55
+
56
+ #: ../classes/column.php:781
57
+ msgid "Example:"
58
+ msgstr "Ejemplo:"
59
+
60
+ #: ../classes/column.php:783
61
+ #, php-format
62
+ msgid ""
63
+ "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
+ "date format here</a>."
65
+ msgstr "Dejar vacío para mantener el formato de fecha de WordPress. Se puede cambiar el <a href=\\\"%s\\\">formato predeterminado aquí</a>."
66
+
67
+ #: ../classes/column.php:784
68
+ msgid "Documentation on date and time formatting."
69
+ msgstr "Documentación sobre formato de fecha y hora."
70
+
71
+ #: ../classes/column.php:801
72
+ msgid "Excerpt length"
73
+ msgstr "Longitud del extracto"
74
+
75
+ #: ../classes/column.php:802
76
+ msgid "Number of words"
77
+ msgstr "Número de palabras"
78
+
79
+ #: ../classes/column.php:824
80
+ msgid "Preview size"
81
+ msgstr "Tamaño de previsualización"
82
+
83
+ #: ../classes/column.php:841 ../classes/column.php:897
84
+ msgid "Custom"
85
+ msgstr "Personalizado"
86
+
87
+ #: ../classes/column.php:844
88
+ msgid "width"
89
+ msgstr "ancho"
90
+
91
+ #: ../classes/column.php:847
92
+ msgid "height"
93
+ msgstr "alto"
94
+
95
+ #: ../classes/column.php:898 ../classes/settings.php:224
96
+ #: ../classes/column/custom-field.php:72
97
+ msgid "Default"
98
+ msgstr "Predeterminado"
99
+
100
+ #: ../classes/column.php:923 ../classes/column.php:984
101
+ #: ../classes/column/user/actions.php:65
102
+ msgid "Remove"
103
+ msgstr "Eliminar"
104
+
105
+ #: ../classes/column.php:942
106
+ msgid "Type"
107
+ msgstr "Tipo"
108
+
109
+ #: ../classes/column.php:942
110
+ msgid "Choose a column type."
111
+ msgstr "Seleccionar un tipo de columna."
112
+
113
+ #: ../classes/column.php:952
114
+ msgid "Label"
115
+ msgstr "Etiqueta"
116
+
117
+ #: ../classes/column.php:952
118
+ msgid "This is the name which will appear as the column header."
119
+ msgstr "Este es el nombre que se mostrará en la cabecera de columna."
120
+
121
+ #: ../classes/column.php:959 ../classes/column/media/width.php:12
122
+ msgid "Width"
123
+ msgstr "Ancho"
124
+
125
+ #: ../classes/column.php:961 ../classes/column.php:962
126
+ msgid "default"
127
+ msgstr "predeterminado"
128
+
129
+ #: ../classes/settings.php:68
130
+ msgid "Admin Columns Settings"
131
+ msgstr "Ajustes de Columnas de administración"
132
+
133
+ #: ../classes/settings.php:68 ../classes/settings.php:534
134
+ #: ../classes/upgrade.php:89
135
+ msgid "Admin Columns"
136
+ msgstr "Columnas de administración"
137
+
138
+ #: ../classes/settings.php:129
139
+ #, php-format
140
+ msgid "%s column is already present and can not be duplicated."
141
+ msgstr "la columna %s ya está presente y no puede ser duplicada."
142
+
143
+ #: ../classes/settings.php:184
144
+ msgid "Default settings succesfully restored."
145
+ msgstr "Restaurados los ajustes predeterminados"
146
+
147
+ #: ../classes/settings.php:202 ../classes/settings.php:457
148
+ msgid "Overview"
149
+ msgstr "Resumen"
150
+
151
+ #: ../classes/settings.php:205
152
+ msgid ""
153
+ "This plugin is for adding and removing additional columns to the "
154
+ "administration screens for post(types), pages, media library, comments, "
155
+ "links and users. Change the column's label and reorder them."
156
+ msgstr "Este plugin es para agregar y quitar columnas adicionales a las pantallas de administración de entradas, entradas personalizadas, páginas, biblioteca multimedia, comentarios, enlaces y usuarios. Cambiar etiquetas de columnas y reordenarlas."
157
+
158
+ #: ../classes/settings.php:208
159
+ msgid "Basics"
160
+ msgstr "Básico"
161
+
162
+ #: ../classes/settings.php:210
163
+ msgid "Change order"
164
+ msgstr "Cambiar orden"
165
+
166
+ #: ../classes/settings.php:211
167
+ msgid ""
168
+ "By dragging the columns you can change the order which they will appear in."
169
+ msgstr "Arrastrando las columnas se puede cambiar el orden en que se muestran."
170
+
171
+ #: ../classes/settings.php:212
172
+ msgid "Change label"
173
+ msgstr "Cambiar etiqueta"
174
+
175
+ #: ../classes/settings.php:213
176
+ msgid ""
177
+ "By clicking on the triangle you will see the column options. Here you can "
178
+ "change each label of the columns heading."
179
+ msgstr "Al hacer clic en el triángulo verás las opciones de columna. Aquí se puede cambiar la etiqueta de cada una de las cabeceras de columna."
180
+
181
+ #: ../classes/settings.php:214
182
+ msgid "Change column width"
183
+ msgstr "Cambiar ancho de columna"
184
+
185
+ #: ../classes/settings.php:215
186
+ msgid ""
187
+ "By clicking on the triangle you will see the column options. By using the "
188
+ "draggable slider you can set the width of the columns in percentages."
189
+ msgstr "Al hacer clic en el triángulo se mostrarán las opciones de columna. Al utilizar el control deslizante se puede ajustar el ancho de las columnas en porcentajes."
190
+
191
+ #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
+ #: ../classes/column/custom-field.php:324
193
+ msgid "Custom Field"
194
+ msgstr "Campo personalizado"
195
+
196
+ #: ../classes/settings.php:221
197
+ msgid "'Custom Field' column"
198
+ msgstr "Columna 'Campo personalizado'"
199
+
200
+ #: ../classes/settings.php:222
201
+ msgid ""
202
+ "The custom field colum uses the custom fields from posts and users. There "
203
+ "are 10 types which you can set."
204
+ msgstr "La columna de campo personalizado utiliza los campos personalizados de las entradas y usuarios. Hay 10 tipos que se pueden definir."
205
+
206
+ #: ../classes/settings.php:224
207
+ msgid ""
208
+ "Value: Can be either a string or array. Arrays will be flattened and values "
209
+ "are seperated by a ',' comma."
210
+ msgstr "Valor: Puede ser una 'string' o un 'array'. Los 'arrays' se corrigen y los valores se separan por una coma ','."
211
+
212
+ #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
+ #: ../classes/column/link/image.php:12
214
+ msgid "Image"
215
+ msgstr "Imagen"
216
+
217
+ #: ../classes/settings.php:225
218
+ msgid ""
219
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
+ "comma )."
221
+ msgstr "Valor: debe contener una URL de imagen o ID del adjunto (separados por coma ',')."
222
+
223
+ #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
+ #: ../classes/column/comment/excerpt.php:13
225
+ #: ../classes/column/post/excerpt.php:13
226
+ msgid "Excerpt"
227
+ msgstr "Extracto"
228
+
229
+ #: ../classes/settings.php:226
230
+ msgid "Value: This will show the first 20 words of the Post content."
231
+ msgstr "Valor: Esto mostrará las primeras 20 palabras del contenido de la entrada."
232
+
233
+ #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
234
+ msgid "Multiple Values"
235
+ msgstr "Valores múltiples"
236
+
237
+ #: ../classes/settings.php:227
238
+ msgid ""
239
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
240
+ "array."
241
+ msgstr "Valor: debe ser un 'array'. Esto corregirá cualquier 'array' (multidimensional)."
242
+
243
+ #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
244
+ msgid "Numeric"
245
+ msgstr "Numérico"
246
+
247
+ #: ../classes/settings.php:228
248
+ msgid ""
249
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
+ "for sorting, so you can sort your posts on numeric (custom field) values."
251
+ msgstr "Valor: Sólo enteros<br/>Si tiene el 'complemento de orden', será utilizado para la reordenación, así puede ordenar las entradas por los valores numéricos de los campos personalizados."
252
+
253
+ #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
+ #: ../classes/column/comment/date.php:12
255
+ msgid "Date"
256
+ msgstr "Fecha"
257
+
258
+ #: ../classes/settings.php:229
259
+ #, php-format
260
+ msgid ""
261
+ "Value: Can be unix time stamp or a date format as described in the <a "
262
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
+ "href='%s'>general settings</a> page."
264
+ msgstr "Valor: Puede ser marcador de tiempo Unix o formato de fecha tal como se describe en el <a href='%s'>Codex</a>. Se puede cambiar el formato de fecha en la <a href='%s'>configuración general</a>."
265
+
266
+ #: ../classes/settings.php:230
267
+ msgid "Post Titles"
268
+ msgstr "Títulos de entradas"
269
+
270
+ #: ../classes/settings.php:230
271
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
272
+ msgstr "Valor: pueden ser uno o más ID de entradas (separados por ',')."
273
+
274
+ #: ../classes/settings.php:231
275
+ msgid "Usernames"
276
+ msgstr "Usuarios"
277
+
278
+ #: ../classes/settings.php:231
279
+ msgid "Value: can be one or more User ID's (seperated by ',')."
280
+ msgstr "Valor: pueden ser uno o más ID de usuarios (separados por ',')."
281
+
282
+ #: ../classes/settings.php:232
283
+ msgid "Checkmark"
284
+ msgstr "Casilla de verificación"
285
+
286
+ #: ../classes/settings.php:232
287
+ msgid "Value: should be a 1 (one) or 0 (zero)."
288
+ msgstr "Valor: debe ser 1 (uno) ó 0 (cero)."
289
+
290
+ #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
291
+ msgid "Color"
292
+ msgstr "Color"
293
+
294
+ #: ../classes/settings.php:233
295
+ msgid "Value: hex value color, such as #808080."
296
+ msgstr "Valor: color hexadecimal, por ejemplo #808080."
297
+
298
+ #: ../classes/settings.php:377
299
+ msgid "Welcome to Admin Columns"
300
+ msgstr "Bienvenido a Columnas de administración"
301
+
302
+ #: ../classes/settings.php:380
303
+ msgid "Thank you for updating to the latest version!"
304
+ msgstr "¡Gracias por actualizar a la versión más reciente!"
305
+
306
+ #: ../classes/settings.php:381
307
+ msgid ""
308
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
+ "like it."
310
+ msgstr "Columnas de Administración está más pulido y práctico que nunca. Esperamos te guste."
311
+
312
+ #: ../classes/settings.php:386
313
+ msgid "What’s New"
314
+ msgstr "Novedades"
315
+
316
+ #: ../classes/settings.php:387
317
+ msgid "Changelog"
318
+ msgstr "Registro de cambios"
319
+
320
+ #: ../classes/settings.php:389
321
+ msgid "Download Addons"
322
+ msgstr "Descargar Complementos"
323
+
324
+ #: ../classes/settings.php:395
325
+ msgid "Addons"
326
+ msgstr "Complementos"
327
+
328
+ #: ../classes/settings.php:397
329
+ msgid ""
330
+ "Addons are now activated by downloading and installing individual plugins. "
331
+ "Although these plugins will not be hosted on the wordpress.org repository, "
332
+ "each Add-on will continue to receive updates in the usual way."
333
+ msgstr "Los complementos son ahora activados descargando e instalando los plugins independientes. Aunque estos plugins no estén alojados en el repositorio de wordpress.org, cada complemento continuará recibiendo actualizaciones de la forma habitual."
334
+
335
+ #: ../classes/settings.php:400
336
+ msgid ""
337
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
338
+ msgstr "Este sitio web utiliza el Complemento de Ordenar. Este complemento necesita ser descargado."
339
+
340
+ #: ../classes/settings.php:403
341
+ msgid "Addons are seperate plugins which need to be downloaded."
342
+ msgstr "Los complementos son plugins independientes que es necesario descargar."
343
+
344
+ #: ../classes/settings.php:403
345
+ msgid "Download your Addons"
346
+ msgstr "Descargar tus complementos"
347
+
348
+ #: ../classes/settings.php:409
349
+ msgid "This website does not use add-ons"
350
+ msgstr "Este sitio web no utiliza complementos"
351
+
352
+ #: ../classes/settings.php:409
353
+ msgid "See our website for the Pro-addon."
354
+ msgstr "Consulte nuestra página web para el Complemento-Pro."
355
+
356
+ #: ../classes/settings.php:416
357
+ msgid "Important"
358
+ msgstr "Importante"
359
+
360
+ #: ../classes/settings.php:418
361
+ msgid "Database Changes"
362
+ msgstr "Cambios de la Base de datos"
363
+
364
+ #: ../classes/settings.php:419
365
+ msgid ""
366
+ "The database has been changed between versions 1 and 2. But we made sure you"
367
+ " can still roll back to version 1x without any issues."
368
+ msgstr "La base de datos ha sufrido cambios entre las versiones 1 y 2. Pero nos hemos asegurado de que se pueda revertir a la versión 1x sin ningún problema."
369
+
370
+ #: ../classes/settings.php:422
371
+ msgid "Make sure you backup your database and then click"
372
+ msgstr "Asegúrate de realizar copias de seguridad de tu base de datos antes de hacer clic"
373
+
374
+ #: ../classes/settings.php:422 ../classes/upgrade.php:97
375
+ msgid "Upgrade Database"
376
+ msgstr "Actualizar Base de datos"
377
+
378
+ #: ../classes/settings.php:425
379
+ msgid "Potential Issues"
380
+ msgstr "Problemas potenciales"
381
+
382
+ #: ../classes/settings.php:426
383
+ msgid ""
384
+ "Do to the sizable refactoring the code, surounding Addons and "
385
+ "action/filters, your website may not operate correctly. It is important that"
386
+ " you read the full"
387
+ msgstr "Debido al considerable retoque del código, los complementos adicionales y acciones/filtros, puede que el sitio web no funcione correctamente. Es importante que leas completamente la"
388
+
389
+ #: ../classes/settings.php:426
390
+ msgid "Migrating from v1 to v2"
391
+ msgstr "Migrando de la v1 a la v2"
392
+
393
+ #: ../classes/settings.php:426
394
+ msgid "guide to view the full list of changes."
395
+ msgstr "guía para ver la lista completa de cambios."
396
+
397
+ #: ../classes/settings.php:426
398
+ #, php-format
399
+ msgid ""
400
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
+ "can fix it in the next release."
402
+ msgstr "Cuando encuentres un error, por favor <a href=\"%s\">comunícanoslo</a> para que podamos solucionarlo en la siguiente versión."
403
+
404
+ #: ../classes/settings.php:429
405
+ msgid "Important!"
406
+ msgstr "¡Importante!"
407
+
408
+ #: ../classes/settings.php:429
409
+ msgid ""
410
+ "If you updated the Admin Columns plugin without prior knowledge of such "
411
+ "changes, Please roll back to the latest"
412
+ msgstr "Si has actualizado el plugin Columnas de administración sin conocimiento previo de estos cambios, por favor por favor revertir a la última"
413
+
414
+ #: ../classes/settings.php:429
415
+ msgid "version 1"
416
+ msgstr "versión 1"
417
+
418
+ #: ../classes/settings.php:429
419
+ msgid "of this plugin."
420
+ msgstr "de este plugin."
421
+
422
+ #: ../classes/settings.php:435
423
+ msgid "Changelog for"
424
+ msgstr "Registro de cambios para"
425
+
426
+ #: ../classes/settings.php:450
427
+ msgid "Learn more"
428
+ msgstr "Más información"
429
+
430
+ #: ../classes/settings.php:459
431
+ msgid ""
432
+ "New to v2, all Addons act as separate plugins which need to be individually "
433
+ "downloaded, installed and updated."
434
+ msgstr "Nuevo en v2, todos los Complementos actúan como plugins separados que necesitan ser descargados, instalados y actualizados de forma independiente."
435
+
436
+ #: ../classes/settings.php:460
437
+ msgid ""
438
+ "This page will assist you in downloading and installing each available "
439
+ "Addon."
440
+ msgstr "Esta página te ayudará a descargar e instalar los complementos disponibles."
441
+
442
+ #: ../classes/settings.php:461
443
+ msgid "Available Addons"
444
+ msgstr "Complementos disponibles"
445
+
446
+ #: ../classes/settings.php:466
447
+ msgid "Name"
448
+ msgstr "Nombre"
449
+
450
+ #: ../classes/settings.php:467 ../classes/settings.php:475
451
+ msgid "Download"
452
+ msgstr "Descargar"
453
+
454
+ #: ../classes/settings.php:473
455
+ msgid "Pro Add-on (includes Sortorder add-on)"
456
+ msgstr "Complemento-Pro (incluye el complemento Ordenar)"
457
+
458
+ #: ../classes/settings.php:483
459
+ msgid "Installation"
460
+ msgstr "Instalación"
461
+
462
+ #: ../classes/settings.php:485
463
+ msgid "For each Add-on available, please perform the following:"
464
+ msgstr "Para cada complemento disponible, por favor haz lo siguiente:"
465
+
466
+ #: ../classes/settings.php:487
467
+ msgid "Download the Addon plugin (.zip file) to your desktop"
468
+ msgstr "Descarga el plugin del complemento (archivo .zip) a tu escritorio"
469
+
470
+ #: ../classes/settings.php:488
471
+ msgid "Navigate to"
472
+ msgstr "Accede a"
473
+
474
+ #: ../classes/settings.php:488
475
+ msgid "Plugins > Add New > Upload"
476
+ msgstr "Plugins > Añadir nuevo > Subir"
477
+
478
+ #: ../classes/settings.php:489
479
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
480
+ msgstr "Usa el cargador para navegar, seleccionar e instalar tu complemento (archivo .zip) "
481
+
482
+ #: ../classes/settings.php:490
483
+ msgid ""
484
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
+ " link"
486
+ msgstr "Una vez el plugin haya sido cargado e instalado, haz clic en el enlace 'Activar Plugin'"
487
+
488
+ #: ../classes/settings.php:491
489
+ msgid "The Add-on is now installed and activated!"
490
+ msgstr "El complemento ha sido cargado y activado"
491
+
492
+ #: ../classes/settings.php:492
493
+ #, php-format
494
+ msgid ""
495
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
496
+ msgstr "Para las actualizaciones automáticas asegúrate de <a href='%s'>introducir la clave de tu licencia</a>."
497
+
498
+ #: ../classes/settings.php:502
499
+ msgid "Start using Admin Columns"
500
+ msgstr "Empieza a usar Columnas de administración"
501
+
502
+ #: ../classes/settings.php:580
503
+ msgid "Store settings"
504
+ msgstr "Guardar ajustes"
505
+
506
+ #: ../classes/settings.php:585
507
+ msgid "Update"
508
+ msgstr "Actualizar"
509
+
510
+ #: ../classes/settings.php:585
511
+ msgid "Publish"
512
+ msgstr "Publicar"
513
+
514
+ #: ../classes/settings.php:589
515
+ #, php-format
516
+ msgid ""
517
+ "Warning! The %s columns data will be deleted. This cannot be undone. "
518
+ "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
+ msgstr "¡Advertencia! Se borrarán %s columnas de datos. Esto no se puede deshacer. \\'Aceptar\\' para eliminar, \\'Cancelar\\' para detener"
520
+
521
+ #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
+ #: ../classes/column/post/actions.php:53
523
+ msgid "Restore"
524
+ msgstr "Restaurar"
525
+
526
+ #: ../classes/settings.php:590
527
+ msgid "columns"
528
+ msgstr "columnas"
529
+
530
+ #: ../classes/settings.php:600
531
+ msgid "Get the Pro Add-on"
532
+ msgstr "Obtener el Complemento-Pro."
533
+
534
+ #: ../classes/settings.php:604
535
+ msgid "Add Sorting"
536
+ msgstr "Añadir ordenar"
537
+
538
+ #: ../classes/settings.php:605
539
+ msgid "Add Filtering"
540
+ msgstr "Añadir filtrar"
541
+
542
+ #: ../classes/settings.php:606
543
+ msgid "Add Import/Export"
544
+ msgstr "Añadir Importar/Exportar"
545
+
546
+ #: ../classes/settings.php:609
547
+ #, php-format
548
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
549
+ msgstr "Ver más detalles del <a href=\"%s\">Complemento-Pro</a> "
550
+
551
+ #: ../classes/settings.php:617
552
+ msgid "Support"
553
+ msgstr "Ayuda"
554
+
555
+ #: ../classes/settings.php:620
556
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
557
+ msgstr "Comprueba la sección de <strong>Ayuda</strong> arriba a la derecha de la pantalla."
558
+
559
+ #: ../classes/settings.php:622
560
+ #, php-format
561
+ msgid ""
562
+ "For full documentation, bug reports, feature suggestions and other tips <a "
563
+ "href='%s'>visit the Admin Columns website</a>"
564
+ msgstr "Para obtener la documentación completa, informes de errores, sugerencias y otros consejos, <a href='%s'>visitar la página web de Columnas de administración</a>"
565
+
566
+ #: ../classes/settings.php:642
567
+ msgid "Drag and drop to reorder"
568
+ msgstr "Arrastrar y soltar para reordenar"
569
+
570
+ #: ../classes/settings.php:645
571
+ msgid "Add Column"
572
+ msgstr "Añadir columna"
573
+
574
+ #: ../classes/settings.php:696
575
+ msgid "General Settings"
576
+ msgstr "Ajustes generales"
577
+
578
+ #: ../classes/settings.php:697
579
+ msgid "Customize your Admin Columns settings."
580
+ msgstr "Personaliza los ajustes de las Columnas de administración."
581
+
582
+ #: ../classes/settings.php:710
583
+ msgid "Show hidden custom fields. Default is <code>off</code>."
584
+ msgstr "Mostrar campos personalizados ocultos. El valor predeterminado es <code>off</code>."
585
+
586
+ #: ../classes/settings.php:716
587
+ msgid ""
588
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
589
+ msgstr "Mostrar el botón \"Editar columnas\" en la administración. El valor predeterminado es <code>off</code>."
590
+
591
+ #: ../classes/settings.php:723
592
+ msgid "Save"
593
+ msgstr "Guardar"
594
+
595
+ #: ../classes/settings.php:763
596
+ msgid "Restore Settings"
597
+ msgstr "Restaurar ajustes"
598
+
599
+ #: ../classes/settings.php:764
600
+ msgid "This will delete all column settings and restore the default settings."
601
+ msgstr "Esto eliminará todos los ajustes de columnas y restaurará la configuración predeterminada."
602
+
603
+ #: ../classes/settings.php:770
604
+ msgid "Restore default settings"
605
+ msgstr "Restaurar ajustes predeterminados"
606
+
607
+ #: ../classes/settings.php:770
608
+ msgid ""
609
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
+ msgstr "¡Advertencia! Se borrarán todos los datos de columnas de administrador guardadas. Esto no se puede deshacer. \\'Aceptar\\' para eliminar, \\'Cancelar\\' para detener"
612
+
613
+ #: ../classes/storage_model.php:167
614
+ msgid "settings succesfully restored."
615
+ msgstr "ajustes restaurados."
616
+
617
+ #: ../classes/storage_model.php:181
618
+ msgid "No columns settings available."
619
+ msgstr "No hay ajustes de columnas disponibles"
620
+
621
+ #: ../classes/storage_model.php:204
622
+ #, php-format
623
+ msgid "You are trying to store the same settings for %s."
624
+ msgstr "Estás intentando almacenar la misma configuración para %s."
625
+
626
+ #: ../classes/storage_model.php:208
627
+ #, php-format
628
+ msgid "Settings for %s updated succesfully."
629
+ msgstr "Ajustes para %s actualizados."
630
+
631
+ #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
632
+ msgid "View"
633
+ msgstr "Ver"
634
+
635
+ #: ../classes/upgrade.php:45
636
+ msgid "Upgrade"
637
+ msgstr "Actualizar"
638
+
639
+ #: ../classes/upgrade.php:90
640
+ msgid "requires a database upgrade"
641
+ msgstr "necesita una actualización de la base de datos"
642
+
643
+ #: ../classes/upgrade.php:93
644
+ msgid "why?"
645
+ msgstr "¿por qué?"
646
+
647
+ #: ../classes/upgrade.php:94
648
+ msgid "Please"
649
+ msgstr "Por favor"
650
+
651
+ #: ../classes/upgrade.php:95
652
+ msgid "backup your database"
653
+ msgstr "haz una copia de seguridad de tu base de datos"
654
+
655
+ #: ../classes/upgrade.php:96
656
+ msgid "then click"
657
+ msgstr "después clic"
658
+
659
+ #: ../classes/upgrade.php:304
660
+ msgid "Migrating Column Settings"
661
+ msgstr "Migración de ajustes de columnas"
662
+
663
+ #: ../classes/upgrade.php:340
664
+ msgid "No Upgrade Required"
665
+ msgstr "No es necesario actualizar"
666
+
667
+ #: ../classes/upgrade.php:341
668
+ msgid "Return to welcome screen."
669
+ msgstr "Volver a la pantalla de inicio."
670
+
671
+ #: ../classes/upgrade.php:359
672
+ msgid "Upgrade Complete!"
673
+ msgstr "Actualización completada"
674
+
675
+ #: ../classes/upgrade.php:359
676
+ msgid "Return to settings."
677
+ msgstr "Volver a ajustes."
678
+
679
+ #: ../classes/upgrade.php:360
680
+ msgid "Error"
681
+ msgstr "Error"
682
+
683
+ #: ../classes/upgrade.php:361
684
+ msgid ""
685
+ "Sorry. Something went wrong during the upgrade process. Please report this "
686
+ "on the support forum."
687
+ msgstr "Lo sentimos. Algo salió mal durante el proceso de actualización. Por favor, informa de esto en el foro de soporte."
688
+
689
+ #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
690
+ msgid "Media Library"
691
+ msgstr "Biblioteca multimedia"
692
+
693
+ #: ../classes/column/custom-field.php:79
694
+ msgid "Post Title (Post ID's)"
695
+ msgstr "Título de entrada (ID de entrada)"
696
+
697
+ #: ../classes/column/custom-field.php:80
698
+ msgid "Username (User ID's)"
699
+ msgstr "Usuario (ID de usuario)"
700
+
701
+ #: ../classes/column/custom-field.php:81
702
+ msgid "Checkmark (true/false)"
703
+ msgstr "Casilla de verificación (true/false)"
704
+
705
+ #: ../classes/column/custom-field.php:324
706
+ msgid "Select your custom field."
707
+ msgstr "Seleccionar el campo personalizado."
708
+
709
+ #: ../classes/column/custom-field.php:334
710
+ msgid "No custom fields available."
711
+ msgstr "Ningún campo personalizado disponible."
712
+
713
+ #: ../classes/column/custom-field.php:341
714
+ msgid "Field Type"
715
+ msgstr "Tipo de campo"
716
+
717
+ #: ../classes/column/custom-field.php:341
718
+ msgid "This will determine how the value will be displayed."
719
+ msgstr "Esto determinará cómo se mostrará el valor."
720
+
721
+ #: ../classes/column/custom-field.php:384
722
+ msgid "Before"
723
+ msgstr "Antes"
724
+
725
+ #: ../classes/column/custom-field.php:384
726
+ msgid "This text will appear before the custom field value."
727
+ msgstr "Este texto aparecerá antes del valor del campo personalizado."
728
+
729
+ #: ../classes/column/custom-field.php:390
730
+ msgid "After"
731
+ msgstr "Después"
732
+
733
+ #: ../classes/column/custom-field.php:390
734
+ msgid "This text will appear after the custom field value."
735
+ msgstr "Este texto aparecerá detrás del valor del campo personalizado."
736
+
737
+ #: ../classes/column/comment/actions.php:14
738
+ #: ../classes/column/link/actions.php:14
739
+ #: ../classes/column/media/actions.php:14
740
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
741
+ msgid "Actions"
742
+ msgstr "Acciones"
743
+
744
+ #: ../classes/column/comment/actions.php:73
745
+ #: ../classes/column/comment/actions.php:78
746
+ msgid "Unapprove"
747
+ msgstr "Rechazar"
748
+
749
+ #: ../classes/column/comment/actions.php:75
750
+ #: ../classes/column/comment/actions.php:77
751
+ msgid "Approve"
752
+ msgstr "Aprobar"
753
+
754
+ #: ../classes/column/comment/actions.php:90
755
+ #: ../classes/column/post/actions.php:57
756
+ msgid "Delete Permanently"
757
+ msgstr "Borrar permanentemente"
758
+
759
+ #: ../classes/column/comment/actions.php:96
760
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
761
+ #: ../classes/column/user/actions.php:57
762
+ msgid "Edit"
763
+ msgstr "Editar"
764
+
765
+ #: ../classes/column/comment/actions.php:97
766
+ #: ../classes/column/post/actions.php:49
767
+ msgid "Quick&nbsp;Edit"
768
+ msgstr "Edición&nbsp;rápida"
769
+
770
+ #: ../classes/column/comment/actions.php:98
771
+ msgid "Reply"
772
+ msgstr "Responder"
773
+
774
+ #: ../classes/column/comment/agent.php:12
775
+ msgid "Agent"
776
+ msgstr "Agente"
777
+
778
+ #: ../classes/column/comment/approved.php:12
779
+ #: ../classes/column/post/comment-count.php:31
780
+ msgid "Approved"
781
+ msgstr "Aprobado"
782
+
783
+ #: ../classes/column/comment/author-avatar.php:12
784
+ msgid "Avatar"
785
+ msgstr "Avatar"
786
+
787
+ #: ../classes/column/comment/author-email.php:12
788
+ msgid "Author email"
789
+ msgstr "Email del autor"
790
+
791
+ #: ../classes/column/comment/author-ip.php:12
792
+ msgid "Author IP"
793
+ msgstr "IP del autor"
794
+
795
+ #: ../classes/column/comment/author-url.php:12
796
+ msgid "Author url"
797
+ msgstr "Url del autor"
798
+
799
+ #: ../classes/column/comment/author.php:12
800
+ msgid "Author"
801
+ msgstr "Autor"
802
+
803
+ #: ../classes/column/comment/date-gmt.php:12
804
+ msgid "Date GMT"
805
+ msgstr "Fecha GMT"
806
+
807
+ #: ../classes/column/comment/date-gmt.php:25
808
+ #: ../classes/column/comment/date.php:25
809
+ #, php-format
810
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
811
+ msgstr "Enviado el <a href=\"%1$s\">%2$s a las %3$s</a>"
812
+
813
+ #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
814
+ #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
815
+ msgid "ID"
816
+ msgstr "ID"
817
+
818
+ #: ../classes/column/comment/reply-to.php:12
819
+ msgid "In Reply To"
820
+ msgstr "En respuesta a"
821
+
822
+ #: ../classes/column/comment/word-count.php:12
823
+ #: ../classes/column/post/word-count.php:12
824
+ msgid "Word count"
825
+ msgstr "Número de palabras"
826
+
827
+ #: ../classes/column/link/actions.php:46
828
+ #, php-format
829
+ msgid ""
830
+ "You are about to delete this link '%s'\n"
831
+ " 'Cancel' to stop, 'OK' to delete."
832
+ msgstr "Estás a punto de borrar este enlace'%s⏎\n\\'Cancelar\\' para para detener, \\'Aceptar\\' para borrar."
833
+
834
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
+ msgid "Delete"
836
+ msgstr "Eliminar"
837
+
838
+ #: ../classes/column/link/description.php:12
839
+ #: ../classes/column/media/description.php:12
840
+ #: ../classes/column/user/description.php:14
841
+ msgid "Description"
842
+ msgstr "Descripción"
843
+
844
+ #: ../classes/column/link/length.php:12
845
+ msgid "Length"
846
+ msgstr "Longitud"
847
+
848
+ #: ../classes/column/link/notes.php:13
849
+ msgid "Notes"
850
+ msgstr "Notas"
851
+
852
+ #: ../classes/column/link/owner.php:12
853
+ msgid "Owner"
854
+ msgstr "Propietario"
855
+
856
+ #: ../classes/column/link/rss.php:12
857
+ msgid "Rss"
858
+ msgstr "RSS"
859
+
860
+ #: ../classes/column/link/target.php:12
861
+ msgid "Target"
862
+ msgstr "Destino"
863
+
864
+ #: ../classes/column/media/alternate-text.php:12
865
+ msgid "Alt"
866
+ msgstr "Alt"
867
+
868
+ #: ../classes/column/media/available-sizes.php:14
869
+ msgid "Available Sizes"
870
+ msgstr "Tamaños disponibles"
871
+
872
+ #: ../classes/column/media/available-sizes.php:37
873
+ msgid "full size"
874
+ msgstr "Tamaño completo"
875
+
876
+ #: ../classes/column/media/caption.php:12
877
+ #: ../classes/column/media/exif-data.php:36
878
+ msgid "Caption"
879
+ msgstr "Leyenda"
880
+
881
+ #: ../classes/column/media/dimensions.php:12
882
+ msgid "Dimensions"
883
+ msgstr "Dimensiones"
884
+
885
+ #: ../classes/column/media/exif-data.php:12
886
+ msgid "EXIF data"
887
+ msgstr "EXIF data"
888
+
889
+ #: ../classes/column/media/exif-data.php:33
890
+ msgid "Aperture"
891
+ msgstr "Apertura"
892
+
893
+ #: ../classes/column/media/exif-data.php:34
894
+ msgid "Credit"
895
+ msgstr "Créditos"
896
+
897
+ #: ../classes/column/media/exif-data.php:35
898
+ msgid "Camera"
899
+ msgstr "Cámara"
900
+
901
+ #: ../classes/column/media/exif-data.php:37
902
+ msgid "Timestamp"
903
+ msgstr "Fecha y hora"
904
+
905
+ #: ../classes/column/media/exif-data.php:38
906
+ msgid "Copyright EXIF"
907
+ msgstr "Copyright EXIF"
908
+
909
+ #: ../classes/column/media/exif-data.php:39
910
+ msgid "Focal Length"
911
+ msgstr "Distancia focal"
912
+
913
+ #: ../classes/column/media/exif-data.php:40
914
+ msgid "ISO"
915
+ msgstr "ISO"
916
+
917
+ #: ../classes/column/media/exif-data.php:41
918
+ msgid "Shutter Speed"
919
+ msgstr "Velocidad de obturador"
920
+
921
+ #: ../classes/column/media/exif-data.php:42
922
+ msgid "Title"
923
+ msgstr "Título"
924
+
925
+ #: ../classes/column/media/file-name.php:12
926
+ msgid "File name"
927
+ msgstr "Nombre de archivo"
928
+
929
+ #: ../classes/column/media/file-size.php:12
930
+ msgid "File size"
931
+ msgstr "Tamaño de archivo"
932
+
933
+ #: ../classes/column/media/full-path.php:12
934
+ msgid "Full path"
935
+ msgstr "Ruta completa"
936
+
937
+ #: ../classes/column/media/height.php:12
938
+ msgid "Height"
939
+ msgstr "Alto"
940
+
941
+ #: ../classes/column/media/mime-type.php:12
942
+ msgid "Mime type"
943
+ msgstr "Tipo Mime"
944
+
945
+ #: ../classes/column/post/actions.php:48
946
+ msgid "Edit this item"
947
+ msgstr "Editar este elemento"
948
+
949
+ #: ../classes/column/post/actions.php:49
950
+ msgid "Edit this item inline"
951
+ msgstr "Editar este elemento en línea"
952
+
953
+ #: ../classes/column/post/actions.php:53
954
+ msgid "Restore this item from the Trash"
955
+ msgstr "Restaurar este elemento de la Papelera"
956
+
957
+ #: ../classes/column/post/actions.php:55
958
+ msgid "Move this item to the Trash"
959
+ msgstr "Enviar a la Papelera"
960
+
961
+ #: ../classes/column/post/actions.php:55
962
+ #: ../classes/column/post/comment-count.php:34
963
+ #: ../classes/column/post/status.php:35
964
+ msgid "Trash"
965
+ msgstr "Papelera"
966
+
967
+ #: ../classes/column/post/actions.php:57
968
+ msgid "Delete this item permanently"
969
+ msgstr "Eliminar elemento permanentemente"
970
+
971
+ #: ../classes/column/post/actions.php:62
972
+ #, php-format
973
+ msgid "Preview &#8220;%s&#8221;"
974
+ msgstr "Previsualizar &#8220;%s&#8221;"
975
+
976
+ #: ../classes/column/post/actions.php:62
977
+ msgid "Preview"
978
+ msgstr "Previsualizar"
979
+
980
+ #: ../classes/column/post/actions.php:64
981
+ #, php-format
982
+ msgid "View &#8220;%s&#8221;"
983
+ msgstr "Ver &#8220;%s&#8221;"
984
+
985
+ #: ../classes/column/post/attachment-count.php:12
986
+ msgid "No. of Attachments"
987
+ msgstr "Nº de adjuntos"
988
+
989
+ #: ../classes/column/post/attachment.php:12
990
+ msgid "Attachment"
991
+ msgstr "Adjunto"
992
+
993
+ #: ../classes/column/post/author-name.php:12
994
+ msgid "Display Author As"
995
+ msgstr "Mostrar autor como"
996
+
997
+ #: ../classes/column/post/author-name.php:33
998
+ msgid "Display Name"
999
+ msgstr "Mostrar nombre"
1000
+
1001
+ #: ../classes/column/post/author-name.php:34
1002
+ msgid "First Name"
1003
+ msgstr "Nombre"
1004
+
1005
+ #: ../classes/column/post/author-name.php:35
1006
+ msgid "Last Name"
1007
+ msgstr "Apellidos"
1008
+
1009
+ #: ../classes/column/post/author-name.php:36
1010
+ #: ../classes/column/user/nickname.php:14
1011
+ msgid "Nickname"
1012
+ msgstr "Apodo"
1013
+
1014
+ #: ../classes/column/post/author-name.php:37
1015
+ msgid "User Login"
1016
+ msgstr "Registro de usuario"
1017
+
1018
+ #: ../classes/column/post/author-name.php:38
1019
+ msgid "User Email"
1020
+ msgstr "Email de usuario"
1021
+
1022
+ #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1023
+ msgid "User ID"
1024
+ msgstr "ID de usuario"
1025
+
1026
+ #: ../classes/column/post/author-name.php:40
1027
+ msgid "First and Last Name"
1028
+ msgstr "Nombre y apellidos"
1029
+
1030
+ #: ../classes/column/post/author-name.php:106
1031
+ msgid "This is the format of the author name."
1032
+ msgstr "Esto es el formato del nombre de usuario."
1033
+
1034
+ #: ../classes/column/post/before-moretag.php:14
1035
+ msgid "Before More Tag"
1036
+ msgstr "Antes de la etiqueta Más"
1037
+
1038
+ #: ../classes/column/post/comment-count.php:14
1039
+ msgid "Comment count"
1040
+ msgstr "Recuento de comentarios"
1041
+
1042
+ #: ../classes/column/post/comment-count.php:30
1043
+ msgid "Total"
1044
+ msgstr "Total"
1045
+
1046
+ #: ../classes/column/post/comment-count.php:32
1047
+ msgid "Pending"
1048
+ msgstr "Pendientes"
1049
+
1050
+ #: ../classes/column/post/comment-count.php:33
1051
+ msgid "Spam"
1052
+ msgstr "Spam"
1053
+
1054
+ #: ../classes/column/post/comment-count.php:78
1055
+ #: ../classes/column/post/comment-status.php:14
1056
+ msgid "Comment status"
1057
+ msgstr "Estado del comentario"
1058
+
1059
+ #: ../classes/column/post/comment-count.php:78
1060
+ msgid "Select which comment status you like to display."
1061
+ msgstr "Seleccionar que estado de comentario deseas mostrar."
1062
+
1063
+ #: ../classes/column/post/featured-image.php:14
1064
+ msgid "Featured Image"
1065
+ msgstr "Imagen destacada"
1066
+
1067
+ #: ../classes/column/post/formats.php:14
1068
+ msgid "Post Format"
1069
+ msgstr "Formato de entrada"
1070
+
1071
+ #: ../classes/column/post/modified.php:14
1072
+ msgid "Last modified"
1073
+ msgstr "Última modificación"
1074
+
1075
+ #: ../classes/column/post/order.php:14
1076
+ msgid "Page Order"
1077
+ msgstr "Orden de página"
1078
+
1079
+ #: ../classes/column/post/page-template.php:12
1080
+ msgid "Page Template"
1081
+ msgstr "Plantilla de página"
1082
+
1083
+ #: ../classes/column/post/parent.php:12
1084
+ msgid "Parent"
1085
+ msgstr "Superior"
1086
+
1087
+ #: ../classes/column/post/ping-status.php:14
1088
+ msgid "Ping status"
1089
+ msgstr "Estado Ping"
1090
+
1091
+ #: ../classes/column/post/roles.php:14
1092
+ msgid "Roles"
1093
+ msgstr "Roles"
1094
+
1095
+ #: ../classes/column/post/slug.php:12
1096
+ msgid "Slug"
1097
+ msgstr "Url Slug"
1098
+
1099
+ #: ../classes/column/post/status.php:14
1100
+ msgid "Status"
1101
+ msgstr "Estado"
1102
+
1103
+ #: ../classes/column/post/status.php:30
1104
+ msgid "Published"
1105
+ msgstr "Publicado"
1106
+
1107
+ #: ../classes/column/post/status.php:31
1108
+ msgid "Draft"
1109
+ msgstr "Borrador"
1110
+
1111
+ #: ../classes/column/post/status.php:32
1112
+ msgid "Scheduled"
1113
+ msgstr "Programado"
1114
+
1115
+ #: ../classes/column/post/status.php:33
1116
+ msgid "Private"
1117
+ msgstr "Privado"
1118
+
1119
+ #: ../classes/column/post/status.php:34
1120
+ msgid "Pending Review"
1121
+ msgstr "Pendiente"
1122
+
1123
+ #: ../classes/column/post/sticky.php:14
1124
+ msgid "Sticky"
1125
+ msgstr "Destacado"
1126
+
1127
+ #: ../classes/column/post/taxonomy.php:12
1128
+ #: ../classes/column/post/taxonomy.php:68
1129
+ msgid "Taxonomy"
1130
+ msgstr "Taxonomía"
1131
+
1132
+ #: ../classes/column/user/comment-count.php:14
1133
+ msgid "Comment Count"
1134
+ msgstr "Recuento de comentarios"
1135
+
1136
+ #: ../classes/column/user/first-name.php:14
1137
+ msgid "First name"
1138
+ msgstr "Nombre"
1139
+
1140
+ #: ../classes/column/user/last-name.php:14
1141
+ msgid "Last name"
1142
+ msgstr "Apellidos"
1143
+
1144
+ #: ../classes/column/user/post-count.php:14
1145
+ msgid "Post Count"
1146
+ msgstr "Recuento de entradas"
1147
+
1148
+ #: ../classes/column/user/post-count.php:92
1149
+ msgid "Post Type"
1150
+ msgstr "Tipo de entrada"
1151
+
1152
+ #: ../classes/column/user/registered.php:14
1153
+ msgid "Registered"
1154
+ msgstr "Registrado"
1155
+
1156
+ #: ../classes/column/user/url.php:14
1157
+ msgid "Url"
1158
+ msgstr "Url"
1159
+
1160
+ #: ../classes/storage_model/comment.php:13
1161
+ msgid "Comments"
1162
+ msgstr "Comentarios"
1163
+
1164
+ #: ../classes/storage_model/link.php:13
1165
+ msgid "Links"
1166
+ msgstr "Enlaces"
1167
+
1168
+ #: ../classes/storage_model/user.php:13
1169
+ msgid "Users"
1170
+ msgstr "Usuarios"
languages/cpac-fr_FR.mo CHANGED
Binary file
languages/cpac-fr_FR.po CHANGED
@@ -1,31 +1,32 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Codepress Admin Columns\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-08-08 08:50+0100\n"
6
- "PO-Revision-Date: 2013-08-08 08:50+0100\n"
7
- "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Digital Factory <info@digitalfactory.pl>\n"
9
- "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Generator: Poedit 1.5.7\n"
 
 
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
 
20
 
21
- #: ../codepress-admin-columns.php:226 ../classes/settings.php:530
22
  msgid "Settings"
23
  msgstr "Réglages"
24
 
25
- #: ../codepress-admin-columns.php:345
26
- #, fuzzy
27
  msgid "Edit columns"
28
- msgstr "Admin Columns"
29
 
30
  #: ../classes/column.php:479
31
  msgid "Thumbnail"
@@ -36,258 +37,224 @@ msgid "Medium"
36
  msgstr ""
37
 
38
  #: ../classes/column.php:481
39
- #, fuzzy
40
  msgid "Large"
41
- msgstr "Cible"
42
 
43
  #: ../classes/column.php:482
44
  msgid "Full"
45
  msgstr ""
46
 
47
- #: ../classes/column.php:776
48
- #, fuzzy
49
  msgid "Date Format"
50
- msgstr "Format de post"
51
 
52
- #: ../classes/column.php:777
53
  msgid "This will determine how the date will be displayed."
54
  msgstr ""
55
 
56
- #: ../classes/column.php:783
57
  msgid "Example:"
58
  msgstr ""
59
 
60
- #: ../classes/column.php:785
61
  #, php-format
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
  msgstr ""
66
 
67
- #: ../classes/column.php:786
68
  msgid "Documentation on date and time formatting."
69
  msgstr ""
70
 
71
- #: ../classes/column.php:803
72
- #, fuzzy
73
  msgid "Excerpt length"
74
- msgstr "Extrait"
75
 
76
- #: ../classes/column.php:804
77
  msgid "Number of words"
78
  msgstr ""
79
 
80
- #: ../classes/column.php:826
81
- #, fuzzy
82
  msgid "Preview size"
83
- msgstr "Arperçu"
84
 
85
- #: ../classes/column.php:843 ../classes/column.php:899
86
  msgid "Custom"
87
  msgstr "Personnalisé"
88
 
89
- #: ../classes/column.php:846
90
- #, fuzzy
91
  msgid "width"
92
- msgstr "Largeur"
93
 
94
- #: ../classes/column.php:849
95
- #, fuzzy
96
  msgid "height"
97
- msgstr "Hauteur"
98
 
99
- #: ../classes/column.php:900 ../classes/settings.php:220
100
  #: ../classes/column/custom-field.php:72
101
  msgid "Default"
102
  msgstr "Par défaut"
103
 
104
- #: ../classes/column.php:925 ../classes/column.php:986
105
  #: ../classes/column/user/actions.php:65
106
  msgid "Remove"
107
  msgstr "Retirer"
108
 
109
- #: ../classes/column.php:944
110
  msgid "Type"
111
  msgstr ""
112
 
113
- #: ../classes/column.php:944
114
  msgid "Choose a column type."
115
  msgstr ""
116
 
117
- #: ../classes/column.php:954
118
  msgid "Label"
119
  msgstr ""
120
 
121
- #: ../classes/column.php:954
122
  msgid "This is the name which will appear as the column header."
123
  msgstr ""
124
 
125
- #: ../classes/column.php:961 ../classes/column/media/width.php:12
126
  msgid "Width"
127
  msgstr "Largeur"
128
 
129
- #: ../classes/column.php:963 ../classes/column.php:964
130
  msgid "default"
131
  msgstr "Par défaut"
132
 
133
- #: ../classes/export_import.php:64
134
- msgid "Export field is empty. Please select your types from the left column."
135
- msgstr ""
136
-
137
- #: ../classes/export_import.php:99 ../classes/export_import.php:101
138
- msgid "Sorry, there has been an error."
139
- msgstr ""
140
-
141
- #: ../classes/export_import.php:101
142
- #, php-format
143
- msgid ""
144
- "The export file could not be found at <code>%s</code>. It is likely that "
145
- "this was caused by a permissions problem."
146
- msgstr ""
147
-
148
- #: ../classes/export_import.php:119
149
- msgid "Import failed. File does not contain Admin Column settings."
150
- msgstr ""
151
-
152
  #: ../classes/settings.php:68
153
- #, fuzzy
154
  msgid "Admin Columns Settings"
155
- msgstr "Admin Columns"
156
 
157
- #: ../classes/settings.php:68 ../classes/settings.php:529
158
- #: ../classes/upgrade.php:93
159
  msgid "Admin Columns"
160
  msgstr "Admin Columns"
161
 
162
- #: ../classes/settings.php:179
 
 
 
 
 
163
  msgid "Default settings succesfully restored."
164
  msgstr ""
165
 
166
- #: ../classes/settings.php:197 ../classes/settings.php:453
167
- #, fuzzy
168
  msgid "Overview"
169
- msgstr "Arperçu"
170
 
171
- #: ../classes/settings.php:200
172
  msgid ""
173
  "This plugin is for adding and removing additional columns to the "
174
  "administration screens for post(types), pages, media library, comments, "
175
  "links and users. Change the column's label and reorder them."
176
  msgstr ""
177
 
178
- #: ../classes/settings.php:203
179
  msgid "Basics"
180
  msgstr ""
181
 
182
- #: ../classes/settings.php:205
183
- #, fuzzy
184
- msgid "Show / Hide"
185
- msgstr "Afficher tout"
186
-
187
- #: ../classes/settings.php:206
188
- msgid ""
189
- "You can switch columns on or off by clicking on the checkbox. This will show "
190
- "or hide each column heading."
191
- msgstr ""
192
-
193
- #: ../classes/settings.php:207
194
- #, fuzzy
195
  msgid "Change order"
196
- msgstr "Ordre de page"
197
 
198
- #: ../classes/settings.php:208
199
  msgid ""
200
  "By dragging the columns you can change the order which they will appear in."
201
  msgstr ""
202
 
203
- #: ../classes/settings.php:209
204
  msgid "Change label"
205
  msgstr ""
206
 
207
- #: ../classes/settings.php:210
208
  msgid ""
209
  "By clicking on the triangle you will see the column options. Here you can "
210
  "change each label of the columns heading."
211
  msgstr ""
212
 
213
- #: ../classes/settings.php:211
214
  msgid "Change column width"
215
  msgstr ""
216
 
217
- #: ../classes/settings.php:212
218
  msgid ""
219
  "By clicking on the triangle you will see the column options. By using the "
220
- "draggable slider yo can set the width of the columns in percentages."
221
  msgstr ""
222
 
223
- #: ../classes/settings.php:215 ../classes/column/custom-field.php:16
224
- #: ../classes/column/custom-field.php:320
225
  msgid "Custom Field"
226
  msgstr "Champ personnalisé"
227
 
228
- #: ../classes/settings.php:217
229
- #, fuzzy
230
  msgid "'Custom Field' column"
231
- msgstr "Ajouter une colonne de champ personnalisé"
232
 
233
- #: ../classes/settings.php:218
234
  msgid ""
235
  "The custom field colum uses the custom fields from posts and users. There "
236
  "are 10 types which you can set."
237
  msgstr ""
238
 
239
- #: ../classes/settings.php:220
240
  msgid ""
241
  "Value: Can be either a string or array. Arrays will be flattened and values "
242
  "are seperated by a ',' comma."
243
  msgstr ""
244
 
245
- #: ../classes/settings.php:221 ../classes/column/custom-field.php:73
246
  #: ../classes/column/link/image.php:12
247
  msgid "Image"
248
  msgstr "Image"
249
 
250
- #: ../classes/settings.php:221
251
  msgid ""
252
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
253
  "comma )."
254
  msgstr ""
255
 
256
- #: ../classes/settings.php:222 ../classes/column/custom-field.php:75
257
  #: ../classes/column/comment/excerpt.php:13
258
  #: ../classes/column/post/excerpt.php:13
259
  msgid "Excerpt"
260
  msgstr "Extrait"
261
 
262
- #: ../classes/settings.php:222
263
  msgid "Value: This will show the first 20 words of the Post content."
264
  msgstr ""
265
 
266
- #: ../classes/settings.php:223 ../classes/column/custom-field.php:76
267
  msgid "Multiple Values"
268
  msgstr "Valeurs multiples"
269
 
270
- #: ../classes/settings.php:223
271
  msgid ""
272
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
273
  msgstr ""
274
 
275
- #: ../classes/settings.php:224 ../classes/column/custom-field.php:77
276
  msgid "Numeric"
277
  msgstr "Numérique"
278
 
279
- #: ../classes/settings.php:224
280
  msgid ""
281
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
282
  "for sorting, so you can sort your posts on numeric (custom field) values."
283
  msgstr ""
284
 
285
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:78
286
  #: ../classes/column/comment/date.php:12
287
  msgid "Date"
288
  msgstr "Date"
289
 
290
- #: ../classes/settings.php:225
291
  #, php-format
292
  msgid ""
293
  "Value: Can be unix time stamp or a date format as described in the <a "
@@ -295,394 +262,372 @@ msgid ""
295
  "href='%s'>general settings</a> page."
296
  msgstr ""
297
 
298
- #: ../classes/settings.php:226
299
- #, fuzzy
300
  msgid "Post Titles"
301
- msgstr "Titre du post (Post ID)"
302
 
303
- #: ../classes/settings.php:226
304
  msgid "Value: can be one or more Post ID's (seperated by ',')."
305
  msgstr ""
306
 
307
- #: ../classes/settings.php:227
308
  msgid "Usernames"
309
  msgstr ""
310
 
311
- #: ../classes/settings.php:227
312
  msgid "Value: can be one or more User ID's (seperated by ',')."
313
  msgstr ""
314
 
315
- #: ../classes/settings.php:228
316
  msgid "Checkmark"
317
  msgstr ""
318
 
319
- #: ../classes/settings.php:228
320
  msgid "Value: should be a 1 (one) or 0 (zero)."
321
  msgstr ""
322
 
323
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:82
324
  msgid "Color"
325
  msgstr ""
326
 
327
- #: ../classes/settings.php:229
328
  msgid "Value: hex value color, such as #808080."
329
  msgstr ""
330
 
331
- #: ../classes/settings.php:373
332
- #, fuzzy
333
  msgid "Welcome to Admin Columns"
334
- msgstr "Admin Columns"
335
 
336
- #: ../classes/settings.php:376
337
  msgid "Thank you for updating to the latest version!"
338
  msgstr ""
339
 
340
- #: ../classes/settings.php:377
341
  msgid ""
342
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
343
  "like it."
344
  msgstr ""
345
 
346
- #: ../classes/settings.php:382
347
  msgid "What’s New"
348
  msgstr ""
349
 
350
- #: ../classes/settings.php:383
351
  msgid "Changelog"
352
  msgstr ""
353
 
354
- #: ../classes/settings.php:385
355
  msgid "Download Addons"
356
  msgstr ""
357
 
358
- #: ../classes/settings.php:391
359
  msgid "Addons"
360
  msgstr "Modules complémentaires"
361
 
362
- #: ../classes/settings.php:393
363
  msgid ""
364
  "Addons are now activated by downloading and installing individual plugins. "
365
  "Although these plugins will not be hosted on the wordpress.org repository, "
366
  "each Add-on will continue to receive updates in the usual way."
367
  msgstr ""
368
 
369
- #: ../classes/settings.php:396
370
  msgid ""
371
  "This website uses the Sortorder Addon. This addon needs to be downloaded."
372
  msgstr ""
373
 
374
- #: ../classes/settings.php:399
375
  msgid "Addons are seperate plugins which need to be downloaded."
376
  msgstr ""
377
 
378
- #: ../classes/settings.php:399
379
  msgid "Download your Addons"
380
  msgstr ""
381
 
382
- #: ../classes/settings.php:405
383
  msgid "This website does not use add-ons"
384
  msgstr ""
385
 
386
- #: ../classes/settings.php:405
387
  msgid "See our website for the Pro-addon."
388
  msgstr ""
389
 
390
- #: ../classes/settings.php:412
391
  msgid "Important"
392
  msgstr ""
393
 
394
- #: ../classes/settings.php:414
395
- #, fuzzy
396
  msgid "Database Changes"
397
- msgstr "Enregistrer les modifications"
398
 
399
- #: ../classes/settings.php:415
400
  msgid ""
401
- "The database has been changed between versions 1 and 2. But we made sure you "
402
- "can still roll back to version 1x without any issues."
403
  msgstr ""
404
 
405
- #: ../classes/settings.php:418
406
  msgid "Make sure you backup your database and then click"
407
  msgstr ""
408
 
409
- #: ../classes/settings.php:418 ../classes/upgrade.php:101
410
  msgid "Upgrade Database"
411
  msgstr ""
412
 
413
- #: ../classes/settings.php:421
414
  msgid "Potential Issues"
415
  msgstr ""
416
 
417
- #: ../classes/settings.php:422
418
  msgid ""
419
- "Do to the sizable refactoring the code, surounding Addons and action/"
420
- "filters, your website may not operate correctly. It is important that you "
421
- "read the full"
422
  msgstr ""
423
 
424
- #: ../classes/settings.php:422
425
  msgid "Migrating from v1 to v2"
426
  msgstr ""
427
 
428
- #: ../classes/settings.php:422
429
  msgid "guide to view the full list of changes."
430
  msgstr ""
431
 
432
- #: ../classes/settings.php:422
433
  #, php-format
434
  msgid ""
435
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
436
  "can fix it in the next release."
437
  msgstr ""
438
 
439
- #: ../classes/settings.php:425
440
  msgid "Important!"
441
  msgstr ""
442
 
443
- #: ../classes/settings.php:425
444
  msgid ""
445
  "If you updated the Admin Columns plugin without prior knowledge of such "
446
  "changes, Please roll back to the latest"
447
  msgstr ""
448
 
449
- #: ../classes/settings.php:425
450
  msgid "version 1"
451
  msgstr ""
452
 
453
- #: ../classes/settings.php:425
454
- #, fuzzy
455
  msgid "of this plugin."
456
- msgstr "Vous aimez ce plugin?"
457
 
458
- #: ../classes/settings.php:431
459
  msgid "Changelog for"
460
  msgstr ""
461
 
462
- #: ../classes/settings.php:446
463
  msgid "Learn more"
464
  msgstr ""
465
 
466
- #: ../classes/settings.php:455
467
  msgid ""
468
  "New to v2, all Addons act as separate plugins which need to be individually "
469
  "downloaded, installed and updated."
470
  msgstr ""
471
 
472
- #: ../classes/settings.php:456
473
  msgid ""
474
- "This page will assist you in downloading and installing each available Addon."
 
475
  msgstr ""
476
 
477
- #: ../classes/settings.php:457
478
- #, fuzzy
479
  msgid "Available Addons"
480
- msgstr "Activer modules complémentaires"
481
 
482
- #: ../classes/settings.php:462
483
  msgid "Name"
484
  msgstr ""
485
 
486
- #: ../classes/settings.php:463 ../classes/settings.php:471
487
  msgid "Download"
488
  msgstr ""
489
 
490
- #: ../classes/settings.php:469
491
  msgid "Pro Add-on (includes Sortorder add-on)"
492
  msgstr ""
493
 
494
- #: ../classes/settings.php:479
495
  msgid "Installation"
496
  msgstr ""
497
 
498
- #: ../classes/settings.php:481
499
  msgid "For each Add-on available, please perform the following:"
500
  msgstr ""
501
 
502
- #: ../classes/settings.php:483
503
  msgid "Download the Addon plugin (.zip file) to your desktop"
504
  msgstr ""
505
 
506
- #: ../classes/settings.php:484
507
  msgid "Navigate to"
508
  msgstr ""
509
 
510
- #: ../classes/settings.php:484
511
  msgid "Plugins > Add New > Upload"
512
  msgstr ""
513
 
514
- #: ../classes/settings.php:485
515
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
516
  msgstr ""
517
 
518
- #: ../classes/settings.php:486
519
  msgid ""
520
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
521
- "link"
522
  msgstr ""
523
 
524
- #: ../classes/settings.php:487
525
  msgid "The Add-on is now installed and activated!"
526
  msgstr ""
527
 
528
- #: ../classes/settings.php:488
529
  #, php-format
530
  msgid ""
531
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
532
  msgstr ""
533
 
534
- #: ../classes/settings.php:498
535
- #, fuzzy
536
  msgid "Start using Admin Columns"
537
- msgstr "Admin Columns"
538
 
539
- #: ../classes/settings.php:575
540
- #, fuzzy
541
  msgid "Store settings"
542
- msgstr "Réglages"
543
 
544
- #: ../classes/settings.php:580
545
  msgid "Update"
546
  msgstr ""
547
 
548
- #: ../classes/settings.php:580
549
  msgid "Publish"
550
  msgstr ""
551
 
552
- #: ../classes/settings.php:584
553
- #, fuzzy, php-format
554
  msgid ""
555
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
556
- "\\' to delete, \\'Cancel\\' to stop"
557
  msgstr ""
558
- "Attention! Tous les données des colonnes d'administration seront supprimées. "
559
- "Cela n'est pas irréversible. \\'OK\\' supprimer, \\'Annuler\\' arrêter"
560
 
561
- #: ../classes/settings.php:585 ../classes/column/comment/actions.php:86
562
  #: ../classes/column/post/actions.php:53
563
  msgid "Restore"
564
  msgstr "Restaurer"
565
 
566
- #: ../classes/settings.php:585
567
- #, fuzzy
568
  msgid "columns"
569
- msgstr "Admin Columns"
570
 
571
- #: ../classes/settings.php:595
572
- #, fuzzy
573
  msgid "Get the Pro Add-on"
574
- msgstr "Ordre de tri"
575
 
576
- #: ../classes/settings.php:599
577
  msgid "Add Sorting"
578
  msgstr ""
579
 
580
- #: ../classes/settings.php:600
581
  msgid "Add Filtering"
582
  msgstr ""
583
 
584
- #: ../classes/settings.php:601
585
  msgid "Add Import/Export"
586
  msgstr ""
587
 
588
- #: ../classes/settings.php:604
589
  #, php-format
590
  msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
591
  msgstr ""
592
 
593
- #: ../classes/settings.php:612
594
- #, fuzzy
595
  msgid "Support"
596
- msgstr "Besoin d'aide?"
597
 
598
- #: ../classes/settings.php:615
599
- #, fuzzy
600
  msgid "Check the <strong>Help</strong> section in the top-right screen."
601
  msgstr ""
602
- "Vous trouverez un bref aperçu de l' <strong>Aide </ strong> section dans "
603
- "l'écran en haut à droite."
604
 
605
- #: ../classes/settings.php:617
606
  #, php-format
607
  msgid ""
608
  "For full documentation, bug reports, feature suggestions and other tips <a "
609
  "href='%s'>visit the Admin Columns website</a>"
610
  msgstr ""
611
 
612
- #: ../classes/settings.php:637
613
- #, fuzzy
614
  msgid "Drag and drop to reorder"
615
- msgstr "glisser-déposer pour les réorganiser"
616
 
617
- #: ../classes/settings.php:640
618
- #, fuzzy
619
  msgid "Add Column"
620
- msgstr "Admin Columns"
621
 
622
- #: ../classes/settings.php:691
623
- #, fuzzy
624
  msgid "General Settings"
625
- msgstr "Réglages"
626
 
627
- #: ../classes/settings.php:692
628
  msgid "Customize your Admin Columns settings."
629
  msgstr ""
630
 
631
- #: ../classes/settings.php:699
632
- #, fuzzy
633
- msgid "Custom field settings"
634
- msgstr "Restaurer les paramètres par défaut"
635
-
636
- #: ../classes/settings.php:703
637
  msgid "Show hidden custom fields. Default is <code>off</code>."
638
  msgstr ""
639
 
640
- #: ../classes/settings.php:710
 
 
 
 
 
641
  msgid "Save"
642
  msgstr ""
643
 
644
- #: ../classes/settings.php:750
645
- #, fuzzy
646
  msgid "Restore Settings"
647
- msgstr "Restaurer les paramètres par défaut"
648
 
649
- #: ../classes/settings.php:751
650
  msgid "This will delete all column settings and restore the default settings."
651
- msgstr ""
652
- "Cette opération va supprimer tous les paramètres de colonnes et restaure "
653
- "tous les paramètres par défaut."
654
 
655
- #: ../classes/settings.php:757
656
  msgid "Restore default settings"
657
  msgstr "Restaurer les paramètres par défaut"
658
 
659
- #: ../classes/settings.php:757
660
  msgid ""
661
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
662
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
663
- msgstr ""
664
- "Attention! Tous les données des colonnes d'administration seront supprimées. "
665
- "Cela n'est pas irréversible. \\'OK\\' supprimer, \\'Annuler\\' arrêter"
666
 
667
- #: ../classes/storage_model.php:153
668
  msgid "settings succesfully restored."
669
  msgstr ""
670
 
671
- #: ../classes/storage_model.php:167
672
  msgid "No columns settings available."
673
  msgstr ""
674
 
675
- #: ../classes/storage_model.php:190
676
  #, php-format
677
  msgid "You are trying to store the same settings for %s."
678
  msgstr ""
679
 
680
- #: ../classes/storage_model.php:194
681
  #, php-format
682
  msgid "Settings for %s updated succesfully."
683
  msgstr ""
684
 
685
- #: ../classes/storage_model.php:575 ../classes/column/post/actions.php:64
686
  msgid "View"
687
  msgstr "Voir"
688
 
@@ -690,61 +635,59 @@ msgstr "Voir"
690
  msgid "Upgrade"
691
  msgstr ""
692
 
693
- #: ../classes/upgrade.php:94
694
  msgid "requires a database upgrade"
695
  msgstr ""
696
 
697
- #: ../classes/upgrade.php:97
698
  msgid "why?"
699
  msgstr ""
700
 
701
- #: ../classes/upgrade.php:98
702
  msgid "Please"
703
  msgstr ""
704
 
705
- #: ../classes/upgrade.php:99
706
  msgid "backup your database"
707
  msgstr ""
708
 
709
- #: ../classes/upgrade.php:100
710
  msgid "then click"
711
  msgstr ""
712
 
713
- #: ../classes/upgrade.php:308
714
  msgid "Migrating Column Settings"
715
  msgstr ""
716
 
717
- #: ../classes/upgrade.php:344
718
  msgid "No Upgrade Required"
719
  msgstr ""
720
 
721
- #: ../classes/upgrade.php:345
722
  msgid "Return to welcome screen."
723
  msgstr ""
724
 
725
- #: ../classes/upgrade.php:361
726
  msgid "Upgrade Complete!"
727
  msgstr ""
728
 
729
- #: ../classes/upgrade.php:361
730
- #, fuzzy
731
  msgid "Return to settings."
732
- msgstr "Restaurer les paramètres par défaut"
733
 
734
- #: ../classes/upgrade.php:362
735
  msgid "Error"
736
  msgstr ""
737
 
738
- #: ../classes/upgrade.php:363
739
  msgid ""
740
  "Sorry. Something went wrong during the upgrade process. Please report this "
741
  "on the support forum."
742
  msgstr ""
743
 
744
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
745
- #, fuzzy
746
  msgid "Media Library"
747
- msgstr "Icône de la médiathèque"
748
 
749
  #: ../classes/column/custom-field.php:79
750
  msgid "Post Title (Post ID's)"
@@ -758,36 +701,35 @@ msgstr ""
758
  msgid "Checkmark (true/false)"
759
  msgstr ""
760
 
761
- #: ../classes/column/custom-field.php:320
762
  msgid "Select your custom field."
763
  msgstr ""
764
 
765
- #: ../classes/column/custom-field.php:330
766
  msgid "No custom fields available."
767
  msgstr ""
768
 
769
- #: ../classes/column/custom-field.php:337
770
- #, fuzzy
771
  msgid "Field Type"
772
- msgstr "Champ"
773
 
774
- #: ../classes/column/custom-field.php:337
775
  msgid "This will determine how the value will be displayed."
776
  msgstr ""
777
 
778
- #: ../classes/column/custom-field.php:380
779
  msgid "Before"
780
  msgstr ""
781
 
782
- #: ../classes/column/custom-field.php:380
783
  msgid "This text will appear before the custom field value."
784
  msgstr ""
785
 
786
- #: ../classes/column/custom-field.php:386
787
  msgid "After"
788
  msgstr ""
789
 
790
- #: ../classes/column/custom-field.php:386
791
  msgid "This text will appear after the custom field value."
792
  msgstr ""
793
 
@@ -800,15 +742,13 @@ msgstr "Actions"
800
 
801
  #: ../classes/column/comment/actions.php:73
802
  #: ../classes/column/comment/actions.php:78
803
- #, fuzzy
804
  msgid "Unapprove"
805
- msgstr "Approuvé"
806
 
807
  #: ../classes/column/comment/actions.php:75
808
  #: ../classes/column/comment/actions.php:77
809
- #, fuzzy
810
  msgid "Approve"
811
- msgstr "Approuvé"
812
 
813
  #: ../classes/column/comment/actions.php:90
814
  #: ../classes/column/post/actions.php:57
@@ -827,9 +767,8 @@ msgid "Quick&nbsp;Edit"
827
  msgstr "Rapide&nbsp;Modification"
828
 
829
  #: ../classes/column/comment/actions.php:98
830
- #, fuzzy
831
  msgid "Reply"
832
- msgstr "En réponse à"
833
 
834
  #: ../classes/column/comment/agent.php:12
835
  msgid "Agent"
@@ -857,9 +796,8 @@ msgid "Author url"
857
  msgstr "URL de l'auteur"
858
 
859
  #: ../classes/column/comment/author.php:12
860
- #, fuzzy
861
  msgid "Author"
862
- msgstr "IP de l'auteur"
863
 
864
  #: ../classes/column/comment/date-gmt.php:12
865
  msgid "Date GMT"
@@ -968,9 +906,8 @@ msgid "Copyright EXIF"
968
  msgstr ""
969
 
970
  #: ../classes/column/media/exif-data.php:39
971
- #, fuzzy
972
  msgid "Focal Length"
973
- msgstr "Longueur"
974
 
975
  #: ../classes/column/media/exif-data.php:40
976
  msgid "ISO"
@@ -989,9 +926,8 @@ msgid "File name"
989
  msgstr "Nom du fichier"
990
 
991
  #: ../classes/column/media/file-size.php:12
992
- #, fuzzy
993
  msgid "File size"
994
- msgstr "Nom du fichier"
995
 
996
  #: ../classes/column/media/full-path.php:12
997
  msgid "Full path"
@@ -1062,14 +998,12 @@ msgid "Display Name"
1062
  msgstr ""
1063
 
1064
  #: ../classes/column/post/author-name.php:34
1065
- #, fuzzy
1066
  msgid "First Name"
1067
- msgstr "Prénom"
1068
 
1069
  #: ../classes/column/post/author-name.php:35
1070
- #, fuzzy
1071
  msgid "Last Name"
1072
- msgstr "Nom"
1073
 
1074
  #: ../classes/column/post/author-name.php:36
1075
  #: ../classes/column/user/nickname.php:14
@@ -1089,9 +1023,8 @@ msgid "User ID"
1089
  msgstr "ID utilisateur"
1090
 
1091
  #: ../classes/column/post/author-name.php:40
1092
- #, fuzzy
1093
  msgid "First and Last Name"
1094
- msgstr "Prénom"
1095
 
1096
  #: ../classes/column/post/author-name.php:106
1097
  msgid "This is the format of the author name."
@@ -1102,9 +1035,8 @@ msgid "Before More Tag"
1102
  msgstr ""
1103
 
1104
  #: ../classes/column/post/comment-count.php:14
1105
- #, fuzzy
1106
  msgid "Comment count"
1107
- msgstr "Status de commentaire"
1108
 
1109
  #: ../classes/column/post/comment-count.php:30
1110
  msgid "Total"
@@ -1136,9 +1068,8 @@ msgid "Post Format"
1136
  msgstr "Format de post"
1137
 
1138
  #: ../classes/column/post/modified.php:14
1139
- #, fuzzy
1140
  msgid "Last modified"
1141
- msgstr "Nom"
1142
 
1143
  #: ../classes/column/post/order.php:14
1144
  msgid "Page Order"
@@ -1181,9 +1112,8 @@ msgid "Scheduled"
1181
  msgstr ""
1182
 
1183
  #: ../classes/column/post/status.php:33
1184
- #, fuzzy
1185
  msgid "Private"
1186
- msgstr "Activer"
1187
 
1188
  #: ../classes/column/post/status.php:34
1189
  msgid "Pending Review"
@@ -1199,9 +1129,8 @@ msgid "Taxonomy"
1199
  msgstr "Taxonomy"
1200
 
1201
  #: ../classes/column/user/comment-count.php:14
1202
- #, fuzzy
1203
  msgid "Comment Count"
1204
- msgstr "Status de commentaire"
1205
 
1206
  #: ../classes/column/user/first-name.php:14
1207
  msgid "First name"
@@ -1212,9 +1141,8 @@ msgid "Last name"
1212
  msgstr "Nom"
1213
 
1214
  #: ../classes/column/user/post-count.php:14
1215
- #, fuzzy
1216
  msgid "Post Count"
1217
- msgstr "Nombre de post"
1218
 
1219
  #: ../classes/column/user/post-count.php:92
1220
  msgid "Post Type"
@@ -1237,148 +1165,5 @@ msgid "Links"
1237
  msgstr ""
1238
 
1239
  #: ../classes/storage_model/user.php:13
1240
- #, fuzzy
1241
  msgid "Users"
1242
- msgstr "ID utilisateur"
1243
-
1244
- #, fuzzy
1245
- #~ msgid "Add-ons"
1246
- #~ msgstr "Activer modules complémentaires"
1247
-
1248
- #, fuzzy
1249
- #~ msgid "Add-ons for Admin Columns"
1250
- #~ msgstr "Admin Columns"
1251
-
1252
- #, fuzzy
1253
- #~ msgid "the Custom Fields columns"
1254
- #~ msgstr "Ajouter une colonne de champ personnalisé"
1255
-
1256
- #, fuzzy
1257
- #~ msgid "Sortorder Addon"
1258
- #~ msgstr "Ordre de tri"
1259
-
1260
- #, fuzzy
1261
- #~ msgid "Custom Fields Addon"
1262
- #~ msgstr "Champ personnalisé"
1263
-
1264
- #, fuzzy
1265
- #~ msgid "find more addons"
1266
- #~ msgstr "En savoir plus"
1267
-
1268
- #~ msgid "This field can not be removed"
1269
- #~ msgstr "Ce champ ne peut pas être retiré"
1270
-
1271
- #~ msgid "Standard"
1272
- #~ msgstr "Standard"
1273
-
1274
- #~ msgid "original"
1275
- #~ msgstr "original"
1276
-
1277
- #~ msgid "Icon"
1278
- #~ msgstr "Icône"
1279
-
1280
- #~ msgid "Order"
1281
- #~ msgstr "Ordre"
1282
-
1283
- #~ msgid "Upload paths"
1284
- #~ msgstr "Adresse web du fichier"
1285
-
1286
- #~ msgid "Author Name"
1287
- #~ msgstr "Nom de l'auteur"
1288
-
1289
- #~ msgid "This will make all of the new columns support sorting"
1290
- #~ msgstr ""
1291
- #~ "Cela rendra l'ensemble des nouvelles colonnes qui supporteront le tri"
1292
-
1293
- #~ msgid ""
1294
- #~ "By default WordPress let's you sort by title, date, comments and author. "
1295
- #~ "This will make you be able to <strong>sort by any column of any type!</"
1296
- #~ "strong>"
1297
- #~ msgstr ""
1298
- #~ "Par défaut WordPress permet de trier par titre, par date, par auteur et "
1299
- #~ "par commentaires, cela vous permettera de trier en ordre <strong> selon "
1300
- #~ "n'importe quelle colonne et selon n'importe quel type ! </ strong>"
1301
-
1302
- #~ msgid ""
1303
- #~ "Perfect for sorting your articles, media files, comments, links and users"
1304
- #~ msgstr ""
1305
- #~ "Parfait pour le tri de vos articles, de vos fichiers multimédias, des "
1306
- #~ "commentaires, des liens et des utilisateurs"
1307
-
1308
- #~ msgid "Inactive"
1309
- #~ msgstr "Inatif"
1310
-
1311
- #~ msgid "Active"
1312
- #~ msgstr "Actif"
1313
-
1314
- #~ msgid "Fill in your activation code"
1315
- #~ msgstr "Remplissez votre code d'activation"
1316
-
1317
- #~ msgid "Deactivate"
1318
- #~ msgstr "Désactiver"
1319
-
1320
- #~ msgid ""
1321
- #~ "Add-ons can be unlocked by purchasing a license key. Each key can be used "
1322
- #~ "on multiple sites"
1323
- #~ msgstr ""
1324
- #~ "Modules complémentaires peuvent être débloqués par l'achat d'une clé de "
1325
- #~ "licence. Chaque clé peut être utilisée sur plusieurs sites"
1326
-
1327
- #~ msgid "Addon"
1328
- #~ msgstr "Module complémentaire"
1329
-
1330
- #~ msgid "Activation Code"
1331
- #~ msgstr "Code d'activation"
1332
-
1333
- #~ msgid "Enter your activation code"
1334
- #~ msgstr "Entrez votre code d'activation"
1335
-
1336
- #~ msgid "Activation code unrecognised"
1337
- #~ msgstr "Code d'activation non reconnue"
1338
-
1339
- #~ msgid "Codepress Admin Columns"
1340
- #~ msgstr "Codepress Admin Columns"
1341
-
1342
- #~ msgid ""
1343
- #~ "By default WordPress let's you only sort by title, date, comments and "
1344
- #~ "author."
1345
- #~ msgstr ""
1346
- #~ "Par défaut WordPress permet de trier par titre, par date, par auteur et "
1347
- #~ "par commentaires."
1348
-
1349
- #~ msgid ""
1350
- #~ "Make <strong>all columns</strong> of <strong>all types</strong> support "
1351
- #~ "sorting &#8212; with the sorting addon."
1352
- #~ msgstr ""
1353
- #~ "Faire <strong> que toutes les colonnes </ strong> de <strong> tous types "
1354
- #~ "</ strong> supportent le tri &#8212; avec le module complémentaire de tri."
1355
-
1356
- #~ msgid "Why not do any or all of the following"
1357
- #~ msgstr "Pourquoi ne pas faire tout ou partie de ce qui suit"
1358
-
1359
- #~ msgid "Link to it so other folks can find out about it."
1360
- #~ msgstr "Lien vers d'autres gens qui ont trouvés par rapport à ceci."
1361
-
1362
- #~ msgid "Give it a 5 star rating on WordPress.org."
1363
- #~ msgstr "Donnez une cote de 5 étoiles sur WordPress.org."
1364
-
1365
- #~ msgid "Donate a token of your appreciation."
1366
- #~ msgstr "Faites un don pour signifier votre appréciation."
1367
-
1368
- #~ msgid ""
1369
- #~ "If you are having problems with this plugin, please talk about them in "
1370
- #~ "the <a href=\"%s\">Support forums</a> or send me an email %s."
1371
- #~ msgstr ""
1372
- #~ "Si vous rencontrez des problèmes avec cette extension, s'il vous plaît "
1373
- #~ "parlez à leur sujet dans le <a href=\"%s\"> Forum de Soutien</ a> ou "
1374
- #~ "envoyez-moi un message à %s."
1375
-
1376
- #~ msgid ""
1377
- #~ "If you're sure you've found a bug, or have a feature request, please <a "
1378
- #~ "href='%s'>submit your feedback</a>."
1379
- #~ msgstr ""
1380
- #~ "Si vous êtes sûr que vous avez trouvé un bug, ou vous avez une demande "
1381
- #~ "spéciale, s'il vous plaît <a href='%s'>soumettre vos commentaires </a>."
1382
-
1383
- #~ msgid "Restore defaults"
1384
- #~ msgstr "Restaurer par défaut"
1
+ #
2
+ # Translators:
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Admin Columns\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2013-08-26 16:51+0100\n"
8
+ "PO-Revision-Date: 2013-08-29 09:27+0000\n"
9
+ "Last-Translator: codepress <info@codepress.nl>\n"
10
+ "Language-Team: French (France) (http://www.transifex.com/projects/p/admin-columns/language/fr_FR/)\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "Language: fr_FR\n"
15
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 
16
  "X-Generator: Poedit 1.5.7\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-KeywordsList: __;_e\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPath-1: ..\n"
21
+ "X-Poedit-SourceCharset: utf-8\n"
22
 
23
+ #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
24
  msgid "Settings"
25
  msgstr "Réglages"
26
 
27
+ #: ../codepress-admin-columns.php:350
 
28
  msgid "Edit columns"
29
+ msgstr ""
30
 
31
  #: ../classes/column.php:479
32
  msgid "Thumbnail"
37
  msgstr ""
38
 
39
  #: ../classes/column.php:481
 
40
  msgid "Large"
41
+ msgstr ""
42
 
43
  #: ../classes/column.php:482
44
  msgid "Full"
45
  msgstr ""
46
 
47
+ #: ../classes/column.php:774
 
48
  msgid "Date Format"
49
+ msgstr ""
50
 
51
+ #: ../classes/column.php:775
52
  msgid "This will determine how the date will be displayed."
53
  msgstr ""
54
 
55
+ #: ../classes/column.php:781
56
  msgid "Example:"
57
  msgstr ""
58
 
59
+ #: ../classes/column.php:783
60
  #, php-format
61
  msgid ""
62
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
63
  "date format here</a>."
64
  msgstr ""
65
 
66
+ #: ../classes/column.php:784
67
  msgid "Documentation on date and time formatting."
68
  msgstr ""
69
 
70
+ #: ../classes/column.php:801
 
71
  msgid "Excerpt length"
72
+ msgstr ""
73
 
74
+ #: ../classes/column.php:802
75
  msgid "Number of words"
76
  msgstr ""
77
 
78
+ #: ../classes/column.php:824
 
79
  msgid "Preview size"
80
+ msgstr ""
81
 
82
+ #: ../classes/column.php:841 ../classes/column.php:897
83
  msgid "Custom"
84
  msgstr "Personnalisé"
85
 
86
+ #: ../classes/column.php:844
 
87
  msgid "width"
88
+ msgstr ""
89
 
90
+ #: ../classes/column.php:847
 
91
  msgid "height"
92
+ msgstr ""
93
 
94
+ #: ../classes/column.php:898 ../classes/settings.php:224
95
  #: ../classes/column/custom-field.php:72
96
  msgid "Default"
97
  msgstr "Par défaut"
98
 
99
+ #: ../classes/column.php:923 ../classes/column.php:984
100
  #: ../classes/column/user/actions.php:65
101
  msgid "Remove"
102
  msgstr "Retirer"
103
 
104
+ #: ../classes/column.php:942
105
  msgid "Type"
106
  msgstr ""
107
 
108
+ #: ../classes/column.php:942
109
  msgid "Choose a column type."
110
  msgstr ""
111
 
112
+ #: ../classes/column.php:952
113
  msgid "Label"
114
  msgstr ""
115
 
116
+ #: ../classes/column.php:952
117
  msgid "This is the name which will appear as the column header."
118
  msgstr ""
119
 
120
+ #: ../classes/column.php:959 ../classes/column/media/width.php:12
121
  msgid "Width"
122
  msgstr "Largeur"
123
 
124
+ #: ../classes/column.php:961 ../classes/column.php:962
125
  msgid "default"
126
  msgstr "Par défaut"
127
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
  #: ../classes/settings.php:68
 
129
  msgid "Admin Columns Settings"
130
+ msgstr ""
131
 
132
+ #: ../classes/settings.php:68 ../classes/settings.php:534
133
+ #: ../classes/upgrade.php:89
134
  msgid "Admin Columns"
135
  msgstr "Admin Columns"
136
 
137
+ #: ../classes/settings.php:129
138
+ #, php-format
139
+ msgid "%s column is already present and can not be duplicated."
140
+ msgstr ""
141
+
142
+ #: ../classes/settings.php:184
143
  msgid "Default settings succesfully restored."
144
  msgstr ""
145
 
146
+ #: ../classes/settings.php:202 ../classes/settings.php:457
 
147
  msgid "Overview"
148
+ msgstr ""
149
 
150
+ #: ../classes/settings.php:205
151
  msgid ""
152
  "This plugin is for adding and removing additional columns to the "
153
  "administration screens for post(types), pages, media library, comments, "
154
  "links and users. Change the column's label and reorder them."
155
  msgstr ""
156
 
157
+ #: ../classes/settings.php:208
158
  msgid "Basics"
159
  msgstr ""
160
 
161
+ #: ../classes/settings.php:210
 
 
 
 
 
 
 
 
 
 
 
 
162
  msgid "Change order"
163
+ msgstr ""
164
 
165
+ #: ../classes/settings.php:211
166
  msgid ""
167
  "By dragging the columns you can change the order which they will appear in."
168
  msgstr ""
169
 
170
+ #: ../classes/settings.php:212
171
  msgid "Change label"
172
  msgstr ""
173
 
174
+ #: ../classes/settings.php:213
175
  msgid ""
176
  "By clicking on the triangle you will see the column options. Here you can "
177
  "change each label of the columns heading."
178
  msgstr ""
179
 
180
+ #: ../classes/settings.php:214
181
  msgid "Change column width"
182
  msgstr ""
183
 
184
+ #: ../classes/settings.php:215
185
  msgid ""
186
  "By clicking on the triangle you will see the column options. By using the "
187
+ "draggable slider you can set the width of the columns in percentages."
188
  msgstr ""
189
 
190
+ #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
191
+ #: ../classes/column/custom-field.php:324
192
  msgid "Custom Field"
193
  msgstr "Champ personnalisé"
194
 
195
+ #: ../classes/settings.php:221
 
196
  msgid "'Custom Field' column"
197
+ msgstr ""
198
 
199
+ #: ../classes/settings.php:222
200
  msgid ""
201
  "The custom field colum uses the custom fields from posts and users. There "
202
  "are 10 types which you can set."
203
  msgstr ""
204
 
205
+ #: ../classes/settings.php:224
206
  msgid ""
207
  "Value: Can be either a string or array. Arrays will be flattened and values "
208
  "are seperated by a ',' comma."
209
  msgstr ""
210
 
211
+ #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
212
  #: ../classes/column/link/image.php:12
213
  msgid "Image"
214
  msgstr "Image"
215
 
216
+ #: ../classes/settings.php:225
217
  msgid ""
218
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
219
  "comma )."
220
  msgstr ""
221
 
222
+ #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
223
  #: ../classes/column/comment/excerpt.php:13
224
  #: ../classes/column/post/excerpt.php:13
225
  msgid "Excerpt"
226
  msgstr "Extrait"
227
 
228
+ #: ../classes/settings.php:226
229
  msgid "Value: This will show the first 20 words of the Post content."
230
  msgstr ""
231
 
232
+ #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
233
  msgid "Multiple Values"
234
  msgstr "Valeurs multiples"
235
 
236
+ #: ../classes/settings.php:227
237
  msgid ""
238
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
239
+ "array."
240
  msgstr ""
241
 
242
+ #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
243
  msgid "Numeric"
244
  msgstr "Numérique"
245
 
246
+ #: ../classes/settings.php:228
247
  msgid ""
248
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
249
  "for sorting, so you can sort your posts on numeric (custom field) values."
250
  msgstr ""
251
 
252
+ #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
253
  #: ../classes/column/comment/date.php:12
254
  msgid "Date"
255
  msgstr "Date"
256
 
257
+ #: ../classes/settings.php:229
258
  #, php-format
259
  msgid ""
260
  "Value: Can be unix time stamp or a date format as described in the <a "
262
  "href='%s'>general settings</a> page."
263
  msgstr ""
264
 
265
+ #: ../classes/settings.php:230
 
266
  msgid "Post Titles"
267
+ msgstr ""
268
 
269
+ #: ../classes/settings.php:230
270
  msgid "Value: can be one or more Post ID's (seperated by ',')."
271
  msgstr ""
272
 
273
+ #: ../classes/settings.php:231
274
  msgid "Usernames"
275
  msgstr ""
276
 
277
+ #: ../classes/settings.php:231
278
  msgid "Value: can be one or more User ID's (seperated by ',')."
279
  msgstr ""
280
 
281
+ #: ../classes/settings.php:232
282
  msgid "Checkmark"
283
  msgstr ""
284
 
285
+ #: ../classes/settings.php:232
286
  msgid "Value: should be a 1 (one) or 0 (zero)."
287
  msgstr ""
288
 
289
+ #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
290
  msgid "Color"
291
  msgstr ""
292
 
293
+ #: ../classes/settings.php:233
294
  msgid "Value: hex value color, such as #808080."
295
  msgstr ""
296
 
297
+ #: ../classes/settings.php:377
 
298
  msgid "Welcome to Admin Columns"
299
+ msgstr ""
300
 
301
+ #: ../classes/settings.php:380
302
  msgid "Thank you for updating to the latest version!"
303
  msgstr ""
304
 
305
+ #: ../classes/settings.php:381
306
  msgid ""
307
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
308
  "like it."
309
  msgstr ""
310
 
311
+ #: ../classes/settings.php:386
312
  msgid "What’s New"
313
  msgstr ""
314
 
315
+ #: ../classes/settings.php:387
316
  msgid "Changelog"
317
  msgstr ""
318
 
319
+ #: ../classes/settings.php:389
320
  msgid "Download Addons"
321
  msgstr ""
322
 
323
+ #: ../classes/settings.php:395
324
  msgid "Addons"
325
  msgstr "Modules complémentaires"
326
 
327
+ #: ../classes/settings.php:397
328
  msgid ""
329
  "Addons are now activated by downloading and installing individual plugins. "
330
  "Although these plugins will not be hosted on the wordpress.org repository, "
331
  "each Add-on will continue to receive updates in the usual way."
332
  msgstr ""
333
 
334
+ #: ../classes/settings.php:400
335
  msgid ""
336
  "This website uses the Sortorder Addon. This addon needs to be downloaded."
337
  msgstr ""
338
 
339
+ #: ../classes/settings.php:403
340
  msgid "Addons are seperate plugins which need to be downloaded."
341
  msgstr ""
342
 
343
+ #: ../classes/settings.php:403
344
  msgid "Download your Addons"
345
  msgstr ""
346
 
347
+ #: ../classes/settings.php:409
348
  msgid "This website does not use add-ons"
349
  msgstr ""
350
 
351
+ #: ../classes/settings.php:409
352
  msgid "See our website for the Pro-addon."
353
  msgstr ""
354
 
355
+ #: ../classes/settings.php:416
356
  msgid "Important"
357
  msgstr ""
358
 
359
+ #: ../classes/settings.php:418
 
360
  msgid "Database Changes"
361
+ msgstr ""
362
 
363
+ #: ../classes/settings.php:419
364
  msgid ""
365
+ "The database has been changed between versions 1 and 2. But we made sure you"
366
+ " can still roll back to version 1x without any issues."
367
  msgstr ""
368
 
369
+ #: ../classes/settings.php:422
370
  msgid "Make sure you backup your database and then click"
371
  msgstr ""
372
 
373
+ #: ../classes/settings.php:422 ../classes/upgrade.php:97
374
  msgid "Upgrade Database"
375
  msgstr ""
376
 
377
+ #: ../classes/settings.php:425
378
  msgid "Potential Issues"
379
  msgstr ""
380
 
381
+ #: ../classes/settings.php:426
382
  msgid ""
383
+ "Do to the sizable refactoring the code, surounding Addons and "
384
+ "action/filters, your website may not operate correctly. It is important that"
385
+ " you read the full"
386
  msgstr ""
387
 
388
+ #: ../classes/settings.php:426
389
  msgid "Migrating from v1 to v2"
390
  msgstr ""
391
 
392
+ #: ../classes/settings.php:426
393
  msgid "guide to view the full list of changes."
394
  msgstr ""
395
 
396
+ #: ../classes/settings.php:426
397
  #, php-format
398
  msgid ""
399
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
400
  "can fix it in the next release."
401
  msgstr ""
402
 
403
+ #: ../classes/settings.php:429
404
  msgid "Important!"
405
  msgstr ""
406
 
407
+ #: ../classes/settings.php:429
408
  msgid ""
409
  "If you updated the Admin Columns plugin without prior knowledge of such "
410
  "changes, Please roll back to the latest"
411
  msgstr ""
412
 
413
+ #: ../classes/settings.php:429
414
  msgid "version 1"
415
  msgstr ""
416
 
417
+ #: ../classes/settings.php:429
 
418
  msgid "of this plugin."
419
+ msgstr ""
420
 
421
+ #: ../classes/settings.php:435
422
  msgid "Changelog for"
423
  msgstr ""
424
 
425
+ #: ../classes/settings.php:450
426
  msgid "Learn more"
427
  msgstr ""
428
 
429
+ #: ../classes/settings.php:459
430
  msgid ""
431
  "New to v2, all Addons act as separate plugins which need to be individually "
432
  "downloaded, installed and updated."
433
  msgstr ""
434
 
435
+ #: ../classes/settings.php:460
436
  msgid ""
437
+ "This page will assist you in downloading and installing each available "
438
+ "Addon."
439
  msgstr ""
440
 
441
+ #: ../classes/settings.php:461
 
442
  msgid "Available Addons"
443
+ msgstr ""
444
 
445
+ #: ../classes/settings.php:466
446
  msgid "Name"
447
  msgstr ""
448
 
449
+ #: ../classes/settings.php:467 ../classes/settings.php:475
450
  msgid "Download"
451
  msgstr ""
452
 
453
+ #: ../classes/settings.php:473
454
  msgid "Pro Add-on (includes Sortorder add-on)"
455
  msgstr ""
456
 
457
+ #: ../classes/settings.php:483
458
  msgid "Installation"
459
  msgstr ""
460
 
461
+ #: ../classes/settings.php:485
462
  msgid "For each Add-on available, please perform the following:"
463
  msgstr ""
464
 
465
+ #: ../classes/settings.php:487
466
  msgid "Download the Addon plugin (.zip file) to your desktop"
467
  msgstr ""
468
 
469
+ #: ../classes/settings.php:488
470
  msgid "Navigate to"
471
  msgstr ""
472
 
473
+ #: ../classes/settings.php:488
474
  msgid "Plugins > Add New > Upload"
475
  msgstr ""
476
 
477
+ #: ../classes/settings.php:489
478
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
479
  msgstr ""
480
 
481
+ #: ../classes/settings.php:490
482
  msgid ""
483
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
484
+ " link"
485
  msgstr ""
486
 
487
+ #: ../classes/settings.php:491
488
  msgid "The Add-on is now installed and activated!"
489
  msgstr ""
490
 
491
+ #: ../classes/settings.php:492
492
  #, php-format
493
  msgid ""
494
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
495
  msgstr ""
496
 
497
+ #: ../classes/settings.php:502
 
498
  msgid "Start using Admin Columns"
499
+ msgstr ""
500
 
501
+ #: ../classes/settings.php:580
 
502
  msgid "Store settings"
503
+ msgstr ""
504
 
505
+ #: ../classes/settings.php:585
506
  msgid "Update"
507
  msgstr ""
508
 
509
+ #: ../classes/settings.php:585
510
  msgid "Publish"
511
  msgstr ""
512
 
513
+ #: ../classes/settings.php:589
514
+ #, php-format
515
  msgid ""
516
+ "Warning! The %s columns data will be deleted. This cannot be undone. "
517
+ "\\'OK\\' to delete, \\'Cancel\\' to stop"
518
  msgstr ""
 
 
519
 
520
+ #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
521
  #: ../classes/column/post/actions.php:53
522
  msgid "Restore"
523
  msgstr "Restaurer"
524
 
525
+ #: ../classes/settings.php:590
 
526
  msgid "columns"
527
+ msgstr ""
528
 
529
+ #: ../classes/settings.php:600
 
530
  msgid "Get the Pro Add-on"
531
+ msgstr ""
532
 
533
+ #: ../classes/settings.php:604
534
  msgid "Add Sorting"
535
  msgstr ""
536
 
537
+ #: ../classes/settings.php:605
538
  msgid "Add Filtering"
539
  msgstr ""
540
 
541
+ #: ../classes/settings.php:606
542
  msgid "Add Import/Export"
543
  msgstr ""
544
 
545
+ #: ../classes/settings.php:609
546
  #, php-format
547
  msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
548
  msgstr ""
549
 
550
+ #: ../classes/settings.php:617
 
551
  msgid "Support"
552
+ msgstr ""
553
 
554
+ #: ../classes/settings.php:620
 
555
  msgid "Check the <strong>Help</strong> section in the top-right screen."
556
  msgstr ""
 
 
557
 
558
+ #: ../classes/settings.php:622
559
  #, php-format
560
  msgid ""
561
  "For full documentation, bug reports, feature suggestions and other tips <a "
562
  "href='%s'>visit the Admin Columns website</a>"
563
  msgstr ""
564
 
565
+ #: ../classes/settings.php:642
 
566
  msgid "Drag and drop to reorder"
567
+ msgstr ""
568
 
569
+ #: ../classes/settings.php:645
 
570
  msgid "Add Column"
571
+ msgstr ""
572
 
573
+ #: ../classes/settings.php:696
 
574
  msgid "General Settings"
575
+ msgstr ""
576
 
577
+ #: ../classes/settings.php:697
578
  msgid "Customize your Admin Columns settings."
579
  msgstr ""
580
 
581
+ #: ../classes/settings.php:710
 
 
 
 
 
582
  msgid "Show hidden custom fields. Default is <code>off</code>."
583
  msgstr ""
584
 
585
+ #: ../classes/settings.php:716
586
+ msgid ""
587
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
588
+ msgstr ""
589
+
590
+ #: ../classes/settings.php:723
591
  msgid "Save"
592
  msgstr ""
593
 
594
+ #: ../classes/settings.php:763
 
595
  msgid "Restore Settings"
596
+ msgstr ""
597
 
598
+ #: ../classes/settings.php:764
599
  msgid "This will delete all column settings and restore the default settings."
600
+ msgstr "Cette opération va supprimer tous les paramètres de colonnes et restaure tous les paramètres par défaut."
 
 
601
 
602
+ #: ../classes/settings.php:770
603
  msgid "Restore default settings"
604
  msgstr "Restaurer les paramètres par défaut"
605
 
606
+ #: ../classes/settings.php:770
607
  msgid ""
608
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
609
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
610
+ msgstr "Attention! Tous les données des colonnes d'administration seront supprimées. Cela n'est pas irréversible. \\'OK\\' supprimer, \\'Annuler\\' arrêter"
 
 
611
 
612
+ #: ../classes/storage_model.php:167
613
  msgid "settings succesfully restored."
614
  msgstr ""
615
 
616
+ #: ../classes/storage_model.php:181
617
  msgid "No columns settings available."
618
  msgstr ""
619
 
620
+ #: ../classes/storage_model.php:204
621
  #, php-format
622
  msgid "You are trying to store the same settings for %s."
623
  msgstr ""
624
 
625
+ #: ../classes/storage_model.php:208
626
  #, php-format
627
  msgid "Settings for %s updated succesfully."
628
  msgstr ""
629
 
630
+ #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
631
  msgid "View"
632
  msgstr "Voir"
633
 
635
  msgid "Upgrade"
636
  msgstr ""
637
 
638
+ #: ../classes/upgrade.php:90
639
  msgid "requires a database upgrade"
640
  msgstr ""
641
 
642
+ #: ../classes/upgrade.php:93
643
  msgid "why?"
644
  msgstr ""
645
 
646
+ #: ../classes/upgrade.php:94
647
  msgid "Please"
648
  msgstr ""
649
 
650
+ #: ../classes/upgrade.php:95
651
  msgid "backup your database"
652
  msgstr ""
653
 
654
+ #: ../classes/upgrade.php:96
655
  msgid "then click"
656
  msgstr ""
657
 
658
+ #: ../classes/upgrade.php:304
659
  msgid "Migrating Column Settings"
660
  msgstr ""
661
 
662
+ #: ../classes/upgrade.php:340
663
  msgid "No Upgrade Required"
664
  msgstr ""
665
 
666
+ #: ../classes/upgrade.php:341
667
  msgid "Return to welcome screen."
668
  msgstr ""
669
 
670
+ #: ../classes/upgrade.php:359
671
  msgid "Upgrade Complete!"
672
  msgstr ""
673
 
674
+ #: ../classes/upgrade.php:359
 
675
  msgid "Return to settings."
676
+ msgstr ""
677
 
678
+ #: ../classes/upgrade.php:360
679
  msgid "Error"
680
  msgstr ""
681
 
682
+ #: ../classes/upgrade.php:361
683
  msgid ""
684
  "Sorry. Something went wrong during the upgrade process. Please report this "
685
  "on the support forum."
686
  msgstr ""
687
 
688
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
 
689
  msgid "Media Library"
690
+ msgstr ""
691
 
692
  #: ../classes/column/custom-field.php:79
693
  msgid "Post Title (Post ID's)"
701
  msgid "Checkmark (true/false)"
702
  msgstr ""
703
 
704
+ #: ../classes/column/custom-field.php:324
705
  msgid "Select your custom field."
706
  msgstr ""
707
 
708
+ #: ../classes/column/custom-field.php:334
709
  msgid "No custom fields available."
710
  msgstr ""
711
 
712
+ #: ../classes/column/custom-field.php:341
 
713
  msgid "Field Type"
714
+ msgstr ""
715
 
716
+ #: ../classes/column/custom-field.php:341
717
  msgid "This will determine how the value will be displayed."
718
  msgstr ""
719
 
720
+ #: ../classes/column/custom-field.php:384
721
  msgid "Before"
722
  msgstr ""
723
 
724
+ #: ../classes/column/custom-field.php:384
725
  msgid "This text will appear before the custom field value."
726
  msgstr ""
727
 
728
+ #: ../classes/column/custom-field.php:390
729
  msgid "After"
730
  msgstr ""
731
 
732
+ #: ../classes/column/custom-field.php:390
733
  msgid "This text will appear after the custom field value."
734
  msgstr ""
735
 
742
 
743
  #: ../classes/column/comment/actions.php:73
744
  #: ../classes/column/comment/actions.php:78
 
745
  msgid "Unapprove"
746
+ msgstr ""
747
 
748
  #: ../classes/column/comment/actions.php:75
749
  #: ../classes/column/comment/actions.php:77
 
750
  msgid "Approve"
751
+ msgstr ""
752
 
753
  #: ../classes/column/comment/actions.php:90
754
  #: ../classes/column/post/actions.php:57
767
  msgstr "Rapide&nbsp;Modification"
768
 
769
  #: ../classes/column/comment/actions.php:98
 
770
  msgid "Reply"
771
+ msgstr ""
772
 
773
  #: ../classes/column/comment/agent.php:12
774
  msgid "Agent"
796
  msgstr "URL de l'auteur"
797
 
798
  #: ../classes/column/comment/author.php:12
 
799
  msgid "Author"
800
+ msgstr ""
801
 
802
  #: ../classes/column/comment/date-gmt.php:12
803
  msgid "Date GMT"
906
  msgstr ""
907
 
908
  #: ../classes/column/media/exif-data.php:39
 
909
  msgid "Focal Length"
910
+ msgstr ""
911
 
912
  #: ../classes/column/media/exif-data.php:40
913
  msgid "ISO"
926
  msgstr "Nom du fichier"
927
 
928
  #: ../classes/column/media/file-size.php:12
 
929
  msgid "File size"
930
+ msgstr ""
931
 
932
  #: ../classes/column/media/full-path.php:12
933
  msgid "Full path"
998
  msgstr ""
999
 
1000
  #: ../classes/column/post/author-name.php:34
 
1001
  msgid "First Name"
1002
+ msgstr ""
1003
 
1004
  #: ../classes/column/post/author-name.php:35
 
1005
  msgid "Last Name"
1006
+ msgstr ""
1007
 
1008
  #: ../classes/column/post/author-name.php:36
1009
  #: ../classes/column/user/nickname.php:14
1023
  msgstr "ID utilisateur"
1024
 
1025
  #: ../classes/column/post/author-name.php:40
 
1026
  msgid "First and Last Name"
1027
+ msgstr ""
1028
 
1029
  #: ../classes/column/post/author-name.php:106
1030
  msgid "This is the format of the author name."
1035
  msgstr ""
1036
 
1037
  #: ../classes/column/post/comment-count.php:14
 
1038
  msgid "Comment count"
1039
+ msgstr ""
1040
 
1041
  #: ../classes/column/post/comment-count.php:30
1042
  msgid "Total"
1068
  msgstr "Format de post"
1069
 
1070
  #: ../classes/column/post/modified.php:14
 
1071
  msgid "Last modified"
1072
+ msgstr ""
1073
 
1074
  #: ../classes/column/post/order.php:14
1075
  msgid "Page Order"
1112
  msgstr ""
1113
 
1114
  #: ../classes/column/post/status.php:33
 
1115
  msgid "Private"
1116
+ msgstr ""
1117
 
1118
  #: ../classes/column/post/status.php:34
1119
  msgid "Pending Review"
1129
  msgstr "Taxonomy"
1130
 
1131
  #: ../classes/column/user/comment-count.php:14
 
1132
  msgid "Comment Count"
1133
+ msgstr ""
1134
 
1135
  #: ../classes/column/user/first-name.php:14
1136
  msgid "First name"
1141
  msgstr "Nom"
1142
 
1143
  #: ../classes/column/user/post-count.php:14
 
1144
  msgid "Post Count"
1145
+ msgstr ""
1146
 
1147
  #: ../classes/column/user/post-count.php:92
1148
  msgid "Post Type"
1165
  msgstr ""
1166
 
1167
  #: ../classes/storage_model/user.php:13
 
1168
  msgid "Users"
1169
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cpac-it_IT.mo ADDED
Binary file
languages/cpac-it_IT.po ADDED
@@ -0,0 +1,1170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # werther <werther.d@gmail.com>, 2013
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: Admin Columns\n"
7
+ "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-10-30 18:22+0000\n"
10
+ "Last-Translator: werther <werther.d@gmail.com>\n"
11
+ "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/admin-columns/language/it_IT/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: it_IT\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.5.7\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPath-1: ..\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
+
24
+ #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
+ msgid "Settings"
26
+ msgstr "Impostazioni"
27
+
28
+ #: ../codepress-admin-columns.php:350
29
+ msgid "Edit columns"
30
+ msgstr "Modifica colonne"
31
+
32
+ #: ../classes/column.php:479
33
+ msgid "Thumbnail"
34
+ msgstr "Miniatura"
35
+
36
+ #: ../classes/column.php:480
37
+ msgid "Medium"
38
+ msgstr "Media"
39
+
40
+ #: ../classes/column.php:481
41
+ msgid "Large"
42
+ msgstr "Grande"
43
+
44
+ #: ../classes/column.php:482
45
+ msgid "Full"
46
+ msgstr "Dimensione reale"
47
+
48
+ #: ../classes/column.php:774
49
+ msgid "Date Format"
50
+ msgstr "Formato Data"
51
+
52
+ #: ../classes/column.php:775
53
+ msgid "This will determine how the date will be displayed."
54
+ msgstr "Questo determinerà il modo in cui verrà visualizzata la data."
55
+
56
+ #: ../classes/column.php:781
57
+ msgid "Example:"
58
+ msgstr "Esempio:"
59
+
60
+ #: ../classes/column.php:783
61
+ #, php-format
62
+ msgid ""
63
+ "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
+ "date format here</a>."
65
+ msgstr "Lasciare vuoto per utilizzare il formato data di WordPress, o modifica <a href=\"%s\">qui il formato data</a>."
66
+
67
+ #: ../classes/column.php:784
68
+ msgid "Documentation on date and time formatting."
69
+ msgstr "Documentazione sulla formattazione \"data e ora\"."
70
+
71
+ #: ../classes/column.php:801
72
+ msgid "Excerpt length"
73
+ msgstr "Lunghezza riassunto"
74
+
75
+ #: ../classes/column.php:802
76
+ msgid "Number of words"
77
+ msgstr "Numero di parole"
78
+
79
+ #: ../classes/column.php:824
80
+ msgid "Preview size"
81
+ msgstr "Dimensione anteprima"
82
+
83
+ #: ../classes/column.php:841 ../classes/column.php:897
84
+ msgid "Custom"
85
+ msgstr "Personalizzata"
86
+
87
+ #: ../classes/column.php:844
88
+ msgid "width"
89
+ msgstr "larghezza"
90
+
91
+ #: ../classes/column.php:847
92
+ msgid "height"
93
+ msgstr "altezza"
94
+
95
+ #: ../classes/column.php:898 ../classes/settings.php:224
96
+ #: ../classes/column/custom-field.php:72
97
+ msgid "Default"
98
+ msgstr "Predefinito"
99
+
100
+ #: ../classes/column.php:923 ../classes/column.php:984
101
+ #: ../classes/column/user/actions.php:65
102
+ msgid "Remove"
103
+ msgstr "Rimuovi"
104
+
105
+ #: ../classes/column.php:942
106
+ msgid "Type"
107
+ msgstr "TIpo"
108
+
109
+ #: ../classes/column.php:942
110
+ msgid "Choose a column type."
111
+ msgstr "Scegli un tipo di colonna."
112
+
113
+ #: ../classes/column.php:952
114
+ msgid "Label"
115
+ msgstr "Etichetta"
116
+
117
+ #: ../classes/column.php:952
118
+ msgid "This is the name which will appear as the column header."
119
+ msgstr "Questo è il nome che apparirà come intestazione della colonna."
120
+
121
+ #: ../classes/column.php:959 ../classes/column/media/width.php:12
122
+ msgid "Width"
123
+ msgstr "Larghezza"
124
+
125
+ #: ../classes/column.php:961 ../classes/column.php:962
126
+ msgid "default"
127
+ msgstr "predefinito"
128
+
129
+ #: ../classes/settings.php:68
130
+ msgid "Admin Columns Settings"
131
+ msgstr "Impostazioni Admin Columns"
132
+
133
+ #: ../classes/settings.php:68 ../classes/settings.php:534
134
+ #: ../classes/upgrade.php:89
135
+ msgid "Admin Columns"
136
+ msgstr "Admin Columns"
137
+
138
+ #: ../classes/settings.php:129
139
+ #, php-format
140
+ msgid "%s column is already present and can not be duplicated."
141
+ msgstr ""
142
+
143
+ #: ../classes/settings.php:184
144
+ msgid "Default settings succesfully restored."
145
+ msgstr "Le impostazioni predefinite sono state ripristinate."
146
+
147
+ #: ../classes/settings.php:202 ../classes/settings.php:457
148
+ msgid "Overview"
149
+ msgstr "Panoramica"
150
+
151
+ #: ../classes/settings.php:205
152
+ msgid ""
153
+ "This plugin is for adding and removing additional columns to the "
154
+ "administration screens for post(types), pages, media library, comments, "
155
+ "links and users. Change the column's label and reorder them."
156
+ msgstr ""
157
+
158
+ #: ../classes/settings.php:208
159
+ msgid "Basics"
160
+ msgstr ""
161
+
162
+ #: ../classes/settings.php:210
163
+ msgid "Change order"
164
+ msgstr "Cambia ordine"
165
+
166
+ #: ../classes/settings.php:211
167
+ msgid ""
168
+ "By dragging the columns you can change the order which they will appear in."
169
+ msgstr "Trascinando le colonne puoi modificare l'ordine in cui appariranno."
170
+
171
+ #: ../classes/settings.php:212
172
+ msgid "Change label"
173
+ msgstr "Cambia etichetta"
174
+
175
+ #: ../classes/settings.php:213
176
+ msgid ""
177
+ "By clicking on the triangle you will see the column options. Here you can "
178
+ "change each label of the columns heading."
179
+ msgstr "Cliccando sul triangolo potrai vedere le opzioni della colonna. Qui puoi cambiare l'etichetta di ogni intestazione di colonna."
180
+
181
+ #: ../classes/settings.php:214
182
+ msgid "Change column width"
183
+ msgstr "Cambia la larghezza della colonna"
184
+
185
+ #: ../classes/settings.php:215
186
+ msgid ""
187
+ "By clicking on the triangle you will see the column options. By using the "
188
+ "draggable slider you can set the width of the columns in percentages."
189
+ msgstr ""
190
+
191
+ #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
+ #: ../classes/column/custom-field.php:324
193
+ msgid "Custom Field"
194
+ msgstr "Campo personalizzato"
195
+
196
+ #: ../classes/settings.php:221
197
+ msgid "'Custom Field' column"
198
+ msgstr "Colonna 'Campo Personalizzato'"
199
+
200
+ #: ../classes/settings.php:222
201
+ msgid ""
202
+ "The custom field colum uses the custom fields from posts and users. There "
203
+ "are 10 types which you can set."
204
+ msgstr ""
205
+
206
+ #: ../classes/settings.php:224
207
+ msgid ""
208
+ "Value: Can be either a string or array. Arrays will be flattened and values "
209
+ "are seperated by a ',' comma."
210
+ msgstr ""
211
+
212
+ #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
+ #: ../classes/column/link/image.php:12
214
+ msgid "Image"
215
+ msgstr "Immagine"
216
+
217
+ #: ../classes/settings.php:225
218
+ msgid ""
219
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
+ "comma )."
221
+ msgstr ""
222
+
223
+ #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
+ #: ../classes/column/comment/excerpt.php:13
225
+ #: ../classes/column/post/excerpt.php:13
226
+ msgid "Excerpt"
227
+ msgstr "Riassunto"
228
+
229
+ #: ../classes/settings.php:226
230
+ msgid "Value: This will show the first 20 words of the Post content."
231
+ msgstr "Valore: Mostrerà le prime 20 parole del contenuto dell'Articolo."
232
+
233
+ #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
234
+ msgid "Multiple Values"
235
+ msgstr "Valori Multipli"
236
+
237
+ #: ../classes/settings.php:227
238
+ msgid ""
239
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
240
+ "array."
241
+ msgstr ""
242
+
243
+ #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
244
+ msgid "Numeric"
245
+ msgstr ""
246
+
247
+ #: ../classes/settings.php:228
248
+ msgid ""
249
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
+ "for sorting, so you can sort your posts on numeric (custom field) values."
251
+ msgstr ""
252
+
253
+ #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
+ #: ../classes/column/comment/date.php:12
255
+ msgid "Date"
256
+ msgstr "Data"
257
+
258
+ #: ../classes/settings.php:229
259
+ #, php-format
260
+ msgid ""
261
+ "Value: Can be unix time stamp or a date format as described in the <a "
262
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
+ "href='%s'>general settings</a> page."
264
+ msgstr ""
265
+
266
+ #: ../classes/settings.php:230
267
+ msgid "Post Titles"
268
+ msgstr ""
269
+
270
+ #: ../classes/settings.php:230
271
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
272
+ msgstr ""
273
+
274
+ #: ../classes/settings.php:231
275
+ msgid "Usernames"
276
+ msgstr "Nomi utente"
277
+
278
+ #: ../classes/settings.php:231
279
+ msgid "Value: can be one or more User ID's (seperated by ',')."
280
+ msgstr ""
281
+
282
+ #: ../classes/settings.php:232
283
+ msgid "Checkmark"
284
+ msgstr ""
285
+
286
+ #: ../classes/settings.php:232
287
+ msgid "Value: should be a 1 (one) or 0 (zero)."
288
+ msgstr ""
289
+
290
+ #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
291
+ msgid "Color"
292
+ msgstr ""
293
+
294
+ #: ../classes/settings.php:233
295
+ msgid "Value: hex value color, such as #808080."
296
+ msgstr ""
297
+
298
+ #: ../classes/settings.php:377
299
+ msgid "Welcome to Admin Columns"
300
+ msgstr ""
301
+
302
+ #: ../classes/settings.php:380
303
+ msgid "Thank you for updating to the latest version!"
304
+ msgstr ""
305
+
306
+ #: ../classes/settings.php:381
307
+ msgid ""
308
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
+ "like it."
310
+ msgstr ""
311
+
312
+ #: ../classes/settings.php:386
313
+ msgid "What’s New"
314
+ msgstr ""
315
+
316
+ #: ../classes/settings.php:387
317
+ msgid "Changelog"
318
+ msgstr "Changelog"
319
+
320
+ #: ../classes/settings.php:389
321
+ msgid "Download Addons"
322
+ msgstr "Scarica i componenti aggiuntivi"
323
+
324
+ #: ../classes/settings.php:395
325
+ msgid "Addons"
326
+ msgstr "Componenti aggiuntivi"
327
+
328
+ #: ../classes/settings.php:397
329
+ msgid ""
330
+ "Addons are now activated by downloading and installing individual plugins. "
331
+ "Although these plugins will not be hosted on the wordpress.org repository, "
332
+ "each Add-on will continue to receive updates in the usual way."
333
+ msgstr ""
334
+
335
+ #: ../classes/settings.php:400
336
+ msgid ""
337
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
338
+ msgstr ""
339
+
340
+ #: ../classes/settings.php:403
341
+ msgid "Addons are seperate plugins which need to be downloaded."
342
+ msgstr ""
343
+
344
+ #: ../classes/settings.php:403
345
+ msgid "Download your Addons"
346
+ msgstr ""
347
+
348
+ #: ../classes/settings.php:409
349
+ msgid "This website does not use add-ons"
350
+ msgstr ""
351
+
352
+ #: ../classes/settings.php:409
353
+ msgid "See our website for the Pro-addon."
354
+ msgstr ""
355
+
356
+ #: ../classes/settings.php:416
357
+ msgid "Important"
358
+ msgstr ""
359
+
360
+ #: ../classes/settings.php:418
361
+ msgid "Database Changes"
362
+ msgstr ""
363
+
364
+ #: ../classes/settings.php:419
365
+ msgid ""
366
+ "The database has been changed between versions 1 and 2. But we made sure you"
367
+ " can still roll back to version 1x without any issues."
368
+ msgstr ""
369
+
370
+ #: ../classes/settings.php:422
371
+ msgid "Make sure you backup your database and then click"
372
+ msgstr ""
373
+
374
+ #: ../classes/settings.php:422 ../classes/upgrade.php:97
375
+ msgid "Upgrade Database"
376
+ msgstr ""
377
+
378
+ #: ../classes/settings.php:425
379
+ msgid "Potential Issues"
380
+ msgstr ""
381
+
382
+ #: ../classes/settings.php:426
383
+ msgid ""
384
+ "Do to the sizable refactoring the code, surounding Addons and "
385
+ "action/filters, your website may not operate correctly. It is important that"
386
+ " you read the full"
387
+ msgstr ""
388
+
389
+ #: ../classes/settings.php:426
390
+ msgid "Migrating from v1 to v2"
391
+ msgstr ""
392
+
393
+ #: ../classes/settings.php:426
394
+ msgid "guide to view the full list of changes."
395
+ msgstr ""
396
+
397
+ #: ../classes/settings.php:426
398
+ #, php-format
399
+ msgid ""
400
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
+ "can fix it in the next release."
402
+ msgstr ""
403
+
404
+ #: ../classes/settings.php:429
405
+ msgid "Important!"
406
+ msgstr ""
407
+
408
+ #: ../classes/settings.php:429
409
+ msgid ""
410
+ "If you updated the Admin Columns plugin without prior knowledge of such "
411
+ "changes, Please roll back to the latest"
412
+ msgstr ""
413
+
414
+ #: ../classes/settings.php:429
415
+ msgid "version 1"
416
+ msgstr "versione 1"
417
+
418
+ #: ../classes/settings.php:429
419
+ msgid "of this plugin."
420
+ msgstr "di questo plugin."
421
+
422
+ #: ../classes/settings.php:435
423
+ msgid "Changelog for"
424
+ msgstr "Changelog per"
425
+
426
+ #: ../classes/settings.php:450
427
+ msgid "Learn more"
428
+ msgstr "Leggi altro"
429
+
430
+ #: ../classes/settings.php:459
431
+ msgid ""
432
+ "New to v2, all Addons act as separate plugins which need to be individually "
433
+ "downloaded, installed and updated."
434
+ msgstr ""
435
+
436
+ #: ../classes/settings.php:460
437
+ msgid ""
438
+ "This page will assist you in downloading and installing each available "
439
+ "Addon."
440
+ msgstr ""
441
+
442
+ #: ../classes/settings.php:461
443
+ msgid "Available Addons"
444
+ msgstr ""
445
+
446
+ #: ../classes/settings.php:466
447
+ msgid "Name"
448
+ msgstr ""
449
+
450
+ #: ../classes/settings.php:467 ../classes/settings.php:475
451
+ msgid "Download"
452
+ msgstr ""
453
+
454
+ #: ../classes/settings.php:473
455
+ msgid "Pro Add-on (includes Sortorder add-on)"
456
+ msgstr ""
457
+
458
+ #: ../classes/settings.php:483
459
+ msgid "Installation"
460
+ msgstr ""
461
+
462
+ #: ../classes/settings.php:485
463
+ msgid "For each Add-on available, please perform the following:"
464
+ msgstr ""
465
+
466
+ #: ../classes/settings.php:487
467
+ msgid "Download the Addon plugin (.zip file) to your desktop"
468
+ msgstr ""
469
+
470
+ #: ../classes/settings.php:488
471
+ msgid "Navigate to"
472
+ msgstr ""
473
+
474
+ #: ../classes/settings.php:488
475
+ msgid "Plugins > Add New > Upload"
476
+ msgstr ""
477
+
478
+ #: ../classes/settings.php:489
479
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
480
+ msgstr ""
481
+
482
+ #: ../classes/settings.php:490
483
+ msgid ""
484
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
+ " link"
486
+ msgstr ""
487
+
488
+ #: ../classes/settings.php:491
489
+ msgid "The Add-on is now installed and activated!"
490
+ msgstr ""
491
+
492
+ #: ../classes/settings.php:492
493
+ #, php-format
494
+ msgid ""
495
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
496
+ msgstr ""
497
+
498
+ #: ../classes/settings.php:502
499
+ msgid "Start using Admin Columns"
500
+ msgstr ""
501
+
502
+ #: ../classes/settings.php:580
503
+ msgid "Store settings"
504
+ msgstr ""
505
+
506
+ #: ../classes/settings.php:585
507
+ msgid "Update"
508
+ msgstr ""
509
+
510
+ #: ../classes/settings.php:585
511
+ msgid "Publish"
512
+ msgstr ""
513
+
514
+ #: ../classes/settings.php:589
515
+ #, php-format
516
+ msgid ""
517
+ "Warning! The %s columns data will be deleted. This cannot be undone. "
518
+ "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
+ msgstr ""
520
+
521
+ #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
+ #: ../classes/column/post/actions.php:53
523
+ msgid "Restore"
524
+ msgstr ""
525
+
526
+ #: ../classes/settings.php:590
527
+ msgid "columns"
528
+ msgstr ""
529
+
530
+ #: ../classes/settings.php:600
531
+ msgid "Get the Pro Add-on"
532
+ msgstr ""
533
+
534
+ #: ../classes/settings.php:604
535
+ msgid "Add Sorting"
536
+ msgstr ""
537
+
538
+ #: ../classes/settings.php:605
539
+ msgid "Add Filtering"
540
+ msgstr ""
541
+
542
+ #: ../classes/settings.php:606
543
+ msgid "Add Import/Export"
544
+ msgstr ""
545
+
546
+ #: ../classes/settings.php:609
547
+ #, php-format
548
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
549
+ msgstr ""
550
+
551
+ #: ../classes/settings.php:617
552
+ msgid "Support"
553
+ msgstr ""
554
+
555
+ #: ../classes/settings.php:620
556
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
557
+ msgstr ""
558
+
559
+ #: ../classes/settings.php:622
560
+ #, php-format
561
+ msgid ""
562
+ "For full documentation, bug reports, feature suggestions and other tips <a "
563
+ "href='%s'>visit the Admin Columns website</a>"
564
+ msgstr ""
565
+
566
+ #: ../classes/settings.php:642
567
+ msgid "Drag and drop to reorder"
568
+ msgstr ""
569
+
570
+ #: ../classes/settings.php:645
571
+ msgid "Add Column"
572
+ msgstr ""
573
+
574
+ #: ../classes/settings.php:696
575
+ msgid "General Settings"
576
+ msgstr ""
577
+
578
+ #: ../classes/settings.php:697
579
+ msgid "Customize your Admin Columns settings."
580
+ msgstr ""
581
+
582
+ #: ../classes/settings.php:710
583
+ msgid "Show hidden custom fields. Default is <code>off</code>."
584
+ msgstr ""
585
+
586
+ #: ../classes/settings.php:716
587
+ msgid ""
588
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
589
+ msgstr ""
590
+
591
+ #: ../classes/settings.php:723
592
+ msgid "Save"
593
+ msgstr ""
594
+
595
+ #: ../classes/settings.php:763
596
+ msgid "Restore Settings"
597
+ msgstr ""
598
+
599
+ #: ../classes/settings.php:764
600
+ msgid "This will delete all column settings and restore the default settings."
601
+ msgstr ""
602
+
603
+ #: ../classes/settings.php:770
604
+ msgid "Restore default settings"
605
+ msgstr ""
606
+
607
+ #: ../classes/settings.php:770
608
+ msgid ""
609
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
+ msgstr ""
612
+
613
+ #: ../classes/storage_model.php:167
614
+ msgid "settings succesfully restored."
615
+ msgstr ""
616
+
617
+ #: ../classes/storage_model.php:181
618
+ msgid "No columns settings available."
619
+ msgstr ""
620
+
621
+ #: ../classes/storage_model.php:204
622
+ #, php-format
623
+ msgid "You are trying to store the same settings for %s."
624
+ msgstr ""
625
+
626
+ #: ../classes/storage_model.php:208
627
+ #, php-format
628
+ msgid "Settings for %s updated succesfully."
629
+ msgstr ""
630
+
631
+ #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
632
+ msgid "View"
633
+ msgstr ""
634
+
635
+ #: ../classes/upgrade.php:45
636
+ msgid "Upgrade"
637
+ msgstr ""
638
+
639
+ #: ../classes/upgrade.php:90
640
+ msgid "requires a database upgrade"
641
+ msgstr ""
642
+
643
+ #: ../classes/upgrade.php:93
644
+ msgid "why?"
645
+ msgstr ""
646
+
647
+ #: ../classes/upgrade.php:94
648
+ msgid "Please"
649
+ msgstr ""
650
+
651
+ #: ../classes/upgrade.php:95
652
+ msgid "backup your database"
653
+ msgstr ""
654
+
655
+ #: ../classes/upgrade.php:96
656
+ msgid "then click"
657
+ msgstr ""
658
+
659
+ #: ../classes/upgrade.php:304
660
+ msgid "Migrating Column Settings"
661
+ msgstr ""
662
+
663
+ #: ../classes/upgrade.php:340
664
+ msgid "No Upgrade Required"
665
+ msgstr ""
666
+
667
+ #: ../classes/upgrade.php:341
668
+ msgid "Return to welcome screen."
669
+ msgstr ""
670
+
671
+ #: ../classes/upgrade.php:359
672
+ msgid "Upgrade Complete!"
673
+ msgstr ""
674
+
675
+ #: ../classes/upgrade.php:359
676
+ msgid "Return to settings."
677
+ msgstr ""
678
+
679
+ #: ../classes/upgrade.php:360
680
+ msgid "Error"
681
+ msgstr ""
682
+
683
+ #: ../classes/upgrade.php:361
684
+ msgid ""
685
+ "Sorry. Something went wrong during the upgrade process. Please report this "
686
+ "on the support forum."
687
+ msgstr ""
688
+
689
+ #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
690
+ msgid "Media Library"
691
+ msgstr ""
692
+
693
+ #: ../classes/column/custom-field.php:79
694
+ msgid "Post Title (Post ID's)"
695
+ msgstr ""
696
+
697
+ #: ../classes/column/custom-field.php:80
698
+ msgid "Username (User ID's)"
699
+ msgstr ""
700
+
701
+ #: ../classes/column/custom-field.php:81
702
+ msgid "Checkmark (true/false)"
703
+ msgstr ""
704
+
705
+ #: ../classes/column/custom-field.php:324
706
+ msgid "Select your custom field."
707
+ msgstr ""
708
+
709
+ #: ../classes/column/custom-field.php:334
710
+ msgid "No custom fields available."
711
+ msgstr ""
712
+
713
+ #: ../classes/column/custom-field.php:341
714
+ msgid "Field Type"
715
+ msgstr ""
716
+
717
+ #: ../classes/column/custom-field.php:341
718
+ msgid "This will determine how the value will be displayed."
719
+ msgstr ""
720
+
721
+ #: ../classes/column/custom-field.php:384
722
+ msgid "Before"
723
+ msgstr ""
724
+
725
+ #: ../classes/column/custom-field.php:384
726
+ msgid "This text will appear before the custom field value."
727
+ msgstr ""
728
+
729
+ #: ../classes/column/custom-field.php:390
730
+ msgid "After"
731
+ msgstr ""
732
+
733
+ #: ../classes/column/custom-field.php:390
734
+ msgid "This text will appear after the custom field value."
735
+ msgstr ""
736
+
737
+ #: ../classes/column/comment/actions.php:14
738
+ #: ../classes/column/link/actions.php:14
739
+ #: ../classes/column/media/actions.php:14
740
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
741
+ msgid "Actions"
742
+ msgstr ""
743
+
744
+ #: ../classes/column/comment/actions.php:73
745
+ #: ../classes/column/comment/actions.php:78
746
+ msgid "Unapprove"
747
+ msgstr ""
748
+
749
+ #: ../classes/column/comment/actions.php:75
750
+ #: ../classes/column/comment/actions.php:77
751
+ msgid "Approve"
752
+ msgstr ""
753
+
754
+ #: ../classes/column/comment/actions.php:90
755
+ #: ../classes/column/post/actions.php:57
756
+ msgid "Delete Permanently"
757
+ msgstr ""
758
+
759
+ #: ../classes/column/comment/actions.php:96
760
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
761
+ #: ../classes/column/user/actions.php:57
762
+ msgid "Edit"
763
+ msgstr ""
764
+
765
+ #: ../classes/column/comment/actions.php:97
766
+ #: ../classes/column/post/actions.php:49
767
+ msgid "Quick&nbsp;Edit"
768
+ msgstr ""
769
+
770
+ #: ../classes/column/comment/actions.php:98
771
+ msgid "Reply"
772
+ msgstr ""
773
+
774
+ #: ../classes/column/comment/agent.php:12
775
+ msgid "Agent"
776
+ msgstr ""
777
+
778
+ #: ../classes/column/comment/approved.php:12
779
+ #: ../classes/column/post/comment-count.php:31
780
+ msgid "Approved"
781
+ msgstr ""
782
+
783
+ #: ../classes/column/comment/author-avatar.php:12
784
+ msgid "Avatar"
785
+ msgstr ""
786
+
787
+ #: ../classes/column/comment/author-email.php:12
788
+ msgid "Author email"
789
+ msgstr ""
790
+
791
+ #: ../classes/column/comment/author-ip.php:12
792
+ msgid "Author IP"
793
+ msgstr ""
794
+
795
+ #: ../classes/column/comment/author-url.php:12
796
+ msgid "Author url"
797
+ msgstr ""
798
+
799
+ #: ../classes/column/comment/author.php:12
800
+ msgid "Author"
801
+ msgstr ""
802
+
803
+ #: ../classes/column/comment/date-gmt.php:12
804
+ msgid "Date GMT"
805
+ msgstr ""
806
+
807
+ #: ../classes/column/comment/date-gmt.php:25
808
+ #: ../classes/column/comment/date.php:25
809
+ #, php-format
810
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
811
+ msgstr ""
812
+
813
+ #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
814
+ #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
815
+ msgid "ID"
816
+ msgstr ""
817
+
818
+ #: ../classes/column/comment/reply-to.php:12
819
+ msgid "In Reply To"
820
+ msgstr ""
821
+
822
+ #: ../classes/column/comment/word-count.php:12
823
+ #: ../classes/column/post/word-count.php:12
824
+ msgid "Word count"
825
+ msgstr ""
826
+
827
+ #: ../classes/column/link/actions.php:46
828
+ #, php-format
829
+ msgid ""
830
+ "You are about to delete this link '%s'\n"
831
+ " 'Cancel' to stop, 'OK' to delete."
832
+ msgstr ""
833
+
834
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
+ msgid "Delete"
836
+ msgstr ""
837
+
838
+ #: ../classes/column/link/description.php:12
839
+ #: ../classes/column/media/description.php:12
840
+ #: ../classes/column/user/description.php:14
841
+ msgid "Description"
842
+ msgstr ""
843
+
844
+ #: ../classes/column/link/length.php:12
845
+ msgid "Length"
846
+ msgstr ""
847
+
848
+ #: ../classes/column/link/notes.php:13
849
+ msgid "Notes"
850
+ msgstr ""
851
+
852
+ #: ../classes/column/link/owner.php:12
853
+ msgid "Owner"
854
+ msgstr ""
855
+
856
+ #: ../classes/column/link/rss.php:12
857
+ msgid "Rss"
858
+ msgstr ""
859
+
860
+ #: ../classes/column/link/target.php:12
861
+ msgid "Target"
862
+ msgstr ""
863
+
864
+ #: ../classes/column/media/alternate-text.php:12
865
+ msgid "Alt"
866
+ msgstr ""
867
+
868
+ #: ../classes/column/media/available-sizes.php:14
869
+ msgid "Available Sizes"
870
+ msgstr ""
871
+
872
+ #: ../classes/column/media/available-sizes.php:37
873
+ msgid "full size"
874
+ msgstr ""
875
+
876
+ #: ../classes/column/media/caption.php:12
877
+ #: ../classes/column/media/exif-data.php:36
878
+ msgid "Caption"
879
+ msgstr ""
880
+
881
+ #: ../classes/column/media/dimensions.php:12
882
+ msgid "Dimensions"
883
+ msgstr ""
884
+
885
+ #: ../classes/column/media/exif-data.php:12
886
+ msgid "EXIF data"
887
+ msgstr ""
888
+
889
+ #: ../classes/column/media/exif-data.php:33
890
+ msgid "Aperture"
891
+ msgstr ""
892
+
893
+ #: ../classes/column/media/exif-data.php:34
894
+ msgid "Credit"
895
+ msgstr ""
896
+
897
+ #: ../classes/column/media/exif-data.php:35
898
+ msgid "Camera"
899
+ msgstr ""
900
+
901
+ #: ../classes/column/media/exif-data.php:37
902
+ msgid "Timestamp"
903
+ msgstr ""
904
+
905
+ #: ../classes/column/media/exif-data.php:38
906
+ msgid "Copyright EXIF"
907
+ msgstr ""
908
+
909
+ #: ../classes/column/media/exif-data.php:39
910
+ msgid "Focal Length"
911
+ msgstr ""
912
+
913
+ #: ../classes/column/media/exif-data.php:40
914
+ msgid "ISO"
915
+ msgstr ""
916
+
917
+ #: ../classes/column/media/exif-data.php:41
918
+ msgid "Shutter Speed"
919
+ msgstr ""
920
+
921
+ #: ../classes/column/media/exif-data.php:42
922
+ msgid "Title"
923
+ msgstr ""
924
+
925
+ #: ../classes/column/media/file-name.php:12
926
+ msgid "File name"
927
+ msgstr ""
928
+
929
+ #: ../classes/column/media/file-size.php:12
930
+ msgid "File size"
931
+ msgstr ""
932
+
933
+ #: ../classes/column/media/full-path.php:12
934
+ msgid "Full path"
935
+ msgstr ""
936
+
937
+ #: ../classes/column/media/height.php:12
938
+ msgid "Height"
939
+ msgstr ""
940
+
941
+ #: ../classes/column/media/mime-type.php:12
942
+ msgid "Mime type"
943
+ msgstr ""
944
+
945
+ #: ../classes/column/post/actions.php:48
946
+ msgid "Edit this item"
947
+ msgstr ""
948
+
949
+ #: ../classes/column/post/actions.php:49
950
+ msgid "Edit this item inline"
951
+ msgstr ""
952
+
953
+ #: ../classes/column/post/actions.php:53
954
+ msgid "Restore this item from the Trash"
955
+ msgstr ""
956
+
957
+ #: ../classes/column/post/actions.php:55
958
+ msgid "Move this item to the Trash"
959
+ msgstr ""
960
+
961
+ #: ../classes/column/post/actions.php:55
962
+ #: ../classes/column/post/comment-count.php:34
963
+ #: ../classes/column/post/status.php:35
964
+ msgid "Trash"
965
+ msgstr ""
966
+
967
+ #: ../classes/column/post/actions.php:57
968
+ msgid "Delete this item permanently"
969
+ msgstr ""
970
+
971
+ #: ../classes/column/post/actions.php:62
972
+ #, php-format
973
+ msgid "Preview &#8220;%s&#8221;"
974
+ msgstr ""
975
+
976
+ #: ../classes/column/post/actions.php:62
977
+ msgid "Preview"
978
+ msgstr ""
979
+
980
+ #: ../classes/column/post/actions.php:64
981
+ #, php-format
982
+ msgid "View &#8220;%s&#8221;"
983
+ msgstr ""
984
+
985
+ #: ../classes/column/post/attachment-count.php:12
986
+ msgid "No. of Attachments"
987
+ msgstr ""
988
+
989
+ #: ../classes/column/post/attachment.php:12
990
+ msgid "Attachment"
991
+ msgstr ""
992
+
993
+ #: ../classes/column/post/author-name.php:12
994
+ msgid "Display Author As"
995
+ msgstr ""
996
+
997
+ #: ../classes/column/post/author-name.php:33
998
+ msgid "Display Name"
999
+ msgstr ""
1000
+
1001
+ #: ../classes/column/post/author-name.php:34
1002
+ msgid "First Name"
1003
+ msgstr ""
1004
+
1005
+ #: ../classes/column/post/author-name.php:35
1006
+ msgid "Last Name"
1007
+ msgstr ""
1008
+
1009
+ #: ../classes/column/post/author-name.php:36
1010
+ #: ../classes/column/user/nickname.php:14
1011
+ msgid "Nickname"
1012
+ msgstr ""
1013
+
1014
+ #: ../classes/column/post/author-name.php:37
1015
+ msgid "User Login"
1016
+ msgstr ""
1017
+
1018
+ #: ../classes/column/post/author-name.php:38
1019
+ msgid "User Email"
1020
+ msgstr ""
1021
+
1022
+ #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1023
+ msgid "User ID"
1024
+ msgstr ""
1025
+
1026
+ #: ../classes/column/post/author-name.php:40
1027
+ msgid "First and Last Name"
1028
+ msgstr ""
1029
+
1030
+ #: ../classes/column/post/author-name.php:106
1031
+ msgid "This is the format of the author name."
1032
+ msgstr ""
1033
+
1034
+ #: ../classes/column/post/before-moretag.php:14
1035
+ msgid "Before More Tag"
1036
+ msgstr ""
1037
+
1038
+ #: ../classes/column/post/comment-count.php:14
1039
+ msgid "Comment count"
1040
+ msgstr ""
1041
+
1042
+ #: ../classes/column/post/comment-count.php:30
1043
+ msgid "Total"
1044
+ msgstr ""
1045
+
1046
+ #: ../classes/column/post/comment-count.php:32
1047
+ msgid "Pending"
1048
+ msgstr ""
1049
+
1050
+ #: ../classes/column/post/comment-count.php:33
1051
+ msgid "Spam"
1052
+ msgstr ""
1053
+
1054
+ #: ../classes/column/post/comment-count.php:78
1055
+ #: ../classes/column/post/comment-status.php:14
1056
+ msgid "Comment status"
1057
+ msgstr ""
1058
+
1059
+ #: ../classes/column/post/comment-count.php:78
1060
+ msgid "Select which comment status you like to display."
1061
+ msgstr ""
1062
+
1063
+ #: ../classes/column/post/featured-image.php:14
1064
+ msgid "Featured Image"
1065
+ msgstr ""
1066
+
1067
+ #: ../classes/column/post/formats.php:14
1068
+ msgid "Post Format"
1069
+ msgstr ""
1070
+
1071
+ #: ../classes/column/post/modified.php:14
1072
+ msgid "Last modified"
1073
+ msgstr ""
1074
+
1075
+ #: ../classes/column/post/order.php:14
1076
+ msgid "Page Order"
1077
+ msgstr ""
1078
+
1079
+ #: ../classes/column/post/page-template.php:12
1080
+ msgid "Page Template"
1081
+ msgstr ""
1082
+
1083
+ #: ../classes/column/post/parent.php:12
1084
+ msgid "Parent"
1085
+ msgstr ""
1086
+
1087
+ #: ../classes/column/post/ping-status.php:14
1088
+ msgid "Ping status"
1089
+ msgstr ""
1090
+
1091
+ #: ../classes/column/post/roles.php:14
1092
+ msgid "Roles"
1093
+ msgstr ""
1094
+
1095
+ #: ../classes/column/post/slug.php:12
1096
+ msgid "Slug"
1097
+ msgstr ""
1098
+
1099
+ #: ../classes/column/post/status.php:14
1100
+ msgid "Status"
1101
+ msgstr ""
1102
+
1103
+ #: ../classes/column/post/status.php:30
1104
+ msgid "Published"
1105
+ msgstr ""
1106
+
1107
+ #: ../classes/column/post/status.php:31
1108
+ msgid "Draft"
1109
+ msgstr ""
1110
+
1111
+ #: ../classes/column/post/status.php:32
1112
+ msgid "Scheduled"
1113
+ msgstr ""
1114
+
1115
+ #: ../classes/column/post/status.php:33
1116
+ msgid "Private"
1117
+ msgstr ""
1118
+
1119
+ #: ../classes/column/post/status.php:34
1120
+ msgid "Pending Review"
1121
+ msgstr ""
1122
+
1123
+ #: ../classes/column/post/sticky.php:14
1124
+ msgid "Sticky"
1125
+ msgstr ""
1126
+
1127
+ #: ../classes/column/post/taxonomy.php:12
1128
+ #: ../classes/column/post/taxonomy.php:68
1129
+ msgid "Taxonomy"
1130
+ msgstr ""
1131
+
1132
+ #: ../classes/column/user/comment-count.php:14
1133
+ msgid "Comment Count"
1134
+ msgstr ""
1135
+
1136
+ #: ../classes/column/user/first-name.php:14
1137
+ msgid "First name"
1138
+ msgstr ""
1139
+
1140
+ #: ../classes/column/user/last-name.php:14
1141
+ msgid "Last name"
1142
+ msgstr ""
1143
+
1144
+ #: ../classes/column/user/post-count.php:14
1145
+ msgid "Post Count"
1146
+ msgstr ""
1147
+
1148
+ #: ../classes/column/user/post-count.php:92
1149
+ msgid "Post Type"
1150
+ msgstr ""
1151
+
1152
+ #: ../classes/column/user/registered.php:14
1153
+ msgid "Registered"
1154
+ msgstr ""
1155
+
1156
+ #: ../classes/column/user/url.php:14
1157
+ msgid "Url"
1158
+ msgstr ""
1159
+
1160
+ #: ../classes/storage_model/comment.php:13
1161
+ msgid "Comments"
1162
+ msgstr ""
1163
+
1164
+ #: ../classes/storage_model/link.php:13
1165
+ msgid "Links"
1166
+ msgstr ""
1167
+
1168
+ #: ../classes/storage_model/user.php:13
1169
+ msgid "Users"
1170
+ msgstr ""
languages/cpac-nl_NL.mo CHANGED
Binary file
languages/cpac-nl_NL.po CHANGED
@@ -1,112 +1,102 @@
 
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Codepress Admin Columns v2.0.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-08-13 19:08+0100\n"
6
- "PO-Revision-Date: 2013-08-13 19:08+0100\n"
7
- "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Codepress <info@codepress.nl>\n"
9
- "Language: nl_NL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
- "_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-Textdomain-Support: yes\n"
19
  "X-Generator: Poedit 1.5.7\n"
 
 
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
 
22
 
23
- # @ default
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
26
  msgstr "Instellingen"
27
 
28
  #: ../codepress-admin-columns.php:350
29
  msgid "Edit columns"
30
- msgstr ""
31
 
32
  #: ../classes/column.php:479
33
  msgid "Thumbnail"
34
- msgstr ""
35
 
36
  #: ../classes/column.php:480
37
  msgid "Medium"
38
- msgstr ""
39
 
40
  #: ../classes/column.php:481
41
  msgid "Large"
42
- msgstr ""
43
 
44
  #: ../classes/column.php:482
45
  msgid "Full"
46
- msgstr ""
47
 
48
  #: ../classes/column.php:774
49
  msgid "Date Format"
50
- msgstr ""
51
 
52
  #: ../classes/column.php:775
53
  msgid "This will determine how the date will be displayed."
54
- msgstr ""
55
 
56
  #: ../classes/column.php:781
57
  msgid "Example:"
58
- msgstr ""
59
 
60
  #: ../classes/column.php:783
61
  #, php-format
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
- msgstr ""
66
 
67
  #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
69
- msgstr ""
70
 
71
- # @ default
72
- # @ codepress-admin-columns
73
  #: ../classes/column.php:801
74
- #, fuzzy
75
  msgid "Excerpt length"
76
- msgstr "Samenvatting"
77
 
78
  #: ../classes/column.php:802
79
  msgid "Number of words"
80
- msgstr ""
81
 
82
  #: ../classes/column.php:824
83
  msgid "Preview size"
84
- msgstr ""
85
 
86
- # @ codepress-admin-columns
87
  #: ../classes/column.php:841 ../classes/column.php:897
88
  msgid "Custom"
89
- msgstr ""
90
 
91
- # @ codepress-admin-columns
92
  #: ../classes/column.php:844
93
- #, fuzzy
94
  msgid "width"
95
- msgstr "Breedte"
96
 
97
- # @ codepress-admin-columns
98
  #: ../classes/column.php:847
99
- #, fuzzy
100
  msgid "height"
101
- msgstr "Hoogte"
102
 
103
- # @ default
104
  #: ../classes/column.php:898 ../classes/settings.php:224
105
  #: ../classes/column/custom-field.php:72
106
  msgid "Default"
107
- msgstr ""
108
 
109
- # @ default
110
  #: ../classes/column.php:923 ../classes/column.php:984
111
  #: ../classes/column/user/actions.php:65
112
  msgid "Remove"
@@ -114,54 +104,49 @@ msgstr "Verwijder"
114
 
115
  #: ../classes/column.php:942
116
  msgid "Type"
117
- msgstr ""
118
 
119
  #: ../classes/column.php:942
120
  msgid "Choose a column type."
121
- msgstr ""
122
 
123
  #: ../classes/column.php:952
124
  msgid "Label"
125
- msgstr ""
126
 
127
  #: ../classes/column.php:952
128
  msgid "This is the name which will appear as the column header."
129
- msgstr ""
130
 
131
- # @ codepress-admin-columns
132
  #: ../classes/column.php:959 ../classes/column/media/width.php:12
133
  msgid "Width"
134
  msgstr "Breedte"
135
 
136
- # @ codepress-admin-columns
137
  #: ../classes/column.php:961 ../classes/column.php:962
138
- #, fuzzy
139
  msgid "default"
140
- msgstr "Herstel instellingen"
141
 
142
- # @ codepress-admin-columns
143
  #: ../classes/settings.php:68
144
  msgid "Admin Columns Settings"
145
- msgstr ""
146
 
147
- # @ codepress-admin-columns
148
  #: ../classes/settings.php:68 ../classes/settings.php:534
149
  #: ../classes/upgrade.php:89
150
  msgid "Admin Columns"
151
- msgstr ""
152
 
153
  #: ../classes/settings.php:129
154
  #, php-format
155
  msgid "%s column is already present and can not be duplicated."
156
- msgstr ""
157
 
158
  #: ../classes/settings.php:184
159
  msgid "Default settings succesfully restored."
160
- msgstr ""
161
 
162
  #: ../classes/settings.php:202 ../classes/settings.php:457
163
  msgid "Overview"
164
- msgstr ""
165
 
166
  #: ../classes/settings.php:205
167
  msgid ""
@@ -172,65 +157,58 @@ msgstr ""
172
 
173
  #: ../classes/settings.php:208
174
  msgid "Basics"
175
- msgstr ""
176
 
177
- # @ codepress-admin-columns
178
  #: ../classes/settings.php:210
179
- #, fuzzy
180
  msgid "Change order"
181
- msgstr "Pagina Volgorde"
182
 
183
  #: ../classes/settings.php:211
184
  msgid ""
185
  "By dragging the columns you can change the order which they will appear in."
186
- msgstr ""
187
 
188
  #: ../classes/settings.php:212
189
  msgid "Change label"
190
- msgstr ""
191
 
192
  #: ../classes/settings.php:213
193
  msgid ""
194
  "By clicking on the triangle you will see the column options. Here you can "
195
  "change each label of the columns heading."
196
- msgstr ""
197
 
198
  #: ../classes/settings.php:214
199
  msgid "Change column width"
200
- msgstr ""
201
 
202
  #: ../classes/settings.php:215
203
  msgid ""
204
  "By clicking on the triangle you will see the column options. By using the "
205
- "draggable slider yo can set the width of the columns in percentages."
206
  msgstr ""
207
 
208
- # @ codepress-admin-columns
209
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
210
  #: ../classes/column/custom-field.php:324
211
  msgid "Custom Field"
212
- msgstr ""
213
 
214
- # @ codepress-admin-columns
215
  #: ../classes/settings.php:221
216
- #, fuzzy
217
  msgid "'Custom Field' column"
218
- msgstr "Voeg custom field kolom toe"
219
 
220
  #: ../classes/settings.php:222
221
  msgid ""
222
  "The custom field colum uses the custom fields from posts and users. There "
223
  "are 10 types which you can set."
224
- msgstr ""
225
 
226
  #: ../classes/settings.php:224
227
  msgid ""
228
  "Value: Can be either a string or array. Arrays will be flattened and values "
229
  "are seperated by a ',' comma."
230
- msgstr ""
231
 
232
- # @ default
233
- # @ codepress-admin-columns
234
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
235
  #: ../classes/column/link/image.php:12
236
  msgid "Image"
@@ -240,10 +218,8 @@ msgstr "Afbeelding"
240
  msgid ""
241
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
242
  "comma )."
243
- msgstr ""
244
 
245
- # @ default
246
- # @ codepress-admin-columns
247
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
248
  #: ../classes/column/comment/excerpt.php:13
249
  #: ../classes/column/post/excerpt.php:13
@@ -252,19 +228,18 @@ msgstr "Samenvatting"
252
 
253
  #: ../classes/settings.php:226
254
  msgid "Value: This will show the first 20 words of the Post content."
255
- msgstr ""
256
 
257
- # @ codepress-admin-columns
258
  #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
259
  msgid "Multiple Values"
260
  msgstr "Meerdere waarden"
261
 
262
  #: ../classes/settings.php:227
263
  msgid ""
264
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
265
  msgstr ""
266
 
267
- # @ codepress-admin-columns
268
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
269
  msgid "Numeric"
270
  msgstr "Numerieke"
@@ -275,7 +250,6 @@ msgid ""
275
  "for sorting, so you can sort your posts on numeric (custom field) values."
276
  msgstr ""
277
 
278
- # @ codepress-admin-columns
279
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
280
  #: ../classes/column/comment/date.php:12
281
  msgid "Date"
@@ -289,11 +263,9 @@ msgid ""
289
  "href='%s'>general settings</a> page."
290
  msgstr ""
291
 
292
- # @ codepress-admin-columns
293
  #: ../classes/settings.php:230
294
- #, fuzzy
295
  msgid "Post Titles"
296
- msgstr "Post Titel (Post ID's)"
297
 
298
  #: ../classes/settings.php:230
299
  msgid "Value: can be one or more Post ID's (seperated by ',')."
@@ -301,7 +273,7 @@ msgstr ""
301
 
302
  #: ../classes/settings.php:231
303
  msgid "Usernames"
304
- msgstr ""
305
 
306
  #: ../classes/settings.php:231
307
  msgid "Value: can be one or more User ID's (seperated by ',')."
@@ -309,27 +281,27 @@ msgstr ""
309
 
310
  #: ../classes/settings.php:232
311
  msgid "Checkmark"
312
- msgstr ""
313
 
314
  #: ../classes/settings.php:232
315
  msgid "Value: should be a 1 (one) or 0 (zero)."
316
- msgstr ""
317
 
318
  #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
319
  msgid "Color"
320
- msgstr ""
321
 
322
  #: ../classes/settings.php:233
323
  msgid "Value: hex value color, such as #808080."
324
- msgstr ""
325
 
326
  #: ../classes/settings.php:377
327
  msgid "Welcome to Admin Columns"
328
- msgstr ""
329
 
330
  #: ../classes/settings.php:380
331
  msgid "Thank you for updating to the latest version!"
332
- msgstr ""
333
 
334
  #: ../classes/settings.php:381
335
  msgid ""
@@ -339,21 +311,19 @@ msgstr ""
339
 
340
  #: ../classes/settings.php:386
341
  msgid "What’s New"
342
- msgstr ""
343
 
344
  #: ../classes/settings.php:387
345
  msgid "Changelog"
346
- msgstr ""
347
 
348
  #: ../classes/settings.php:389
349
  msgid "Download Addons"
350
- msgstr ""
351
 
352
- # @ default
353
  #: ../classes/settings.php:395
354
- #, fuzzy
355
  msgid "Addons"
356
- msgstr "Adres"
357
 
358
  #: ../classes/settings.php:397
359
  msgid ""
@@ -373,7 +343,7 @@ msgstr ""
373
 
374
  #: ../classes/settings.php:403
375
  msgid "Download your Addons"
376
- msgstr ""
377
 
378
  #: ../classes/settings.php:409
379
  msgid "This website does not use add-ons"
@@ -385,18 +355,16 @@ msgstr ""
385
 
386
  #: ../classes/settings.php:416
387
  msgid "Important"
388
- msgstr ""
389
 
390
- # @ default
391
  #: ../classes/settings.php:418
392
- #, fuzzy
393
  msgid "Database Changes"
394
- msgstr "Wijzigingen opslaan"
395
 
396
  #: ../classes/settings.php:419
397
  msgid ""
398
- "The database has been changed between versions 1 and 2. But we made sure you "
399
- "can still roll back to version 1x without any issues."
400
  msgstr ""
401
 
402
  #: ../classes/settings.php:422
@@ -405,26 +373,26 @@ msgstr ""
405
 
406
  #: ../classes/settings.php:422 ../classes/upgrade.php:97
407
  msgid "Upgrade Database"
408
- msgstr ""
409
 
410
  #: ../classes/settings.php:425
411
  msgid "Potential Issues"
412
- msgstr ""
413
 
414
  #: ../classes/settings.php:426
415
  msgid ""
416
- "Do to the sizable refactoring the code, surounding Addons and action/"
417
- "filters, your website may not operate correctly. It is important that you "
418
- "read the full"
419
  msgstr ""
420
 
421
  #: ../classes/settings.php:426
422
  msgid "Migrating from v1 to v2"
423
- msgstr ""
424
 
425
  #: ../classes/settings.php:426
426
  msgid "guide to view the full list of changes."
427
- msgstr ""
428
 
429
  #: ../classes/settings.php:426
430
  #, php-format
@@ -435,7 +403,7 @@ msgstr ""
435
 
436
  #: ../classes/settings.php:429
437
  msgid "Important!"
438
- msgstr ""
439
 
440
  #: ../classes/settings.php:429
441
  msgid ""
@@ -445,21 +413,19 @@ msgstr ""
445
 
446
  #: ../classes/settings.php:429
447
  msgid "version 1"
448
- msgstr ""
449
 
450
- # @ codepress-admin-columns
451
  #: ../classes/settings.php:429
452
- #, fuzzy
453
  msgid "of this plugin."
454
- msgstr "Leuke plugin?"
455
 
456
  #: ../classes/settings.php:435
457
  msgid "Changelog for"
458
- msgstr ""
459
 
460
  #: ../classes/settings.php:450
461
  msgid "Learn more"
462
- msgstr ""
463
 
464
  #: ../classes/settings.php:459
465
  msgid ""
@@ -469,22 +435,21 @@ msgstr ""
469
 
470
  #: ../classes/settings.php:460
471
  msgid ""
472
- "This page will assist you in downloading and installing each available Addon."
 
473
  msgstr ""
474
 
475
- # @ codepress-admin-columns
476
  #: ../classes/settings.php:461
477
- #, fuzzy
478
  msgid "Available Addons"
479
- msgstr "Activeer Google Maps"
480
 
481
  #: ../classes/settings.php:466
482
  msgid "Name"
483
- msgstr ""
484
 
485
  #: ../classes/settings.php:467 ../classes/settings.php:475
486
  msgid "Download"
487
- msgstr ""
488
 
489
  #: ../classes/settings.php:473
490
  msgid "Pro Add-on (includes Sortorder add-on)"
@@ -492,7 +457,7 @@ msgstr ""
492
 
493
  #: ../classes/settings.php:483
494
  msgid "Installation"
495
- msgstr ""
496
 
497
  #: ../classes/settings.php:485
498
  msgid "For each Add-on available, please perform the following:"
@@ -500,25 +465,25 @@ msgstr ""
500
 
501
  #: ../classes/settings.php:487
502
  msgid "Download the Addon plugin (.zip file) to your desktop"
503
- msgstr ""
504
 
505
  #: ../classes/settings.php:488
506
  msgid "Navigate to"
507
- msgstr ""
508
 
509
  #: ../classes/settings.php:488
510
  msgid "Plugins > Add New > Upload"
511
- msgstr ""
512
 
513
  #: ../classes/settings.php:489
514
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
515
- msgstr ""
516
 
517
  #: ../classes/settings.php:490
518
  msgid ""
519
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
520
- "link"
521
- msgstr ""
522
 
523
  #: ../classes/settings.php:491
524
  msgid "The Add-on is now installed and activated!"
@@ -532,76 +497,64 @@ msgstr ""
532
 
533
  #: ../classes/settings.php:502
534
  msgid "Start using Admin Columns"
535
- msgstr ""
536
 
537
- # @ default
538
  #: ../classes/settings.php:580
539
- #, fuzzy
540
  msgid "Store settings"
541
- msgstr "Instellingen"
542
 
543
  #: ../classes/settings.php:585
544
  msgid "Update"
545
- msgstr ""
546
 
547
  #: ../classes/settings.php:585
548
  msgid "Publish"
549
- msgstr ""
550
 
551
- # @ codepress-admin-columns
552
  #: ../classes/settings.php:589
553
- #, fuzzy, php-format
554
  msgid ""
555
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
556
- "\\' to delete, \\'Cancel\\' to stop"
557
  msgstr ""
558
- "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet "
559
- "worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
560
 
561
- # @ default
562
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
563
  #: ../classes/column/post/actions.php:53
564
  msgid "Restore"
565
- msgstr ""
566
 
567
  #: ../classes/settings.php:590
568
  msgid "columns"
569
- msgstr ""
570
 
571
  #: ../classes/settings.php:600
572
  msgid "Get the Pro Add-on"
573
- msgstr ""
574
 
575
  #: ../classes/settings.php:604
576
  msgid "Add Sorting"
577
- msgstr ""
578
 
579
  #: ../classes/settings.php:605
580
  msgid "Add Filtering"
581
- msgstr ""
582
 
583
  #: ../classes/settings.php:606
584
  msgid "Add Import/Export"
585
- msgstr ""
586
 
587
  #: ../classes/settings.php:609
588
  #, php-format
589
  msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
590
  msgstr ""
591
 
592
- # @ codepress-admin-columns
593
  #: ../classes/settings.php:617
594
- #, fuzzy
595
  msgid "Support"
596
  msgstr "Hulp nodig?"
597
 
598
- # @ codepress-admin-columns
599
  #: ../classes/settings.php:620
600
- #, fuzzy
601
  msgid "Check the <strong>Help</strong> section in the top-right screen."
602
  msgstr ""
603
- "Je vindt een korte samenvatting in de <strong>Help</strong> sectie in de "
604
- "rechter bovenkant van het scherm."
605
 
606
  #: ../classes/settings.php:622
607
  #, php-format
@@ -610,31 +563,25 @@ msgid ""
610
  "href='%s'>visit the Admin Columns website</a>"
611
  msgstr ""
612
 
613
- # @ codepress-admin-columns
614
  #: ../classes/settings.php:642
615
- #, fuzzy
616
  msgid "Drag and drop to reorder"
617
- msgstr "sleep om de volgorde te veranderen"
618
 
619
- # @ codepress-admin-columns
620
  #: ../classes/settings.php:645
621
- #, fuzzy
622
  msgid "Add Column"
623
- msgstr "Voeg custom field kolom toe"
624
 
625
- # @ default
626
  #: ../classes/settings.php:696
627
- #, fuzzy
628
  msgid "General Settings"
629
- msgstr "Instellingen"
630
 
631
  #: ../classes/settings.php:697
632
  msgid "Customize your Admin Columns settings."
633
- msgstr ""
634
 
635
  #: ../classes/settings.php:710
636
  msgid "Show hidden custom fields. Default is <code>off</code>."
637
- msgstr ""
638
 
639
  #: ../classes/settings.php:716
640
  msgid ""
@@ -643,107 +590,95 @@ msgstr ""
643
 
644
  #: ../classes/settings.php:723
645
  msgid "Save"
646
- msgstr ""
647
 
648
- # @ codepress-admin-columns
649
  #: ../classes/settings.php:763
650
- #, fuzzy
651
  msgid "Restore Settings"
652
- msgstr "Herstel standaard instellingen"
653
 
654
- # @ codepress-admin-columns
655
  #: ../classes/settings.php:764
656
  msgid "This will delete all column settings and restore the default settings."
657
- msgstr ""
658
- "Hiermee worden alle kolommen instellingen verwijderd en de "
659
- "standaardinstellingen hersteld."
660
 
661
- # @ codepress-admin-columns
662
  #: ../classes/settings.php:770
663
  msgid "Restore default settings"
664
  msgstr "Herstel standaard instellingen"
665
 
666
- # @ codepress-admin-columns
667
  #: ../classes/settings.php:770
668
  msgid ""
669
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
670
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
671
- msgstr ""
672
- "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet "
673
- "worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
674
 
675
  #: ../classes/storage_model.php:167
676
  msgid "settings succesfully restored."
677
- msgstr ""
678
 
679
  #: ../classes/storage_model.php:181
680
  msgid "No columns settings available."
681
- msgstr ""
682
 
683
  #: ../classes/storage_model.php:204
684
  #, php-format
685
  msgid "You are trying to store the same settings for %s."
686
- msgstr ""
687
 
688
  #: ../classes/storage_model.php:208
689
  #, php-format
690
  msgid "Settings for %s updated succesfully."
691
- msgstr ""
692
 
693
- # @ default
694
  #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
695
  msgid "View"
696
- msgstr ""
697
 
698
  #: ../classes/upgrade.php:45
699
  msgid "Upgrade"
700
- msgstr ""
701
 
702
  #: ../classes/upgrade.php:90
703
  msgid "requires a database upgrade"
704
- msgstr ""
705
 
706
  #: ../classes/upgrade.php:93
707
  msgid "why?"
708
- msgstr ""
709
 
710
  #: ../classes/upgrade.php:94
711
  msgid "Please"
712
- msgstr ""
713
 
714
  #: ../classes/upgrade.php:95
715
  msgid "backup your database"
716
- msgstr ""
717
 
718
  #: ../classes/upgrade.php:96
719
  msgid "then click"
720
- msgstr ""
721
 
722
  #: ../classes/upgrade.php:304
723
  msgid "Migrating Column Settings"
724
- msgstr ""
725
 
726
  #: ../classes/upgrade.php:340
727
  msgid "No Upgrade Required"
728
- msgstr ""
729
 
730
  #: ../classes/upgrade.php:341
731
  msgid "Return to welcome screen."
732
- msgstr ""
733
 
734
  #: ../classes/upgrade.php:359
735
  msgid "Upgrade Complete!"
736
- msgstr ""
737
 
738
- # @ codepress-admin-columns
739
  #: ../classes/upgrade.php:359
740
- #, fuzzy
741
  msgid "Return to settings."
742
  msgstr "Herstel standaard instellingen"
743
 
744
  #: ../classes/upgrade.php:360
745
  msgid "Error"
746
- msgstr ""
747
 
748
  #: ../classes/upgrade.php:361
749
  msgid ""
@@ -751,190 +686,144 @@ msgid ""
751
  "on the support forum."
752
  msgstr ""
753
 
754
- # @ codepress-admin-columns
755
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
756
- #, fuzzy
757
  msgid "Media Library"
758
- msgstr "Media bibliotheek Icoon"
759
 
760
- # @ codepress-admin-columns
761
  #: ../classes/column/custom-field.php:79
762
  msgid "Post Title (Post ID's)"
763
  msgstr "Post Titel (Post ID's)"
764
 
765
  #: ../classes/column/custom-field.php:80
766
  msgid "Username (User ID's)"
767
- msgstr ""
768
 
769
- # @ codepress-admin-columns
770
  #: ../classes/column/custom-field.php:81
771
  msgid "Checkmark (true/false)"
772
- msgstr ""
773
 
774
  #: ../classes/column/custom-field.php:324
775
  msgid "Select your custom field."
776
- msgstr ""
777
 
778
  #: ../classes/column/custom-field.php:334
779
  msgid "No custom fields available."
780
- msgstr ""
781
 
782
- # @ codepress-admin-columns
783
  #: ../classes/column/custom-field.php:341
784
  msgid "Field Type"
785
- msgstr ""
786
 
787
  #: ../classes/column/custom-field.php:341
788
  msgid "This will determine how the value will be displayed."
789
  msgstr ""
790
 
791
- # @ codepress-admin-columns
792
  #: ../classes/column/custom-field.php:384
793
  msgid "Before"
794
- msgstr ""
795
 
796
  #: ../classes/column/custom-field.php:384
797
  msgid "This text will appear before the custom field value."
798
- msgstr ""
799
 
800
- # @ codepress-admin-columns
801
  #: ../classes/column/custom-field.php:390
802
  msgid "After"
803
- msgstr ""
804
 
805
  #: ../classes/column/custom-field.php:390
806
  msgid "This text will appear after the custom field value."
807
- msgstr ""
808
 
809
- # @ codepress-admin-columns
810
  #: ../classes/column/comment/actions.php:14
811
  #: ../classes/column/link/actions.php:14
812
  #: ../classes/column/media/actions.php:14
813
  #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
814
  msgid "Actions"
815
- msgstr ""
816
 
817
- # @ default
818
  #: ../classes/column/comment/actions.php:73
819
  #: ../classes/column/comment/actions.php:78
820
  msgid "Unapprove"
821
- msgstr ""
822
 
823
- # @ default
824
  #: ../classes/column/comment/actions.php:75
825
  #: ../classes/column/comment/actions.php:77
826
  msgid "Approve"
827
- msgstr ""
828
-
829
- # @ default
830
- #: ../classes/column/comment/actions.php:82
831
- msgctxt "verb"
832
- msgid "Spam"
833
- msgstr ""
834
-
835
- # @ default
836
- #: ../classes/column/comment/actions.php:84
837
- msgctxt "comment"
838
- msgid "Not Spam"
839
- msgstr ""
840
 
841
- # @ default
842
  #: ../classes/column/comment/actions.php:90
843
  #: ../classes/column/post/actions.php:57
844
  msgid "Delete Permanently"
845
- msgstr ""
846
 
847
- # @ default
848
- #: ../classes/column/comment/actions.php:92
849
- msgctxt "verb"
850
- msgid "Trash"
851
- msgstr ""
852
-
853
- # @ default
854
  #: ../classes/column/comment/actions.php:96
855
  #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
856
  #: ../classes/column/user/actions.php:57
857
  msgid "Edit"
858
- msgstr ""
859
 
860
- # @ default
861
  #: ../classes/column/comment/actions.php:97
862
  #: ../classes/column/post/actions.php:49
863
  msgid "Quick&nbsp;Edit"
864
- msgstr ""
865
 
866
- # @ default
867
  #: ../classes/column/comment/actions.php:98
868
  msgid "Reply"
869
- msgstr ""
870
 
871
- # @ codepress-admin-columns
872
  #: ../classes/column/comment/agent.php:12
873
  msgid "Agent"
874
- msgstr ""
875
 
876
- # @ codepress-admin-columns
877
  #: ../classes/column/comment/approved.php:12
878
  #: ../classes/column/post/comment-count.php:31
879
  msgid "Approved"
880
  msgstr "Goedgekeurd"
881
 
882
- # @ codepress-admin-columns
883
  #: ../classes/column/comment/author-avatar.php:12
884
  msgid "Avatar"
885
- msgstr ""
886
 
887
- # @ codepress-admin-columns
888
  #: ../classes/column/comment/author-email.php:12
889
  msgid "Author email"
890
  msgstr "Auteurs email"
891
 
892
- # @ codepress-admin-columns
893
  #: ../classes/column/comment/author-ip.php:12
894
  msgid "Author IP"
895
  msgstr "Auteur IP"
896
 
897
- # @ codepress-admin-columns
898
  #: ../classes/column/comment/author-url.php:12
899
  msgid "Author url"
900
  msgstr "Auteurs url"
901
 
902
- # @ codepress-admin-columns
903
  #: ../classes/column/comment/author.php:12
904
- #, fuzzy
905
  msgid "Author"
906
- msgstr "Auteur IP"
907
 
908
- # @ codepress-admin-columns
909
  #: ../classes/column/comment/date-gmt.php:12
910
  msgid "Date GMT"
911
  msgstr "Datum GMT"
912
 
913
- # @ default
914
  #: ../classes/column/comment/date-gmt.php:25
915
  #: ../classes/column/comment/date.php:25
916
  #, php-format
917
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
918
  msgstr "Verstuurd op <a href=\"%1$s\">%2$s op %3$s</a>"
919
 
920
- # @ codepress-admin-columns
921
  #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
922
  #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
923
  msgid "ID"
924
  msgstr "ID"
925
 
926
- # @ codepress-admin-columns
927
  #: ../classes/column/comment/reply-to.php:12
928
  msgid "In Reply To"
929
  msgstr "Antwoord op"
930
 
931
- # @ codepress-admin-columns
932
  #: ../classes/column/comment/word-count.php:12
933
  #: ../classes/column/post/word-count.php:12
934
  msgid "Word count"
935
  msgstr "Aantal woorden"
936
 
937
- # @ default
938
  #: ../classes/column/link/actions.php:46
939
  #, php-format
940
  msgid ""
@@ -942,274 +831,226 @@ msgid ""
942
  " 'Cancel' to stop, 'OK' to delete."
943
  msgstr ""
944
 
945
- # @ default
946
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
947
  msgid "Delete"
948
- msgstr ""
949
 
950
- # @ codepress-admin-columns
951
  #: ../classes/column/link/description.php:12
952
  #: ../classes/column/media/description.php:12
953
  #: ../classes/column/user/description.php:14
954
  msgid "Description"
955
  msgstr "Beschrijving"
956
 
957
- # @ codepress-admin-columns
958
  #: ../classes/column/link/length.php:12
959
  msgid "Length"
960
  msgstr "Lengte"
961
 
962
- # @ codepress-admin-columns
963
  #: ../classes/column/link/notes.php:13
964
  msgid "Notes"
965
  msgstr "Beschrijving"
966
 
967
- # @ codepress-admin-columns
968
  #: ../classes/column/link/owner.php:12
969
- #, fuzzy
970
  msgid "Owner"
971
- msgstr "Volgorde"
972
 
973
- # @ codepress-admin-columns
974
  #: ../classes/column/link/rss.php:12
975
  msgid "Rss"
976
- msgstr ""
977
 
978
- # @ codepress-admin-columns
979
  #: ../classes/column/link/target.php:12
980
  msgid "Target"
981
- msgstr ""
982
 
983
- # @ codepress-admin-columns
984
  #: ../classes/column/media/alternate-text.php:12
985
  msgid "Alt"
986
- msgstr ""
987
 
988
  #: ../classes/column/media/available-sizes.php:14
989
  msgid "Available Sizes"
990
- msgstr ""
991
 
992
  #: ../classes/column/media/available-sizes.php:37
993
  msgid "full size"
994
- msgstr ""
995
 
996
- # @ codepress-admin-columns
997
  #: ../classes/column/media/caption.php:12
998
  #: ../classes/column/media/exif-data.php:36
999
- #, fuzzy
1000
  msgid "Caption"
1001
- msgstr "Locatie"
1002
 
1003
- # @ codepress-admin-columns
1004
  #: ../classes/column/media/dimensions.php:12
1005
  msgid "Dimensions"
1006
  msgstr "Afmetingen"
1007
 
1008
  #: ../classes/column/media/exif-data.php:12
1009
  msgid "EXIF data"
1010
- msgstr ""
1011
 
1012
- # @ codepress-admin-columns
1013
  #: ../classes/column/media/exif-data.php:33
1014
  msgid "Aperture"
1015
- msgstr ""
1016
 
1017
- # @ codepress-admin-columns
1018
  #: ../classes/column/media/exif-data.php:34
1019
  msgid "Credit"
1020
- msgstr ""
1021
 
1022
- # @ codepress-admin-columns
1023
  #: ../classes/column/media/exif-data.php:35
1024
  msgid "Camera"
1025
- msgstr ""
1026
 
1027
- # @ codepress-admin-columns
1028
  #: ../classes/column/media/exif-data.php:37
1029
  msgid "Timestamp"
1030
- msgstr ""
1031
 
1032
- # @ codepress-admin-columns
1033
  #: ../classes/column/media/exif-data.php:38
1034
  msgid "Copyright EXIF"
1035
- msgstr ""
1036
 
1037
- # @ codepress-admin-columns
1038
  #: ../classes/column/media/exif-data.php:39
1039
  msgid "Focal Length"
1040
  msgstr ""
1041
 
1042
- # @ codepress-admin-columns
1043
  #: ../classes/column/media/exif-data.php:40
1044
  msgid "ISO"
1045
  msgstr ""
1046
 
1047
- # @ codepress-admin-columns
1048
  #: ../classes/column/media/exif-data.php:41
1049
  msgid "Shutter Speed"
1050
  msgstr ""
1051
 
1052
- # @ codepress-admin-columns
1053
  #: ../classes/column/media/exif-data.php:42
1054
  msgid "Title"
1055
  msgstr ""
1056
 
1057
- # @ codepress-admin-columns
1058
  #: ../classes/column/media/file-name.php:12
1059
- #, fuzzy
1060
  msgid "File name"
1061
- msgstr "Voornaam"
1062
 
1063
- # @ codepress-admin-columns
1064
  #: ../classes/column/media/file-size.php:12
1065
  msgid "File size"
1066
- msgstr ""
1067
 
1068
  #: ../classes/column/media/full-path.php:12
1069
  msgid "Full path"
1070
- msgstr ""
1071
 
1072
- # @ codepress-admin-columns
1073
  #: ../classes/column/media/height.php:12
1074
  msgid "Height"
1075
  msgstr "Hoogte"
1076
 
1077
- # @ codepress-admin-columns
1078
  #: ../classes/column/media/mime-type.php:12
1079
  msgid "Mime type"
1080
  msgstr ""
1081
 
1082
- # @ default
1083
  #: ../classes/column/post/actions.php:48
1084
  msgid "Edit this item"
1085
- msgstr ""
1086
 
1087
- # @ default
1088
  #: ../classes/column/post/actions.php:49
1089
  msgid "Edit this item inline"
1090
- msgstr ""
1091
 
1092
- # @ default
1093
  #: ../classes/column/post/actions.php:53
1094
  msgid "Restore this item from the Trash"
1095
  msgstr ""
1096
 
1097
- # @ default
1098
  #: ../classes/column/post/actions.php:55
1099
  msgid "Move this item to the Trash"
1100
  msgstr ""
1101
 
1102
- # @ codepress-admin-columns
1103
- # @ default
1104
  #: ../classes/column/post/actions.php:55
1105
  #: ../classes/column/post/comment-count.php:34
1106
  #: ../classes/column/post/status.php:35
1107
  msgid "Trash"
1108
- msgstr ""
1109
 
1110
- # @ default
1111
  #: ../classes/column/post/actions.php:57
1112
  msgid "Delete this item permanently"
1113
- msgstr ""
1114
 
1115
- # @ default
1116
  #: ../classes/column/post/actions.php:62
1117
  #, php-format
1118
  msgid "Preview &#8220;%s&#8221;"
1119
  msgstr ""
1120
 
1121
- # @ default
1122
  #: ../classes/column/post/actions.php:62
1123
  msgid "Preview"
1124
- msgstr ""
1125
 
1126
- # @ default
1127
  #: ../classes/column/post/actions.php:64
1128
  #, php-format
1129
  msgid "View &#8220;%s&#8221;"
1130
- msgstr ""
1131
 
1132
- # @ codepress-admin-columns
1133
  #: ../classes/column/post/attachment-count.php:12
1134
  msgid "No. of Attachments"
1135
  msgstr "Aantal attachments"
1136
 
1137
- # @ codepress-admin-columns
1138
  #: ../classes/column/post/attachment.php:12
1139
  msgid "Attachment"
1140
  msgstr "Bijlage"
1141
 
1142
- # @ codepress-admin-columns
1143
  #: ../classes/column/post/author-name.php:12
1144
  msgid "Display Author As"
1145
- msgstr ""
1146
 
1147
- # @ codepress-admin-columns
1148
  #: ../classes/column/post/author-name.php:33
1149
  msgid "Display Name"
1150
  msgstr ""
1151
 
1152
- # @ codepress-admin-columns
1153
  #: ../classes/column/post/author-name.php:34
1154
  msgid "First Name"
1155
- msgstr ""
1156
 
1157
- # @ codepress-admin-columns
1158
  #: ../classes/column/post/author-name.php:35
1159
  msgid "Last Name"
1160
- msgstr ""
1161
 
1162
- # @ codepress-admin-columns
1163
  #: ../classes/column/post/author-name.php:36
1164
  #: ../classes/column/user/nickname.php:14
1165
  msgid "Nickname"
1166
- msgstr ""
1167
 
1168
  #: ../classes/column/post/author-name.php:37
1169
  msgid "User Login"
1170
- msgstr ""
1171
 
1172
  #: ../classes/column/post/author-name.php:38
1173
  msgid "User Email"
1174
- msgstr ""
1175
 
1176
- # @ codepress-admin-columns
1177
  #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1178
  msgid "User ID"
1179
- msgstr ""
1180
 
1181
- # @ codepress-admin-columns
1182
  #: ../classes/column/post/author-name.php:40
1183
- #, fuzzy
1184
  msgid "First and Last Name"
1185
- msgstr "Voornaam"
1186
 
1187
  #: ../classes/column/post/author-name.php:106
1188
  msgid "This is the format of the author name."
1189
- msgstr ""
1190
 
1191
  #: ../classes/column/post/before-moretag.php:14
1192
  msgid "Before More Tag"
1193
- msgstr ""
1194
 
1195
- # @ codepress-admin-columns
1196
  #: ../classes/column/post/comment-count.php:14
1197
  msgid "Comment count"
1198
- msgstr ""
1199
 
1200
  #: ../classes/column/post/comment-count.php:30
1201
  msgid "Total"
1202
- msgstr ""
1203
 
1204
  #: ../classes/column/post/comment-count.php:32
1205
  msgid "Pending"
1206
- msgstr ""
1207
 
1208
  #: ../classes/column/post/comment-count.php:33
1209
  msgid "Spam"
1210
- msgstr ""
1211
 
1212
- # @ codepress-admin-columns
1213
  #: ../classes/column/post/comment-count.php:78
1214
  #: ../classes/column/post/comment-status.php:14
1215
  msgid "Comment status"
@@ -1219,27 +1060,22 @@ msgstr ""
1219
  msgid "Select which comment status you like to display."
1220
  msgstr ""
1221
 
1222
- # @ codepress-admin-columns
1223
  #: ../classes/column/post/featured-image.php:14
1224
  msgid "Featured Image"
1225
  msgstr "Uitgelichte afbeelding"
1226
 
1227
- # @ codepress-admin-columns
1228
  #: ../classes/column/post/formats.php:14
1229
  msgid "Post Format"
1230
- msgstr ""
1231
 
1232
- # @ codepress-admin-columns
1233
  #: ../classes/column/post/modified.php:14
1234
  msgid "Last modified"
1235
- msgstr ""
1236
 
1237
- # @ codepress-admin-columns
1238
  #: ../classes/column/post/order.php:14
1239
  msgid "Page Order"
1240
  msgstr "Pagina Volgorde"
1241
 
1242
- # @ codepress-admin-columns
1243
  #: ../classes/column/post/page-template.php:12
1244
  msgid "Page Template"
1245
  msgstr "Pagina Template"
@@ -1248,208 +1084,87 @@ msgstr "Pagina Template"
1248
  msgid "Parent"
1249
  msgstr ""
1250
 
1251
- # @ codepress-admin-columns
1252
  #: ../classes/column/post/ping-status.php:14
1253
  msgid "Ping status"
1254
- msgstr ""
1255
 
1256
- # @ codepress-admin-columns
1257
  #: ../classes/column/post/roles.php:14
1258
  msgid "Roles"
1259
- msgstr ""
1260
 
1261
- # @ codepress-admin-columns
1262
  #: ../classes/column/post/slug.php:12
1263
  msgid "Slug"
1264
- msgstr ""
1265
 
1266
- # @ codepress-admin-columns
1267
  #: ../classes/column/post/status.php:14
1268
  msgid "Status"
1269
  msgstr "Status"
1270
 
1271
- # @ codepress-admin-columns
1272
  #: ../classes/column/post/status.php:30
1273
  msgid "Published"
1274
- msgstr ""
1275
 
1276
- # @ codepress-admin-columns
1277
  #: ../classes/column/post/status.php:31
1278
  msgid "Draft"
1279
  msgstr ""
1280
 
1281
- # @ codepress-admin-columns
1282
  #: ../classes/column/post/status.php:32
1283
  msgid "Scheduled"
1284
- msgstr ""
1285
 
1286
- # @ codepress-admin-columns
1287
  #: ../classes/column/post/status.php:33
1288
  msgid "Private"
1289
- msgstr ""
1290
 
1291
- # @ codepress-admin-columns
1292
  #: ../classes/column/post/status.php:34
1293
  msgid "Pending Review"
1294
  msgstr ""
1295
 
1296
- # @ codepress-admin-columns
1297
  #: ../classes/column/post/sticky.php:14
1298
  msgid "Sticky"
1299
  msgstr "Sticky"
1300
 
1301
- # @ codepress-admin-columns
1302
  #: ../classes/column/post/taxonomy.php:12
1303
  #: ../classes/column/post/taxonomy.php:68
1304
  msgid "Taxonomy"
1305
- msgstr ""
1306
 
1307
- # @ codepress-admin-columns
1308
  #: ../classes/column/user/comment-count.php:14
1309
- #, fuzzy
1310
  msgid "Comment Count"
1311
- msgstr "Reacties"
1312
 
1313
- # @ codepress-admin-columns
1314
  #: ../classes/column/user/first-name.php:14
1315
  msgid "First name"
1316
  msgstr "Voornaam"
1317
 
1318
- # @ codepress-admin-columns
1319
  #: ../classes/column/user/last-name.php:14
1320
  msgid "Last name"
1321
  msgstr "Achternaam"
1322
 
1323
- # @ codepress-admin-columns
1324
  #: ../classes/column/user/post-count.php:14
1325
- #, fuzzy
1326
  msgid "Post Count"
1327
- msgstr "Aantal woorden"
1328
 
1329
  #: ../classes/column/user/post-count.php:92
1330
  msgid "Post Type"
1331
- msgstr ""
1332
 
1333
- # @ codepress-admin-columns
1334
  #: ../classes/column/user/registered.php:14
1335
  msgid "Registered"
1336
  msgstr "Registratie"
1337
 
1338
- # @ codepress-admin-columns
1339
  #: ../classes/column/user/url.php:14
1340
  msgid "Url"
1341
- msgstr ""
1342
 
1343
- # @ codepress-admin-columns
1344
  #: ../classes/storage_model/comment.php:13
1345
  msgid "Comments"
1346
  msgstr "Reacties"
1347
 
1348
  #: ../classes/storage_model/link.php:13
1349
  msgid "Links"
1350
- msgstr ""
1351
 
1352
  #: ../classes/storage_model/user.php:13
1353
  msgid "Users"
1354
- msgstr ""
1355
-
1356
- # @ codepress-admin-columns
1357
- #, fuzzy
1358
- #~ msgid "Custom field settings"
1359
- #~ msgstr "Herstel standaard instellingen"
1360
-
1361
- # @ codepress-admin-columns
1362
- #, fuzzy
1363
- #~ msgid "Add-ons"
1364
- #~ msgstr "Activeer Google Maps"
1365
-
1366
- # @ codepress-admin-columns
1367
- #, fuzzy
1368
- #~ msgid "the Custom Fields columns"
1369
- #~ msgstr "Voeg custom field kolom toe"
1370
-
1371
- # @ codepress-admin-columns
1372
- #, fuzzy
1373
- #~ msgid "Custom Fields Addon"
1374
- #~ msgstr "Voeg custom field kolom toe"
1375
-
1376
- # @ codepress-admin-columns
1377
- #, fuzzy
1378
- #~ msgid "find more addons"
1379
- #~ msgstr "meer informatie"
1380
-
1381
- # @ codepress-admin-columns
1382
- #~ msgid "This field can not be removed"
1383
- #~ msgstr "Dit veld kan niet worden verwijderd"
1384
-
1385
- # @ default
1386
- #~ msgid "Standard"
1387
- #~ msgstr "Standaard"
1388
-
1389
- # @ codepress-admin-columns
1390
- #~ msgid "original"
1391
- #~ msgstr "origineel"
1392
-
1393
- # @ codepress-admin-columns
1394
- #~ msgid "Icon"
1395
- #~ msgstr "icoon"
1396
-
1397
- # @ codepress-admin-columns
1398
- #~ msgid "Order"
1399
- #~ msgstr "Volgorde"
1400
-
1401
- # @ codepress-admin-columns
1402
- #~ msgid "Field"
1403
- #~ msgstr "Veld"
1404
-
1405
- # @ codepress-admin-columns
1406
- #~ msgid "Upload paths"
1407
- #~ msgstr "Bestands-URLs"
1408
-
1409
- # @ codepress-admin-columns
1410
- #~ msgid "Author Name"
1411
- #~ msgstr "Auteur"
1412
-
1413
- # @ codepress-admin-columns
1414
- #~ msgid "This will make all of the new columns support sorting"
1415
- #~ msgstr "Dit maakt dat sorteren ondersteund wordt door alle nieuwe kolommen"
1416
-
1417
- # @ codepress-admin-columns
1418
- #~ msgid ""
1419
- #~ "By default WordPress let's you sort by title, date, comments and author. "
1420
- #~ "This will make you be able to <strong>sort by any column of any type!</"
1421
- #~ "strong>"
1422
- #~ msgstr ""
1423
- #~ "Standaard laat WordPress je sorteren bij titel, datum, reakties en "
1424
- #~ "auteur. De addon zorgt ervoor dat je kunt sorteren bij <strong>alle "
1425
- #~ "kolommen van alle typen!</strong>"
1426
-
1427
- # @ codepress-admin-columns
1428
- #~ msgid ""
1429
- #~ "Perfect for sorting your articles, media files, comments, links and users"
1430
- #~ msgstr ""
1431
- #~ "Perfect voor het sorteren van je artikelen, media bestanden, reakties, "
1432
- #~ "links en gebruikers"
1433
-
1434
- # @ codepress-admin-columns
1435
- #, fuzzy
1436
- #~ msgid "Inactive"
1437
- #~ msgstr "Actief"
1438
-
1439
- # @ codepress-admin-columns
1440
- #~ msgid "Active"
1441
- #~ msgstr "Actief"
1442
-
1443
- # @ codepress-admin-columns
1444
- #~ msgid "Fill in your activation code"
1445
- #~ msgstr "Vul je activatiecode in"
1446
-
1447
- # @ codepress-admin-columns
1448
- #, fuzzy
1449
- #~ msgid "Activate"
1450
- #~ msgstr "Actief"
1451
-
1452
- # @ codepress-admin-columns
1453
- #, fuzzy
1454
- #~ msgid "Deactivate"
1455
- #~ msgstr "Actief"
1
+ #
2
+ # Translators:
3
+ # codepress <info@codepress.nl>, 2013
4
  msgid ""
5
  msgstr ""
6
+ "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-11-12 12:34+0000\n"
10
+ "Last-Translator: codepress <info@codepress.nl>\n"
11
+ "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/admin-columns/language/nl_NL/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: nl_NL\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 
 
 
17
  "X-Generator: Poedit 1.5.7\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
 
 
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
26
  msgstr "Instellingen"
27
 
28
  #: ../codepress-admin-columns.php:350
29
  msgid "Edit columns"
30
+ msgstr "Wijzig kolommen"
31
 
32
  #: ../classes/column.php:479
33
  msgid "Thumbnail"
34
+ msgstr "Miniatuurafbeelding "
35
 
36
  #: ../classes/column.php:480
37
  msgid "Medium"
38
+ msgstr "Medium"
39
 
40
  #: ../classes/column.php:481
41
  msgid "Large"
42
+ msgstr "Groot"
43
 
44
  #: ../classes/column.php:482
45
  msgid "Full"
46
+ msgstr "Volledig"
47
 
48
  #: ../classes/column.php:774
49
  msgid "Date Format"
50
+ msgstr "Datum formaat"
51
 
52
  #: ../classes/column.php:775
53
  msgid "This will determine how the date will be displayed."
54
+ msgstr "Dit bepaald hoe de datum wordt weergegeven."
55
 
56
  #: ../classes/column.php:781
57
  msgid "Example:"
58
+ msgstr "Voorbeeld:"
59
 
60
  #: ../classes/column.php:783
61
  #, php-format
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
+ msgstr "Laat leeg voor WordPress datumformaat, verander je <a href=\"%s\">standaard datumformaat </a>."
66
 
67
  #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
69
+ msgstr "Documentatie over datum en tijd opmaak."
70
 
 
 
71
  #: ../classes/column.php:801
 
72
  msgid "Excerpt length"
73
+ msgstr "Samenvatting lengte"
74
 
75
  #: ../classes/column.php:802
76
  msgid "Number of words"
77
+ msgstr "Aantal woorden"
78
 
79
  #: ../classes/column.php:824
80
  msgid "Preview size"
81
+ msgstr "Voorbeeldformaat"
82
 
 
83
  #: ../classes/column.php:841 ../classes/column.php:897
84
  msgid "Custom"
85
+ msgstr "Aangepast"
86
 
 
87
  #: ../classes/column.php:844
 
88
  msgid "width"
89
+ msgstr "breedte"
90
 
 
91
  #: ../classes/column.php:847
 
92
  msgid "height"
93
+ msgstr "hoogte"
94
 
 
95
  #: ../classes/column.php:898 ../classes/settings.php:224
96
  #: ../classes/column/custom-field.php:72
97
  msgid "Default"
98
+ msgstr "Standaard"
99
 
 
100
  #: ../classes/column.php:923 ../classes/column.php:984
101
  #: ../classes/column/user/actions.php:65
102
  msgid "Remove"
104
 
105
  #: ../classes/column.php:942
106
  msgid "Type"
107
+ msgstr "Type"
108
 
109
  #: ../classes/column.php:942
110
  msgid "Choose a column type."
111
+ msgstr "Kies een kolom type."
112
 
113
  #: ../classes/column.php:952
114
  msgid "Label"
115
+ msgstr "Label"
116
 
117
  #: ../classes/column.php:952
118
  msgid "This is the name which will appear as the column header."
119
+ msgstr "Deze naam zal verschijnen als kolom kop."
120
 
 
121
  #: ../classes/column.php:959 ../classes/column/media/width.php:12
122
  msgid "Width"
123
  msgstr "Breedte"
124
 
 
125
  #: ../classes/column.php:961 ../classes/column.php:962
 
126
  msgid "default"
127
+ msgstr "standaard"
128
 
 
129
  #: ../classes/settings.php:68
130
  msgid "Admin Columns Settings"
131
+ msgstr "Admin Columns Instellingen"
132
 
 
133
  #: ../classes/settings.php:68 ../classes/settings.php:534
134
  #: ../classes/upgrade.php:89
135
  msgid "Admin Columns"
136
+ msgstr "Admin Columns"
137
 
138
  #: ../classes/settings.php:129
139
  #, php-format
140
  msgid "%s column is already present and can not be duplicated."
141
+ msgstr "%s kolom is al in gebruik en kan niet worden gedupliceerd."
142
 
143
  #: ../classes/settings.php:184
144
  msgid "Default settings succesfully restored."
145
+ msgstr "Standaard instellingen succesvol hersteld."
146
 
147
  #: ../classes/settings.php:202 ../classes/settings.php:457
148
  msgid "Overview"
149
+ msgstr "Overzicht"
150
 
151
  #: ../classes/settings.php:205
152
  msgid ""
157
 
158
  #: ../classes/settings.php:208
159
  msgid "Basics"
160
+ msgstr "Basis"
161
 
 
162
  #: ../classes/settings.php:210
 
163
  msgid "Change order"
164
+ msgstr "Verander volgorde"
165
 
166
  #: ../classes/settings.php:211
167
  msgid ""
168
  "By dragging the columns you can change the order which they will appear in."
169
+ msgstr "Door de kolommen te verslepen kan je de volgorde aanpassen."
170
 
171
  #: ../classes/settings.php:212
172
  msgid "Change label"
173
+ msgstr "Wijzig label"
174
 
175
  #: ../classes/settings.php:213
176
  msgid ""
177
  "By clicking on the triangle you will see the column options. Here you can "
178
  "change each label of the columns heading."
179
+ msgstr "Klik op het kleine driehoekje om de kolom opties te tonen. Hier kan je de kolom label aanpassen."
180
 
181
  #: ../classes/settings.php:214
182
  msgid "Change column width"
183
+ msgstr "Verander kolom breedte"
184
 
185
  #: ../classes/settings.php:215
186
  msgid ""
187
  "By clicking on the triangle you will see the column options. By using the "
188
+ "draggable slider you can set the width of the columns in percentages."
189
  msgstr ""
190
 
 
191
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
  #: ../classes/column/custom-field.php:324
193
  msgid "Custom Field"
194
+ msgstr "Custom veld"
195
 
 
196
  #: ../classes/settings.php:221
 
197
  msgid "'Custom Field' column"
198
+ msgstr "'Custom veld' kolom"
199
 
200
  #: ../classes/settings.php:222
201
  msgid ""
202
  "The custom field colum uses the custom fields from posts and users. There "
203
  "are 10 types which you can set."
204
+ msgstr "De 'custom veld' kolom gebruikt custom velden voor berichten en gebruikers. Er zijn 10 typen welke je kan gebruiken."
205
 
206
  #: ../classes/settings.php:224
207
  msgid ""
208
  "Value: Can be either a string or array. Arrays will be flattened and values "
209
  "are seperated by a ',' comma."
210
+ msgstr "Waarde: Kan een string of array zijn. Arrays worden plat gemaakt en de waarden gescheiden door een ',' komma."
211
 
 
 
212
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
  #: ../classes/column/link/image.php:12
214
  msgid "Image"
218
  msgid ""
219
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
  "comma )."
221
+ msgstr "Waarde: moet een afbeeldings URL of Media ID zijn ( gescheiden door een ',' komma )."
222
 
 
 
223
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
  #: ../classes/column/comment/excerpt.php:13
225
  #: ../classes/column/post/excerpt.php:13
228
 
229
  #: ../classes/settings.php:226
230
  msgid "Value: This will show the first 20 words of the Post content."
231
+ msgstr "Waarde: Deze toont de eerste 20 woorden van een bericht."
232
 
 
233
  #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
234
  msgid "Multiple Values"
235
  msgstr "Meerdere waarden"
236
 
237
  #: ../classes/settings.php:227
238
  msgid ""
239
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
240
+ "array."
241
  msgstr ""
242
 
 
243
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
244
  msgid "Numeric"
245
  msgstr "Numerieke"
250
  "for sorting, so you can sort your posts on numeric (custom field) values."
251
  msgstr ""
252
 
 
253
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
  #: ../classes/column/comment/date.php:12
255
  msgid "Date"
263
  "href='%s'>general settings</a> page."
264
  msgstr ""
265
 
 
266
  #: ../classes/settings.php:230
 
267
  msgid "Post Titles"
268
+ msgstr "Post titels"
269
 
270
  #: ../classes/settings.php:230
271
  msgid "Value: can be one or more Post ID's (seperated by ',')."
273
 
274
  #: ../classes/settings.php:231
275
  msgid "Usernames"
276
+ msgstr "Gebruikersnamen"
277
 
278
  #: ../classes/settings.php:231
279
  msgid "Value: can be one or more User ID's (seperated by ',')."
281
 
282
  #: ../classes/settings.php:232
283
  msgid "Checkmark"
284
+ msgstr "Checkmark"
285
 
286
  #: ../classes/settings.php:232
287
  msgid "Value: should be a 1 (one) or 0 (zero)."
288
+ msgstr "Waarde: moet 1 of 0 zijn."
289
 
290
  #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
291
  msgid "Color"
292
+ msgstr "Kleur"
293
 
294
  #: ../classes/settings.php:233
295
  msgid "Value: hex value color, such as #808080."
296
+ msgstr "Waarde: hex waarde kleur, vb: #808080"
297
 
298
  #: ../classes/settings.php:377
299
  msgid "Welcome to Admin Columns"
300
+ msgstr "Welkom bij Admin Columns"
301
 
302
  #: ../classes/settings.php:380
303
  msgid "Thank you for updating to the latest version!"
304
+ msgstr "Bedankt voor het updaten naar de laatste versie!"
305
 
306
  #: ../classes/settings.php:381
307
  msgid ""
311
 
312
  #: ../classes/settings.php:386
313
  msgid "What’s New"
314
+ msgstr "What is nieuw"
315
 
316
  #: ../classes/settings.php:387
317
  msgid "Changelog"
318
+ msgstr "Changelog"
319
 
320
  #: ../classes/settings.php:389
321
  msgid "Download Addons"
322
+ msgstr "Download Addons"
323
 
 
324
  #: ../classes/settings.php:395
 
325
  msgid "Addons"
326
+ msgstr "Addons"
327
 
328
  #: ../classes/settings.php:397
329
  msgid ""
343
 
344
  #: ../classes/settings.php:403
345
  msgid "Download your Addons"
346
+ msgstr "Download je Addons"
347
 
348
  #: ../classes/settings.php:409
349
  msgid "This website does not use add-ons"
355
 
356
  #: ../classes/settings.php:416
357
  msgid "Important"
358
+ msgstr "Belangrijk"
359
 
 
360
  #: ../classes/settings.php:418
 
361
  msgid "Database Changes"
362
+ msgstr "Database Aanpassingen"
363
 
364
  #: ../classes/settings.php:419
365
  msgid ""
366
+ "The database has been changed between versions 1 and 2. But we made sure you"
367
+ " can still roll back to version 1x without any issues."
368
  msgstr ""
369
 
370
  #: ../classes/settings.php:422
373
 
374
  #: ../classes/settings.php:422 ../classes/upgrade.php:97
375
  msgid "Upgrade Database"
376
+ msgstr "Werk Database bij"
377
 
378
  #: ../classes/settings.php:425
379
  msgid "Potential Issues"
380
+ msgstr "Potentiele problemen"
381
 
382
  #: ../classes/settings.php:426
383
  msgid ""
384
+ "Do to the sizable refactoring the code, surounding Addons and "
385
+ "action/filters, your website may not operate correctly. It is important that"
386
+ " you read the full"
387
  msgstr ""
388
 
389
  #: ../classes/settings.php:426
390
  msgid "Migrating from v1 to v2"
391
+ msgstr "Migratie van v1 naar v2"
392
 
393
  #: ../classes/settings.php:426
394
  msgid "guide to view the full list of changes."
395
+ msgstr "overzicht van alle aanpassingen."
396
 
397
  #: ../classes/settings.php:426
398
  #, php-format
403
 
404
  #: ../classes/settings.php:429
405
  msgid "Important!"
406
+ msgstr "Belangrijk!"
407
 
408
  #: ../classes/settings.php:429
409
  msgid ""
413
 
414
  #: ../classes/settings.php:429
415
  msgid "version 1"
416
+ msgstr "versie 1"
417
 
 
418
  #: ../classes/settings.php:429
 
419
  msgid "of this plugin."
420
+ msgstr "van deze plugin."
421
 
422
  #: ../classes/settings.php:435
423
  msgid "Changelog for"
424
+ msgstr "Changelog voor"
425
 
426
  #: ../classes/settings.php:450
427
  msgid "Learn more"
428
+ msgstr "Leer meer"
429
 
430
  #: ../classes/settings.php:459
431
  msgid ""
435
 
436
  #: ../classes/settings.php:460
437
  msgid ""
438
+ "This page will assist you in downloading and installing each available "
439
+ "Addon."
440
  msgstr ""
441
 
 
442
  #: ../classes/settings.php:461
 
443
  msgid "Available Addons"
444
+ msgstr "Beschikbare Addons"
445
 
446
  #: ../classes/settings.php:466
447
  msgid "Name"
448
+ msgstr "Naam"
449
 
450
  #: ../classes/settings.php:467 ../classes/settings.php:475
451
  msgid "Download"
452
+ msgstr "Download"
453
 
454
  #: ../classes/settings.php:473
455
  msgid "Pro Add-on (includes Sortorder add-on)"
457
 
458
  #: ../classes/settings.php:483
459
  msgid "Installation"
460
+ msgstr "Installatie"
461
 
462
  #: ../classes/settings.php:485
463
  msgid "For each Add-on available, please perform the following:"
465
 
466
  #: ../classes/settings.php:487
467
  msgid "Download the Addon plugin (.zip file) to your desktop"
468
+ msgstr "Download de Addon plugin (.zip bestand) naar je desktop"
469
 
470
  #: ../classes/settings.php:488
471
  msgid "Navigate to"
472
+ msgstr "Navigeer naar"
473
 
474
  #: ../classes/settings.php:488
475
  msgid "Plugins > Add New > Upload"
476
+ msgstr "Plugins > Voeg toe > Upload"
477
 
478
  #: ../classes/settings.php:489
479
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
480
+ msgstr "Gebruik de uploader om de Add-on te installeren (.zip bestand)"
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
+ " link"
486
+ msgstr "Waanner de plugin is geupload and geinstalleerd, klik de 'Activeer Plugin' link"
487
 
488
  #: ../classes/settings.php:491
489
  msgid "The Add-on is now installed and activated!"
497
 
498
  #: ../classes/settings.php:502
499
  msgid "Start using Admin Columns"
500
+ msgstr "Start met Admin Columns"
501
 
 
502
  #: ../classes/settings.php:580
 
503
  msgid "Store settings"
504
+ msgstr "Opslaan"
505
 
506
  #: ../classes/settings.php:585
507
  msgid "Update"
508
+ msgstr "Bijwerken"
509
 
510
  #: ../classes/settings.php:585
511
  msgid "Publish"
512
+ msgstr "Publiceer"
513
 
 
514
  #: ../classes/settings.php:589
515
+ #, php-format
516
  msgid ""
517
+ "Warning! The %s columns data will be deleted. This cannot be undone. "
518
+ "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
  msgstr ""
 
 
520
 
 
521
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
  #: ../classes/column/post/actions.php:53
523
  msgid "Restore"
524
+ msgstr "Herstel"
525
 
526
  #: ../classes/settings.php:590
527
  msgid "columns"
528
+ msgstr "kolommen"
529
 
530
  #: ../classes/settings.php:600
531
  msgid "Get the Pro Add-on"
532
+ msgstr "Neem de Pro Add-on"
533
 
534
  #: ../classes/settings.php:604
535
  msgid "Add Sorting"
536
+ msgstr "Voeg sorting toe"
537
 
538
  #: ../classes/settings.php:605
539
  msgid "Add Filtering"
540
+ msgstr "Voeg filtering toe"
541
 
542
  #: ../classes/settings.php:606
543
  msgid "Add Import/Export"
544
+ msgstr "Voeg import/export toe"
545
 
546
  #: ../classes/settings.php:609
547
  #, php-format
548
  msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
549
  msgstr ""
550
 
 
551
  #: ../classes/settings.php:617
 
552
  msgid "Support"
553
  msgstr "Hulp nodig?"
554
 
 
555
  #: ../classes/settings.php:620
 
556
  msgid "Check the <strong>Help</strong> section in the top-right screen."
557
  msgstr ""
 
 
558
 
559
  #: ../classes/settings.php:622
560
  #, php-format
563
  "href='%s'>visit the Admin Columns website</a>"
564
  msgstr ""
565
 
 
566
  #: ../classes/settings.php:642
 
567
  msgid "Drag and drop to reorder"
568
+ msgstr "Sleep om te herordenen"
569
 
 
570
  #: ../classes/settings.php:645
 
571
  msgid "Add Column"
572
+ msgstr "Voeg Kolom toe"
573
 
 
574
  #: ../classes/settings.php:696
 
575
  msgid "General Settings"
576
+ msgstr "Algemene Instellingen"
577
 
578
  #: ../classes/settings.php:697
579
  msgid "Customize your Admin Columns settings."
580
+ msgstr "Pas uw Admin Column instellingen aan."
581
 
582
  #: ../classes/settings.php:710
583
  msgid "Show hidden custom fields. Default is <code>off</code>."
584
+ msgstr "Toon verborgen custom fields. Standaard waarde is <code>uit</code>."
585
 
586
  #: ../classes/settings.php:716
587
  msgid ""
590
 
591
  #: ../classes/settings.php:723
592
  msgid "Save"
593
+ msgstr "Opslaan"
594
 
 
595
  #: ../classes/settings.php:763
 
596
  msgid "Restore Settings"
597
+ msgstr "Herstel Instellingen"
598
 
 
599
  #: ../classes/settings.php:764
600
  msgid "This will delete all column settings and restore the default settings."
601
+ msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinstellingen hersteld."
 
 
602
 
 
603
  #: ../classes/settings.php:770
604
  msgid "Restore default settings"
605
  msgstr "Herstel standaard instellingen"
606
 
 
607
  #: ../classes/settings.php:770
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
+ msgstr "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
 
 
612
 
613
  #: ../classes/storage_model.php:167
614
  msgid "settings succesfully restored."
615
+ msgstr "instellingen succesvol hersteld."
616
 
617
  #: ../classes/storage_model.php:181
618
  msgid "No columns settings available."
619
+ msgstr "Geen kolom instellingen beschikbaar."
620
 
621
  #: ../classes/storage_model.php:204
622
  #, php-format
623
  msgid "You are trying to store the same settings for %s."
624
+ msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
625
 
626
  #: ../classes/storage_model.php:208
627
  #, php-format
628
  msgid "Settings for %s updated succesfully."
629
+ msgstr "Instellingen voor %s succesvol bijgewerkt."
630
 
 
631
  #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
632
  msgid "View"
633
+ msgstr "Bekijk"
634
 
635
  #: ../classes/upgrade.php:45
636
  msgid "Upgrade"
637
+ msgstr "Upgrade"
638
 
639
  #: ../classes/upgrade.php:90
640
  msgid "requires a database upgrade"
641
+ msgstr "verreist een database upgrade"
642
 
643
  #: ../classes/upgrade.php:93
644
  msgid "why?"
645
+ msgstr "waarom?"
646
 
647
  #: ../classes/upgrade.php:94
648
  msgid "Please"
649
+ msgstr "Alstublieft"
650
 
651
  #: ../classes/upgrade.php:95
652
  msgid "backup your database"
653
+ msgstr "backup van uw database"
654
 
655
  #: ../classes/upgrade.php:96
656
  msgid "then click"
657
+ msgstr "daarna klik"
658
 
659
  #: ../classes/upgrade.php:304
660
  msgid "Migrating Column Settings"
661
+ msgstr "Migreer Kolom Instellingen"
662
 
663
  #: ../classes/upgrade.php:340
664
  msgid "No Upgrade Required"
665
+ msgstr "Geen upgrade verreist"
666
 
667
  #: ../classes/upgrade.php:341
668
  msgid "Return to welcome screen."
669
+ msgstr "Ga terug naar het welkomst scherm."
670
 
671
  #: ../classes/upgrade.php:359
672
  msgid "Upgrade Complete!"
673
+ msgstr "Upgrade voltooid!"
674
 
 
675
  #: ../classes/upgrade.php:359
 
676
  msgid "Return to settings."
677
  msgstr "Herstel standaard instellingen"
678
 
679
  #: ../classes/upgrade.php:360
680
  msgid "Error"
681
+ msgstr "Fout"
682
 
683
  #: ../classes/upgrade.php:361
684
  msgid ""
686
  "on the support forum."
687
  msgstr ""
688
 
 
689
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
 
690
  msgid "Media Library"
691
+ msgstr "Media bibliotheek"
692
 
 
693
  #: ../classes/column/custom-field.php:79
694
  msgid "Post Title (Post ID's)"
695
  msgstr "Post Titel (Post ID's)"
696
 
697
  #: ../classes/column/custom-field.php:80
698
  msgid "Username (User ID's)"
699
+ msgstr "Gebruikersnaam ( Gebruiker ID's )"
700
 
 
701
  #: ../classes/column/custom-field.php:81
702
  msgid "Checkmark (true/false)"
703
+ msgstr "Vinkje (true/false)"
704
 
705
  #: ../classes/column/custom-field.php:324
706
  msgid "Select your custom field."
707
+ msgstr "Selecteer uw custom field."
708
 
709
  #: ../classes/column/custom-field.php:334
710
  msgid "No custom fields available."
711
+ msgstr "Geen custom fields beschikbaar."
712
 
 
713
  #: ../classes/column/custom-field.php:341
714
  msgid "Field Type"
715
+ msgstr "Veld type"
716
 
717
  #: ../classes/column/custom-field.php:341
718
  msgid "This will determine how the value will be displayed."
719
  msgstr ""
720
 
 
721
  #: ../classes/column/custom-field.php:384
722
  msgid "Before"
723
+ msgstr "Voor"
724
 
725
  #: ../classes/column/custom-field.php:384
726
  msgid "This text will appear before the custom field value."
727
+ msgstr "Deze tekst wordt getoond voor de custom field waarde."
728
 
 
729
  #: ../classes/column/custom-field.php:390
730
  msgid "After"
731
+ msgstr "Na"
732
 
733
  #: ../classes/column/custom-field.php:390
734
  msgid "This text will appear after the custom field value."
735
+ msgstr "Deze tekst wordt getoond na de custom field waarde."
736
 
 
737
  #: ../classes/column/comment/actions.php:14
738
  #: ../classes/column/link/actions.php:14
739
  #: ../classes/column/media/actions.php:14
740
  #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
741
  msgid "Actions"
742
+ msgstr "Akties"
743
 
 
744
  #: ../classes/column/comment/actions.php:73
745
  #: ../classes/column/comment/actions.php:78
746
  msgid "Unapprove"
747
+ msgstr "Afgekeurd"
748
 
 
749
  #: ../classes/column/comment/actions.php:75
750
  #: ../classes/column/comment/actions.php:77
751
  msgid "Approve"
752
+ msgstr "Goedgekeurd"
 
 
 
 
 
 
 
 
 
 
 
 
753
 
 
754
  #: ../classes/column/comment/actions.php:90
755
  #: ../classes/column/post/actions.php:57
756
  msgid "Delete Permanently"
757
+ msgstr "Verwijder permanent"
758
 
 
 
 
 
 
 
 
759
  #: ../classes/column/comment/actions.php:96
760
  #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
761
  #: ../classes/column/user/actions.php:57
762
  msgid "Edit"
763
+ msgstr "Bijwerken"
764
 
 
765
  #: ../classes/column/comment/actions.php:97
766
  #: ../classes/column/post/actions.php:49
767
  msgid "Quick&nbsp;Edit"
768
+ msgstr "Snel&nbsp;Bewerken"
769
 
 
770
  #: ../classes/column/comment/actions.php:98
771
  msgid "Reply"
772
+ msgstr "Antwoord"
773
 
 
774
  #: ../classes/column/comment/agent.php:12
775
  msgid "Agent"
776
+ msgstr "Agent"
777
 
 
778
  #: ../classes/column/comment/approved.php:12
779
  #: ../classes/column/post/comment-count.php:31
780
  msgid "Approved"
781
  msgstr "Goedgekeurd"
782
 
 
783
  #: ../classes/column/comment/author-avatar.php:12
784
  msgid "Avatar"
785
+ msgstr "Avatar"
786
 
 
787
  #: ../classes/column/comment/author-email.php:12
788
  msgid "Author email"
789
  msgstr "Auteurs email"
790
 
 
791
  #: ../classes/column/comment/author-ip.php:12
792
  msgid "Author IP"
793
  msgstr "Auteur IP"
794
 
 
795
  #: ../classes/column/comment/author-url.php:12
796
  msgid "Author url"
797
  msgstr "Auteurs url"
798
 
 
799
  #: ../classes/column/comment/author.php:12
 
800
  msgid "Author"
801
+ msgstr "Auteur"
802
 
 
803
  #: ../classes/column/comment/date-gmt.php:12
804
  msgid "Date GMT"
805
  msgstr "Datum GMT"
806
 
 
807
  #: ../classes/column/comment/date-gmt.php:25
808
  #: ../classes/column/comment/date.php:25
809
  #, php-format
810
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
811
  msgstr "Verstuurd op <a href=\"%1$s\">%2$s op %3$s</a>"
812
 
 
813
  #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
814
  #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
815
  msgid "ID"
816
  msgstr "ID"
817
 
 
818
  #: ../classes/column/comment/reply-to.php:12
819
  msgid "In Reply To"
820
  msgstr "Antwoord op"
821
 
 
822
  #: ../classes/column/comment/word-count.php:12
823
  #: ../classes/column/post/word-count.php:12
824
  msgid "Word count"
825
  msgstr "Aantal woorden"
826
 
 
827
  #: ../classes/column/link/actions.php:46
828
  #, php-format
829
  msgid ""
831
  " 'Cancel' to stop, 'OK' to delete."
832
  msgstr ""
833
 
 
834
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
  msgid "Delete"
836
+ msgstr "Verwijder"
837
 
 
838
  #: ../classes/column/link/description.php:12
839
  #: ../classes/column/media/description.php:12
840
  #: ../classes/column/user/description.php:14
841
  msgid "Description"
842
  msgstr "Beschrijving"
843
 
 
844
  #: ../classes/column/link/length.php:12
845
  msgid "Length"
846
  msgstr "Lengte"
847
 
 
848
  #: ../classes/column/link/notes.php:13
849
  msgid "Notes"
850
  msgstr "Beschrijving"
851
 
 
852
  #: ../classes/column/link/owner.php:12
 
853
  msgid "Owner"
854
+ msgstr "Eigenaar"
855
 
 
856
  #: ../classes/column/link/rss.php:12
857
  msgid "Rss"
858
+ msgstr "Rss"
859
 
 
860
  #: ../classes/column/link/target.php:12
861
  msgid "Target"
862
+ msgstr "Target"
863
 
 
864
  #: ../classes/column/media/alternate-text.php:12
865
  msgid "Alt"
866
+ msgstr "Alt"
867
 
868
  #: ../classes/column/media/available-sizes.php:14
869
  msgid "Available Sizes"
870
+ msgstr "Beschikbare Afmetingen"
871
 
872
  #: ../classes/column/media/available-sizes.php:37
873
  msgid "full size"
874
+ msgstr "Volledige grootte"
875
 
 
876
  #: ../classes/column/media/caption.php:12
877
  #: ../classes/column/media/exif-data.php:36
 
878
  msgid "Caption"
879
+ msgstr "Caption"
880
 
 
881
  #: ../classes/column/media/dimensions.php:12
882
  msgid "Dimensions"
883
  msgstr "Afmetingen"
884
 
885
  #: ../classes/column/media/exif-data.php:12
886
  msgid "EXIF data"
887
+ msgstr "EXIF data"
888
 
 
889
  #: ../classes/column/media/exif-data.php:33
890
  msgid "Aperture"
891
+ msgstr "Aperture"
892
 
 
893
  #: ../classes/column/media/exif-data.php:34
894
  msgid "Credit"
895
+ msgstr "Credit"
896
 
 
897
  #: ../classes/column/media/exif-data.php:35
898
  msgid "Camera"
899
+ msgstr "Camera"
900
 
 
901
  #: ../classes/column/media/exif-data.php:37
902
  msgid "Timestamp"
903
+ msgstr "Timestamp"
904
 
 
905
  #: ../classes/column/media/exif-data.php:38
906
  msgid "Copyright EXIF"
907
+ msgstr "Copyright EXIF"
908
 
 
909
  #: ../classes/column/media/exif-data.php:39
910
  msgid "Focal Length"
911
  msgstr ""
912
 
 
913
  #: ../classes/column/media/exif-data.php:40
914
  msgid "ISO"
915
  msgstr ""
916
 
 
917
  #: ../classes/column/media/exif-data.php:41
918
  msgid "Shutter Speed"
919
  msgstr ""
920
 
 
921
  #: ../classes/column/media/exif-data.php:42
922
  msgid "Title"
923
  msgstr ""
924
 
 
925
  #: ../classes/column/media/file-name.php:12
 
926
  msgid "File name"
927
+ msgstr "Bestandsnaam"
928
 
 
929
  #: ../classes/column/media/file-size.php:12
930
  msgid "File size"
931
+ msgstr "Bestandsgrootte"
932
 
933
  #: ../classes/column/media/full-path.php:12
934
  msgid "Full path"
935
+ msgstr "Volledige pad"
936
 
 
937
  #: ../classes/column/media/height.php:12
938
  msgid "Height"
939
  msgstr "Hoogte"
940
 
 
941
  #: ../classes/column/media/mime-type.php:12
942
  msgid "Mime type"
943
  msgstr ""
944
 
 
945
  #: ../classes/column/post/actions.php:48
946
  msgid "Edit this item"
947
+ msgstr "Bewerk dit item"
948
 
 
949
  #: ../classes/column/post/actions.php:49
950
  msgid "Edit this item inline"
951
+ msgstr "Bijwerken van dit item"
952
 
 
953
  #: ../classes/column/post/actions.php:53
954
  msgid "Restore this item from the Trash"
955
  msgstr ""
956
 
 
957
  #: ../classes/column/post/actions.php:55
958
  msgid "Move this item to the Trash"
959
  msgstr ""
960
 
 
 
961
  #: ../classes/column/post/actions.php:55
962
  #: ../classes/column/post/comment-count.php:34
963
  #: ../classes/column/post/status.php:35
964
  msgid "Trash"
965
+ msgstr "Prullenbak"
966
 
 
967
  #: ../classes/column/post/actions.php:57
968
  msgid "Delete this item permanently"
969
+ msgstr "Verwijder permanent"
970
 
 
971
  #: ../classes/column/post/actions.php:62
972
  #, php-format
973
  msgid "Preview &#8220;%s&#8221;"
974
  msgstr ""
975
 
 
976
  #: ../classes/column/post/actions.php:62
977
  msgid "Preview"
978
+ msgstr "Preview"
979
 
 
980
  #: ../classes/column/post/actions.php:64
981
  #, php-format
982
  msgid "View &#8220;%s&#8221;"
983
+ msgstr "Bekijk &#8220;%s&#8221;"
984
 
 
985
  #: ../classes/column/post/attachment-count.php:12
986
  msgid "No. of Attachments"
987
  msgstr "Aantal attachments"
988
 
 
989
  #: ../classes/column/post/attachment.php:12
990
  msgid "Attachment"
991
  msgstr "Bijlage"
992
 
 
993
  #: ../classes/column/post/author-name.php:12
994
  msgid "Display Author As"
995
+ msgstr "Toon auteur als"
996
 
 
997
  #: ../classes/column/post/author-name.php:33
998
  msgid "Display Name"
999
  msgstr ""
1000
 
 
1001
  #: ../classes/column/post/author-name.php:34
1002
  msgid "First Name"
1003
+ msgstr "Voornaam"
1004
 
 
1005
  #: ../classes/column/post/author-name.php:35
1006
  msgid "Last Name"
1007
+ msgstr "Achternaam"
1008
 
 
1009
  #: ../classes/column/post/author-name.php:36
1010
  #: ../classes/column/user/nickname.php:14
1011
  msgid "Nickname"
1012
+ msgstr "Nickname"
1013
 
1014
  #: ../classes/column/post/author-name.php:37
1015
  msgid "User Login"
1016
+ msgstr "Gebruikers login"
1017
 
1018
  #: ../classes/column/post/author-name.php:38
1019
  msgid "User Email"
1020
+ msgstr "Gebruiker Email"
1021
 
 
1022
  #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1023
  msgid "User ID"
1024
+ msgstr "Gebruiker ID"
1025
 
 
1026
  #: ../classes/column/post/author-name.php:40
 
1027
  msgid "First and Last Name"
1028
+ msgstr "Voor- en achternaam"
1029
 
1030
  #: ../classes/column/post/author-name.php:106
1031
  msgid "This is the format of the author name."
1032
+ msgstr "Dit is het formaat van de auteursnaam"
1033
 
1034
  #: ../classes/column/post/before-moretag.php:14
1035
  msgid "Before More Tag"
1036
+ msgstr "Voor de meer-tag"
1037
 
 
1038
  #: ../classes/column/post/comment-count.php:14
1039
  msgid "Comment count"
1040
+ msgstr "Aantal reacties"
1041
 
1042
  #: ../classes/column/post/comment-count.php:30
1043
  msgid "Total"
1044
+ msgstr "Totaal"
1045
 
1046
  #: ../classes/column/post/comment-count.php:32
1047
  msgid "Pending"
1048
+ msgstr "Pending"
1049
 
1050
  #: ../classes/column/post/comment-count.php:33
1051
  msgid "Spam"
1052
+ msgstr "Spam"
1053
 
 
1054
  #: ../classes/column/post/comment-count.php:78
1055
  #: ../classes/column/post/comment-status.php:14
1056
  msgid "Comment status"
1060
  msgid "Select which comment status you like to display."
1061
  msgstr ""
1062
 
 
1063
  #: ../classes/column/post/featured-image.php:14
1064
  msgid "Featured Image"
1065
  msgstr "Uitgelichte afbeelding"
1066
 
 
1067
  #: ../classes/column/post/formats.php:14
1068
  msgid "Post Format"
1069
+ msgstr "Post formaat"
1070
 
 
1071
  #: ../classes/column/post/modified.php:14
1072
  msgid "Last modified"
1073
+ msgstr "Laatst gewijzigd"
1074
 
 
1075
  #: ../classes/column/post/order.php:14
1076
  msgid "Page Order"
1077
  msgstr "Pagina Volgorde"
1078
 
 
1079
  #: ../classes/column/post/page-template.php:12
1080
  msgid "Page Template"
1081
  msgstr "Pagina Template"
1084
  msgid "Parent"
1085
  msgstr ""
1086
 
 
1087
  #: ../classes/column/post/ping-status.php:14
1088
  msgid "Ping status"
1089
+ msgstr "Ping status"
1090
 
 
1091
  #: ../classes/column/post/roles.php:14
1092
  msgid "Roles"
1093
+ msgstr "Rollen"
1094
 
 
1095
  #: ../classes/column/post/slug.php:12
1096
  msgid "Slug"
1097
+ msgstr "Slug"
1098
 
 
1099
  #: ../classes/column/post/status.php:14
1100
  msgid "Status"
1101
  msgstr "Status"
1102
 
 
1103
  #: ../classes/column/post/status.php:30
1104
  msgid "Published"
1105
+ msgstr "Gepubliceerd"
1106
 
 
1107
  #: ../classes/column/post/status.php:31
1108
  msgid "Draft"
1109
  msgstr ""
1110
 
 
1111
  #: ../classes/column/post/status.php:32
1112
  msgid "Scheduled"
1113
+ msgstr "Gepland"
1114
 
 
1115
  #: ../classes/column/post/status.php:33
1116
  msgid "Private"
1117
+ msgstr "Prive"
1118
 
 
1119
  #: ../classes/column/post/status.php:34
1120
  msgid "Pending Review"
1121
  msgstr ""
1122
 
 
1123
  #: ../classes/column/post/sticky.php:14
1124
  msgid "Sticky"
1125
  msgstr "Sticky"
1126
 
 
1127
  #: ../classes/column/post/taxonomy.php:12
1128
  #: ../classes/column/post/taxonomy.php:68
1129
  msgid "Taxonomy"
1130
+ msgstr "Taxonomy"
1131
 
 
1132
  #: ../classes/column/user/comment-count.php:14
 
1133
  msgid "Comment Count"
1134
+ msgstr ""
1135
 
 
1136
  #: ../classes/column/user/first-name.php:14
1137
  msgid "First name"
1138
  msgstr "Voornaam"
1139
 
 
1140
  #: ../classes/column/user/last-name.php:14
1141
  msgid "Last name"
1142
  msgstr "Achternaam"
1143
 
 
1144
  #: ../classes/column/user/post-count.php:14
 
1145
  msgid "Post Count"
1146
+ msgstr "Aantal posts"
1147
 
1148
  #: ../classes/column/user/post-count.php:92
1149
  msgid "Post Type"
1150
+ msgstr "Post Type"
1151
 
 
1152
  #: ../classes/column/user/registered.php:14
1153
  msgid "Registered"
1154
  msgstr "Registratie"
1155
 
 
1156
  #: ../classes/column/user/url.php:14
1157
  msgid "Url"
1158
+ msgstr "Url"
1159
 
 
1160
  #: ../classes/storage_model/comment.php:13
1161
  msgid "Comments"
1162
  msgstr "Reacties"
1163
 
1164
  #: ../classes/storage_model/link.php:13
1165
  msgid "Links"
1166
+ msgstr "Links"
1167
 
1168
  #: ../classes/storage_model/user.php:13
1169
  msgid "Users"
1170
+ msgstr "Gebruikers"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cpac-pl_PL.mo CHANGED
Binary file
languages/cpac-pl_PL.po CHANGED
@@ -1,793 +1,694 @@
 
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Codepress Admin Columns\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-18 15:23+0100\n"
6
- "PO-Revision-Date: 2013-07-18 15:23+0100\n"
7
- "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Digital Factory <info@digitalfactory.pl>\n"
9
- "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Generator: Poedit 1.5.7\n"
 
 
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
 
20
 
21
- #: ../codepress-admin-columns.php:230 ../classes/settings.php:534
22
  msgid "Settings"
23
  msgstr "Ustawienia"
24
 
25
  #: ../codepress-admin-columns.php:350
26
- #, fuzzy
27
  msgid "Edit columns"
28
- msgstr "Edytor kolumn"
29
-
30
- #: ../classes/addons.php:27
31
- #, fuzzy
32
- msgid "Add-ons"
33
- msgstr "Aktywuj dodatki"
34
-
35
- #: ../classes/addons.php:63
36
- msgid ""
37
- "There was an error retrieving the extensions list from the server. Please "
38
- "try again later."
39
- msgstr ""
40
-
41
- #: ../classes/addons.php:88 ../classes/addons.php:94
42
- #, fuzzy
43
- msgid "Add-ons for Admin Columns"
44
- msgstr "Edytor kolumn"
45
-
46
- #: ../classes/addons.php:95
47
- msgid "These add-ons extend the functionality of Admin Columns."
48
- msgstr ""
49
-
50
- #: ../classes/addons.php:96
51
- msgid "Browse All Add-ons"
52
- msgstr ""
53
-
54
- #: ../classes/addons.php:96
55
- msgid "Browse all Add-ons"
56
- msgstr ""
57
 
58
  #: ../classes/column.php:479
59
  msgid "Thumbnail"
60
- msgstr ""
61
 
62
  #: ../classes/column.php:480
63
  msgid "Medium"
64
- msgstr ""
65
 
66
  #: ../classes/column.php:481
67
- #, fuzzy
68
  msgid "Large"
69
- msgstr "Cel"
70
 
71
  #: ../classes/column.php:482
72
  msgid "Full"
73
- msgstr ""
74
 
75
- #: ../classes/column.php:776
76
- #, fuzzy
77
  msgid "Date Format"
78
- msgstr "Format wpisu"
79
 
80
- #: ../classes/column.php:777
81
  msgid "This will determine how the date will be displayed."
82
- msgstr ""
83
 
84
- #: ../classes/column.php:783
85
  msgid "Example:"
86
- msgstr ""
87
 
88
- #: ../classes/column.php:785
89
  #, php-format
90
  msgid ""
91
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
92
  "date format here</a>."
93
- msgstr ""
94
 
95
- #: ../classes/column.php:786
96
  msgid "Documentation on date and time formatting."
97
- msgstr ""
98
 
99
- #: ../classes/column.php:803
100
- #, fuzzy
101
  msgid "Excerpt length"
102
- msgstr "Wypis"
103
 
104
- #: ../classes/column.php:804
105
  msgid "Number of words"
106
- msgstr ""
107
 
108
- #: ../classes/column.php:826
109
- #, fuzzy
110
  msgid "Preview size"
111
- msgstr "Podejrzyj"
112
 
113
- #: ../classes/column.php:843 ../classes/column.php:899
114
  msgid "Custom"
115
  msgstr "Włąsne"
116
 
117
- #: ../classes/column.php:846
118
- #, fuzzy
119
  msgid "width"
120
- msgstr "Szerokość"
121
 
122
- #: ../classes/column.php:849
123
- #, fuzzy
124
  msgid "height"
125
- msgstr "Wysokość"
126
 
127
- #: ../classes/column.php:900 ../classes/settings.php:221
128
  #: ../classes/column/custom-field.php:72
129
  msgid "Default"
130
  msgstr "Domyślny"
131
 
132
- #: ../classes/column.php:925 ../classes/column.php:986
133
  #: ../classes/column/user/actions.php:65
134
  msgid "Remove"
135
  msgstr "Usuń"
136
 
137
- #: ../classes/column.php:944
138
  msgid "Type"
139
- msgstr ""
140
 
141
- #: ../classes/column.php:944
142
  msgid "Choose a column type."
143
- msgstr ""
144
 
145
- #: ../classes/column.php:954
146
  msgid "Label"
147
- msgstr ""
148
 
149
- #: ../classes/column.php:954
150
  msgid "This is the name which will appear as the column header."
151
- msgstr ""
152
 
153
- #: ../classes/column.php:961 ../classes/column/media/width.php:12
154
  msgid "Width"
155
  msgstr "Szerokość"
156
 
157
- #: ../classes/column.php:963 ../classes/column.php:964
158
  msgid "default"
159
  msgstr "domyśłny"
160
 
161
- #: ../classes/export_import.php:64
162
- msgid "Export field is empty. Please select your types from the left column."
163
- msgstr ""
164
-
165
- #: ../classes/export_import.php:99 ../classes/export_import.php:101
166
- msgid "Sorry, there has been an error."
167
- msgstr ""
168
-
169
- #: ../classes/export_import.php:101
170
- #, php-format
171
- msgid ""
172
- "The export file could not be found at <code>%s</code>. It is likely that "
173
- "this was caused by a permissions problem."
174
- msgstr ""
175
-
176
- #: ../classes/export_import.php:119
177
- msgid "Import failed. File does not contain Admin Column settings."
178
- msgstr ""
179
-
180
- #: ../classes/settings.php:69
181
- #, fuzzy
182
  msgid "Admin Columns Settings"
183
- msgstr "Edytor kolumn"
184
 
185
- #: ../classes/settings.php:69 ../classes/settings.php:533
186
- #: ../classes/upgrade.php:93
187
  msgid "Admin Columns"
188
  msgstr "Edytor kolumn"
189
 
190
- #: ../classes/settings.php:180
 
 
 
 
 
191
  msgid "Default settings succesfully restored."
192
- msgstr ""
193
 
194
- #: ../classes/settings.php:198 ../classes/settings.php:450
195
- #, fuzzy
196
  msgid "Overview"
197
- msgstr "Podejrzyj"
198
 
199
- #: ../classes/settings.php:201
200
  msgid ""
201
  "This plugin is for adding and removing additional columns to the "
202
  "administration screens for post(types), pages, media library, comments, "
203
  "links and users. Change the column's label and reorder them."
204
- msgstr ""
205
 
206
- #: ../classes/settings.php:204
207
  msgid "Basics"
208
- msgstr ""
209
-
210
- #: ../classes/settings.php:206
211
- #, fuzzy
212
- msgid "Show / Hide"
213
- msgstr "Pokaż wszystkie"
214
-
215
- #: ../classes/settings.php:207
216
- msgid ""
217
- "You can switch columns on or off by clicking on the checkbox. This will show "
218
- "or hide each column heading."
219
- msgstr ""
220
 
221
- #: ../classes/settings.php:208
222
- #, fuzzy
223
  msgid "Change order"
224
- msgstr "Kolejność stron"
225
 
226
- #: ../classes/settings.php:209
227
  msgid ""
228
  "By dragging the columns you can change the order which they will appear in."
229
- msgstr ""
230
 
231
- #: ../classes/settings.php:210
232
  msgid "Change label"
233
- msgstr ""
234
 
235
- #: ../classes/settings.php:211
236
  msgid ""
237
  "By clicking on the triangle you will see the column options. Here you can "
238
  "change each label of the columns heading."
239
- msgstr ""
240
 
241
- #: ../classes/settings.php:212
242
  msgid "Change column width"
243
- msgstr ""
244
 
245
- #: ../classes/settings.php:213
246
  msgid ""
247
  "By clicking on the triangle you will see the column options. By using the "
248
- "draggable slider yo can set the width of the columns in percentages."
249
- msgstr ""
250
 
251
- #: ../classes/settings.php:216 ../classes/column/custom-field.php:16
252
- #: ../classes/column/custom-field.php:320
253
  msgid "Custom Field"
254
  msgstr "Własne pole"
255
 
256
- #: ../classes/settings.php:218
257
- #, fuzzy
258
  msgid "'Custom Field' column"
259
- msgstr "Dodaj kolumnę Własne pole"
260
 
261
- #: ../classes/settings.php:219
262
  msgid ""
263
  "The custom field colum uses the custom fields from posts and users. There "
264
  "are 10 types which you can set."
265
- msgstr ""
266
 
267
- #: ../classes/settings.php:221
268
  msgid ""
269
  "Value: Can be either a string or array. Arrays will be flattened and values "
270
  "are seperated by a ',' comma."
271
- msgstr ""
272
 
273
- #: ../classes/settings.php:222 ../classes/column/custom-field.php:73
274
  #: ../classes/column/link/image.php:12
275
  msgid "Image"
276
  msgstr "Obrazek"
277
 
278
- #: ../classes/settings.php:222
279
  msgid ""
280
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
281
  "comma )."
282
- msgstr ""
283
 
284
- #: ../classes/settings.php:223 ../classes/column/custom-field.php:75
285
  #: ../classes/column/comment/excerpt.php:13
286
  #: ../classes/column/post/excerpt.php:13
287
  msgid "Excerpt"
288
  msgstr "Wypis"
289
 
290
- #: ../classes/settings.php:223
291
  msgid "Value: This will show the first 20 words of the Post content."
292
- msgstr ""
293
 
294
- #: ../classes/settings.php:224 ../classes/column/custom-field.php:76
295
  msgid "Multiple Values"
296
  msgstr "Wielokrotne wartości"
297
 
298
- #: ../classes/settings.php:224
299
  msgid ""
300
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
301
- msgstr ""
 
302
 
303
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:77
304
  msgid "Numeric"
305
  msgstr "Numeryczny"
306
 
307
- #: ../classes/settings.php:225
308
  msgid ""
309
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
310
  "for sorting, so you can sort your posts on numeric (custom field) values."
311
- msgstr ""
312
 
313
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:78
314
  #: ../classes/column/comment/date.php:12
315
  msgid "Date"
316
  msgstr "Data"
317
 
318
- #: ../classes/settings.php:226
319
  #, php-format
320
  msgid ""
321
  "Value: Can be unix time stamp or a date format as described in the <a "
322
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
323
  "href='%s'>general settings</a> page."
324
- msgstr ""
325
 
326
- #: ../classes/settings.php:227
327
- #, fuzzy
328
  msgid "Post Titles"
329
- msgstr "Tytył wpisu (ID wpisu)"
330
 
331
- #: ../classes/settings.php:227
332
  msgid "Value: can be one or more Post ID's (seperated by ',')."
333
- msgstr ""
334
 
335
- #: ../classes/settings.php:228
336
- #, fuzzy
337
  msgid "Usernames"
338
- msgstr "Nazwa użytkownika"
339
 
340
- #: ../classes/settings.php:228
341
  msgid "Value: can be one or more User ID's (seperated by ',')."
342
- msgstr ""
343
 
344
- #: ../classes/settings.php:229
345
  msgid "Checkmark"
346
- msgstr ""
347
 
348
- #: ../classes/settings.php:229
349
  msgid "Value: should be a 1 (one) or 0 (zero)."
350
- msgstr ""
351
 
352
- #: ../classes/settings.php:230 ../classes/column/custom-field.php:82
353
  msgid "Color"
354
- msgstr ""
355
 
356
- #: ../classes/settings.php:230
357
  msgid "Value: hex value color, such as #808080."
358
- msgstr ""
359
 
360
- #: ../classes/settings.php:370
361
- #, fuzzy
362
  msgid "Welcome to Admin Columns"
363
- msgstr "Edytor kolumn"
364
 
365
- #: ../classes/settings.php:372
366
  msgid "Thank you for updating to the latest version!"
367
- msgstr ""
368
 
369
- #: ../classes/settings.php:373
370
  msgid ""
371
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
372
  "like it."
373
- msgstr ""
374
 
375
- #: ../classes/settings.php:378
376
  msgid "What’s New"
377
- msgstr ""
378
 
379
- #: ../classes/settings.php:379
380
  msgid "Changelog"
381
- msgstr ""
382
 
383
- #: ../classes/settings.php:381
384
  msgid "Download Addons"
385
- msgstr ""
386
 
387
- #: ../classes/settings.php:387 ../classes/settings.php:613
388
  msgid "Addons"
389
  msgstr "Dodatki"
390
 
391
- #: ../classes/settings.php:389
392
  msgid ""
393
  "Addons are now activated by downloading and installing individual plugins. "
394
  "Although these plugins will not be hosted on the wordpress.org repository, "
395
  "each Add-on will continue to receive updates in the usual way."
396
- msgstr ""
397
-
398
- #: ../classes/settings.php:393
399
- #, fuzzy
400
- msgid "the Custom Fields columns"
401
- msgstr "Dodaj kolumnę Własne pole"
402
 
403
- #: ../classes/settings.php:394
404
- #, fuzzy
405
- msgid "the Sortorder Addon"
406
- msgstr "Kierunek sortowania"
407
-
408
- #: ../classes/settings.php:397
409
- #, php-format
410
- msgid "This website uses %s. These addons need to be downloaded."
411
- msgstr ""
412
-
413
- #: ../classes/settings.php:397
414
- msgid "and"
415
- msgstr ""
416
 
417
  #: ../classes/settings.php:403
418
- msgid "Addons are sperate plugins which need to be downloaded."
419
- msgstr ""
420
 
421
  #: ../classes/settings.php:403
422
  msgid "Download your Addons"
423
- msgstr ""
424
 
425
  #: ../classes/settings.php:409
 
 
 
 
 
 
 
 
426
  msgid "Important"
427
- msgstr ""
428
 
429
- #: ../classes/settings.php:411
430
- #, fuzzy
431
  msgid "Database Changes"
432
- msgstr "Zapisz zmiany"
433
 
434
- #: ../classes/settings.php:412
435
  msgid ""
436
- "The database has been changed between versions 1 and 2. But we made sure you "
437
- "can still roll back to version 1x without any issues."
438
- msgstr ""
439
 
440
- #: ../classes/settings.php:415
441
  msgid "Make sure you backup your database and then click"
442
- msgstr ""
443
 
444
- #: ../classes/settings.php:415 ../classes/upgrade.php:101
445
  msgid "Upgrade Database"
446
- msgstr ""
447
 
448
- #: ../classes/settings.php:418
449
  msgid "Potential Issues"
450
- msgstr ""
451
 
452
- #: ../classes/settings.php:419
453
  msgid ""
454
- "Do to the sizable refactoring the code, surounding Addons and action/"
455
- "filters, your website may not operate correctly. It is important that you "
456
- "read the full"
457
- msgstr ""
458
 
459
- #: ../classes/settings.php:419
460
  msgid "Migrating from v1 to v2"
461
- msgstr ""
462
 
463
- #: ../classes/settings.php:419
464
  msgid "guide to view the full list of changes."
465
- msgstr ""
466
 
467
- #: ../classes/settings.php:419
468
  #, php-format
469
  msgid ""
470
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
471
  "can fix it in the next release."
472
- msgstr ""
473
 
474
- #: ../classes/settings.php:422
475
  msgid "Important!"
476
- msgstr ""
477
 
478
- #: ../classes/settings.php:422
479
  msgid ""
480
  "If you updated the Admin Columns plugin without prior knowledge of such "
481
  "changes, Please roll back to the latest"
482
- msgstr ""
483
 
484
- #: ../classes/settings.php:422
485
  msgid "version 1"
486
- msgstr ""
487
 
488
- #: ../classes/settings.php:422
489
- #, fuzzy
490
  msgid "of this plugin."
491
- msgstr "Lubisz tę wtyczkę?"
492
 
493
- #: ../classes/settings.php:428
494
  msgid "Changelog for"
495
- msgstr ""
496
 
497
- #: ../classes/settings.php:443
498
  msgid "Learn more"
499
- msgstr ""
500
 
501
- #: ../classes/settings.php:452
502
  msgid ""
503
  "New to v2, all Addons act as separate plugins which need to be individually "
504
  "downloaded, installed and updated."
505
- msgstr ""
506
 
507
- #: ../classes/settings.php:453
508
  msgid ""
509
- "This page will assist you in downloading and installing each available Addon."
510
- msgstr ""
 
511
 
512
- #: ../classes/settings.php:454
513
- #, fuzzy
514
  msgid "Available Addons"
515
- msgstr "Aktywuj dodatki"
516
 
517
- #: ../classes/settings.php:459
518
- #, fuzzy
519
  msgid "Name"
520
- msgstr "Nazwisko"
521
 
522
- #: ../classes/settings.php:460 ../classes/settings.php:468
523
- #: ../classes/settings.php:476
524
  msgid "Download"
525
- msgstr ""
526
-
527
- #: ../classes/settings.php:466
528
- #, fuzzy
529
- msgid "Sortorder Addon"
530
- msgstr "Kierunek sortowania"
531
-
532
- #: ../classes/settings.php:474
533
- #, fuzzy
534
- msgid "Custom Fields Addon"
535
- msgstr "Własne pole"
536
 
537
- #: ../classes/settings.php:474
538
- msgid "This website is currently using custom field columns."
539
- msgstr ""
540
 
541
  #: ../classes/settings.php:483
542
  msgid "Installation"
543
- msgstr ""
544
 
545
  #: ../classes/settings.php:485
546
  msgid "For each Add-on available, please perform the following:"
547
- msgstr ""
548
 
549
  #: ../classes/settings.php:487
550
  msgid "Download the Addon plugin (.zip file) to your desktop"
551
- msgstr ""
552
 
553
  #: ../classes/settings.php:488
554
  msgid "Navigate to"
555
- msgstr ""
556
 
557
  #: ../classes/settings.php:488
558
  msgid "Plugins > Add New > Upload"
559
- msgstr ""
560
 
561
  #: ../classes/settings.php:489
562
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
563
- msgstr ""
564
 
565
  #: ../classes/settings.php:490
566
  msgid ""
567
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
568
- "link"
569
- msgstr ""
570
 
571
  #: ../classes/settings.php:491
572
  msgid "The Add-on is now installed and activated!"
573
- msgstr ""
574
 
575
  #: ../classes/settings.php:492
576
  #, php-format
577
  msgid ""
578
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
579
- msgstr ""
580
 
581
  #: ../classes/settings.php:502
582
- #, fuzzy
583
  msgid "Start using Admin Columns"
584
- msgstr "Edytor kolumn"
585
 
586
- #: ../classes/settings.php:579
587
- #, fuzzy
588
  msgid "Store settings"
589
- msgstr "Ustawienia"
590
 
591
- #: ../classes/settings.php:584
592
  msgid "Update"
593
- msgstr ""
594
 
595
- #: ../classes/settings.php:584
596
- #, fuzzy
597
  msgid "Publish"
598
- msgstr "Opublikowany"
599
 
600
- #: ../classes/settings.php:588
601
- #, fuzzy, php-format
602
  msgid ""
603
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
604
- "\\' to delete, \\'Cancel\\' to stop"
605
- msgstr ""
606
- "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji "
607
- "nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby "
608
- "przerwać."
609
 
610
- #: ../classes/settings.php:589 ../classes/column/comment/actions.php:86
611
  #: ../classes/column/post/actions.php:53
612
  msgid "Restore"
613
  msgstr "Przywróć"
614
 
615
- #: ../classes/settings.php:589
616
- #, fuzzy
617
  msgid "columns"
618
- msgstr "Edytor kolumn"
619
 
620
- #: ../classes/settings.php:596
621
- #, fuzzy
622
- msgid "Get the Pro addon"
623
  msgstr "Kup dodatek"
624
 
625
- #: ../classes/settings.php:622
626
- #, fuzzy
627
- msgid "find more addons"
628
- msgstr "dowiedz się więcej"
 
 
 
 
 
 
 
629
 
630
- #: ../classes/settings.php:625
631
  #, php-format
632
- msgid "Check the <a href=\"%s\">Add-on section</a> for more details."
633
- msgstr ""
634
 
635
- #: ../classes/settings.php:633
636
- #, fuzzy
637
  msgid "Support"
638
- msgstr "Potrzebujesz pomocy?"
639
 
640
- #: ../classes/settings.php:636
641
- #, fuzzy
642
  msgid "Check the <strong>Help</strong> section in the top-right screen."
643
- msgstr ""
644
- "Krótkie podsumowanie znajdziesz w dziale <strong>Pomocy</strong>, w prawym, "
645
- "górnym rogu ekranu."
646
 
647
- #: ../classes/settings.php:638
648
  #, php-format
649
  msgid ""
650
  "For full documentation, bug reports, feature suggestions and other tips <a "
651
  "href='%s'>visit the Admin Columns website</a>"
652
- msgstr ""
653
 
654
- #: ../classes/settings.php:658
655
- #, fuzzy
656
  msgid "Drag and drop to reorder"
657
- msgstr "przeciągnij i opuść aby zmienić kolejność"
658
 
659
- #: ../classes/settings.php:661
660
- #, fuzzy
661
  msgid "Add Column"
662
- msgstr "Edytor kolumn"
663
 
664
- #: ../classes/settings.php:712
665
- #, fuzzy
666
  msgid "General Settings"
667
- msgstr "Ustawienia"
668
 
669
- #: ../classes/settings.php:713
670
  msgid "Customize your Admin Columns settings."
671
- msgstr ""
672
 
673
- #: ../classes/settings.php:720
674
- #, fuzzy
675
- msgid "Custom field settings"
676
- msgstr "Przywróć ustawienia domyślne"
677
-
678
- #: ../classes/settings.php:724
679
  msgid "Show hidden custom fields. Default is <code>off</code>."
680
- msgstr ""
 
 
 
 
 
681
 
682
- #: ../classes/settings.php:731
683
  msgid "Save"
684
- msgstr ""
685
 
686
- #: ../classes/settings.php:771
687
- #, fuzzy
688
  msgid "Restore Settings"
689
- msgstr "Przywróć ustawienia domyślne"
690
 
691
- #: ../classes/settings.php:772
692
  msgid "This will delete all column settings and restore the default settings."
693
- msgstr ""
694
- "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień "
695
- "domyślnych."
696
 
697
- #: ../classes/settings.php:778
698
  msgid "Restore default settings"
699
  msgstr "Przywróć ustawienia domyślne"
700
 
701
- #: ../classes/settings.php:778
702
  msgid ""
703
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
704
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
705
- msgstr ""
706
- "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji "
707
- "nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby "
708
- "przerwać."
709
 
710
- #: ../classes/storage_model.php:153
711
  msgid "settings succesfully restored."
712
- msgstr ""
713
 
714
- #: ../classes/storage_model.php:167
715
  msgid "No columns settings available."
716
- msgstr ""
717
 
718
- #: ../classes/storage_model.php:190
719
  #, php-format
720
  msgid "You are trying to store the same settings for %s."
721
- msgstr ""
722
 
723
- #: ../classes/storage_model.php:194
724
  #, php-format
725
  msgid "Settings for %s updated succesfully."
726
- msgstr ""
727
 
728
- #: ../classes/storage_model.php:564 ../classes/column/post/actions.php:64
729
  msgid "View"
730
  msgstr "Zobacz"
731
 
732
- #: ../classes/upgrade.php:48
733
  msgid "Upgrade"
734
- msgstr ""
735
 
736
- #: ../classes/upgrade.php:94
737
  msgid "requires a database upgrade"
738
- msgstr ""
739
 
740
- #: ../classes/upgrade.php:97
741
  msgid "why?"
742
- msgstr ""
743
 
744
- #: ../classes/upgrade.php:98
745
  msgid "Please"
746
- msgstr ""
747
 
748
- #: ../classes/upgrade.php:99
749
  msgid "backup your database"
750
- msgstr ""
751
 
752
- #: ../classes/upgrade.php:100
753
  msgid "then click"
754
- msgstr ""
755
 
756
- #: ../classes/upgrade.php:308
757
  msgid "Migrating Column Settings"
758
- msgstr ""
759
 
760
- #: ../classes/upgrade.php:344
761
  msgid "No Upgrade Required"
762
- msgstr ""
763
 
764
- #: ../classes/upgrade.php:345
765
  msgid "Return to welcome screen."
766
- msgstr ""
767
 
768
- #: ../classes/upgrade.php:361
769
  msgid "Upgrade Complete!"
770
- msgstr ""
771
 
772
- #: ../classes/upgrade.php:361
773
- #, fuzzy
774
  msgid "Return to settings."
775
- msgstr "Przywróć ustawienia domyślne"
776
 
777
- #: ../classes/upgrade.php:362
778
  msgid "Error"
779
- msgstr ""
780
 
781
- #: ../classes/upgrade.php:363
782
  msgid ""
783
  "Sorry. Something went wrong during the upgrade process. Please report this "
784
  "on the support forum."
785
- msgstr ""
786
 
787
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
788
- #, fuzzy
789
  msgid "Media Library"
790
- msgstr "Ikona Biblioteki mediów"
791
 
792
  #: ../classes/column/custom-field.php:79
793
  msgid "Post Title (Post ID's)"
@@ -795,43 +696,43 @@ msgstr "Tytył wpisu (ID wpisu)"
795
 
796
  #: ../classes/column/custom-field.php:80
797
  msgid "Username (User ID's)"
798
- msgstr ""
799
 
800
  #: ../classes/column/custom-field.php:81
801
  msgid "Checkmark (true/false)"
802
  msgstr "Znak (prawda/fałsz)"
803
 
804
- #: ../classes/column/custom-field.php:320
805
  msgid "Select your custom field."
806
- msgstr ""
807
 
808
- #: ../classes/column/custom-field.php:330
809
  msgid "No custom fields available."
810
- msgstr ""
811
 
812
- #: ../classes/column/custom-field.php:337
813
  msgid "Field Type"
814
  msgstr "Rodzaj pola"
815
 
816
- #: ../classes/column/custom-field.php:337
817
  msgid "This will determine how the value will be displayed."
818
- msgstr ""
819
 
820
- #: ../classes/column/custom-field.php:380
821
  msgid "Before"
822
  msgstr "Przed"
823
 
824
- #: ../classes/column/custom-field.php:380
825
  msgid "This text will appear before the custom field value."
826
- msgstr ""
827
 
828
- #: ../classes/column/custom-field.php:386
829
  msgid "After"
830
  msgstr "Po"
831
 
832
- #: ../classes/column/custom-field.php:386
833
  msgid "This text will appear after the custom field value."
834
- msgstr ""
835
 
836
  #: ../classes/column/comment/actions.php:14
837
  #: ../classes/column/link/actions.php:14
@@ -896,9 +797,8 @@ msgid "Author url"
896
  msgstr "URL Autora"
897
 
898
  #: ../classes/column/comment/author.php:12
899
- #, fuzzy
900
  msgid "Author"
901
- msgstr "IP Autora"
902
 
903
  #: ../classes/column/comment/date-gmt.php:12
904
  msgid "Date GMT"
@@ -929,9 +829,7 @@ msgstr "Liczba słów"
929
  msgid ""
930
  "You are about to delete this link '%s'\n"
931
  " 'Cancel' to stop, 'OK' to delete."
932
- msgstr ""
933
- "Zamierzasz usunąć ten link link '%s'\n"
934
- " 'Cancel' to stop, 'OK' to delete."
935
 
936
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
937
  msgid "Delete"
@@ -969,12 +867,11 @@ msgstr "Tekst alternatywny"
969
 
970
  #: ../classes/column/media/available-sizes.php:14
971
  msgid "Available Sizes"
972
- msgstr ""
973
 
974
  #: ../classes/column/media/available-sizes.php:37
975
- #, fuzzy
976
  msgid "full size"
977
- msgstr "Wielkość pliku"
978
 
979
  #: ../classes/column/media/caption.php:12
980
  #: ../classes/column/media/exif-data.php:36
@@ -987,7 +884,7 @@ msgstr "Wymiary"
987
 
988
  #: ../classes/column/media/exif-data.php:12
989
  msgid "EXIF data"
990
- msgstr ""
991
 
992
  #: ../classes/column/media/exif-data.php:33
993
  msgid "Aperture"
@@ -1035,7 +932,7 @@ msgstr "Wielkość pliku"
1035
 
1036
  #: ../classes/column/media/full-path.php:12
1037
  msgid "Full path"
1038
- msgstr ""
1039
 
1040
  #: ../classes/column/media/height.php:12
1041
  msgid "Height"
@@ -1116,29 +1013,27 @@ msgstr "Pseudonim"
1116
 
1117
  #: ../classes/column/post/author-name.php:37
1118
  msgid "User Login"
1119
- msgstr ""
1120
 
1121
  #: ../classes/column/post/author-name.php:38
1122
- #, fuzzy
1123
  msgid "User Email"
1124
- msgstr "Email"
1125
 
1126
  #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1127
  msgid "User ID"
1128
  msgstr "ID użytkownika"
1129
 
1130
  #: ../classes/column/post/author-name.php:40
1131
- #, fuzzy
1132
  msgid "First and Last Name"
1133
  msgstr "Imię i nazwisko"
1134
 
1135
  #: ../classes/column/post/author-name.php:106
1136
  msgid "This is the format of the author name."
1137
- msgstr ""
1138
 
1139
  #: ../classes/column/post/before-moretag.php:14
1140
  msgid "Before More Tag"
1141
- msgstr ""
1142
 
1143
  #: ../classes/column/post/comment-count.php:14
1144
  msgid "Comment count"
@@ -1146,16 +1041,15 @@ msgstr "Liczba komentarzy"
1146
 
1147
  #: ../classes/column/post/comment-count.php:30
1148
  msgid "Total"
1149
- msgstr ""
1150
 
1151
  #: ../classes/column/post/comment-count.php:32
1152
- #, fuzzy
1153
  msgid "Pending"
1154
- msgstr "oczekujący"
1155
 
1156
  #: ../classes/column/post/comment-count.php:33
1157
  msgid "Spam"
1158
- msgstr ""
1159
 
1160
  #: ../classes/column/post/comment-count.php:78
1161
  #: ../classes/column/post/comment-status.php:14
@@ -1164,7 +1058,7 @@ msgstr "Status komentarza"
1164
 
1165
  #: ../classes/column/post/comment-count.php:78
1166
  msgid "Select which comment status you like to display."
1167
- msgstr ""
1168
 
1169
  #: ../classes/column/post/featured-image.php:14
1170
  msgid "Featured Image"
@@ -1188,7 +1082,7 @@ msgstr "Szablon strony"
1188
 
1189
  #: ../classes/column/post/parent.php:12
1190
  msgid "Parent"
1191
- msgstr ""
1192
 
1193
  #: ../classes/column/post/ping-status.php:14
1194
  msgid "Ping status"
@@ -1236,7 +1130,6 @@ msgid "Taxonomy"
1236
  msgstr "Taksonomia"
1237
 
1238
  #: ../classes/column/user/comment-count.php:14
1239
- #, fuzzy
1240
  msgid "Comment Count"
1241
  msgstr "Liczba komentarzy"
1242
 
@@ -1249,13 +1142,12 @@ msgid "Last name"
1249
  msgstr "Nazwisko"
1250
 
1251
  #: ../classes/column/user/post-count.php:14
1252
- #, fuzzy
1253
  msgid "Post Count"
1254
  msgstr "Liczba wpisów"
1255
 
1256
  #: ../classes/column/user/post-count.php:92
1257
  msgid "Post Type"
1258
- msgstr ""
1259
 
1260
  #: ../classes/column/user/registered.php:14
1261
  msgid "Registered"
@@ -1271,185 +1163,8 @@ msgstr "Komentarze"
1271
 
1272
  #: ../classes/storage_model/link.php:13
1273
  msgid "Links"
1274
- msgstr ""
1275
 
1276
  #: ../classes/storage_model/user.php:13
1277
- #, fuzzy
1278
  msgid "Users"
1279
- msgstr "ID użytkownika"
1280
-
1281
- #~ msgid "This field can not be removed"
1282
- #~ msgstr "To własne pole nie może być usunięte"
1283
-
1284
- #~ msgid "Display name as"
1285
- #~ msgstr "Wyświetl jakoi"
1286
-
1287
- #~ msgid "Icon"
1288
- #~ msgstr "Ikona"
1289
-
1290
- #~ msgid "Order"
1291
- #~ msgstr "Kolejność"
1292
-
1293
- #~ msgid "Field"
1294
- #~ msgstr "Pole"
1295
-
1296
- #~ msgid "Upload paths"
1297
- #~ msgstr "Ścieżki plików"
1298
-
1299
- #~ msgid "Aperture EXIF"
1300
- #~ msgstr "Przysłona EXIF"
1301
-
1302
- #~ msgid "Credit EXIF"
1303
- #~ msgstr "Autor EXIF"
1304
-
1305
- #~ msgid "Camera EXIF"
1306
- #~ msgstr "Aparat EXIF"
1307
-
1308
- #~ msgid "Caption EXIF"
1309
- #~ msgstr "Podpis EXIF"
1310
-
1311
- #~ msgid "Timestamp EXIF"
1312
- #~ msgstr "Data EXIF"
1313
-
1314
- #~ msgid "Copyright"
1315
- #~ msgstr "Prawa autorskie"
1316
-
1317
- #~ msgid "Focal Length EXIF"
1318
- #~ msgstr "Ogniskowa EXIF"
1319
-
1320
- #~ msgid "ISO EXIF"
1321
- #~ msgstr "ISO EXIF"
1322
-
1323
- #~ msgid "Shutter Speed EXIF"
1324
- #~ msgstr "Szybkość migawki EXIF"
1325
-
1326
- #~ msgid "Title EXIF"
1327
- #~ msgstr "Tytuł EXIF"
1328
-
1329
- #~ msgid "Author Name"
1330
- #~ msgstr "Imię Autora"
1331
-
1332
- #~ msgid "This will make all of the new columns support sorting"
1333
- #~ msgstr "Dzięki temu wszystkie nowe kolumny będą sortowalne"
1334
-
1335
- #~ msgid ""
1336
- #~ "By default WordPress let's you sort by title, date, comments and author. "
1337
- #~ "This will make you be able to <strong>sort by any column of any type!</"
1338
- #~ "strong>"
1339
- #~ msgstr ""
1340
- #~ "Domyślnie, WordPress pozwala na sortowanie po tytule, dacie, komentarzu i "
1341
- #~ "autorze. Dzięi temu będziesz mógł <strong>sortować każdą kolumnę, każdego "
1342
- #~ "rodzaju!</strong>"
1343
-
1344
- #~ msgid ""
1345
- #~ "Perfect for sorting your articles, media files, comments, links and users"
1346
- #~ msgstr ""
1347
- #~ "Idealne rozwiązanie do sortowania wpisów, mediów, komentarzy, linków i "
1348
- #~ "użytkowników"
1349
-
1350
- #~ msgid "(columns that are added by other plugins are not supported)"
1351
- #~ msgstr "(kolumny dodane przez inne wtyczki nie są wspierane)"
1352
-
1353
- #~ msgid "Inactive"
1354
- #~ msgstr "Nieaktywny"
1355
-
1356
- #~ msgid "Active"
1357
- #~ msgstr "Aktywny"
1358
-
1359
- #~ msgid "Fill in your activation code"
1360
- #~ msgstr "Wpisz kod aktywacyjny"
1361
-
1362
- #~ msgid "Activate"
1363
- #~ msgstr "Aktywuj"
1364
-
1365
- #~ msgid "Deactivate"
1366
- #~ msgstr "Deaktywuj"
1367
-
1368
- #~ msgid ""
1369
- #~ "Add-ons can be unlocked by purchasing a license key. Each key can be used "
1370
- #~ "on multiple sites"
1371
- #~ msgstr ""
1372
- #~ "Dodatki mągą być aktywowane po zakupie licencji. Każdy klucz licencji "
1373
- #~ "może być sotsowany na wielu stronach"
1374
-
1375
- #~ msgid "Addon"
1376
- #~ msgstr "Dodatek"
1377
-
1378
- #~ msgid "Activation Code"
1379
- #~ msgstr "Kod aktywacyjny"
1380
-
1381
- #~ msgid "Enter your activation code"
1382
- #~ msgstr "Wpisz kod aktywacyjny"
1383
-
1384
- #~ msgid "Activation code unrecognised"
1385
- #~ msgstr "Kod aktywacyjny nie został rozpoznany"
1386
-
1387
- #~ msgid "Codepress Admin Columns"
1388
- #~ msgstr "Edytor kolumn"
1389
-
1390
- #~ msgid ""
1391
- #~ "By default WordPress let's you only sort by title, date, comments and "
1392
- #~ "author."
1393
- #~ msgstr ""
1394
- #~ "Domyślnie WordPress pozwala na sortowanie po tytule, dacie, komentarzu i "
1395
- #~ "autorze."
1396
-
1397
- #~ msgid ""
1398
- #~ "Make <strong>all columns</strong> of <strong>all types</strong> within "
1399
- #~ "the plugin support sorting &#8212; with the sorting addon."
1400
- #~ msgstr ""
1401
- #~ "Pozwól na sortowanie <strong>wszystkich kolumn, wszystkich typów</strong> "
1402
- #~ "uaktywniając dodatek umożłiwiający sortowanie."
1403
-
1404
- #~ msgid "Why not do any or all of the following"
1405
- #~ msgstr "Dlaczego by nie zrobić jednej lub wszystkich z poniższych rzeczy"
1406
-
1407
- #~ msgid "Give it a 5 star rating on WordPress.org."
1408
- #~ msgstr "Przyznaj jej 5 gwaizdek na stronie WordPress.org."
1409
-
1410
- #~ msgid "Link to it so other folks can find out about it."
1411
- #~ msgstr "Dodaj link aby inni mogli się o niej dowiedzieć."
1412
-
1413
- #~ msgid "Donate a token of your appreciation."
1414
- #~ msgstr "Wspomóż drobną dotacją."
1415
-
1416
- #~ msgid "Follow us"
1417
- #~ msgstr "Śledź nas"
1418
-
1419
- #~ msgid "Follow Codepress on Twitter."
1420
- #~ msgstr "Śledź nas na Tweeterze."
1421
-
1422
- #~ msgid "Like Codepress on Facebook."
1423
- #~ msgstr "Polub Codepress na Facebooku."
1424
-
1425
- #~ msgid ""
1426
- #~ "If you are having problems with this plugin, please talk about them in "
1427
- #~ "the <a href=\"%s\">Support forums</a> or send me an email %s."
1428
- #~ msgstr ""
1429
- #~ "Jeśli masz jakieś problemy z tą wtyczką, proszę napisz o tym na stronie "
1430
- #~ "<a href=\"%s\">Forum pomocy</a> lub wyślij do mnie maila na adres %s."
1431
-
1432
- #~ msgid ""
1433
- #~ "If you're sure you've found a bug, or have a feature request, please <a "
1434
- #~ "href='%s'>submit your feedback</a>."
1435
- #~ msgstr ""
1436
- #~ "Jeśli jeste przekonany, że znalazłeś bug'a lub masz prośbę o dodanie "
1437
- #~ "nowej funkcji, proszę <a href='%s'>wyślij do mnie maila.</a>."
1438
-
1439
- #~ msgid "Restore defaults"
1440
- #~ msgstr "Przywróć domyślne"
1441
-
1442
- #~ msgid "original"
1443
- #~ msgstr "oryginalny"
1444
-
1445
- #~ msgid "Standard"
1446
- #~ msgstr "Standardowe"
1447
-
1448
- #~ msgid "approved"
1449
- #~ msgstr "zatwierdzony"
1450
-
1451
- #~ msgid "spam"
1452
- #~ msgstr "spam"
1453
-
1454
- #~ msgid "trash"
1455
- #~ msgstr "kosz"
1
+ #
2
+ # Translators:
3
+ # codepress <info@codepress.nl>, 2013
4
  msgid ""
5
  msgstr ""
6
+ "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-09-04 16:16+0000\n"
10
+ "Last-Translator: codepress <info@codepress.nl>\n"
11
+ "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/admin-columns/language/pl_PL/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: pl_PL\n"
16
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 
17
  "X-Generator: Poedit 1.5.7\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
 
24
+ #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
26
  msgstr "Ustawienia"
27
 
28
  #: ../codepress-admin-columns.php:350
 
29
  msgid "Edit columns"
30
+ msgstr "Edytuj kolumny"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
  #: ../classes/column.php:479
33
  msgid "Thumbnail"
34
+ msgstr "Miniatura"
35
 
36
  #: ../classes/column.php:480
37
  msgid "Medium"
38
+ msgstr "Średni"
39
 
40
  #: ../classes/column.php:481
 
41
  msgid "Large"
42
+ msgstr "Duży"
43
 
44
  #: ../classes/column.php:482
45
  msgid "Full"
46
+ msgstr "Pełny"
47
 
48
+ #: ../classes/column.php:774
 
49
  msgid "Date Format"
50
+ msgstr "Format daty"
51
 
52
+ #: ../classes/column.php:775
53
  msgid "This will determine how the date will be displayed."
54
+ msgstr "Określi to sposób wyświetlania daty."
55
 
56
+ #: ../classes/column.php:781
57
  msgid "Example:"
58
+ msgstr "Przykład:"
59
 
60
+ #: ../classes/column.php:783
61
  #, php-format
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
+ msgstr "Pozostaw puste aby używać formatu daty WordPressa, lub zmień <a href=\"%s\">domyślny format daty</a>."
66
 
67
+ #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
69
+ msgstr "Dokumentacja dotycząca formatowania daty i godziny."
70
 
71
+ #: ../classes/column.php:801
 
72
  msgid "Excerpt length"
73
+ msgstr "Długość wypisu"
74
 
75
+ #: ../classes/column.php:802
76
  msgid "Number of words"
77
+ msgstr "Liczba słów"
78
 
79
+ #: ../classes/column.php:824
 
80
  msgid "Preview size"
81
+ msgstr "Wielkość podglądu"
82
 
83
+ #: ../classes/column.php:841 ../classes/column.php:897
84
  msgid "Custom"
85
  msgstr "Włąsne"
86
 
87
+ #: ../classes/column.php:844
 
88
  msgid "width"
89
+ msgstr "szerokość"
90
 
91
+ #: ../classes/column.php:847
 
92
  msgid "height"
93
+ msgstr "wysokość"
94
 
95
+ #: ../classes/column.php:898 ../classes/settings.php:224
96
  #: ../classes/column/custom-field.php:72
97
  msgid "Default"
98
  msgstr "Domyślny"
99
 
100
+ #: ../classes/column.php:923 ../classes/column.php:984
101
  #: ../classes/column/user/actions.php:65
102
  msgid "Remove"
103
  msgstr "Usuń"
104
 
105
+ #: ../classes/column.php:942
106
  msgid "Type"
107
+ msgstr "Typ"
108
 
109
+ #: ../classes/column.php:942
110
  msgid "Choose a column type."
111
+ msgstr "Wybierz typ kolumny."
112
 
113
+ #: ../classes/column.php:952
114
  msgid "Label"
115
+ msgstr "Etykieta"
116
 
117
+ #: ../classes/column.php:952
118
  msgid "This is the name which will appear as the column header."
119
+ msgstr "Nazwa, któa będzie wyświetlana w nagłówku kolumny."
120
 
121
+ #: ../classes/column.php:959 ../classes/column/media/width.php:12
122
  msgid "Width"
123
  msgstr "Szerokość"
124
 
125
+ #: ../classes/column.php:961 ../classes/column.php:962
126
  msgid "default"
127
  msgstr "domyśłny"
128
 
129
+ #: ../classes/settings.php:68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  msgid "Admin Columns Settings"
131
+ msgstr "Ustawienia edytora kolumn"
132
 
133
+ #: ../classes/settings.php:68 ../classes/settings.php:534
134
+ #: ../classes/upgrade.php:89
135
  msgid "Admin Columns"
136
  msgstr "Edytor kolumn"
137
 
138
+ #: ../classes/settings.php:129
139
+ #, php-format
140
+ msgid "%s column is already present and can not be duplicated."
141
+ msgstr "Kolumna %s jest już obecna i nie może być zduplikowana."
142
+
143
+ #: ../classes/settings.php:184
144
  msgid "Default settings succesfully restored."
145
+ msgstr "Domyślne ustawienia zostały przywrócone."
146
 
147
+ #: ../classes/settings.php:202 ../classes/settings.php:457
 
148
  msgid "Overview"
149
+ msgstr "Przegląd"
150
 
151
+ #: ../classes/settings.php:205
152
  msgid ""
153
  "This plugin is for adding and removing additional columns to the "
154
  "administration screens for post(types), pages, media library, comments, "
155
  "links and users. Change the column's label and reorder them."
156
+ msgstr "Ta wtyczka dodaje lub usuwa dodatkowe kolumny na ekranach edycji wpisów, stron, biblioteki mediów, komentarzy, linków i użytkowników. Pozwala zmienić nazwy kolumn i ich kolejność."
157
 
158
+ #: ../classes/settings.php:208
159
  msgid "Basics"
160
+ msgstr "Podstawy"
 
 
 
 
 
 
 
 
 
 
 
161
 
162
+ #: ../classes/settings.php:210
 
163
  msgid "Change order"
164
+ msgstr "Zmień kolejność"
165
 
166
+ #: ../classes/settings.php:211
167
  msgid ""
168
  "By dragging the columns you can change the order which they will appear in."
169
+ msgstr "Przeciągając kolumny możesz zmienić kolejność w której będą wyświetlane."
170
 
171
+ #: ../classes/settings.php:212
172
  msgid "Change label"
173
+ msgstr "Zmień etykietę"
174
 
175
+ #: ../classes/settings.php:213
176
  msgid ""
177
  "By clicking on the triangle you will see the column options. Here you can "
178
  "change each label of the columns heading."
179
+ msgstr "Klikając w trójkąt zobaczysz opcje kolumn. Możesz tu zmienić nazwy każdej z nich."
180
 
181
+ #: ../classes/settings.php:214
182
  msgid "Change column width"
183
+ msgstr "Zmień szerokość kolumn"
184
 
185
+ #: ../classes/settings.php:215
186
  msgid ""
187
  "By clicking on the triangle you will see the column options. By using the "
188
+ "draggable slider you can set the width of the columns in percentages."
189
+ msgstr "Klikając w trójkąt zobaczysz ustawienia kolumn. Używając przeciągania w slajderze możesz ustawić w procentach szerokość kolumn."
190
 
191
+ #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
+ #: ../classes/column/custom-field.php:324
193
  msgid "Custom Field"
194
  msgstr "Własne pole"
195
 
196
+ #: ../classes/settings.php:221
 
197
  msgid "'Custom Field' column"
198
+ msgstr "Kolumna 'Własne pole'"
199
 
200
+ #: ../classes/settings.php:222
201
  msgid ""
202
  "The custom field colum uses the custom fields from posts and users. There "
203
  "are 10 types which you can set."
204
+ msgstr "Kolumna własnego pola używa własnych pól z wpisów i użytkowników. Możesz wybrać 1 z 10 typów."
205
 
206
+ #: ../classes/settings.php:224
207
  msgid ""
208
  "Value: Can be either a string or array. Arrays will be flattened and values "
209
  "are seperated by a ',' comma."
210
+ msgstr "Wartość: Może to być tekst bądź tablica. Tablice zostaną spłąszczone a warości oddzielone przecinkami."
211
 
212
+ #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
  #: ../classes/column/link/image.php:12
214
  msgid "Image"
215
  msgstr "Obrazek"
216
 
217
+ #: ../classes/settings.php:225
218
  msgid ""
219
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
  "comma )."
221
+ msgstr "Wartość: Powinna zawierać adres URL obrazka lub ID załącznika (oddzielone przecinkami)."
222
 
223
+ #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
  #: ../classes/column/comment/excerpt.php:13
225
  #: ../classes/column/post/excerpt.php:13
226
  msgid "Excerpt"
227
  msgstr "Wypis"
228
 
229
+ #: ../classes/settings.php:226
230
  msgid "Value: This will show the first 20 words of the Post content."
231
+ msgstr "Wartość: Wyświetli pierwsze 20 słów z treści wpisu."
232
 
233
+ #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
234
  msgid "Multiple Values"
235
  msgstr "Wielokrotne wartości"
236
 
237
+ #: ../classes/settings.php:227
238
  msgid ""
239
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
240
+ "array."
241
+ msgstr "Wartość: Powinna być tablicą. Tablice wielopoziomowe zostaną spłaszczone."
242
 
243
+ #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
244
  msgid "Numeric"
245
  msgstr "Numeryczny"
246
 
247
+ #: ../classes/settings.php:228
248
  msgid ""
249
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
  "for sorting, so you can sort your posts on numeric (custom field) values."
251
+ msgstr "Wartość: Tylko liczby.<br />Jeśli masz dodatek sortowania, zostanie to zastosowane, aby umożliwić sortowanie wpisów wg liczb (z wartości własnych pól)."
252
 
253
+ #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
  #: ../classes/column/comment/date.php:12
255
  msgid "Date"
256
  msgstr "Data"
257
 
258
+ #: ../classes/settings.php:229
259
  #, php-format
260
  msgid ""
261
  "Value: Can be unix time stamp or a date format as described in the <a "
262
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
  "href='%s'>general settings</a> page."
264
+ msgstr "Wartość: Może być stemplem czasu lub datą w formacie określonym w <a href='%s'>Kodeksie</a>. Możesz zmienić wyświetlani daty na stronie <a href='%s'>Ustawień głównych</a>."
265
 
266
+ #: ../classes/settings.php:230
 
267
  msgid "Post Titles"
268
+ msgstr "Tytyły wpisu"
269
 
270
+ #: ../classes/settings.php:230
271
  msgid "Value: can be one or more Post ID's (seperated by ',')."
272
+ msgstr "Wartość: Może to być jeden lub więcej ID wpisów (oddzielone przecinkami)."
273
 
274
+ #: ../classes/settings.php:231
 
275
  msgid "Usernames"
276
+ msgstr "Nazwy użytkowników"
277
 
278
+ #: ../classes/settings.php:231
279
  msgid "Value: can be one or more User ID's (seperated by ',')."
280
+ msgstr "Wartość: Może to być jeden lub więcej ID użytkowników (oddzielone przecinkami)."
281
 
282
+ #: ../classes/settings.php:232
283
  msgid "Checkmark"
284
+ msgstr "Znak tak/nie"
285
 
286
+ #: ../classes/settings.php:232
287
  msgid "Value: should be a 1 (one) or 0 (zero)."
288
+ msgstr "Wartość: Powinno to być 1 lub 0."
289
 
290
+ #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
291
  msgid "Color"
292
+ msgstr "Kolor"
293
 
294
+ #: ../classes/settings.php:233
295
  msgid "Value: hex value color, such as #808080."
296
+ msgstr "Wartość: Kolor w HEX, np. #808080."
297
 
298
+ #: ../classes/settings.php:377
 
299
  msgid "Welcome to Admin Columns"
300
+ msgstr "Witaj w Edytorze kolumn"
301
 
302
+ #: ../classes/settings.php:380
303
  msgid "Thank you for updating to the latest version!"
304
+ msgstr "Dziękujemy za aktualizację do najnowszej wersji!"
305
 
306
+ #: ../classes/settings.php:381
307
  msgid ""
308
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
  "like it."
310
+ msgstr "Edytor kolumn jest bardziej dopracowany niż kiedykolwiek wcześniej. Mamy nadzięję że Ci się spodoba."
311
 
312
+ #: ../classes/settings.php:386
313
  msgid "What’s New"
314
+ msgstr "Co nowego"
315
 
316
+ #: ../classes/settings.php:387
317
  msgid "Changelog"
318
+ msgstr "Dziennik zmian"
319
 
320
+ #: ../classes/settings.php:389
321
  msgid "Download Addons"
322
+ msgstr "Pobierz dodatki"
323
 
324
+ #: ../classes/settings.php:395
325
  msgid "Addons"
326
  msgstr "Dodatki"
327
 
328
+ #: ../classes/settings.php:397
329
  msgid ""
330
  "Addons are now activated by downloading and installing individual plugins. "
331
  "Although these plugins will not be hosted on the wordpress.org repository, "
332
  "each Add-on will continue to receive updates in the usual way."
333
+ msgstr "Dodatki są aktywowane poprzez wczytanie i instalację oddzielnych wtyczek. Chociaż niektóre wtyczki nie będą utrzymywane w repozytorium wordpress.org, każdy z dodatków będzie mógł być automatycznie aktualizowany."
 
 
 
 
 
334
 
335
+ #: ../classes/settings.php:400
336
+ msgid ""
337
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
338
+ msgstr "Ta strona korzysta z dodatku sortowania. Musisz go pobrać."
 
 
 
 
 
 
 
 
 
339
 
340
  #: ../classes/settings.php:403
341
+ msgid "Addons are seperate plugins which need to be downloaded."
342
+ msgstr "Dodatki są oddzielnymi wtyczkami, które muszą być pobrane."
343
 
344
  #: ../classes/settings.php:403
345
  msgid "Download your Addons"
346
+ msgstr "Pobierz swoje dodatki"
347
 
348
  #: ../classes/settings.php:409
349
+ msgid "This website does not use add-ons"
350
+ msgstr "Ta strona nie korzysta z dodatków"
351
+
352
+ #: ../classes/settings.php:409
353
+ msgid "See our website for the Pro-addon."
354
+ msgstr "Przejdź do naszej strony aby pobrać dodatek."
355
+
356
+ #: ../classes/settings.php:416
357
  msgid "Important"
358
+ msgstr "Ważne"
359
 
360
+ #: ../classes/settings.php:418
 
361
  msgid "Database Changes"
362
+ msgstr "Zmiany w bazie danych"
363
 
364
+ #: ../classes/settings.php:419
365
  msgid ""
366
+ "The database has been changed between versions 1 and 2. But we made sure you"
367
+ " can still roll back to version 1x without any issues."
368
+ msgstr "Baza danych zmieniła się między wersjami 1 i 2. Ale wciąż możesz powrócić do wersji 1 bez żadnych problemów."
369
 
370
+ #: ../classes/settings.php:422
371
  msgid "Make sure you backup your database and then click"
372
+ msgstr "Upewnij się że zrobiłeś kopię zapasową bazy danych a następnie kliknij"
373
 
374
+ #: ../classes/settings.php:422 ../classes/upgrade.php:97
375
  msgid "Upgrade Database"
376
+ msgstr "Aktualizuj bazę danych"
377
 
378
+ #: ../classes/settings.php:425
379
  msgid "Potential Issues"
380
+ msgstr "Potencjalne problemy"
381
 
382
+ #: ../classes/settings.php:426
383
  msgid ""
384
+ "Do to the sizable refactoring the code, surounding Addons and "
385
+ "action/filters, your website may not operate correctly. It is important that"
386
+ " you read the full"
387
+ msgstr "Z powodu znacznych modyfikacji w kodzie, związanymi z dodatkami, filtrami i akcjami, Twoja strona może nie działać poprawnie. Pamiętaj, aby przeczytać pełną"
388
 
389
+ #: ../classes/settings.php:426
390
  msgid "Migrating from v1 to v2"
391
+ msgstr "Migracja z wersji 1 do 2"
392
 
393
+ #: ../classes/settings.php:426
394
  msgid "guide to view the full list of changes."
395
+ msgstr "dokumentację i zapoznać się z listą zmian."
396
 
397
+ #: ../classes/settings.php:426
398
  #, php-format
399
  msgid ""
400
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
  "can fix it in the next release."
402
+ msgstr "Jeśli znajdziesz błąd <a href=\"%s\">zgłoś go</a> abyśmy mogli naprawić go w kolejnej wersji."
403
 
404
+ #: ../classes/settings.php:429
405
  msgid "Important!"
406
+ msgstr "Ważne!"
407
 
408
+ #: ../classes/settings.php:429
409
  msgid ""
410
  "If you updated the Admin Columns plugin without prior knowledge of such "
411
  "changes, Please roll back to the latest"
412
+ msgstr "Jeżli zaktualizowałeś Edytor kolumn bez świadomości tych zmian, możesz powrócić do poprzedniej"
413
 
414
+ #: ../classes/settings.php:429
415
  msgid "version 1"
416
+ msgstr "wersja 1"
417
 
418
+ #: ../classes/settings.php:429
 
419
  msgid "of this plugin."
420
+ msgstr "tej wtyczki."
421
 
422
+ #: ../classes/settings.php:435
423
  msgid "Changelog for"
424
+ msgstr "Dziennik zmian dla"
425
 
426
+ #: ../classes/settings.php:450
427
  msgid "Learn more"
428
+ msgstr "Dowiedz się więcej"
429
 
430
+ #: ../classes/settings.php:459
431
  msgid ""
432
  "New to v2, all Addons act as separate plugins which need to be individually "
433
  "downloaded, installed and updated."
434
+ msgstr "Nowość w wersji 2, wszystkie dodatki funkcjonują jako oddzielne wtyczki, które muszą być oddzielnie wgrywane, instalowane i aktualizowane."
435
 
436
+ #: ../classes/settings.php:460
437
  msgid ""
438
+ "This page will assist you in downloading and installing each available "
439
+ "Addon."
440
+ msgstr "Ta strona pomoże Ci w pobraniu i instalacji dostępnych dodatków."
441
 
442
+ #: ../classes/settings.php:461
 
443
  msgid "Available Addons"
444
+ msgstr "Dostępne dodatki"
445
 
446
+ #: ../classes/settings.php:466
 
447
  msgid "Name"
448
+ msgstr "Nazwa"
449
 
450
+ #: ../classes/settings.php:467 ../classes/settings.php:475
 
451
  msgid "Download"
452
+ msgstr "Pobierz"
 
 
 
 
 
 
 
 
 
 
453
 
454
+ #: ../classes/settings.php:473
455
+ msgid "Pro Add-on (includes Sortorder add-on)"
456
+ msgstr "Dodatek (w tym sortowanie)"
457
 
458
  #: ../classes/settings.php:483
459
  msgid "Installation"
460
+ msgstr "Instalacja"
461
 
462
  #: ../classes/settings.php:485
463
  msgid "For each Add-on available, please perform the following:"
464
+ msgstr "Dla każdego dodatku wykonaj następujące czynności:"
465
 
466
  #: ../classes/settings.php:487
467
  msgid "Download the Addon plugin (.zip file) to your desktop"
468
+ msgstr "Pobierz dodatek na swój komputer"
469
 
470
  #: ../classes/settings.php:488
471
  msgid "Navigate to"
472
+ msgstr "Przejdź do"
473
 
474
  #: ../classes/settings.php:488
475
  msgid "Plugins > Add New > Upload"
476
+ msgstr "Wtyczki > Dodaj nową > Wgraj"
477
 
478
  #: ../classes/settings.php:489
479
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
480
+ msgstr "Użyj instalacji dodatku z pliku .zip"
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
+ " link"
486
+ msgstr "Po wczytaniu i instalacji wtyczki kliknij link 'Aktywacja wtyczki'"
487
 
488
  #: ../classes/settings.php:491
489
  msgid "The Add-on is now installed and activated!"
490
+ msgstr "Dodatek został zaktualizowany i włączony."
491
 
492
  #: ../classes/settings.php:492
493
  #, php-format
494
  msgid ""
495
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
496
+ msgstr "Aby uzyskać automatyczne aktualizacje podaj swój <a href='%s'>klucz licencji</a>."
497
 
498
  #: ../classes/settings.php:502
 
499
  msgid "Start using Admin Columns"
500
+ msgstr "Zacznij korzystać z Edytora kolumn"
501
 
502
+ #: ../classes/settings.php:580
 
503
  msgid "Store settings"
504
+ msgstr "Zapisz ustawienia"
505
 
506
+ #: ../classes/settings.php:585
507
  msgid "Update"
508
+ msgstr "Aktualizuj"
509
 
510
+ #: ../classes/settings.php:585
 
511
  msgid "Publish"
512
+ msgstr "Opublikuj"
513
 
514
+ #: ../classes/settings.php:589
515
+ #, php-format
516
  msgid ""
517
+ "Warning! The %s columns data will be deleted. This cannot be undone. "
518
+ "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
+ msgstr "Uwaga! Ustawienia %s kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
 
 
 
520
 
521
+ #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
  #: ../classes/column/post/actions.php:53
523
  msgid "Restore"
524
  msgstr "Przywróć"
525
 
526
+ #: ../classes/settings.php:590
 
527
  msgid "columns"
528
+ msgstr "kolumny"
529
 
530
+ #: ../classes/settings.php:600
531
+ msgid "Get the Pro Add-on"
 
532
  msgstr "Kup dodatek"
533
 
534
+ #: ../classes/settings.php:604
535
+ msgid "Add Sorting"
536
+ msgstr "Dodaj sortowanie"
537
+
538
+ #: ../classes/settings.php:605
539
+ msgid "Add Filtering"
540
+ msgstr "Dodaj filtrowanie"
541
+
542
+ #: ../classes/settings.php:606
543
+ msgid "Add Import/Export"
544
+ msgstr "Dodaj Import/Export"
545
 
546
+ #: ../classes/settings.php:609
547
  #, php-format
548
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
549
+ msgstr "Sprawdź <a href=\"%s\">Dodatki Pro</a> aby dowiedzieć się więcej!!"
550
 
551
+ #: ../classes/settings.php:617
 
552
  msgid "Support"
553
+ msgstr "Pomocy"
554
 
555
+ #: ../classes/settings.php:620
 
556
  msgid "Check the <strong>Help</strong> section in the top-right screen."
557
+ msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
 
 
558
 
559
+ #: ../classes/settings.php:622
560
  #, php-format
561
  msgid ""
562
  "For full documentation, bug reports, feature suggestions and other tips <a "
563
  "href='%s'>visit the Admin Columns website</a>"
564
+ msgstr "Dostęp do pełnej dokumentacji, raportów błędów, sugestii co do nowych funkcji i innych podpowiedzi uzyskasz na <a href='%s'>stronie Edytora kolumn</a>"
565
 
566
+ #: ../classes/settings.php:642
 
567
  msgid "Drag and drop to reorder"
568
+ msgstr "Przeciągnij i opuść aby zmienić kolejność"
569
 
570
+ #: ../classes/settings.php:645
 
571
  msgid "Add Column"
572
+ msgstr "Dodaj kolumnę"
573
 
574
+ #: ../classes/settings.php:696
 
575
  msgid "General Settings"
576
+ msgstr "Ustawienia ogólne"
577
 
578
+ #: ../classes/settings.php:697
579
  msgid "Customize your Admin Columns settings."
580
+ msgstr "Zmodyfikuj ustawienia Edytora kolumn."
581
 
582
+ #: ../classes/settings.php:710
 
 
 
 
 
583
  msgid "Show hidden custom fields. Default is <code>off</code>."
584
+ msgstr "Wyświetl ukryte własne pola. Domyślnie jest <code>wyłączone</code>."
585
+
586
+ #: ../classes/settings.php:716
587
+ msgid ""
588
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
589
+ msgstr "Wyświetl przycisk \"Edytuj kolumny\" na ekranie edycji. Domyślnie jest <code>wyłączone</code>."
590
 
591
+ #: ../classes/settings.php:723
592
  msgid "Save"
593
+ msgstr "Zapisz"
594
 
595
+ #: ../classes/settings.php:763
 
596
  msgid "Restore Settings"
597
+ msgstr "Przywróć ustawienia"
598
 
599
+ #: ../classes/settings.php:764
600
  msgid "This will delete all column settings and restore the default settings."
601
+ msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień domyślnych."
 
 
602
 
603
+ #: ../classes/settings.php:770
604
  msgid "Restore default settings"
605
  msgstr "Przywróć ustawienia domyślne"
606
 
607
+ #: ../classes/settings.php:770
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
+ msgstr "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
 
 
 
612
 
613
+ #: ../classes/storage_model.php:167
614
  msgid "settings succesfully restored."
615
+ msgstr "ustawienia zostały przywrócone."
616
 
617
+ #: ../classes/storage_model.php:181
618
  msgid "No columns settings available."
619
+ msgstr "Brak dostępnych ustawień kolumn."
620
 
621
+ #: ../classes/storage_model.php:204
622
  #, php-format
623
  msgid "You are trying to store the same settings for %s."
624
+ msgstr "Próbujesz przywrócić te same ustawienia dla %s."
625
 
626
+ #: ../classes/storage_model.php:208
627
  #, php-format
628
  msgid "Settings for %s updated succesfully."
629
+ msgstr "Ustawienia dla %s zostały zaktualizowane."
630
 
631
+ #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
632
  msgid "View"
633
  msgstr "Zobacz"
634
 
635
+ #: ../classes/upgrade.php:45
636
  msgid "Upgrade"
637
+ msgstr "Aktualizuj"
638
 
639
+ #: ../classes/upgrade.php:90
640
  msgid "requires a database upgrade"
641
+ msgstr "wymaga aktualizacji bazy danych"
642
 
643
+ #: ../classes/upgrade.php:93
644
  msgid "why?"
645
+ msgstr "dlaczego?"
646
 
647
+ #: ../classes/upgrade.php:94
648
  msgid "Please"
649
+ msgstr "Proszę"
650
 
651
+ #: ../classes/upgrade.php:95
652
  msgid "backup your database"
653
+ msgstr "zrobić kopię zapasową bazy danych"
654
 
655
+ #: ../classes/upgrade.php:96
656
  msgid "then click"
657
+ msgstr "a następnie kliknąć"
658
 
659
+ #: ../classes/upgrade.php:304
660
  msgid "Migrating Column Settings"
661
+ msgstr "Migracja ustawień kolumn"
662
 
663
+ #: ../classes/upgrade.php:340
664
  msgid "No Upgrade Required"
665
+ msgstr "Aktualizacja nie jest wymagana"
666
 
667
+ #: ../classes/upgrade.php:341
668
  msgid "Return to welcome screen."
669
+ msgstr "Powróć do ekranu powitalnego"
670
 
671
+ #: ../classes/upgrade.php:359
672
  msgid "Upgrade Complete!"
673
+ msgstr "Aktualizacja zakończona"
674
 
675
+ #: ../classes/upgrade.php:359
 
676
  msgid "Return to settings."
677
+ msgstr "Przywróć do ustawień"
678
 
679
+ #: ../classes/upgrade.php:360
680
  msgid "Error"
681
+ msgstr "Błąd"
682
 
683
+ #: ../classes/upgrade.php:361
684
  msgid ""
685
  "Sorry. Something went wrong during the upgrade process. Please report this "
686
  "on the support forum."
687
+ msgstr "Przykro nam, ale coś poszło źle w trakcie procesu aktualizacji. Napisz o tym na forum pomocy."
688
 
689
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
 
690
  msgid "Media Library"
691
+ msgstr "Biblioteka mediów"
692
 
693
  #: ../classes/column/custom-field.php:79
694
  msgid "Post Title (Post ID's)"
696
 
697
  #: ../classes/column/custom-field.php:80
698
  msgid "Username (User ID's)"
699
+ msgstr "Użytkownik (ID użytkownika)"
700
 
701
  #: ../classes/column/custom-field.php:81
702
  msgid "Checkmark (true/false)"
703
  msgstr "Znak (prawda/fałsz)"
704
 
705
+ #: ../classes/column/custom-field.php:324
706
  msgid "Select your custom field."
707
+ msgstr "Wybierz własne pole."
708
 
709
+ #: ../classes/column/custom-field.php:334
710
  msgid "No custom fields available."
711
+ msgstr "Brak dostępnych własnych pól."
712
 
713
+ #: ../classes/column/custom-field.php:341
714
  msgid "Field Type"
715
  msgstr "Rodzaj pola"
716
 
717
+ #: ../classes/column/custom-field.php:341
718
  msgid "This will determine how the value will be displayed."
719
+ msgstr "Określi to sposób wyświetlania wartości."
720
 
721
+ #: ../classes/column/custom-field.php:384
722
  msgid "Before"
723
  msgstr "Przed"
724
 
725
+ #: ../classes/column/custom-field.php:384
726
  msgid "This text will appear before the custom field value."
727
+ msgstr "Ten tekst pojawi się przed wartością własnego pola."
728
 
729
+ #: ../classes/column/custom-field.php:390
730
  msgid "After"
731
  msgstr "Po"
732
 
733
+ #: ../classes/column/custom-field.php:390
734
  msgid "This text will appear after the custom field value."
735
+ msgstr "Ten tekst pojawi się po wartości własnego pola."
736
 
737
  #: ../classes/column/comment/actions.php:14
738
  #: ../classes/column/link/actions.php:14
797
  msgstr "URL Autora"
798
 
799
  #: ../classes/column/comment/author.php:12
 
800
  msgid "Author"
801
+ msgstr "Autor"
802
 
803
  #: ../classes/column/comment/date-gmt.php:12
804
  msgid "Date GMT"
829
  msgid ""
830
  "You are about to delete this link '%s'\n"
831
  " 'Cancel' to stop, 'OK' to delete."
832
+ msgstr "Zamierzasz usunąć ten link link '%s'\n 'Cancel' to stop, 'OK' to delete."
 
 
833
 
834
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
  msgid "Delete"
867
 
868
  #: ../classes/column/media/available-sizes.php:14
869
  msgid "Available Sizes"
870
+ msgstr "Dostępne rozmiary"
871
 
872
  #: ../classes/column/media/available-sizes.php:37
 
873
  msgid "full size"
874
+ msgstr "pełny rozmiar"
875
 
876
  #: ../classes/column/media/caption.php:12
877
  #: ../classes/column/media/exif-data.php:36
884
 
885
  #: ../classes/column/media/exif-data.php:12
886
  msgid "EXIF data"
887
+ msgstr "Dane EXIF"
888
 
889
  #: ../classes/column/media/exif-data.php:33
890
  msgid "Aperture"
932
 
933
  #: ../classes/column/media/full-path.php:12
934
  msgid "Full path"
935
+ msgstr "Pełna ścieżka"
936
 
937
  #: ../classes/column/media/height.php:12
938
  msgid "Height"
1013
 
1014
  #: ../classes/column/post/author-name.php:37
1015
  msgid "User Login"
1016
+ msgstr "Login użytkownika"
1017
 
1018
  #: ../classes/column/post/author-name.php:38
 
1019
  msgid "User Email"
1020
+ msgstr "Email użytkownika"
1021
 
1022
  #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1023
  msgid "User ID"
1024
  msgstr "ID użytkownika"
1025
 
1026
  #: ../classes/column/post/author-name.php:40
 
1027
  msgid "First and Last Name"
1028
  msgstr "Imię i nazwisko"
1029
 
1030
  #: ../classes/column/post/author-name.php:106
1031
  msgid "This is the format of the author name."
1032
+ msgstr "To jest format autora"
1033
 
1034
  #: ../classes/column/post/before-moretag.php:14
1035
  msgid "Before More Tag"
1036
+ msgstr "Przed tagiem Czytaj dalej"
1037
 
1038
  #: ../classes/column/post/comment-count.php:14
1039
  msgid "Comment count"
1041
 
1042
  #: ../classes/column/post/comment-count.php:30
1043
  msgid "Total"
1044
+ msgstr "Ogółem"
1045
 
1046
  #: ../classes/column/post/comment-count.php:32
 
1047
  msgid "Pending"
1048
+ msgstr "Oczekujący"
1049
 
1050
  #: ../classes/column/post/comment-count.php:33
1051
  msgid "Spam"
1052
+ msgstr "Spam"
1053
 
1054
  #: ../classes/column/post/comment-count.php:78
1055
  #: ../classes/column/post/comment-status.php:14
1058
 
1059
  #: ../classes/column/post/comment-count.php:78
1060
  msgid "Select which comment status you like to display."
1061
+ msgstr "Wybierz, które statusy komentarzy chcesz wyświetlać."
1062
 
1063
  #: ../classes/column/post/featured-image.php:14
1064
  msgid "Featured Image"
1082
 
1083
  #: ../classes/column/post/parent.php:12
1084
  msgid "Parent"
1085
+ msgstr "Rodzic"
1086
 
1087
  #: ../classes/column/post/ping-status.php:14
1088
  msgid "Ping status"
1130
  msgstr "Taksonomia"
1131
 
1132
  #: ../classes/column/user/comment-count.php:14
 
1133
  msgid "Comment Count"
1134
  msgstr "Liczba komentarzy"
1135
 
1142
  msgstr "Nazwisko"
1143
 
1144
  #: ../classes/column/user/post-count.php:14
 
1145
  msgid "Post Count"
1146
  msgstr "Liczba wpisów"
1147
 
1148
  #: ../classes/column/user/post-count.php:92
1149
  msgid "Post Type"
1150
+ msgstr "Typ wpisu"
1151
 
1152
  #: ../classes/column/user/registered.php:14
1153
  msgid "Registered"
1163
 
1164
  #: ../classes/storage_model/link.php:13
1165
  msgid "Links"
1166
+ msgstr "Linki"
1167
 
1168
  #: ../classes/storage_model/user.php:13
 
1169
  msgid "Users"
1170
+ msgstr "Użytkownicy"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cpac-pt_BR.mo ADDED
Binary file
languages/{cpac.po → cpac-pt_BR.po} RENAMED
@@ -1,56 +1,61 @@
 
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Codepress Admin Columns\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-08-13 19:08+0100\n"
6
- "PO-Revision-Date: 2013-08-13 19:08+0100\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
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Generator: Poedit 1.5.7\n"
 
 
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
 
18
 
19
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
20
  msgid "Settings"
21
- msgstr ""
22
 
23
  #: ../codepress-admin-columns.php:350
24
  msgid "Edit columns"
25
- msgstr ""
26
 
27
  #: ../classes/column.php:479
28
  msgid "Thumbnail"
29
- msgstr ""
30
 
31
  #: ../classes/column.php:480
32
  msgid "Medium"
33
- msgstr ""
34
 
35
  #: ../classes/column.php:481
36
  msgid "Large"
37
- msgstr ""
38
 
39
  #: ../classes/column.php:482
40
  msgid "Full"
41
- msgstr ""
42
 
43
  #: ../classes/column.php:774
44
  msgid "Date Format"
45
- msgstr ""
46
 
47
  #: ../classes/column.php:775
48
  msgid "This will determine how the date will be displayed."
49
- msgstr ""
50
 
51
  #: ../classes/column.php:781
52
  msgid "Example:"
53
- msgstr ""
54
 
55
  #: ../classes/column.php:783
56
  #, php-format
@@ -61,53 +66,53 @@ msgstr ""
61
 
62
  #: ../classes/column.php:784
63
  msgid "Documentation on date and time formatting."
64
- msgstr ""
65
 
66
  #: ../classes/column.php:801
67
  msgid "Excerpt length"
68
- msgstr ""
69
 
70
  #: ../classes/column.php:802
71
  msgid "Number of words"
72
- msgstr ""
73
 
74
  #: ../classes/column.php:824
75
  msgid "Preview size"
76
- msgstr ""
77
 
78
  #: ../classes/column.php:841 ../classes/column.php:897
79
  msgid "Custom"
80
- msgstr ""
81
 
82
  #: ../classes/column.php:844
83
  msgid "width"
84
- msgstr ""
85
 
86
  #: ../classes/column.php:847
87
  msgid "height"
88
- msgstr ""
89
 
90
  #: ../classes/column.php:898 ../classes/settings.php:224
91
  #: ../classes/column/custom-field.php:72
92
  msgid "Default"
93
- msgstr ""
94
 
95
  #: ../classes/column.php:923 ../classes/column.php:984
96
  #: ../classes/column/user/actions.php:65
97
  msgid "Remove"
98
- msgstr ""
99
 
100
  #: ../classes/column.php:942
101
  msgid "Type"
102
- msgstr ""
103
 
104
  #: ../classes/column.php:942
105
  msgid "Choose a column type."
106
- msgstr ""
107
 
108
  #: ../classes/column.php:952
109
  msgid "Label"
110
- msgstr ""
111
 
112
  #: ../classes/column.php:952
113
  msgid "This is the name which will appear as the column header."
@@ -156,7 +161,7 @@ msgstr ""
156
 
157
  #: ../classes/settings.php:210
158
  msgid "Change order"
159
- msgstr ""
160
 
161
  #: ../classes/settings.php:211
162
  msgid ""
@@ -180,7 +185,7 @@ msgstr ""
180
  #: ../classes/settings.php:215
181
  msgid ""
182
  "By clicking on the triangle you will see the column options. By using the "
183
- "draggable slider yo can set the width of the columns in percentages."
184
  msgstr ""
185
 
186
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
@@ -231,7 +236,8 @@ msgstr ""
231
 
232
  #: ../classes/settings.php:227
233
  msgid ""
234
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
235
  msgstr ""
236
 
237
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
@@ -357,8 +363,8 @@ msgstr ""
357
 
358
  #: ../classes/settings.php:419
359
  msgid ""
360
- "The database has been changed between versions 1 and 2. But we made sure you "
361
- "can still roll back to version 1x without any issues."
362
  msgstr ""
363
 
364
  #: ../classes/settings.php:422
@@ -375,9 +381,9 @@ msgstr ""
375
 
376
  #: ../classes/settings.php:426
377
  msgid ""
378
- "Do to the sizable refactoring the code, surounding Addons and action/"
379
- "filters, your website may not operate correctly. It is important that you "
380
- "read the full"
381
  msgstr ""
382
 
383
  #: ../classes/settings.php:426
@@ -429,7 +435,8 @@ msgstr ""
429
 
430
  #: ../classes/settings.php:460
431
  msgid ""
432
- "This page will assist you in downloading and installing each available Addon."
 
433
  msgstr ""
434
 
435
  #: ../classes/settings.php:461
@@ -474,8 +481,8 @@ msgstr ""
474
 
475
  #: ../classes/settings.php:490
476
  msgid ""
477
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
478
- "link"
479
  msgstr ""
480
 
481
  #: ../classes/settings.php:491
@@ -507,8 +514,8 @@ msgstr ""
507
  #: ../classes/settings.php:589
508
  #, php-format
509
  msgid ""
510
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
511
- "\\' to delete, \\'Cancel\\' to stop"
512
  msgstr ""
513
 
514
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
@@ -1034,7 +1041,7 @@ msgstr ""
1034
 
1035
  #: ../classes/column/post/comment-count.php:30
1036
  msgid "Total"
1037
- msgstr ""
1038
 
1039
  #: ../classes/column/post/comment-count.php:32
1040
  msgid "Pending"
@@ -1091,15 +1098,15 @@ msgstr ""
1091
 
1092
  #: ../classes/column/post/status.php:14
1093
  msgid "Status"
1094
- msgstr ""
1095
 
1096
  #: ../classes/column/post/status.php:30
1097
  msgid "Published"
1098
- msgstr ""
1099
 
1100
  #: ../classes/column/post/status.php:31
1101
  msgid "Draft"
1102
- msgstr ""
1103
 
1104
  #: ../classes/column/post/status.php:32
1105
  msgid "Scheduled"
@@ -1111,7 +1118,7 @@ msgstr ""
1111
 
1112
  #: ../classes/column/post/status.php:34
1113
  msgid "Pending Review"
1114
- msgstr ""
1115
 
1116
  #: ../classes/column/post/sticky.php:14
1117
  msgid "Sticky"
1
+ #
2
+ # Translators:
3
+ # estevanix <aestevam@gmail.com>, 2013
4
  msgid ""
5
  msgstr ""
6
+ "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-10-24 08:18+0000\n"
10
+ "Last-Translator: estevanix <aestevam@gmail.com>\n"
11
+ "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/admin-columns/language/pt_BR/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: pt_BR\n"
16
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
17
  "X-Generator: Poedit 1.5.7\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
 
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
26
+ msgstr "Configurações"
27
 
28
  #: ../codepress-admin-columns.php:350
29
  msgid "Edit columns"
30
+ msgstr "Editar Colunas"
31
 
32
  #: ../classes/column.php:479
33
  msgid "Thumbnail"
34
+ msgstr "Miniaturas"
35
 
36
  #: ../classes/column.php:480
37
  msgid "Medium"
38
+ msgstr "Médio"
39
 
40
  #: ../classes/column.php:481
41
  msgid "Large"
42
+ msgstr "Grande"
43
 
44
  #: ../classes/column.php:482
45
  msgid "Full"
46
+ msgstr "Original"
47
 
48
  #: ../classes/column.php:774
49
  msgid "Date Format"
50
+ msgstr "Formato de Data"
51
 
52
  #: ../classes/column.php:775
53
  msgid "This will determine how the date will be displayed."
54
+ msgstr "Determina como a data será mostrada"
55
 
56
  #: ../classes/column.php:781
57
  msgid "Example:"
58
+ msgstr "Exemplo"
59
 
60
  #: ../classes/column.php:783
61
  #, php-format
66
 
67
  #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
69
+ msgstr "Documentação para formatos de data e hora"
70
 
71
  #: ../classes/column.php:801
72
  msgid "Excerpt length"
73
+ msgstr "Tamanho do Resumo"
74
 
75
  #: ../classes/column.php:802
76
  msgid "Number of words"
77
+ msgstr "Número de Palavras"
78
 
79
  #: ../classes/column.php:824
80
  msgid "Preview size"
81
+ msgstr "Tamanho do preview"
82
 
83
  #: ../classes/column.php:841 ../classes/column.php:897
84
  msgid "Custom"
85
+ msgstr "Personalizado"
86
 
87
  #: ../classes/column.php:844
88
  msgid "width"
89
+ msgstr "largura"
90
 
91
  #: ../classes/column.php:847
92
  msgid "height"
93
+ msgstr "altura"
94
 
95
  #: ../classes/column.php:898 ../classes/settings.php:224
96
  #: ../classes/column/custom-field.php:72
97
  msgid "Default"
98
+ msgstr "Padrão"
99
 
100
  #: ../classes/column.php:923 ../classes/column.php:984
101
  #: ../classes/column/user/actions.php:65
102
  msgid "Remove"
103
+ msgstr "Remover"
104
 
105
  #: ../classes/column.php:942
106
  msgid "Type"
107
+ msgstr "Tipo"
108
 
109
  #: ../classes/column.php:942
110
  msgid "Choose a column type."
111
+ msgstr "Escolha um tipo"
112
 
113
  #: ../classes/column.php:952
114
  msgid "Label"
115
+ msgstr "Titulo"
116
 
117
  #: ../classes/column.php:952
118
  msgid "This is the name which will appear as the column header."
161
 
162
  #: ../classes/settings.php:210
163
  msgid "Change order"
164
+ msgstr "Alterar ordem"
165
 
166
  #: ../classes/settings.php:211
167
  msgid ""
185
  #: ../classes/settings.php:215
186
  msgid ""
187
  "By clicking on the triangle you will see the column options. By using the "
188
+ "draggable slider you can set the width of the columns in percentages."
189
  msgstr ""
190
 
191
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
236
 
237
  #: ../classes/settings.php:227
238
  msgid ""
239
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
240
+ "array."
241
  msgstr ""
242
 
243
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
363
 
364
  #: ../classes/settings.php:419
365
  msgid ""
366
+ "The database has been changed between versions 1 and 2. But we made sure you"
367
+ " can still roll back to version 1x without any issues."
368
  msgstr ""
369
 
370
  #: ../classes/settings.php:422
381
 
382
  #: ../classes/settings.php:426
383
  msgid ""
384
+ "Do to the sizable refactoring the code, surounding Addons and "
385
+ "action/filters, your website may not operate correctly. It is important that"
386
+ " you read the full"
387
  msgstr ""
388
 
389
  #: ../classes/settings.php:426
435
 
436
  #: ../classes/settings.php:460
437
  msgid ""
438
+ "This page will assist you in downloading and installing each available "
439
+ "Addon."
440
  msgstr ""
441
 
442
  #: ../classes/settings.php:461
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
+ " link"
486
  msgstr ""
487
 
488
  #: ../classes/settings.php:491
514
  #: ../classes/settings.php:589
515
  #, php-format
516
  msgid ""
517
+ "Warning! The %s columns data will be deleted. This cannot be undone. "
518
+ "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
  msgstr ""
520
 
521
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
1041
 
1042
  #: ../classes/column/post/comment-count.php:30
1043
  msgid "Total"
1044
+ msgstr "Total"
1045
 
1046
  #: ../classes/column/post/comment-count.php:32
1047
  msgid "Pending"
1098
 
1099
  #: ../classes/column/post/status.php:14
1100
  msgid "Status"
1101
+ msgstr "Status"
1102
 
1103
  #: ../classes/column/post/status.php:30
1104
  msgid "Published"
1105
+ msgstr "Publicado"
1106
 
1107
  #: ../classes/column/post/status.php:31
1108
  msgid "Draft"
1109
+ msgstr "Rascunho"
1110
 
1111
  #: ../classes/column/post/status.php:32
1112
  msgid "Scheduled"
1118
 
1119
  #: ../classes/column/post/status.php:34
1120
  msgid "Pending Review"
1121
+ msgstr "Aguardando Revisão"
1122
 
1123
  #: ../classes/column/post/sticky.php:14
1124
  msgid "Sticky"
languages/cpac-sv_SE.mo CHANGED
Binary file
languages/cpac-sv_SE.po CHANGED
@@ -1,788 +1,694 @@
 
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Codepress Admin Columns\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-18 15:29+0100\n"
6
- "PO-Revision-Date: 2013-07-18 15:30+0100\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
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
- "Language: Swedish\n"
 
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPath-1: ..\n"
 
19
 
20
- #: ../codepress-admin-columns.php:230 ../classes/settings.php:534
21
  msgid "Settings"
22
  msgstr "Inställningar"
23
 
24
  #: ../codepress-admin-columns.php:350
25
- #, fuzzy
26
  msgid "Edit columns"
27
- msgstr "Admin Columns"
28
-
29
- #: ../classes/addons.php:27
30
- #, fuzzy
31
- msgid "Add-ons"
32
- msgstr "Aktivera tillägg"
33
-
34
- #: ../classes/addons.php:63
35
- msgid ""
36
- "There was an error retrieving the extensions list from the server. Please "
37
- "try again later."
38
- msgstr ""
39
-
40
- #: ../classes/addons.php:88 ../classes/addons.php:94
41
- #, fuzzy
42
- msgid "Add-ons for Admin Columns"
43
- msgstr "Admin Columns"
44
-
45
- #: ../classes/addons.php:95
46
- msgid "These add-ons extend the functionality of Admin Columns."
47
- msgstr ""
48
-
49
- #: ../classes/addons.php:96
50
- msgid "Browse All Add-ons"
51
- msgstr ""
52
-
53
- #: ../classes/addons.php:96
54
- msgid "Browse all Add-ons"
55
- msgstr ""
56
 
57
  #: ../classes/column.php:479
58
  msgid "Thumbnail"
59
- msgstr ""
60
 
61
  #: ../classes/column.php:480
62
  msgid "Medium"
63
- msgstr ""
64
 
65
  #: ../classes/column.php:481
66
- #, fuzzy
67
  msgid "Large"
68
- msgstr "Mål"
69
 
70
  #: ../classes/column.php:482
71
  msgid "Full"
72
- msgstr ""
73
 
74
- #: ../classes/column.php:776
75
- #, fuzzy
76
  msgid "Date Format"
77
- msgstr "Inläggsformat"
78
 
79
- #: ../classes/column.php:777
80
  msgid "This will determine how the date will be displayed."
81
- msgstr ""
82
 
83
- #: ../classes/column.php:783
84
  msgid "Example:"
85
- msgstr ""
86
 
87
- #: ../classes/column.php:785
88
  #, php-format
89
  msgid ""
90
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
91
  "date format here</a>."
92
- msgstr ""
93
 
94
- #: ../classes/column.php:786
95
  msgid "Documentation on date and time formatting."
96
- msgstr ""
97
 
98
- #: ../classes/column.php:803
99
- #, fuzzy
100
  msgid "Excerpt length"
101
- msgstr "Utdrag"
102
 
103
- #: ../classes/column.php:804
104
  msgid "Number of words"
105
- msgstr ""
106
 
107
- #: ../classes/column.php:826
108
- #, fuzzy
109
  msgid "Preview size"
110
- msgstr "Förhandsgranska"
111
 
112
- #: ../classes/column.php:843 ../classes/column.php:899
113
  msgid "Custom"
114
  msgstr "Anpassad"
115
 
116
- #: ../classes/column.php:846
117
- #, fuzzy
118
  msgid "width"
119
- msgstr "Bredd"
120
 
121
- #: ../classes/column.php:849
122
- #, fuzzy
123
  msgid "height"
124
- msgstr "Höjd"
125
 
126
- #: ../classes/column.php:900 ../classes/settings.php:221
127
  #: ../classes/column/custom-field.php:72
128
  msgid "Default"
129
  msgstr "Standard"
130
 
131
- #: ../classes/column.php:925 ../classes/column.php:986
132
  #: ../classes/column/user/actions.php:65
133
  msgid "Remove"
134
  msgstr "Ta bort"
135
 
136
- #: ../classes/column.php:944
137
  msgid "Type"
138
- msgstr ""
139
 
140
- #: ../classes/column.php:944
141
  msgid "Choose a column type."
142
- msgstr ""
143
 
144
- #: ../classes/column.php:954
145
  msgid "Label"
146
- msgstr ""
147
 
148
- #: ../classes/column.php:954
149
  msgid "This is the name which will appear as the column header."
150
- msgstr ""
151
 
152
- #: ../classes/column.php:961 ../classes/column/media/width.php:12
153
  msgid "Width"
154
  msgstr "Bredd"
155
 
156
- #: ../classes/column.php:963 ../classes/column.php:964
157
  msgid "default"
158
  msgstr "standard"
159
 
160
- #: ../classes/export_import.php:64
161
- msgid "Export field is empty. Please select your types from the left column."
162
- msgstr ""
163
-
164
- #: ../classes/export_import.php:99 ../classes/export_import.php:101
165
- msgid "Sorry, there has been an error."
166
- msgstr ""
167
-
168
- #: ../classes/export_import.php:101
169
- #, php-format
170
- msgid ""
171
- "The export file could not be found at <code>%s</code>. It is likely that "
172
- "this was caused by a permissions problem."
173
- msgstr ""
174
-
175
- #: ../classes/export_import.php:119
176
- msgid "Import failed. File does not contain Admin Column settings."
177
- msgstr ""
178
-
179
- #: ../classes/settings.php:69
180
- #, fuzzy
181
  msgid "Admin Columns Settings"
182
- msgstr "Admin Columns"
183
 
184
- #: ../classes/settings.php:69 ../classes/settings.php:533
185
- #: ../classes/upgrade.php:93
186
  msgid "Admin Columns"
187
  msgstr "Admin Columns"
188
 
189
- #: ../classes/settings.php:180
 
 
 
 
 
190
  msgid "Default settings succesfully restored."
191
- msgstr ""
192
 
193
- #: ../classes/settings.php:198 ../classes/settings.php:450
194
- #, fuzzy
195
  msgid "Overview"
196
- msgstr "Förhandsgranska"
197
 
198
- #: ../classes/settings.php:201
199
  msgid ""
200
  "This plugin is for adding and removing additional columns to the "
201
  "administration screens for post(types), pages, media library, comments, "
202
  "links and users. Change the column's label and reorder them."
203
- msgstr ""
204
 
205
- #: ../classes/settings.php:204
206
  msgid "Basics"
207
- msgstr ""
208
-
209
- #: ../classes/settings.php:206
210
- #, fuzzy
211
- msgid "Show / Hide"
212
- msgstr "Visa alla"
213
 
214
- #: ../classes/settings.php:207
215
- msgid ""
216
- "You can switch columns on or off by clicking on the checkbox. This will show "
217
- "or hide each column heading."
218
- msgstr ""
219
-
220
- #: ../classes/settings.php:208
221
- #, fuzzy
222
  msgid "Change order"
223
- msgstr "Sidordning"
224
 
225
- #: ../classes/settings.php:209
226
  msgid ""
227
  "By dragging the columns you can change the order which they will appear in."
228
- msgstr ""
229
 
230
- #: ../classes/settings.php:210
231
  msgid "Change label"
232
- msgstr ""
233
 
234
- #: ../classes/settings.php:211
235
  msgid ""
236
  "By clicking on the triangle you will see the column options. Here you can "
237
  "change each label of the columns heading."
238
- msgstr ""
239
 
240
- #: ../classes/settings.php:212
241
  msgid "Change column width"
242
- msgstr ""
243
 
244
- #: ../classes/settings.php:213
245
  msgid ""
246
  "By clicking on the triangle you will see the column options. By using the "
247
- "draggable slider yo can set the width of the columns in percentages."
248
- msgstr ""
249
 
250
- #: ../classes/settings.php:216 ../classes/column/custom-field.php:16
251
- #: ../classes/column/custom-field.php:320
252
  msgid "Custom Field"
253
  msgstr "Anpassat fält"
254
 
255
- #: ../classes/settings.php:218
256
- #, fuzzy
257
  msgid "'Custom Field' column"
258
- msgstr "Skapa egna fält kolumn"
259
 
260
- #: ../classes/settings.php:219
261
  msgid ""
262
  "The custom field colum uses the custom fields from posts and users. There "
263
  "are 10 types which you can set."
264
- msgstr ""
265
 
266
- #: ../classes/settings.php:221
267
  msgid ""
268
  "Value: Can be either a string or array. Arrays will be flattened and values "
269
  "are seperated by a ',' comma."
270
- msgstr ""
271
 
272
- #: ../classes/settings.php:222 ../classes/column/custom-field.php:73
273
  #: ../classes/column/link/image.php:12
274
  msgid "Image"
275
  msgstr "Bild"
276
 
277
- #: ../classes/settings.php:222
278
  msgid ""
279
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
280
  "comma )."
281
- msgstr ""
282
 
283
- #: ../classes/settings.php:223 ../classes/column/custom-field.php:75
284
  #: ../classes/column/comment/excerpt.php:13
285
  #: ../classes/column/post/excerpt.php:13
286
  msgid "Excerpt"
287
  msgstr "Utdrag"
288
 
289
- #: ../classes/settings.php:223
290
  msgid "Value: This will show the first 20 words of the Post content."
291
- msgstr ""
292
 
293
- #: ../classes/settings.php:224 ../classes/column/custom-field.php:76
294
  msgid "Multiple Values"
295
  msgstr "Flera värden"
296
 
297
- #: ../classes/settings.php:224
298
  msgid ""
299
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
300
- msgstr ""
 
301
 
302
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:77
303
  msgid "Numeric"
304
  msgstr "Numerisk"
305
 
306
- #: ../classes/settings.php:225
307
  msgid ""
308
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
309
  "for sorting, so you can sort your posts on numeric (custom field) values."
310
- msgstr ""
311
 
312
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:78
313
  #: ../classes/column/comment/date.php:12
314
  msgid "Date"
315
  msgstr "Datum"
316
 
317
- #: ../classes/settings.php:226
318
  #, php-format
319
  msgid ""
320
  "Value: Can be unix time stamp or a date format as described in the <a "
321
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
322
  "href='%s'>general settings</a> page."
323
- msgstr ""
324
 
325
- #: ../classes/settings.php:227
326
- #, fuzzy
327
  msgid "Post Titles"
328
- msgstr "Titel"
329
 
330
- #: ../classes/settings.php:227
331
  msgid "Value: can be one or more Post ID's (seperated by ',')."
332
- msgstr ""
333
 
334
- #: ../classes/settings.php:228
335
  msgid "Usernames"
336
- msgstr ""
337
 
338
- #: ../classes/settings.php:228
339
  msgid "Value: can be one or more User ID's (seperated by ',')."
340
- msgstr ""
341
 
342
- #: ../classes/settings.php:229
343
  msgid "Checkmark"
344
- msgstr ""
345
 
346
- #: ../classes/settings.php:229
347
  msgid "Value: should be a 1 (one) or 0 (zero)."
348
- msgstr ""
349
 
350
- #: ../classes/settings.php:230 ../classes/column/custom-field.php:82
351
  msgid "Color"
352
- msgstr ""
353
 
354
- #: ../classes/settings.php:230
355
  msgid "Value: hex value color, such as #808080."
356
- msgstr ""
357
 
358
- #: ../classes/settings.php:370
359
- #, fuzzy
360
  msgid "Welcome to Admin Columns"
361
- msgstr "Admin Columns"
362
 
363
- #: ../classes/settings.php:372
364
  msgid "Thank you for updating to the latest version!"
365
- msgstr ""
366
 
367
- #: ../classes/settings.php:373
368
  msgid ""
369
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
370
  "like it."
371
- msgstr ""
372
 
373
- #: ../classes/settings.php:378
374
  msgid "What’s New"
375
- msgstr ""
376
 
377
- #: ../classes/settings.php:379
378
  msgid "Changelog"
379
- msgstr ""
380
 
381
- #: ../classes/settings.php:381
382
  msgid "Download Addons"
383
- msgstr ""
384
 
385
- #: ../classes/settings.php:387 ../classes/settings.php:613
386
  msgid "Addons"
387
  msgstr "Tillägg"
388
 
389
- #: ../classes/settings.php:389
390
  msgid ""
391
  "Addons are now activated by downloading and installing individual plugins. "
392
  "Although these plugins will not be hosted on the wordpress.org repository, "
393
  "each Add-on will continue to receive updates in the usual way."
394
- msgstr ""
395
-
396
- #: ../classes/settings.php:393
397
- #, fuzzy
398
- msgid "the Custom Fields columns"
399
- msgstr "Skapa egna fält kolumn"
400
-
401
- #: ../classes/settings.php:394
402
- #, fuzzy
403
- msgid "the Sortorder Addon"
404
- msgstr "Sorteringsordning"
405
-
406
- #: ../classes/settings.php:397
407
- #, php-format
408
- msgid "This website uses %s. These addons need to be downloaded."
409
- msgstr ""
410
 
411
- #: ../classes/settings.php:397
412
- msgid "and"
413
- msgstr ""
 
414
 
415
  #: ../classes/settings.php:403
416
- msgid "Addons are sperate plugins which need to be downloaded."
417
- msgstr ""
418
 
419
  #: ../classes/settings.php:403
420
  msgid "Download your Addons"
421
- msgstr ""
 
 
 
 
422
 
423
  #: ../classes/settings.php:409
 
 
 
 
424
  msgid "Important"
425
- msgstr ""
426
 
427
- #: ../classes/settings.php:411
428
- #, fuzzy
429
  msgid "Database Changes"
430
- msgstr "Spara ändringar"
431
 
432
- #: ../classes/settings.php:412
433
  msgid ""
434
- "The database has been changed between versions 1 and 2. But we made sure you "
435
- "can still roll back to version 1x without any issues."
436
- msgstr ""
437
 
438
- #: ../classes/settings.php:415
439
  msgid "Make sure you backup your database and then click"
440
- msgstr ""
441
 
442
- #: ../classes/settings.php:415 ../classes/upgrade.php:101
443
  msgid "Upgrade Database"
444
- msgstr ""
445
 
446
- #: ../classes/settings.php:418
447
  msgid "Potential Issues"
448
- msgstr ""
449
 
450
- #: ../classes/settings.php:419
451
  msgid ""
452
- "Do to the sizable refactoring the code, surounding Addons and action/"
453
- "filters, your website may not operate correctly. It is important that you "
454
- "read the full"
455
- msgstr ""
456
 
457
- #: ../classes/settings.php:419
458
  msgid "Migrating from v1 to v2"
459
- msgstr ""
460
 
461
- #: ../classes/settings.php:419
462
  msgid "guide to view the full list of changes."
463
- msgstr ""
464
 
465
- #: ../classes/settings.php:419
466
  #, php-format
467
  msgid ""
468
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
469
  "can fix it in the next release."
470
- msgstr ""
471
 
472
- #: ../classes/settings.php:422
473
  msgid "Important!"
474
- msgstr ""
475
 
476
- #: ../classes/settings.php:422
477
  msgid ""
478
  "If you updated the Admin Columns plugin without prior knowledge of such "
479
  "changes, Please roll back to the latest"
480
- msgstr ""
481
 
482
- #: ../classes/settings.php:422
483
  msgid "version 1"
484
- msgstr ""
485
 
486
- #: ../classes/settings.php:422
487
- #, fuzzy
488
  msgid "of this plugin."
489
- msgstr "Gillar du detta tillägg?"
490
 
491
- #: ../classes/settings.php:428
492
  msgid "Changelog for"
493
- msgstr ""
494
 
495
- #: ../classes/settings.php:443
496
  msgid "Learn more"
497
- msgstr ""
498
 
499
- #: ../classes/settings.php:452
500
  msgid ""
501
  "New to v2, all Addons act as separate plugins which need to be individually "
502
  "downloaded, installed and updated."
503
- msgstr ""
504
 
505
- #: ../classes/settings.php:453
506
  msgid ""
507
- "This page will assist you in downloading and installing each available Addon."
508
- msgstr ""
 
509
 
510
- #: ../classes/settings.php:454
511
- #, fuzzy
512
  msgid "Available Addons"
513
- msgstr "Aktivera tillägg"
514
 
515
- #: ../classes/settings.php:459
516
  msgid "Name"
517
- msgstr ""
518
 
519
- #: ../classes/settings.php:460 ../classes/settings.php:468
520
- #: ../classes/settings.php:476
521
  msgid "Download"
522
- msgstr ""
523
 
524
- #: ../classes/settings.php:466
525
- #, fuzzy
526
- msgid "Sortorder Addon"
527
- msgstr "Sorteringsordning"
528
-
529
- #: ../classes/settings.php:474
530
- #, fuzzy
531
- msgid "Custom Fields Addon"
532
- msgstr "Anpassat fält"
533
-
534
- #: ../classes/settings.php:474
535
- msgid "This website is currently using custom field columns."
536
- msgstr ""
537
 
538
  #: ../classes/settings.php:483
539
  msgid "Installation"
540
- msgstr ""
541
 
542
  #: ../classes/settings.php:485
543
  msgid "For each Add-on available, please perform the following:"
544
- msgstr ""
545
 
546
  #: ../classes/settings.php:487
547
  msgid "Download the Addon plugin (.zip file) to your desktop"
548
- msgstr ""
549
 
550
  #: ../classes/settings.php:488
551
  msgid "Navigate to"
552
- msgstr ""
553
 
554
  #: ../classes/settings.php:488
555
  msgid "Plugins > Add New > Upload"
556
- msgstr ""
557
 
558
  #: ../classes/settings.php:489
559
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
560
- msgstr ""
561
 
562
  #: ../classes/settings.php:490
563
  msgid ""
564
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
565
- "link"
566
- msgstr ""
567
 
568
  #: ../classes/settings.php:491
569
  msgid "The Add-on is now installed and activated!"
570
- msgstr ""
571
 
572
  #: ../classes/settings.php:492
573
  #, php-format
574
  msgid ""
575
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
576
- msgstr ""
577
 
578
  #: ../classes/settings.php:502
579
- #, fuzzy
580
  msgid "Start using Admin Columns"
581
- msgstr "Admin Columns"
582
 
583
- #: ../classes/settings.php:579
584
- #, fuzzy
585
  msgid "Store settings"
586
- msgstr "Inställningar"
587
 
588
- #: ../classes/settings.php:584
589
  msgid "Update"
590
- msgstr ""
591
 
592
- #: ../classes/settings.php:584
593
- #, fuzzy
594
  msgid "Publish"
595
- msgstr "Publicerad"
596
 
597
- #: ../classes/settings.php:588
598
- #, fuzzy, php-format
599
  msgid ""
600
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
601
- "\\' to delete, \\'Cancel\\' to stop"
602
- msgstr ""
603
- "Varning! ALLA sparade admin kolumners data kommer att radera. Detta kan inte "
604
- "ångras. \\'OK\\' för att radera, \\'Cancel\\' för att avbryta "
605
 
606
- #: ../classes/settings.php:589 ../classes/column/comment/actions.php:86
607
  #: ../classes/column/post/actions.php:53
608
  msgid "Restore"
609
  msgstr "Återställ"
610
 
611
- #: ../classes/settings.php:589
612
- #, fuzzy
613
  msgid "columns"
614
- msgstr "Admin Columns"
615
 
616
- #: ../classes/settings.php:596
617
- #, fuzzy
618
- msgid "Get the Pro addon"
619
- msgstr "Ladda ner tillägget"
620
 
621
- #: ../classes/settings.php:622
622
- #, fuzzy
623
- msgid "find more addons"
624
- msgstr "ta reda på mer"
 
 
 
625
 
626
- #: ../classes/settings.php:625
 
 
 
 
627
  #, php-format
628
- msgid "Check the <a href=\"%s\">Add-on section</a> for more details."
629
- msgstr ""
630
 
631
- #: ../classes/settings.php:633
632
- #, fuzzy
633
  msgid "Support"
634
- msgstr "Behöver support?"
635
 
636
- #: ../classes/settings.php:636
637
- #, fuzzy
638
  msgid "Check the <strong>Help</strong> section in the top-right screen."
639
- msgstr ""
640
- "Du hittar en kort översikt på <strong>Hjälp</strong> sektionen i det övre-"
641
- "högra delen av skärmen."
642
 
643
- #: ../classes/settings.php:638
644
  #, php-format
645
  msgid ""
646
  "For full documentation, bug reports, feature suggestions and other tips <a "
647
  "href='%s'>visit the Admin Columns website</a>"
648
- msgstr ""
649
 
650
- #: ../classes/settings.php:658
651
- #, fuzzy
652
  msgid "Drag and drop to reorder"
653
- msgstr "dra och släpp för att ändra ordningen"
654
 
655
- #: ../classes/settings.php:661
656
- #, fuzzy
657
  msgid "Add Column"
658
- msgstr "Admin Columns"
659
 
660
- #: ../classes/settings.php:712
661
- #, fuzzy
662
  msgid "General Settings"
663
- msgstr "Inställningar"
664
 
665
- #: ../classes/settings.php:713
666
  msgid "Customize your Admin Columns settings."
667
- msgstr ""
668
-
669
- #: ../classes/settings.php:720
670
- #, fuzzy
671
- msgid "Custom field settings"
672
- msgstr "Återställ till standardinställningar"
673
 
674
- #: ../classes/settings.php:724
675
  msgid "Show hidden custom fields. Default is <code>off</code>."
676
- msgstr ""
 
 
 
 
 
677
 
678
- #: ../classes/settings.php:731
679
  msgid "Save"
680
- msgstr ""
681
 
682
- #: ../classes/settings.php:771
683
- #, fuzzy
684
  msgid "Restore Settings"
685
- msgstr "Återställ till standardinställningar"
686
 
687
- #: ../classes/settings.php:772
688
  msgid "This will delete all column settings and restore the default settings."
689
- msgstr ""
690
- "Detta kommer att radera alla kolumner inställningar och återställa till "
691
- "standardinställningarna"
692
 
693
- #: ../classes/settings.php:778
694
  msgid "Restore default settings"
695
  msgstr "Återställ till standardinställningar"
696
 
697
- #: ../classes/settings.php:778
698
  msgid ""
699
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
700
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
701
- msgstr ""
702
- "Varning! ALLA sparade admin kolumners data kommer att radera. Detta kan inte "
703
- "ångras. \\'OK\\' för att radera, \\'Cancel\\' för att avbryta "
704
 
705
- #: ../classes/storage_model.php:153
706
  msgid "settings succesfully restored."
707
- msgstr ""
708
 
709
- #: ../classes/storage_model.php:167
710
  msgid "No columns settings available."
711
- msgstr ""
712
 
713
- #: ../classes/storage_model.php:190
714
  #, php-format
715
  msgid "You are trying to store the same settings for %s."
716
- msgstr ""
717
 
718
- #: ../classes/storage_model.php:194
719
  #, php-format
720
  msgid "Settings for %s updated succesfully."
721
- msgstr ""
722
 
723
- #: ../classes/storage_model.php:564 ../classes/column/post/actions.php:64
724
  msgid "View"
725
  msgstr "Visa"
726
 
727
- #: ../classes/upgrade.php:48
728
  msgid "Upgrade"
729
- msgstr ""
730
 
731
- #: ../classes/upgrade.php:94
732
  msgid "requires a database upgrade"
733
- msgstr ""
734
 
735
- #: ../classes/upgrade.php:97
736
  msgid "why?"
737
- msgstr ""
738
 
739
- #: ../classes/upgrade.php:98
740
  msgid "Please"
741
- msgstr ""
742
 
743
- #: ../classes/upgrade.php:99
744
  msgid "backup your database"
745
- msgstr ""
746
 
747
- #: ../classes/upgrade.php:100
748
  msgid "then click"
749
- msgstr ""
750
 
751
- #: ../classes/upgrade.php:308
752
  msgid "Migrating Column Settings"
753
- msgstr ""
754
 
755
- #: ../classes/upgrade.php:344
756
  msgid "No Upgrade Required"
757
- msgstr ""
758
 
759
- #: ../classes/upgrade.php:345
760
  msgid "Return to welcome screen."
761
- msgstr ""
762
 
763
- #: ../classes/upgrade.php:361
764
  msgid "Upgrade Complete!"
765
- msgstr ""
766
 
767
- #: ../classes/upgrade.php:361
768
- #, fuzzy
769
  msgid "Return to settings."
770
- msgstr "Återställ till standardinställningar"
771
 
772
- #: ../classes/upgrade.php:362
773
  msgid "Error"
774
- msgstr ""
775
 
776
- #: ../classes/upgrade.php:363
777
  msgid ""
778
  "Sorry. Something went wrong during the upgrade process. Please report this "
779
  "on the support forum."
780
- msgstr ""
781
 
782
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
783
- #, fuzzy
784
  msgid "Media Library"
785
- msgstr "Mediabibliotek ikon"
786
 
787
  #: ../classes/column/custom-field.php:79
788
  msgid "Post Title (Post ID's)"
@@ -790,44 +696,43 @@ msgstr "Titel"
790
 
791
  #: ../classes/column/custom-field.php:80
792
  msgid "Username (User ID's)"
793
- msgstr ""
794
 
795
  #: ../classes/column/custom-field.php:81
796
  msgid "Checkmark (true/false)"
797
  msgstr "Checkmark (sant/falskt)"
798
 
799
- #: ../classes/column/custom-field.php:320
800
  msgid "Select your custom field."
801
- msgstr ""
802
 
803
- #: ../classes/column/custom-field.php:330
804
  msgid "No custom fields available."
805
- msgstr ""
806
 
807
- #: ../classes/column/custom-field.php:337
808
- #, fuzzy
809
  msgid "Field Type"
810
- msgstr "Fält"
811
 
812
- #: ../classes/column/custom-field.php:337
813
  msgid "This will determine how the value will be displayed."
814
- msgstr ""
815
 
816
- #: ../classes/column/custom-field.php:380
817
  msgid "Before"
818
- msgstr ""
819
 
820
- #: ../classes/column/custom-field.php:380
821
  msgid "This text will appear before the custom field value."
822
- msgstr ""
823
 
824
- #: ../classes/column/custom-field.php:386
825
  msgid "After"
826
- msgstr ""
827
 
828
- #: ../classes/column/custom-field.php:386
829
  msgid "This text will appear after the custom field value."
830
- msgstr ""
831
 
832
  #: ../classes/column/comment/actions.php:14
833
  #: ../classes/column/link/actions.php:14
@@ -892,9 +797,8 @@ msgid "Author url"
892
  msgstr "Författare url"
893
 
894
  #: ../classes/column/comment/author.php:12
895
- #, fuzzy
896
  msgid "Author"
897
- msgstr "Författare IP"
898
 
899
  #: ../classes/column/comment/date-gmt.php:12
900
  msgid "Date GMT"
@@ -925,9 +829,7 @@ msgstr "Antal ord"
925
  msgid ""
926
  "You are about to delete this link '%s'\n"
927
  " 'Cancel' to stop, 'OK' to delete."
928
- msgstr ""
929
- "Du är på väg att radera denna länk '%s'\n"
930
- " 'Avbryt' för att avbryta, 'OK' för att radera"
931
 
932
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
933
  msgid "Delete"
@@ -965,12 +867,11 @@ msgstr "Alt"
965
 
966
  #: ../classes/column/media/available-sizes.php:14
967
  msgid "Available Sizes"
968
- msgstr ""
969
 
970
  #: ../classes/column/media/available-sizes.php:37
971
- #, fuzzy
972
  msgid "full size"
973
- msgstr "Filstorlek"
974
 
975
  #: ../classes/column/media/caption.php:12
976
  #: ../classes/column/media/exif-data.php:36
@@ -983,7 +884,7 @@ msgstr "Dimensioner"
983
 
984
  #: ../classes/column/media/exif-data.php:12
985
  msgid "EXIF data"
986
- msgstr ""
987
 
988
  #: ../classes/column/media/exif-data.php:33
989
  msgid "Aperture"
@@ -1031,7 +932,7 @@ msgstr "Filstorlek"
1031
 
1032
  #: ../classes/column/media/full-path.php:12
1033
  msgid "Full path"
1034
- msgstr ""
1035
 
1036
  #: ../classes/column/media/height.php:12
1037
  msgid "Height"
@@ -1091,19 +992,17 @@ msgstr "Bilaga"
1091
 
1092
  #: ../classes/column/post/author-name.php:12
1093
  msgid "Display Author As"
1094
- msgstr ""
1095
 
1096
  #: ../classes/column/post/author-name.php:33
1097
  msgid "Display Name"
1098
- msgstr ""
1099
 
1100
  #: ../classes/column/post/author-name.php:34
1101
- #, fuzzy
1102
  msgid "First Name"
1103
  msgstr "Förnamn"
1104
 
1105
  #: ../classes/column/post/author-name.php:35
1106
- #, fuzzy
1107
  msgid "Last Name"
1108
  msgstr "Efternamn"
1109
 
@@ -1114,28 +1013,27 @@ msgstr "Smeknamn"
1114
 
1115
  #: ../classes/column/post/author-name.php:37
1116
  msgid "User Login"
1117
- msgstr ""
1118
 
1119
  #: ../classes/column/post/author-name.php:38
1120
  msgid "User Email"
1121
- msgstr ""
1122
 
1123
  #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1124
  msgid "User ID"
1125
  msgstr "Användar-ID"
1126
 
1127
  #: ../classes/column/post/author-name.php:40
1128
- #, fuzzy
1129
  msgid "First and Last Name"
1130
- msgstr "Förnamn"
1131
 
1132
  #: ../classes/column/post/author-name.php:106
1133
  msgid "This is the format of the author name."
1134
- msgstr ""
1135
 
1136
  #: ../classes/column/post/before-moretag.php:14
1137
  msgid "Before More Tag"
1138
- msgstr ""
1139
 
1140
  #: ../classes/column/post/comment-count.php:14
1141
  msgid "Comment count"
@@ -1143,16 +1041,15 @@ msgstr "Antal kommentarer"
1143
 
1144
  #: ../classes/column/post/comment-count.php:30
1145
  msgid "Total"
1146
- msgstr ""
1147
 
1148
  #: ../classes/column/post/comment-count.php:32
1149
- #, fuzzy
1150
  msgid "Pending"
1151
- msgstr "väntande"
1152
 
1153
  #: ../classes/column/post/comment-count.php:33
1154
  msgid "Spam"
1155
- msgstr ""
1156
 
1157
  #: ../classes/column/post/comment-count.php:78
1158
  #: ../classes/column/post/comment-status.php:14
@@ -1161,7 +1058,7 @@ msgstr "Kommentarsstatus"
1161
 
1162
  #: ../classes/column/post/comment-count.php:78
1163
  msgid "Select which comment status you like to display."
1164
- msgstr ""
1165
 
1166
  #: ../classes/column/post/featured-image.php:14
1167
  msgid "Featured Image"
@@ -1185,7 +1082,7 @@ msgstr "Sidmallen"
1185
 
1186
  #: ../classes/column/post/parent.php:12
1187
  msgid "Parent"
1188
- msgstr ""
1189
 
1190
  #: ../classes/column/post/ping-status.php:14
1191
  msgid "Ping status"
@@ -1233,7 +1130,6 @@ msgid "Taxonomy"
1233
  msgstr "Taxonomi"
1234
 
1235
  #: ../classes/column/user/comment-count.php:14
1236
- #, fuzzy
1237
  msgid "Comment Count"
1238
  msgstr "Antal kommentarer"
1239
 
@@ -1246,13 +1142,12 @@ msgid "Last name"
1246
  msgstr "Efternamn"
1247
 
1248
  #: ../classes/column/user/post-count.php:14
1249
- #, fuzzy
1250
  msgid "Post Count"
1251
- msgstr "Antal poster"
1252
 
1253
  #: ../classes/column/user/post-count.php:92
1254
  msgid "Post Type"
1255
- msgstr ""
1256
 
1257
  #: ../classes/column/user/registered.php:14
1258
  msgid "Registered"
@@ -1268,179 +1163,8 @@ msgstr "Kommentarer"
1268
 
1269
  #: ../classes/storage_model/link.php:13
1270
  msgid "Links"
1271
- msgstr ""
1272
 
1273
  #: ../classes/storage_model/user.php:13
1274
- #, fuzzy
1275
  msgid "Users"
1276
- msgstr "Användar-ID"
1277
-
1278
- #~ msgid "This field can not be removed"
1279
- #~ msgstr "Detta fält kan inte tas bort"
1280
-
1281
- #~ msgid "Icon"
1282
- #~ msgstr "Ikon"
1283
-
1284
- #~ msgid "Order"
1285
- #~ msgstr "Ordning"
1286
-
1287
- #~ msgid "Upload paths"
1288
- #~ msgstr "Uppladdning sökväg"
1289
-
1290
- #~ msgid "Aperture EXIF"
1291
- #~ msgstr "Bländare EXIF"
1292
-
1293
- #~ msgid "Credit EXIF"
1294
- #~ msgstr "Erkänande EXIF"
1295
-
1296
- #~ msgid "Camera EXIF"
1297
- #~ msgstr "Kamera EXIF"
1298
-
1299
- #~ msgid "Caption EXIF"
1300
- #~ msgstr "Bildtext EXIF"
1301
-
1302
- #~ msgid "Timestamp EXIF"
1303
- #~ msgstr "Tidsstämpel EXIF"
1304
-
1305
- #~ msgid "Copyright"
1306
- #~ msgstr "Upphovsrätt"
1307
-
1308
- #~ msgid "Focal Length EXIF"
1309
- #~ msgstr "Brännvidd EXIF"
1310
-
1311
- #~ msgid "ISO EXIF"
1312
- #~ msgstr "ISO EXIF"
1313
-
1314
- #~ msgid "Shutter Speed EXIF"
1315
- #~ msgstr "Slutartid EXIF"
1316
-
1317
- #~ msgid "Title EXIF"
1318
- #~ msgstr "Titel EXIF"
1319
-
1320
- #~ msgid "Author Name"
1321
- #~ msgstr "Författare Namn"
1322
-
1323
- #~ msgid "This will make all of the new columns support sorting"
1324
- #~ msgstr "Detta kommer göra att alla de nya kolumnerna stöder sortering"
1325
-
1326
- #~ msgid ""
1327
- #~ "By default WordPress let's you sort by title, date, comments and author. "
1328
- #~ "This will make you be able to <strong>sort by any column of any type!</"
1329
- #~ "strong>"
1330
- #~ msgstr ""
1331
- #~ "Som standard låter WordPress dig att sortera efter titel, datum, "
1332
- #~ "kommentarer och författare. Detta tillägg gör att kan <strong>sortera "
1333
- #~ "efter en kolumn av vilken typ som helst!</strong>"
1334
-
1335
- #~ msgid ""
1336
- #~ "Perfect for sorting your articles, media files, comments, links and users"
1337
- #~ msgstr ""
1338
- #~ "Perfekt för sortering av dina artiklar, mediafiler, kommentarer, länkar "
1339
- #~ "och användare"
1340
-
1341
- #~ msgid "(columns that are added by other plugins are not supported)"
1342
- #~ msgstr "(kolumner som har lagts till av andra tillägg stöds inte)"
1343
-
1344
- #~ msgid "Inactive"
1345
- #~ msgstr "inaktiv"
1346
-
1347
- #~ msgid "Active"
1348
- #~ msgstr "Aktiv"
1349
-
1350
- #~ msgid "Fill in your activation code"
1351
- #~ msgstr "Fyll i din aktiveringsnyckel"
1352
-
1353
- #~ msgid "Activate"
1354
- #~ msgstr "Aktivera"
1355
-
1356
- #~ msgid "Deactivate"
1357
- #~ msgstr "Inaktivera"
1358
-
1359
- #~ msgid ""
1360
- #~ "Add-ons can be unlocked by purchasing a license key. Each key can be used "
1361
- #~ "on multiple sites"
1362
- #~ msgstr ""
1363
- #~ "Tillägg kan låsas upp genom att köpa en licensnyckel. Varje nyckel kan "
1364
- #~ "användas på flera webbplatser."
1365
-
1366
- #~ msgid "Addon"
1367
- #~ msgstr "Tillägg"
1368
-
1369
- #~ msgid "Activation Code"
1370
- #~ msgstr "Aktiveringskod"
1371
-
1372
- #~ msgid "Enter your activation code"
1373
- #~ msgstr "Ange din aktiveringskod"
1374
-
1375
- #~ msgid "Activation code unrecognised"
1376
- #~ msgstr "Aktiveringskod oigenkänd."
1377
-
1378
- #~ msgid "Codepress Admin Columns"
1379
- #~ msgstr "Codepress Admin Columns"
1380
-
1381
- #~ msgid ""
1382
- #~ "By default WordPress let's you only sort by title, date, comments and "
1383
- #~ "author."
1384
- #~ msgstr ""
1385
- #~ "Som standard låter WordPress dig att endast att sortera efter titel, "
1386
- #~ "datum, kommentarer och författare."
1387
-
1388
- #~ msgid ""
1389
- #~ "Make <strong>all columns</strong> of <strong>all types</strong> within "
1390
- #~ "the plugin support sorting &#8212; with the sorting addon."
1391
- #~ msgstr ""
1392
- #~ "Gör <strong>alla kolumers</strong> av <strong>alla typer</strong> inom "
1393
- #~ "tillägget att supporta sortering &#8212; med sorteringstillägget."
1394
-
1395
- #~ msgid "Why not do any or all of the following"
1396
- #~ msgstr "Varför inte göra något eller allt av följande"
1397
-
1398
- #~ msgid "Give it a 5 star rating on WordPress.org."
1399
- #~ msgstr "Ge den ett 5-stjärnigt betyg på WordPress.org."
1400
-
1401
- #~ msgid "Link to it so other folks can find out about it."
1402
- #~ msgstr "Länka till den så att andra människor kan ta reda på det."
1403
-
1404
- #~ msgid "Donate a token of your appreciation."
1405
- #~ msgstr "Donera som ett tecken på din uppskattning."
1406
-
1407
- #~ msgid "Follow us"
1408
- #~ msgstr "Följ oss"
1409
-
1410
- #~ msgid "Follow Codepress on Twitter."
1411
- #~ msgstr "Följ Codepress på Twitter."
1412
-
1413
- #~ msgid "Like Codepress on Facebook."
1414
- #~ msgstr "Gilla Codepress på Facebook."
1415
-
1416
- #~ msgid ""
1417
- #~ "If you are having problems with this plugin, please talk about them in "
1418
- #~ "the <a href=\"%s\">Support forums</a> or send me an email %s."
1419
- #~ msgstr ""
1420
- #~ "Om du har problem med detta tillägget, berätta gärna om dem i <a href=\"%s"
1421
- #~ "\">Support forumet</a> eller skicka mig ett mail%s."
1422
-
1423
- #~ msgid ""
1424
- #~ "If you're sure you've found a bug, or have a feature request, please <a "
1425
- #~ "href='%s'>submit your feedback</a>."
1426
- #~ msgstr ""
1427
- #~ "Om du är säker på att du har hittat en bugg, eller har en fråga om en "
1428
- #~ "funktion, vänligen <a href='%s'>skicka in din kommentar</a>."
1429
-
1430
- #~ msgid "Restore defaults"
1431
- #~ msgstr "Återställ till standard"
1432
-
1433
- #~ msgid "original"
1434
- #~ msgstr "orginal"
1435
-
1436
- #~ msgid "Standard"
1437
- #~ msgstr "Standard"
1438
-
1439
- #~ msgid "approved"
1440
- #~ msgstr "godkänd"
1441
-
1442
- #~ msgid "spam"
1443
- #~ msgstr "skräppost"
1444
-
1445
- #~ msgid "trash"
1446
- #~ msgstr "papperskorg"
1
+ #
2
+ # Translators:
3
+ # fanderzzon <fidde.andersson@telia.com>, 2013
4
  msgid ""
5
  msgstr ""
6
+ "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-08-29 15:42+0000\n"
10
+ "Last-Translator: fanderzzon <fidde.andersson@telia.com>\n"
11
+ "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/admin-columns/language/sv_SE/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: sv_SE\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
17
  "X-Generator: Poedit 1.5.7\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
 
24
+ #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
26
  msgstr "Inställningar"
27
 
28
  #: ../codepress-admin-columns.php:350
 
29
  msgid "Edit columns"
30
+ msgstr "Redigera kolumner"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
  #: ../classes/column.php:479
33
  msgid "Thumbnail"
34
+ msgstr "Miniatyrer"
35
 
36
  #: ../classes/column.php:480
37
  msgid "Medium"
38
+ msgstr "Mellan"
39
 
40
  #: ../classes/column.php:481
 
41
  msgid "Large"
42
+ msgstr "Stor"
43
 
44
  #: ../classes/column.php:482
45
  msgid "Full"
46
+ msgstr "Hel"
47
 
48
+ #: ../classes/column.php:774
 
49
  msgid "Date Format"
50
+ msgstr "Datumformat"
51
 
52
+ #: ../classes/column.php:775
53
  msgid "This will determine how the date will be displayed."
54
+ msgstr "Detta kommer att avgöra hur datumet ska visas."
55
 
56
+ #: ../classes/column.php:781
57
  msgid "Example:"
58
+ msgstr "Exempel:"
59
 
60
+ #: ../classes/column.php:783
61
  #, php-format
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
+ msgstr "Lämna tomt för WordPress datumformat, ändra din <a href=\"%s\">standard datumformat här</a>."
66
 
67
+ #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
69
+ msgstr "Dokumentation om datum och tid formatering."
70
 
71
+ #: ../classes/column.php:801
 
72
  msgid "Excerpt length"
73
+ msgstr "Utdragens längd"
74
 
75
+ #: ../classes/column.php:802
76
  msgid "Number of words"
77
+ msgstr "Antal ord"
78
 
79
+ #: ../classes/column.php:824
 
80
  msgid "Preview size"
81
+ msgstr "Förhandsgranska storlek"
82
 
83
+ #: ../classes/column.php:841 ../classes/column.php:897
84
  msgid "Custom"
85
  msgstr "Anpassad"
86
 
87
+ #: ../classes/column.php:844
 
88
  msgid "width"
89
+ msgstr "bredd"
90
 
91
+ #: ../classes/column.php:847
 
92
  msgid "height"
93
+ msgstr "höjd"
94
 
95
+ #: ../classes/column.php:898 ../classes/settings.php:224
96
  #: ../classes/column/custom-field.php:72
97
  msgid "Default"
98
  msgstr "Standard"
99
 
100
+ #: ../classes/column.php:923 ../classes/column.php:984
101
  #: ../classes/column/user/actions.php:65
102
  msgid "Remove"
103
  msgstr "Ta bort"
104
 
105
+ #: ../classes/column.php:942
106
  msgid "Type"
107
+ msgstr "Typ"
108
 
109
+ #: ../classes/column.php:942
110
  msgid "Choose a column type."
111
+ msgstr "Välj en kolumntyp."
112
 
113
+ #: ../classes/column.php:952
114
  msgid "Label"
115
+ msgstr "Etikett"
116
 
117
+ #: ../classes/column.php:952
118
  msgid "This is the name which will appear as the column header."
119
+ msgstr "Detta är det namn som kommer att visas som kolumnrubriken."
120
 
121
+ #: ../classes/column.php:959 ../classes/column/media/width.php:12
122
  msgid "Width"
123
  msgstr "Bredd"
124
 
125
+ #: ../classes/column.php:961 ../classes/column.php:962
126
  msgid "default"
127
  msgstr "standard"
128
 
129
+ #: ../classes/settings.php:68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  msgid "Admin Columns Settings"
131
+ msgstr "Admin Columns Inställningar"
132
 
133
+ #: ../classes/settings.php:68 ../classes/settings.php:534
134
+ #: ../classes/upgrade.php:89
135
  msgid "Admin Columns"
136
  msgstr "Admin Columns"
137
 
138
+ #: ../classes/settings.php:129
139
+ #, php-format
140
+ msgid "%s column is already present and can not be duplicated."
141
+ msgstr "%s kolumn finns redan och kan inte dupliceras."
142
+
143
+ #: ../classes/settings.php:184
144
  msgid "Default settings succesfully restored."
145
+ msgstr "Standardinställningar återställdes framgångsrikt."
146
 
147
+ #: ../classes/settings.php:202 ../classes/settings.php:457
 
148
  msgid "Overview"
149
+ msgstr "Översikt"
150
 
151
+ #: ../classes/settings.php:205
152
  msgid ""
153
  "This plugin is for adding and removing additional columns to the "
154
  "administration screens for post(types), pages, media library, comments, "
155
  "links and users. Change the column's label and reorder them."
156
+ msgstr "Denna plugin är för att lägga till och ta bort ytterligare kolumner till administrationsvyn för inlägg(typer), sidor, mediabibliotek, kommentarer, länkar och användare. Ändra kolumens etikett och ändra ordningen."
157
 
158
+ #: ../classes/settings.php:208
159
  msgid "Basics"
160
+ msgstr "Grundläggande"
 
 
 
 
 
161
 
162
+ #: ../classes/settings.php:210
 
 
 
 
 
 
 
163
  msgid "Change order"
164
+ msgstr "Ändra ordning"
165
 
166
+ #: ../classes/settings.php:211
167
  msgid ""
168
  "By dragging the columns you can change the order which they will appear in."
169
+ msgstr "Genom att dra kolumnerna så kan du ändra ordningen som de visas i."
170
 
171
+ #: ../classes/settings.php:212
172
  msgid "Change label"
173
+ msgstr "Ändra etikett"
174
 
175
+ #: ../classes/settings.php:213
176
  msgid ""
177
  "By clicking on the triangle you will see the column options. Here you can "
178
  "change each label of the columns heading."
179
+ msgstr "Genom att klicka på triangeln kommer du att se kolumnalternativ. Här kan du ändra varje etikett av kolumnernas rubrik."
180
 
181
+ #: ../classes/settings.php:214
182
  msgid "Change column width"
183
+ msgstr "Ändra kolumnens bredd"
184
 
185
+ #: ../classes/settings.php:215
186
  msgid ""
187
  "By clicking on the triangle you will see the column options. By using the "
188
+ "draggable slider you can set the width of the columns in percentages."
189
+ msgstr "Genom att klicka på triangeln kommer du att se kolumnalternativ. Genom att använda dragbar reglaget kan du ställa in bredden på kolumnerna i procent."
190
 
191
+ #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
+ #: ../classes/column/custom-field.php:324
193
  msgid "Custom Field"
194
  msgstr "Anpassat fält"
195
 
196
+ #: ../classes/settings.php:221
 
197
  msgid "'Custom Field' column"
198
+ msgstr "'Anpassat fält' kolumn "
199
 
200
+ #: ../classes/settings.php:222
201
  msgid ""
202
  "The custom field colum uses the custom fields from posts and users. There "
203
  "are 10 types which you can set."
204
+ msgstr "Det anpassade fältets kolumn använder den anpassade fältet från inlägg och användare. Det fins 10 typer som du kan ange."
205
 
206
+ #: ../classes/settings.php:224
207
  msgid ""
208
  "Value: Can be either a string or array. Arrays will be flattened and values "
209
  "are seperated by a ',' comma."
210
+ msgstr "Värde: Kan antingen vara en sträng eller array. Arrays ska plattas och värden åtskilda av en ',' kommatecken."
211
 
212
+ #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
  #: ../classes/column/link/image.php:12
214
  msgid "Image"
215
  msgstr "Bild"
216
 
217
+ #: ../classes/settings.php:225
218
  msgid ""
219
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
  "comma )."
221
+ msgstr "Värde: ska innehålla en bildadress eller bilags-ID ( separerad av ett ',' kommatecken )."
222
 
223
+ #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
  #: ../classes/column/comment/excerpt.php:13
225
  #: ../classes/column/post/excerpt.php:13
226
  msgid "Excerpt"
227
  msgstr "Utdrag"
228
 
229
+ #: ../classes/settings.php:226
230
  msgid "Value: This will show the first 20 words of the Post content."
231
+ msgstr "Värde: Detta kommer visa de första 20 orden av inläggets innehåll."
232
 
233
+ #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
234
  msgid "Multiple Values"
235
  msgstr "Flera värden"
236
 
237
+ #: ../classes/settings.php:227
238
  msgid ""
239
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
240
+ "array."
241
+ msgstr "Värde: skall vara en array. Detta planar en ( flerdimensionell ) array."
242
 
243
+ #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
244
  msgid "Numeric"
245
  msgstr "Numerisk"
246
 
247
+ #: ../classes/settings.php:228
248
  msgid ""
249
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
  "for sorting, so you can sort your posts on numeric (custom field) values."
251
+ msgstr "Värde: Heltal bara. <br/> Om du har \"sorterings tillägget\" kommer detta att användas för sortering, så att du kan sortera dina inlägg på numeriska (anpassade fält) värden."
252
 
253
+ #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
  #: ../classes/column/comment/date.php:12
255
  msgid "Date"
256
  msgstr "Datum"
257
 
258
+ #: ../classes/settings.php:229
259
  #, php-format
260
  msgid ""
261
  "Value: Can be unix time stamp or a date format as described in the <a "
262
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
  "href='%s'>general settings</a> page."
264
+ msgstr "Värde: Kan vara unix tidsstämpel eller ett datumformat som beskrivs i <a href='%s'>Codex</ a>. Du kan ändra hur datumformatet ska visas på <a href='%s'>generella inställningar</ a> sidan."
265
 
266
+ #: ../classes/settings.php:230
 
267
  msgid "Post Titles"
268
+ msgstr "Titel på inlägg"
269
 
270
+ #: ../classes/settings.php:230
271
  msgid "Value: can be one or more Post ID's (seperated by ',')."
272
+ msgstr "Värde: kan vara en eller flera post-ID (separerat med ',')."
273
 
274
+ #: ../classes/settings.php:231
275
  msgid "Usernames"
276
+ msgstr "Användarnamn"
277
 
278
+ #: ../classes/settings.php:231
279
  msgid "Value: can be one or more User ID's (seperated by ',')."
280
+ msgstr "Värde: kan vara en eller flera användar-ID (separerat med ',')."
281
 
282
+ #: ../classes/settings.php:232
283
  msgid "Checkmark"
284
+ msgstr "Checkmark"
285
 
286
+ #: ../classes/settings.php:232
287
  msgid "Value: should be a 1 (one) or 0 (zero)."
288
+ msgstr "Värde: ska vara en 1 (ett) eller 0 (noll)."
289
 
290
+ #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
291
  msgid "Color"
292
+ msgstr "Färg"
293
 
294
+ #: ../classes/settings.php:233
295
  msgid "Value: hex value color, such as #808080."
296
+ msgstr "Värde: hex värde färg, som #808080."
297
 
298
+ #: ../classes/settings.php:377
 
299
  msgid "Welcome to Admin Columns"
300
+ msgstr "Välkommen till Admin Columns"
301
 
302
+ #: ../classes/settings.php:380
303
  msgid "Thank you for updating to the latest version!"
304
+ msgstr "Tack för att du uppdaterar till den senaste versionen!"
305
 
306
+ #: ../classes/settings.php:381
307
  msgid ""
308
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
  "like it."
310
+ msgstr "Admin Columns är mer polerat och roligare än någonsin tidigare. Vi hoppas att du gillar det."
311
 
312
+ #: ../classes/settings.php:386
313
  msgid "What’s New"
314
+ msgstr "Vad som är nytt"
315
 
316
+ #: ../classes/settings.php:387
317
  msgid "Changelog"
318
+ msgstr "Ändringslogg"
319
 
320
+ #: ../classes/settings.php:389
321
  msgid "Download Addons"
322
+ msgstr "Hämta tillägget"
323
 
324
+ #: ../classes/settings.php:395
325
  msgid "Addons"
326
  msgstr "Tillägg"
327
 
328
+ #: ../classes/settings.php:397
329
  msgid ""
330
  "Addons are now activated by downloading and installing individual plugins. "
331
  "Although these plugins will not be hosted on the wordpress.org repository, "
332
  "each Add-on will continue to receive updates in the usual way."
333
+ msgstr "Tillägg aktiveras nu genom att hämta och installera dem individuellt. Även om dessa tillägg inte kommer att finnas på wordpress.org förvaret, kommer varje tillägg kommer att fortsätta uppdateras som vanligt."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
 
335
+ #: ../classes/settings.php:400
336
+ msgid ""
337
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
338
+ msgstr "Denna webbplats användar Sortorder tillägg. Detta tillägg behöver hämtas."
339
 
340
  #: ../classes/settings.php:403
341
+ msgid "Addons are seperate plugins which need to be downloaded."
342
+ msgstr "Tillägg är separata och behöver därför hämtas."
343
 
344
  #: ../classes/settings.php:403
345
  msgid "Download your Addons"
346
+ msgstr "Hämta dina tillägg"
347
+
348
+ #: ../classes/settings.php:409
349
+ msgid "This website does not use add-ons"
350
+ msgstr "Denna webbsida använder inte tillägg"
351
 
352
  #: ../classes/settings.php:409
353
+ msgid "See our website for the Pro-addon."
354
+ msgstr "Besök vår webbplats för Pro tillägget."
355
+
356
+ #: ../classes/settings.php:416
357
  msgid "Important"
358
+ msgstr "Viktigt"
359
 
360
+ #: ../classes/settings.php:418
 
361
  msgid "Database Changes"
362
+ msgstr "Databas ändringar"
363
 
364
+ #: ../classes/settings.php:419
365
  msgid ""
366
+ "The database has been changed between versions 1 and 2. But we made sure you"
367
+ " can still roll back to version 1x without any issues."
368
+ msgstr "Databasen har ändrats mellan versionerna 1 och 2. Men vi såg till att du fortfarande kan rulla tillbaka till version 1x utan några problem."
369
 
370
+ #: ../classes/settings.php:422
371
  msgid "Make sure you backup your database and then click"
372
+ msgstr "Se till att du säkerhetskopiera din databas och klicka sen på"
373
 
374
+ #: ../classes/settings.php:422 ../classes/upgrade.php:97
375
  msgid "Upgrade Database"
376
+ msgstr "Uppgradera databasen"
377
 
378
+ #: ../classes/settings.php:425
379
  msgid "Potential Issues"
380
+ msgstr "Potentiella problem"
381
 
382
+ #: ../classes/settings.php:426
383
  msgid ""
384
+ "Do to the sizable refactoring the code, surounding Addons and "
385
+ "action/filters, your website may not operate correctly. It is important that"
386
+ " you read the full"
387
+ msgstr "För den betydande refactoring koden, omgivande tillägg och action/filters, så kanske din webbplats inte fungerar korrekt. Det är viktigt att du läser hela"
388
 
389
+ #: ../classes/settings.php:426
390
  msgid "Migrating from v1 to v2"
391
+ msgstr "Migrera från v1 till v2"
392
 
393
+ #: ../classes/settings.php:426
394
  msgid "guide to view the full list of changes."
395
+ msgstr "guide för att visa en komplett lista på förändringar."
396
 
397
+ #: ../classes/settings.php:426
398
  #, php-format
399
  msgid ""
400
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
  "can fix it in the next release."
402
+ msgstr "När du har hittat en bugg vänligen <a href=\"%s\">rapportera dem till oss</ a> så att vi kan åtgärda det i kommande utgåva."
403
 
404
+ #: ../classes/settings.php:429
405
  msgid "Important!"
406
+ msgstr "Viktigt!"
407
 
408
+ #: ../classes/settings.php:429
409
  msgid ""
410
  "If you updated the Admin Columns plugin without prior knowledge of such "
411
  "changes, Please roll back to the latest"
412
+ msgstr "Om du uppdaterat Admin Columns tillägget utan förkunskaper om sådana ändringar, vänligen rulla tillbaka till den senaste"
413
 
414
+ #: ../classes/settings.php:429
415
  msgid "version 1"
416
+ msgstr "version 1"
417
 
418
+ #: ../classes/settings.php:429
 
419
  msgid "of this plugin."
420
+ msgstr "av detta tillägg."
421
 
422
+ #: ../classes/settings.php:435
423
  msgid "Changelog for"
424
+ msgstr "Ändringslogg för"
425
 
426
+ #: ../classes/settings.php:450
427
  msgid "Learn more"
428
+ msgstr "Lära dig mer"
429
 
430
+ #: ../classes/settings.php:459
431
  msgid ""
432
  "New to v2, all Addons act as separate plugins which need to be individually "
433
  "downloaded, installed and updated."
434
+ msgstr "Nytt på v2, alla tillägg agerar separat som behöver hämtas individuellt, installeras och uppdateras."
435
 
436
+ #: ../classes/settings.php:460
437
  msgid ""
438
+ "This page will assist you in downloading and installing each available "
439
+ "Addon."
440
+ msgstr "Denna sida kommer att hjälpa dig att hämta och installera varje tillgängligt tillägg."
441
 
442
+ #: ../classes/settings.php:461
 
443
  msgid "Available Addons"
444
+ msgstr "Tillgängliga tillägg"
445
 
446
+ #: ../classes/settings.php:466
447
  msgid "Name"
448
+ msgstr "Namn"
449
 
450
+ #: ../classes/settings.php:467 ../classes/settings.php:475
 
451
  msgid "Download"
452
+ msgstr "Nerladdning"
453
 
454
+ #: ../classes/settings.php:473
455
+ msgid "Pro Add-on (includes Sortorder add-on)"
456
+ msgstr "Pro tillägg (inkluderar Sortorder tillägg)"
 
 
 
 
 
 
 
 
 
 
457
 
458
  #: ../classes/settings.php:483
459
  msgid "Installation"
460
+ msgstr "Installation"
461
 
462
  #: ../classes/settings.php:485
463
  msgid "For each Add-on available, please perform the following:"
464
+ msgstr "För varje tillägg som är tillgängligt, vänligen utför följande:"
465
 
466
  #: ../classes/settings.php:487
467
  msgid "Download the Addon plugin (.zip file) to your desktop"
468
+ msgstr "Hämta Addon tilläget (.zip fil) till ditt skrivbord"
469
 
470
  #: ../classes/settings.php:488
471
  msgid "Navigate to"
472
+ msgstr "Navigera till"
473
 
474
  #: ../classes/settings.php:488
475
  msgid "Plugins > Add New > Upload"
476
+ msgstr "Tillägg - > Lägg till -> Ladda upp"
477
 
478
  #: ../classes/settings.php:489
479
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
480
+ msgstr "Använd uppladdaren för att bläddra, välja och installera ditt tillägg (.zip fil)"
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
+ " link"
486
+ msgstr "När tillägget har laddas upp och installerats, klicka på 'Aktivera tillägg' länken"
487
 
488
  #: ../classes/settings.php:491
489
  msgid "The Add-on is now installed and activated!"
490
+ msgstr "Tillägget är nu installerat och aktiverat!"
491
 
492
  #: ../classes/settings.php:492
493
  #, php-format
494
  msgid ""
495
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
496
+ msgstr "För automatiska uppdatering se till att <a href='%s'>ange din licensnyckel</a>."
497
 
498
  #: ../classes/settings.php:502
 
499
  msgid "Start using Admin Columns"
500
+ msgstr "Börja med att använda Admin Columns"
501
 
502
+ #: ../classes/settings.php:580
 
503
  msgid "Store settings"
504
+ msgstr "Spara inställningar"
505
 
506
+ #: ../classes/settings.php:585
507
  msgid "Update"
508
+ msgstr "Uppdatera"
509
 
510
+ #: ../classes/settings.php:585
 
511
  msgid "Publish"
512
+ msgstr "Publicera"
513
 
514
+ #: ../classes/settings.php:589
515
+ #, php-format
516
  msgid ""
517
+ "Warning! The %s columns data will be deleted. This cannot be undone. "
518
+ "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
+ msgstr "Varning! Den %s kolumner data kommer att raderas. Detta kan inte ångras. \\'OK\\' för att ta bort, \\'Avbryt\\' för att stoppa"
 
 
520
 
521
+ #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
  #: ../classes/column/post/actions.php:53
523
  msgid "Restore"
524
  msgstr "Återställ"
525
 
526
+ #: ../classes/settings.php:590
 
527
  msgid "columns"
528
+ msgstr "kolumner"
529
 
530
+ #: ../classes/settings.php:600
531
+ msgid "Get the Pro Add-on"
532
+ msgstr "Skaffa Pro tillägget"
 
533
 
534
+ #: ../classes/settings.php:604
535
+ msgid "Add Sorting"
536
+ msgstr "Lägg till sortering"
537
+
538
+ #: ../classes/settings.php:605
539
+ msgid "Add Filtering"
540
+ msgstr "Lägg till filtrering"
541
 
542
+ #: ../classes/settings.php:606
543
+ msgid "Add Import/Export"
544
+ msgstr "Lägg till Import/Export"
545
+
546
+ #: ../classes/settings.php:609
547
  #, php-format
548
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
549
+ msgstr "Titta på <a href=\"%s\">Pro tillägg</a> för mer information!"
550
 
551
+ #: ../classes/settings.php:617
 
552
  msgid "Support"
553
+ msgstr "Support"
554
 
555
+ #: ../classes/settings.php:620
 
556
  msgid "Check the <strong>Help</strong> section in the top-right screen."
557
+ msgstr "Kolla på <strong>Hjälp</ strong> sektionen i den övre högra delen av skärmen."
 
 
558
 
559
+ #: ../classes/settings.php:622
560
  #, php-format
561
  msgid ""
562
  "For full documentation, bug reports, feature suggestions and other tips <a "
563
  "href='%s'>visit the Admin Columns website</a>"
564
+ msgstr "För fullständig dokumentation, felrapporter, förslag på funktioner och andra tips <a href='%s'>besök Admin Columns webbsida</ a>"
565
 
566
+ #: ../classes/settings.php:642
 
567
  msgid "Drag and drop to reorder"
568
+ msgstr "Drag och släpp för att ändra ordning"
569
 
570
+ #: ../classes/settings.php:645
 
571
  msgid "Add Column"
572
+ msgstr "Lägg till kolumn"
573
 
574
+ #: ../classes/settings.php:696
 
575
  msgid "General Settings"
576
+ msgstr "Allmänna inställningar"
577
 
578
+ #: ../classes/settings.php:697
579
  msgid "Customize your Admin Columns settings."
580
+ msgstr "Anpassa dina Admin Columns inställningar."
 
 
 
 
 
581
 
582
+ #: ../classes/settings.php:710
583
  msgid "Show hidden custom fields. Default is <code>off</code>."
584
+ msgstr "Visa dolda anpassade fält. Standard är <code>av</code>."
585
+
586
+ #: ../classes/settings.php:716
587
+ msgid ""
588
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
589
+ msgstr "Visa \"Redigera kolumner\" knappen på admin skärmen. Standard är <code>av</code>."
590
 
591
+ #: ../classes/settings.php:723
592
  msgid "Save"
593
+ msgstr "Spara"
594
 
595
+ #: ../classes/settings.php:763
 
596
  msgid "Restore Settings"
597
+ msgstr "Återställ inställningar"
598
 
599
+ #: ../classes/settings.php:764
600
  msgid "This will delete all column settings and restore the default settings."
601
+ msgstr "Detta kommer att radera alla kolumner inställningar och återställa till standardinställningarna"
 
 
602
 
603
+ #: ../classes/settings.php:770
604
  msgid "Restore default settings"
605
  msgstr "Återställ till standardinställningar"
606
 
607
+ #: ../classes/settings.php:770
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
+ msgstr "Varning! ALLA sparade admin kolumners data kommer att radera. Detta kan inte ångras. \\'OK\\' för att radera, \\'Cancel\\' för att avbryta "
 
 
612
 
613
+ #: ../classes/storage_model.php:167
614
  msgid "settings succesfully restored."
615
+ msgstr "inställningar återställdes framgångsrikt."
616
 
617
+ #: ../classes/storage_model.php:181
618
  msgid "No columns settings available."
619
+ msgstr "Inga inställningar för kolumner är tillgängliga."
620
 
621
+ #: ../classes/storage_model.php:204
622
  #, php-format
623
  msgid "You are trying to store the same settings for %s."
624
+ msgstr "Du försöker lagra samma inställningar för %s."
625
 
626
+ #: ../classes/storage_model.php:208
627
  #, php-format
628
  msgid "Settings for %s updated succesfully."
629
+ msgstr "Inställningar för %s uppdaterades med framgång."
630
 
631
+ #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
632
  msgid "View"
633
  msgstr "Visa"
634
 
635
+ #: ../classes/upgrade.php:45
636
  msgid "Upgrade"
637
+ msgstr "Uppgradera"
638
 
639
+ #: ../classes/upgrade.php:90
640
  msgid "requires a database upgrade"
641
+ msgstr "krävs en databas uppgradering"
642
 
643
+ #: ../classes/upgrade.php:93
644
  msgid "why?"
645
+ msgstr "varför?"
646
 
647
+ #: ../classes/upgrade.php:94
648
  msgid "Please"
649
+ msgstr "Vänligen"
650
 
651
+ #: ../classes/upgrade.php:95
652
  msgid "backup your database"
653
+ msgstr "säkerhetskopiera din databas"
654
 
655
+ #: ../classes/upgrade.php:96
656
  msgid "then click"
657
+ msgstr "klicka sedan"
658
 
659
+ #: ../classes/upgrade.php:304
660
  msgid "Migrating Column Settings"
661
+ msgstr "Migrera kolumninställningar"
662
 
663
+ #: ../classes/upgrade.php:340
664
  msgid "No Upgrade Required"
665
+ msgstr "Ingen uppgradering krävs"
666
 
667
+ #: ../classes/upgrade.php:341
668
  msgid "Return to welcome screen."
669
+ msgstr "Återgå till välkomstskärmen."
670
 
671
+ #: ../classes/upgrade.php:359
672
  msgid "Upgrade Complete!"
673
+ msgstr "Uppgradering klar!"
674
 
675
+ #: ../classes/upgrade.php:359
 
676
  msgid "Return to settings."
677
+ msgstr "Återgå till inställningar."
678
 
679
+ #: ../classes/upgrade.php:360
680
  msgid "Error"
681
+ msgstr "Fel"
682
 
683
+ #: ../classes/upgrade.php:361
684
  msgid ""
685
  "Sorry. Something went wrong during the upgrade process. Please report this "
686
  "on the support forum."
687
+ msgstr "Ursäkta. Något gick fel under uppgraderingen. Vänligen rapportera detta på support forumet. "
688
 
689
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
 
690
  msgid "Media Library"
691
+ msgstr "Mediabibliotek"
692
 
693
  #: ../classes/column/custom-field.php:79
694
  msgid "Post Title (Post ID's)"
696
 
697
  #: ../classes/column/custom-field.php:80
698
  msgid "Username (User ID's)"
699
+ msgstr "Användarnamn (Användar-ID)"
700
 
701
  #: ../classes/column/custom-field.php:81
702
  msgid "Checkmark (true/false)"
703
  msgstr "Checkmark (sant/falskt)"
704
 
705
+ #: ../classes/column/custom-field.php:324
706
  msgid "Select your custom field."
707
+ msgstr "Välj ditt anpassade fält."
708
 
709
+ #: ../classes/column/custom-field.php:334
710
  msgid "No custom fields available."
711
+ msgstr "Inget anpassat fält är tillgängligt."
712
 
713
+ #: ../classes/column/custom-field.php:341
 
714
  msgid "Field Type"
715
+ msgstr "Fälttyp"
716
 
717
+ #: ../classes/column/custom-field.php:341
718
  msgid "This will determine how the value will be displayed."
719
+ msgstr "Detta avgör hur värdet kommer att visas."
720
 
721
+ #: ../classes/column/custom-field.php:384
722
  msgid "Before"
723
+ msgstr "Innan"
724
 
725
+ #: ../classes/column/custom-field.php:384
726
  msgid "This text will appear before the custom field value."
727
+ msgstr "Denna text kommer att visas innan det anpassade fältet värde."
728
 
729
+ #: ../classes/column/custom-field.php:390
730
  msgid "After"
731
+ msgstr "Efter"
732
 
733
+ #: ../classes/column/custom-field.php:390
734
  msgid "This text will appear after the custom field value."
735
+ msgstr "Denna text kommer att visas efter det anpassade fältet värde."
736
 
737
  #: ../classes/column/comment/actions.php:14
738
  #: ../classes/column/link/actions.php:14
797
  msgstr "Författare url"
798
 
799
  #: ../classes/column/comment/author.php:12
 
800
  msgid "Author"
801
+ msgstr "Författare"
802
 
803
  #: ../classes/column/comment/date-gmt.php:12
804
  msgid "Date GMT"
829
  msgid ""
830
  "You are about to delete this link '%s'\n"
831
  " 'Cancel' to stop, 'OK' to delete."
832
+ msgstr "Du är på väg att radera denna länk '%s'\n 'Avbryt' för att avbryta, 'OK' för att radera"
 
 
833
 
834
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
  msgid "Delete"
867
 
868
  #: ../classes/column/media/available-sizes.php:14
869
  msgid "Available Sizes"
870
+ msgstr "Tillgängliga storlekar"
871
 
872
  #: ../classes/column/media/available-sizes.php:37
 
873
  msgid "full size"
874
+ msgstr "full storlek"
875
 
876
  #: ../classes/column/media/caption.php:12
877
  #: ../classes/column/media/exif-data.php:36
884
 
885
  #: ../classes/column/media/exif-data.php:12
886
  msgid "EXIF data"
887
+ msgstr "EXIF data"
888
 
889
  #: ../classes/column/media/exif-data.php:33
890
  msgid "Aperture"
932
 
933
  #: ../classes/column/media/full-path.php:12
934
  msgid "Full path"
935
+ msgstr "Full path"
936
 
937
  #: ../classes/column/media/height.php:12
938
  msgid "Height"
992
 
993
  #: ../classes/column/post/author-name.php:12
994
  msgid "Display Author As"
995
+ msgstr "Visa som författare"
996
 
997
  #: ../classes/column/post/author-name.php:33
998
  msgid "Display Name"
999
+ msgstr "Visa namn"
1000
 
1001
  #: ../classes/column/post/author-name.php:34
 
1002
  msgid "First Name"
1003
  msgstr "Förnamn"
1004
 
1005
  #: ../classes/column/post/author-name.php:35
 
1006
  msgid "Last Name"
1007
  msgstr "Efternamn"
1008
 
1013
 
1014
  #: ../classes/column/post/author-name.php:37
1015
  msgid "User Login"
1016
+ msgstr "Användare Loggin"
1017
 
1018
  #: ../classes/column/post/author-name.php:38
1019
  msgid "User Email"
1020
+ msgstr "Användare Email"
1021
 
1022
  #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1023
  msgid "User ID"
1024
  msgstr "Användar-ID"
1025
 
1026
  #: ../classes/column/post/author-name.php:40
 
1027
  msgid "First and Last Name"
1028
+ msgstr "Förnamn och efternamn"
1029
 
1030
  #: ../classes/column/post/author-name.php:106
1031
  msgid "This is the format of the author name."
1032
+ msgstr "Detta är formatet på författarens namn."
1033
 
1034
  #: ../classes/column/post/before-moretag.php:14
1035
  msgid "Before More Tag"
1036
+ msgstr "Innan mer tagg"
1037
 
1038
  #: ../classes/column/post/comment-count.php:14
1039
  msgid "Comment count"
1041
 
1042
  #: ../classes/column/post/comment-count.php:30
1043
  msgid "Total"
1044
+ msgstr "Totalt"
1045
 
1046
  #: ../classes/column/post/comment-count.php:32
 
1047
  msgid "Pending"
1048
+ msgstr "Avvaktan"
1049
 
1050
  #: ../classes/column/post/comment-count.php:33
1051
  msgid "Spam"
1052
+ msgstr "Spam"
1053
 
1054
  #: ../classes/column/post/comment-count.php:78
1055
  #: ../classes/column/post/comment-status.php:14
1058
 
1059
  #: ../classes/column/post/comment-count.php:78
1060
  msgid "Select which comment status you like to display."
1061
+ msgstr "Välj vilken kommentarsstatus du vill visa."
1062
 
1063
  #: ../classes/column/post/featured-image.php:14
1064
  msgid "Featured Image"
1082
 
1083
  #: ../classes/column/post/parent.php:12
1084
  msgid "Parent"
1085
+ msgstr "Förälder"
1086
 
1087
  #: ../classes/column/post/ping-status.php:14
1088
  msgid "Ping status"
1130
  msgstr "Taxonomi"
1131
 
1132
  #: ../classes/column/user/comment-count.php:14
 
1133
  msgid "Comment Count"
1134
  msgstr "Antal kommentarer"
1135
 
1142
  msgstr "Efternamn"
1143
 
1144
  #: ../classes/column/user/post-count.php:14
 
1145
  msgid "Post Count"
1146
+ msgstr "Inläggsräknare"
1147
 
1148
  #: ../classes/column/user/post-count.php:92
1149
  msgid "Post Type"
1150
+ msgstr "Inläggstyp"
1151
 
1152
  #: ../classes/column/user/registered.php:14
1153
  msgid "Registered"
1163
 
1164
  #: ../classes/storage_model/link.php:13
1165
  msgid "Links"
1166
+ msgstr "Länkar"
1167
 
1168
  #: ../classes/storage_model/user.php:13
 
1169
  msgid "Users"
1170
+ msgstr "Användare"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cpac-zh_CN.mo ADDED
Binary file
languages/cpac-zh_CN.po ADDED
@@ -0,0 +1,1170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # XadillaX <admin@xcoder.in>, 2013
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: Admin Columns\n"
7
+ "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-10-07 13:51+0000\n"
10
+ "Last-Translator: codepress <info@codepress.nl>\n"
11
+ "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/admin-columns/language/zh_CN/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: zh_CN\n"
16
+ "Plural-Forms: nplurals=1; plural=0;\n"
17
+ "X-Generator: Poedit 1.5.7\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPath-1: ..\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
+
24
+ #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
+ msgid "Settings"
26
+ msgstr "设置"
27
+
28
+ #: ../codepress-admin-columns.php:350
29
+ msgid "Edit columns"
30
+ msgstr "编辑列"
31
+
32
+ #: ../classes/column.php:479
33
+ msgid "Thumbnail"
34
+ msgstr "缩略图"
35
+
36
+ #: ../classes/column.php:480
37
+ msgid "Medium"
38
+ msgstr "中等大小"
39
+
40
+ #: ../classes/column.php:481
41
+ msgid "Large"
42
+ msgstr "大尺寸"
43
+
44
+ #: ../classes/column.php:482
45
+ msgid "Full"
46
+ msgstr "原始大小"
47
+
48
+ #: ../classes/column.php:774
49
+ msgid "Date Format"
50
+ msgstr "日期格式"
51
+
52
+ #: ../classes/column.php:775
53
+ msgid "This will determine how the date will be displayed."
54
+ msgstr "用来决定如何显示日期"
55
+
56
+ #: ../classes/column.php:781
57
+ msgid "Example:"
58
+ msgstr "例如:"
59
+
60
+ #: ../classes/column.php:783
61
+ #, php-format
62
+ msgid ""
63
+ "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
+ "date format here</a>."
65
+ msgstr "留空将使用WordPress日期格式,你可以在 <a href=\"%s\">这里</a> 修改默认的日期格式。"
66
+
67
+ #: ../classes/column.php:784
68
+ msgid "Documentation on date and time formatting."
69
+ msgstr "日期和时间格式的文档。"
70
+
71
+ #: ../classes/column.php:801
72
+ msgid "Excerpt length"
73
+ msgstr "摘要长度"
74
+
75
+ #: ../classes/column.php:802
76
+ msgid "Number of words"
77
+ msgstr "字数"
78
+
79
+ #: ../classes/column.php:824
80
+ msgid "Preview size"
81
+ msgstr "预览大小"
82
+
83
+ #: ../classes/column.php:841 ../classes/column.php:897
84
+ msgid "Custom"
85
+ msgstr "自定义"
86
+
87
+ #: ../classes/column.php:844
88
+ msgid "width"
89
+ msgstr "宽度"
90
+
91
+ #: ../classes/column.php:847
92
+ msgid "height"
93
+ msgstr "高度"
94
+
95
+ #: ../classes/column.php:898 ../classes/settings.php:224
96
+ #: ../classes/column/custom-field.php:72
97
+ msgid "Default"
98
+ msgstr "默认"
99
+
100
+ #: ../classes/column.php:923 ../classes/column.php:984
101
+ #: ../classes/column/user/actions.php:65
102
+ msgid "Remove"
103
+ msgstr "删除"
104
+
105
+ #: ../classes/column.php:942
106
+ msgid "Type"
107
+ msgstr "类型"
108
+
109
+ #: ../classes/column.php:942
110
+ msgid "Choose a column type."
111
+ msgstr "选择一个列类型。"
112
+
113
+ #: ../classes/column.php:952
114
+ msgid "Label"
115
+ msgstr "标签"
116
+
117
+ #: ../classes/column.php:952
118
+ msgid "This is the name which will appear as the column header."
119
+ msgstr "该名称将显示为列标题。"
120
+
121
+ #: ../classes/column.php:959 ../classes/column/media/width.php:12
122
+ msgid "Width"
123
+ msgstr "宽度"
124
+
125
+ #: ../classes/column.php:961 ../classes/column.php:962
126
+ msgid "default"
127
+ msgstr "默认"
128
+
129
+ #: ../classes/settings.php:68
130
+ msgid "Admin Columns Settings"
131
+ msgstr "Admin Columns 设置"
132
+
133
+ #: ../classes/settings.php:68 ../classes/settings.php:534
134
+ #: ../classes/upgrade.php:89
135
+ msgid "Admin Columns"
136
+ msgstr "Admin Columns"
137
+
138
+ #: ../classes/settings.php:129
139
+ #, php-format
140
+ msgid "%s column is already present and can not be duplicated."
141
+ msgstr "%s 这个列已经存在,不能被复制。"
142
+
143
+ #: ../classes/settings.php:184
144
+ msgid "Default settings succesfully restored."
145
+ msgstr "已成功恢复默认设置。"
146
+
147
+ #: ../classes/settings.php:202 ../classes/settings.php:457
148
+ msgid "Overview"
149
+ msgstr "预览"
150
+
151
+ #: ../classes/settings.php:205
152
+ msgid ""
153
+ "This plugin is for adding and removing additional columns to the "
154
+ "administration screens for post(types), pages, media library, comments, "
155
+ "links and users. Change the column's label and reorder them."
156
+ msgstr "该插件用来从管理界面中添加或移除额外的列,比如文章(自定义文章类型)、页面、媒体库、评论、链接和用户的管理界面。修改列的标题和重新排序它们。"
157
+
158
+ #: ../classes/settings.php:208
159
+ msgid "Basics"
160
+ msgstr "基础"
161
+
162
+ #: ../classes/settings.php:210
163
+ msgid "Change order"
164
+ msgstr "更改排序"
165
+
166
+ #: ../classes/settings.php:211
167
+ msgid ""
168
+ "By dragging the columns you can change the order which they will appear in."
169
+ msgstr "拖动排序这些列,你可以重新排列它们显示的顺序。"
170
+
171
+ #: ../classes/settings.php:212
172
+ msgid "Change label"
173
+ msgstr "更改标签"
174
+
175
+ #: ../classes/settings.php:213
176
+ msgid ""
177
+ "By clicking on the triangle you will see the column options. Here you can "
178
+ "change each label of the columns heading."
179
+ msgstr "点击三角形,你会看到列的选项。在这里,你可以改变每个标签的列标题栏。"
180
+
181
+ #: ../classes/settings.php:214
182
+ msgid "Change column width"
183
+ msgstr "更改列宽"
184
+
185
+ #: ../classes/settings.php:215
186
+ msgid ""
187
+ "By clicking on the triangle you will see the column options. By using the "
188
+ "draggable slider you can set the width of the columns in percentages."
189
+ msgstr "点击三角形,你会看到列的选项。你可以通过拖动滑块设置列的百分比宽度。"
190
+
191
+ #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
+ #: ../classes/column/custom-field.php:324
193
+ msgid "Custom Field"
194
+ msgstr "自定义字段"
195
+
196
+ #: ../classes/settings.php:221
197
+ msgid "'Custom Field' column"
198
+ msgstr "“自定义字段”列"
199
+
200
+ #: ../classes/settings.php:222
201
+ msgid ""
202
+ "The custom field colum uses the custom fields from posts and users. There "
203
+ "are 10 types which you can set."
204
+ msgstr "自定义字段列使用文章和用户的自定义字段,你可以设置10中类型。"
205
+
206
+ #: ../classes/settings.php:224
207
+ msgid ""
208
+ "Value: Can be either a string or array. Arrays will be flattened and values "
209
+ "are seperated by a ',' comma."
210
+ msgstr "值:可以是一个字符串或数组。数组将被压平(Arrays will be flattened),值之间用逗号“,”隔开。"
211
+
212
+ #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
+ #: ../classes/column/link/image.php:12
214
+ msgid "Image"
215
+ msgstr "图像"
216
+
217
+ #: ../classes/settings.php:225
218
+ msgid ""
219
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
+ "comma )."
221
+ msgstr "值:应该包括一个图像URL或附件ID(使用逗号“,”隔开)"
222
+
223
+ #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
+ #: ../classes/column/comment/excerpt.php:13
225
+ #: ../classes/column/post/excerpt.php:13
226
+ msgid "Excerpt"
227
+ msgstr "摘要"
228
+
229
+ #: ../classes/settings.php:226
230
+ msgid "Value: This will show the first 20 words of the Post content."
231
+ msgstr "值:将显示文章内容的前 20 个字。"
232
+
233
+ #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
234
+ msgid "Multiple Values"
235
+ msgstr "多个值"
236
+
237
+ #: ../classes/settings.php:227
238
+ msgid ""
239
+ "Value: should be an array. This will flatten any ( multi dimensional ) "
240
+ "array."
241
+ msgstr "值:应该是一个数组。这将被压平(多维)数组"
242
+
243
+ #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
244
+ msgid "Numeric"
245
+ msgstr "数字"
246
+
247
+ #: ../classes/settings.php:228
248
+ msgid ""
249
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
+ "for sorting, so you can sort your posts on numeric (custom field) values."
251
+ msgstr "值:只能是数字。<br/>如果你安装了“排序扩展”,这将用于排序,所以你可以通过这个数字(自定义字段)值来排序文章。"
252
+
253
+ #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
+ #: ../classes/column/comment/date.php:12
255
+ msgid "Date"
256
+ msgstr "日期"
257
+
258
+ #: ../classes/settings.php:229
259
+ #, php-format
260
+ msgid ""
261
+ "Value: Can be unix time stamp or a date format as described in the <a "
262
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
+ "href='%s'>general settings</a> page."
264
+ msgstr "值:可以是 Unix 时间戳或<a href='%s'>规则</a>中描述的一种日期格式。你可以在 <a href='%s'>常规设置</a> 页面修改输出的日期格式。"
265
+
266
+ #: ../classes/settings.php:230
267
+ msgid "Post Titles"
268
+ msgstr "文章标题"
269
+
270
+ #: ../classes/settings.php:230
271
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
272
+ msgstr "值:可以是一个或多个文章ID(使用逗号“,”隔开)"
273
+
274
+ #: ../classes/settings.php:231
275
+ msgid "Usernames"
276
+ msgstr "用户名"
277
+
278
+ #: ../classes/settings.php:231
279
+ msgid "Value: can be one or more User ID's (seperated by ',')."
280
+ msgstr "值:可以是一个或多个用户ID(使用逗号“,”隔开)"
281
+
282
+ #: ../classes/settings.php:232
283
+ msgid "Checkmark"
284
+ msgstr "判断"
285
+
286
+ #: ../classes/settings.php:232
287
+ msgid "Value: should be a 1 (one) or 0 (zero)."
288
+ msgstr "值:应该是 1 (一)或 0 (零)"
289
+
290
+ #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
291
+ msgid "Color"
292
+ msgstr "颜色"
293
+
294
+ #: ../classes/settings.php:233
295
+ msgid "Value: hex value color, such as #808080."
296
+ msgstr "值:十六进制值的颜色,如#808080。"
297
+
298
+ #: ../classes/settings.php:377
299
+ msgid "Welcome to Admin Columns"
300
+ msgstr "欢迎使用Admin Columns插件。"
301
+
302
+ #: ../classes/settings.php:380
303
+ msgid "Thank you for updating to the latest version!"
304
+ msgstr "感谢您更新到最新版本!"
305
+
306
+ #: ../classes/settings.php:381
307
+ msgid ""
308
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
+ "like it."
310
+ msgstr "Admin Columns插件比以往任何时候都更加精致,愉快。我们希望你喜欢它。"
311
+
312
+ #: ../classes/settings.php:386
313
+ msgid "What’s New"
314
+ msgstr "最近更新"
315
+
316
+ #: ../classes/settings.php:387
317
+ msgid "Changelog"
318
+ msgstr "更新记录"
319
+
320
+ #: ../classes/settings.php:389
321
+ msgid "Download Addons"
322
+ msgstr "下载扩展"
323
+
324
+ #: ../classes/settings.php:395
325
+ msgid "Addons"
326
+ msgstr "扩展"
327
+
328
+ #: ../classes/settings.php:397
329
+ msgid ""
330
+ "Addons are now activated by downloading and installing individual plugins. "
331
+ "Although these plugins will not be hosted on the wordpress.org repository, "
332
+ "each Add-on will continue to receive updates in the usual way."
333
+ msgstr "通过下载和安装插件可以启用扩展。尽管这些扩展插件不再托管于 wordpress.org,但是它们都可以通过通常的方式获得更新。"
334
+
335
+ #: ../classes/settings.php:400
336
+ msgid ""
337
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
338
+ msgstr "该网站使用了排序扩展,该扩展需要下载。"
339
+
340
+ #: ../classes/settings.php:403
341
+ msgid "Addons are seperate plugins which need to be downloaded."
342
+ msgstr "扩展是需要下载的单独插件。"
343
+
344
+ #: ../classes/settings.php:403
345
+ msgid "Download your Addons"
346
+ msgstr "下载你的扩展"
347
+
348
+ #: ../classes/settings.php:409
349
+ msgid "This website does not use add-ons"
350
+ msgstr "该网站没有使用扩展"
351
+
352
+ #: ../classes/settings.php:409
353
+ msgid "See our website for the Pro-addon."
354
+ msgstr "访问我们的网站了解收费扩展"
355
+
356
+ #: ../classes/settings.php:416
357
+ msgid "Important"
358
+ msgstr "重要"
359
+
360
+ #: ../classes/settings.php:418
361
+ msgid "Database Changes"
362
+ msgstr "数据库更改"
363
+
364
+ #: ../classes/settings.php:419
365
+ msgid ""
366
+ "The database has been changed between versions 1 and 2. But we made sure you"
367
+ " can still roll back to version 1x without any issues."
368
+ msgstr "该数据库已在版本1和2之间进行了更改。但我们确信你仍然可以回滚到版本1x,这是没有任何问题的。"
369
+
370
+ #: ../classes/settings.php:422
371
+ msgid "Make sure you backup your database and then click"
372
+ msgstr "确保你已经备份了数据库,然后点击"
373
+
374
+ #: ../classes/settings.php:422 ../classes/upgrade.php:97
375
+ msgid "Upgrade Database"
376
+ msgstr "升级数据库"
377
+
378
+ #: ../classes/settings.php:425
379
+ msgid "Potential Issues"
380
+ msgstr "潜在问题"
381
+
382
+ #: ../classes/settings.php:426
383
+ msgid ""
384
+ "Do to the sizable refactoring the code, surounding Addons and "
385
+ "action/filters, your website may not operate correctly. It is important that"
386
+ " you read the full"
387
+ msgstr "做了相当大的代码重构,包括扩展和各类钩子,你的网站可能无法正常工作。强烈建议你阅读完整的 "
388
+
389
+ #: ../classes/settings.php:426
390
+ msgid "Migrating from v1 to v2"
391
+ msgstr "从 v1 迁移到 v2"
392
+
393
+ #: ../classes/settings.php:426
394
+ msgid "guide to view the full list of changes."
395
+ msgstr "引导查看完整的更改列表。"
396
+
397
+ #: ../classes/settings.php:426
398
+ #, php-format
399
+ msgid ""
400
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
+ "can fix it in the next release."
402
+ msgstr "当你发现了 bug,请 <a href=\"%s\">反馈给我们</a>,以便我们在下个版本进行修复。"
403
+
404
+ #: ../classes/settings.php:429
405
+ msgid "Important!"
406
+ msgstr "重要!"
407
+
408
+ #: ../classes/settings.php:429
409
+ msgid ""
410
+ "If you updated the Admin Columns plugin without prior knowledge of such "
411
+ "changes, Please roll back to the latest"
412
+ msgstr "如果你更新了 Admin Columns 插件没有另行通知这些变更,请回滚到最新版本"
413
+
414
+ #: ../classes/settings.php:429
415
+ msgid "version 1"
416
+ msgstr "版本 1"
417
+
418
+ #: ../classes/settings.php:429
419
+ msgid "of this plugin."
420
+ msgstr "这个插件。"
421
+
422
+ #: ../classes/settings.php:435
423
+ msgid "Changelog for"
424
+ msgstr "更新记录 for"
425
+
426
+ #: ../classes/settings.php:450
427
+ msgid "Learn more"
428
+ msgstr "了解更多"
429
+
430
+ #: ../classes/settings.php:459
431
+ msgid ""
432
+ "New to v2, all Addons act as separate plugins which need to be individually "
433
+ "downloaded, installed and updated."
434
+ msgstr "版本v2以后,所有扩展将作为单独的插件,需要单独下载,安装和更新。"
435
+
436
+ #: ../classes/settings.php:460
437
+ msgid ""
438
+ "This page will assist you in downloading and installing each available "
439
+ "Addon."
440
+ msgstr "该页面将帮助您下载和安装每个可用的扩展。"
441
+
442
+ #: ../classes/settings.php:461
443
+ msgid "Available Addons"
444
+ msgstr "可用扩展"
445
+
446
+ #: ../classes/settings.php:466
447
+ msgid "Name"
448
+ msgstr "名称"
449
+
450
+ #: ../classes/settings.php:467 ../classes/settings.php:475
451
+ msgid "Download"
452
+ msgstr "下载"
453
+
454
+ #: ../classes/settings.php:473
455
+ msgid "Pro Add-on (includes Sortorder add-on)"
456
+ msgstr "收费扩展(包括排序扩展)"
457
+
458
+ #: ../classes/settings.php:483
459
+ msgid "Installation"
460
+ msgstr "安装"
461
+
462
+ #: ../classes/settings.php:485
463
+ msgid "For each Add-on available, please perform the following:"
464
+ msgstr "要使扩展可用,请执行以下操作:"
465
+
466
+ #: ../classes/settings.php:487
467
+ msgid "Download the Addon plugin (.zip file) to your desktop"
468
+ msgstr "下载扩展插件(.zip文件)到你的桌面"
469
+
470
+ #: ../classes/settings.php:488
471
+ msgid "Navigate to"
472
+ msgstr "访问 "
473
+
474
+ #: ../classes/settings.php:488
475
+ msgid "Plugins > Add New > Upload"
476
+ msgstr "插件 > 安装插件 > 上传"
477
+
478
+ #: ../classes/settings.php:489
479
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
480
+ msgstr "使用浏览上传,选择和安装你的扩展(.zip文件)"
481
+
482
+ #: ../classes/settings.php:490
483
+ msgid ""
484
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
+ " link"
486
+ msgstr "一旦插件已经上传和安装,点击“启用插件”链接。"
487
+
488
+ #: ../classes/settings.php:491
489
+ msgid "The Add-on is now installed and activated!"
490
+ msgstr "扩展已安装并启用!"
491
+
492
+ #: ../classes/settings.php:492
493
+ #, php-format
494
+ msgid ""
495
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
496
+ msgstr "要想自动更新,请确保 <a href='%s'>填写你的许可密钥</a>"
497
+
498
+ #: ../classes/settings.php:502
499
+ msgid "Start using Admin Columns"
500
+ msgstr "开始使用Admin Columns"
501
+
502
+ #: ../classes/settings.php:580
503
+ msgid "Store settings"
504
+ msgstr "保存设置"
505
+
506
+ #: ../classes/settings.php:585
507
+ msgid "Update"
508
+ msgstr "更新"
509
+
510
+ #: ../classes/settings.php:585
511
+ msgid "Publish"
512
+ msgstr "发布"
513
+
514
+ #: ../classes/settings.php:589
515
+ #, php-format
516
+ msgid ""
517
+ "Warning! The %s columns data will be deleted. This cannot be undone. "
518
+ "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
+ msgstr "警告!%s 列的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将停止。"
520
+
521
+ #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
+ #: ../classes/column/post/actions.php:53
523
+ msgid "Restore"
524
+ msgstr "恢复"
525
+
526
+ #: ../classes/settings.php:590
527
+ msgid "columns"
528
+ msgstr "列"
529
+
530
+ #: ../classes/settings.php:600
531
+ msgid "Get the Pro Add-on"
532
+ msgstr "获取收费扩展"
533
+
534
+ #: ../classes/settings.php:604
535
+ msgid "Add Sorting"
536
+ msgstr "添加排序"
537
+
538
+ #: ../classes/settings.php:605
539
+ msgid "Add Filtering"
540
+ msgstr "添加过滤器"
541
+
542
+ #: ../classes/settings.php:606
543
+ msgid "Add Import/Export"
544
+ msgstr "添加 导入/导出"
545
+
546
+ #: ../classes/settings.php:609
547
+ #, php-format
548
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
549
+ msgstr "查看 <a href=\"%s\">收费扩展</a> 了解更多详情!"
550
+
551
+ #: ../classes/settings.php:617
552
+ msgid "Support"
553
+ msgstr "支持"
554
+
555
+ #: ../classes/settings.php:620
556
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
557
+ msgstr "查看右上角的 <strong>帮助</strong>"
558
+
559
+ #: ../classes/settings.php:622
560
+ #, php-format
561
+ msgid ""
562
+ "For full documentation, bug reports, feature suggestions and other tips <a "
563
+ "href='%s'>visit the Admin Columns website</a>"
564
+ msgstr "<a href='%s'>访问官方网站</a> 获取帮助文档,反馈Bug,提交建议和其他技巧。</p><p>本插件由 <a href=\"http://www.wpdaxue.com\" title=\"优秀的WordPress建站资源平台\" target=\"_blank\">WordPress大学</a> 提供简体中文支持。"
565
+
566
+ #: ../classes/settings.php:642
567
+ msgid "Drag and drop to reorder"
568
+ msgstr "拖动排序"
569
+
570
+ #: ../classes/settings.php:645
571
+ msgid "Add Column"
572
+ msgstr "添加列"
573
+
574
+ #: ../classes/settings.php:696
575
+ msgid "General Settings"
576
+ msgstr "常规设置"
577
+
578
+ #: ../classes/settings.php:697
579
+ msgid "Customize your Admin Columns settings."
580
+ msgstr "自定义Admin Columns的设置"
581
+
582
+ #: ../classes/settings.php:710
583
+ msgid "Show hidden custom fields. Default is <code>off</code>."
584
+ msgstr "显示隐藏的自定义字段,默认为<code>不显示</code>"
585
+
586
+ #: ../classes/settings.php:716
587
+ msgid ""
588
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
589
+ msgstr "在管理界面显示“编辑列”按钮,默认为<code>不显示</code>"
590
+
591
+ #: ../classes/settings.php:723
592
+ msgid "Save"
593
+ msgstr "保存"
594
+
595
+ #: ../classes/settings.php:763
596
+ msgid "Restore Settings"
597
+ msgstr "恢复设置"
598
+
599
+ #: ../classes/settings.php:764
600
+ msgid "This will delete all column settings and restore the default settings."
601
+ msgstr "这将删除所有列的设置和恢复到默认设置。"
602
+
603
+ #: ../classes/settings.php:770
604
+ msgid "Restore default settings"
605
+ msgstr "恢复默认设置"
606
+
607
+ #: ../classes/settings.php:770
608
+ msgid ""
609
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
+ msgstr "警告!所有Admin Columns的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将停止。"
612
+
613
+ #: ../classes/storage_model.php:167
614
+ msgid "settings succesfully restored."
615
+ msgstr "设置已成功恢复!"
616
+
617
+ #: ../classes/storage_model.php:181
618
+ msgid "No columns settings available."
619
+ msgstr "没有可用的列设置。"
620
+
621
+ #: ../classes/storage_model.php:204
622
+ #, php-format
623
+ msgid "You are trying to store the same settings for %s."
624
+ msgstr "你正在尝试为 %s 保存同样设置"
625
+
626
+ #: ../classes/storage_model.php:208
627
+ #, php-format
628
+ msgid "Settings for %s updated succesfully."
629
+ msgstr "%s 的设置已保存!"
630
+
631
+ #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
632
+ msgid "View"
633
+ msgstr "查看"
634
+
635
+ #: ../classes/upgrade.php:45
636
+ msgid "Upgrade"
637
+ msgstr "升级"
638
+
639
+ #: ../classes/upgrade.php:90
640
+ msgid "requires a database upgrade"
641
+ msgstr "需要升级数据库"
642
+
643
+ #: ../classes/upgrade.php:93
644
+ msgid "why?"
645
+ msgstr "为什么?"
646
+
647
+ #: ../classes/upgrade.php:94
648
+ msgid "Please"
649
+ msgstr "请"
650
+
651
+ #: ../classes/upgrade.php:95
652
+ msgid "backup your database"
653
+ msgstr "备份数据库"
654
+
655
+ #: ../classes/upgrade.php:96
656
+ msgid "then click"
657
+ msgstr "然后点击"
658
+
659
+ #: ../classes/upgrade.php:304
660
+ msgid "Migrating Column Settings"
661
+ msgstr "迁移列设置"
662
+
663
+ #: ../classes/upgrade.php:340
664
+ msgid "No Upgrade Required"
665
+ msgstr "无需升级"
666
+
667
+ #: ../classes/upgrade.php:341
668
+ msgid "Return to welcome screen."
669
+ msgstr "返回欢迎界面"
670
+
671
+ #: ../classes/upgrade.php:359
672
+ msgid "Upgrade Complete!"
673
+ msgstr "升级完成!"
674
+
675
+ #: ../classes/upgrade.php:359
676
+ msgid "Return to settings."
677
+ msgstr "返回设置。"
678
+
679
+ #: ../classes/upgrade.php:360
680
+ msgid "Error"
681
+ msgstr "错误"
682
+
683
+ #: ../classes/upgrade.php:361
684
+ msgid ""
685
+ "Sorry. Something went wrong during the upgrade process. Please report this "
686
+ "on the support forum."
687
+ msgstr "抱歉,升级过程中出错了,请在论坛中反馈。"
688
+
689
+ #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
690
+ msgid "Media Library"
691
+ msgstr "媒体库"
692
+
693
+ #: ../classes/column/custom-field.php:79
694
+ msgid "Post Title (Post ID's)"
695
+ msgstr "文章标题(文章ID)"
696
+
697
+ #: ../classes/column/custom-field.php:80
698
+ msgid "Username (User ID's)"
699
+ msgstr "用户名(用户ID)"
700
+
701
+ #: ../classes/column/custom-field.php:81
702
+ msgid "Checkmark (true/false)"
703
+ msgstr "判断(true/false)"
704
+
705
+ #: ../classes/column/custom-field.php:324
706
+ msgid "Select your custom field."
707
+ msgstr "选择自定义字段"
708
+
709
+ #: ../classes/column/custom-field.php:334
710
+ msgid "No custom fields available."
711
+ msgstr "没有可用的自定义字段"
712
+
713
+ #: ../classes/column/custom-field.php:341
714
+ msgid "Field Type"
715
+ msgstr "字段类型"
716
+
717
+ #: ../classes/column/custom-field.php:341
718
+ msgid "This will determine how the value will be displayed."
719
+ msgstr "用来确定如何显示值"
720
+
721
+ #: ../classes/column/custom-field.php:384
722
+ msgid "Before"
723
+ msgstr "前"
724
+
725
+ #: ../classes/column/custom-field.php:384
726
+ msgid "This text will appear before the custom field value."
727
+ msgstr "该文本将显示在自定义字段的值的前面"
728
+
729
+ #: ../classes/column/custom-field.php:390
730
+ msgid "After"
731
+ msgstr "后"
732
+
733
+ #: ../classes/column/custom-field.php:390
734
+ msgid "This text will appear after the custom field value."
735
+ msgstr "该文本将显示在自定义字段的值的后面"
736
+
737
+ #: ../classes/column/comment/actions.php:14
738
+ #: ../classes/column/link/actions.php:14
739
+ #: ../classes/column/media/actions.php:14
740
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
741
+ msgid "Actions"
742
+ msgstr "操作"
743
+
744
+ #: ../classes/column/comment/actions.php:73
745
+ #: ../classes/column/comment/actions.php:78
746
+ msgid "Unapprove"
747
+ msgstr "驳回"
748
+
749
+ #: ../classes/column/comment/actions.php:75
750
+ #: ../classes/column/comment/actions.php:77
751
+ msgid "Approve"
752
+ msgstr "通过"
753
+
754
+ #: ../classes/column/comment/actions.php:90
755
+ #: ../classes/column/post/actions.php:57
756
+ msgid "Delete Permanently"
757
+ msgstr "永久删除"
758
+
759
+ #: ../classes/column/comment/actions.php:96
760
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
761
+ #: ../classes/column/user/actions.php:57
762
+ msgid "Edit"
763
+ msgstr "编辑"
764
+
765
+ #: ../classes/column/comment/actions.php:97
766
+ #: ../classes/column/post/actions.php:49
767
+ msgid "Quick&nbsp;Edit"
768
+ msgstr "Quick&nbsp;Edit"
769
+
770
+ #: ../classes/column/comment/actions.php:98
771
+ msgid "Reply"
772
+ msgstr "回复"
773
+
774
+ #: ../classes/column/comment/agent.php:12
775
+ msgid "Agent"
776
+ msgstr "代理(Agent)"
777
+
778
+ #: ../classes/column/comment/approved.php:12
779
+ #: ../classes/column/post/comment-count.php:31
780
+ msgid "Approved"
781
+ msgstr "已通过"
782
+
783
+ #: ../classes/column/comment/author-avatar.php:12
784
+ msgid "Avatar"
785
+ msgstr "头像"
786
+
787
+ #: ../classes/column/comment/author-email.php:12
788
+ msgid "Author email"
789
+ msgstr "作者邮箱"
790
+
791
+ #: ../classes/column/comment/author-ip.php:12
792
+ msgid "Author IP"
793
+ msgstr "作者IP"
794
+
795
+ #: ../classes/column/comment/author-url.php:12
796
+ msgid "Author url"
797
+ msgstr "作者url"
798
+
799
+ #: ../classes/column/comment/author.php:12
800
+ msgid "Author"
801
+ msgstr "作者"
802
+
803
+ #: ../classes/column/comment/date-gmt.php:12
804
+ msgid "Date GMT"
805
+ msgstr "日期GMT"
806
+
807
+ #: ../classes/column/comment/date-gmt.php:25
808
+ #: ../classes/column/comment/date.php:25
809
+ #, php-format
810
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
811
+ msgstr "提交于 <a href=\"%1$s\">%2$s at %3$s</a>"
812
+
813
+ #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
814
+ #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
815
+ msgid "ID"
816
+ msgstr "ID"
817
+
818
+ #: ../classes/column/comment/reply-to.php:12
819
+ msgid "In Reply To"
820
+ msgstr "回应给"
821
+
822
+ #: ../classes/column/comment/word-count.php:12
823
+ #: ../classes/column/post/word-count.php:12
824
+ msgid "Word count"
825
+ msgstr "字数"
826
+
827
+ #: ../classes/column/link/actions.php:46
828
+ #, php-format
829
+ msgid ""
830
+ "You are about to delete this link '%s'\n"
831
+ " 'Cancel' to stop, 'OK' to delete."
832
+ msgstr "你将要删除这个链接“%s”\n“取消”将停止,“确定”将删除。"
833
+
834
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
+ msgid "Delete"
836
+ msgstr "删除"
837
+
838
+ #: ../classes/column/link/description.php:12
839
+ #: ../classes/column/media/description.php:12
840
+ #: ../classes/column/user/description.php:14
841
+ msgid "Description"
842
+ msgstr "描述"
843
+
844
+ #: ../classes/column/link/length.php:12
845
+ msgid "Length"
846
+ msgstr "长度"
847
+
848
+ #: ../classes/column/link/notes.php:13
849
+ msgid "Notes"
850
+ msgstr "笔记"
851
+
852
+ #: ../classes/column/link/owner.php:12
853
+ msgid "Owner"
854
+ msgstr "所有者"
855
+
856
+ #: ../classes/column/link/rss.php:12
857
+ msgid "Rss"
858
+ msgstr "Rss"
859
+
860
+ #: ../classes/column/link/target.php:12
861
+ msgid "Target"
862
+ msgstr "Target"
863
+
864
+ #: ../classes/column/media/alternate-text.php:12
865
+ msgid "Alt"
866
+ msgstr "Alt"
867
+
868
+ #: ../classes/column/media/available-sizes.php:14
869
+ msgid "Available Sizes"
870
+ msgstr "可用尺寸"
871
+
872
+ #: ../classes/column/media/available-sizes.php:37
873
+ msgid "full size"
874
+ msgstr "全尺寸"
875
+
876
+ #: ../classes/column/media/caption.php:12
877
+ #: ../classes/column/media/exif-data.php:36
878
+ msgid "Caption"
879
+ msgstr "标题"
880
+
881
+ #: ../classes/column/media/dimensions.php:12
882
+ msgid "Dimensions"
883
+ msgstr "尺寸"
884
+
885
+ #: ../classes/column/media/exif-data.php:12
886
+ msgid "EXIF data"
887
+ msgstr "EXIF数据"
888
+
889
+ #: ../classes/column/media/exif-data.php:33
890
+ msgid "Aperture"
891
+ msgstr "光圈"
892
+
893
+ #: ../classes/column/media/exif-data.php:34
894
+ msgid "Credit"
895
+ msgstr "信用"
896
+
897
+ #: ../classes/column/media/exif-data.php:35
898
+ msgid "Camera"
899
+ msgstr "相机"
900
+
901
+ #: ../classes/column/media/exif-data.php:37
902
+ msgid "Timestamp"
903
+ msgstr "时间戳"
904
+
905
+ #: ../classes/column/media/exif-data.php:38
906
+ msgid "Copyright EXIF"
907
+ msgstr "版权EXIF"
908
+
909
+ #: ../classes/column/media/exif-data.php:39
910
+ msgid "Focal Length"
911
+ msgstr "焦距"
912
+
913
+ #: ../classes/column/media/exif-data.php:40
914
+ msgid "ISO"
915
+ msgstr "ISO"
916
+
917
+ #: ../classes/column/media/exif-data.php:41
918
+ msgid "Shutter Speed"
919
+ msgstr "快门速度"
920
+
921
+ #: ../classes/column/media/exif-data.php:42
922
+ msgid "Title"
923
+ msgstr "标题"
924
+
925
+ #: ../classes/column/media/file-name.php:12
926
+ msgid "File name"
927
+ msgstr "名字"
928
+
929
+ #: ../classes/column/media/file-size.php:12
930
+ msgid "File size"
931
+ msgstr "文件大小"
932
+
933
+ #: ../classes/column/media/full-path.php:12
934
+ msgid "Full path"
935
+ msgstr "完整路径"
936
+
937
+ #: ../classes/column/media/height.php:12
938
+ msgid "Height"
939
+ msgstr "高度"
940
+
941
+ #: ../classes/column/media/mime-type.php:12
942
+ msgid "Mime type"
943
+ msgstr "Mime类型"
944
+
945
+ #: ../classes/column/post/actions.php:48
946
+ msgid "Edit this item"
947
+ msgstr "编辑该项目"
948
+
949
+ #: ../classes/column/post/actions.php:49
950
+ msgid "Edit this item inline"
951
+ msgstr "编辑该项目的联"
952
+
953
+ #: ../classes/column/post/actions.php:53
954
+ msgid "Restore this item from the Trash"
955
+ msgstr "从回收站中还原"
956
+
957
+ #: ../classes/column/post/actions.php:55
958
+ msgid "Move this item to the Trash"
959
+ msgstr "移至回收站"
960
+
961
+ #: ../classes/column/post/actions.php:55
962
+ #: ../classes/column/post/comment-count.php:34
963
+ #: ../classes/column/post/status.php:35
964
+ msgid "Trash"
965
+ msgstr "回收站"
966
+
967
+ #: ../classes/column/post/actions.php:57
968
+ msgid "Delete this item permanently"
969
+ msgstr "永久删除改项目"
970
+
971
+ #: ../classes/column/post/actions.php:62
972
+ #, php-format
973
+ msgid "Preview &#8220;%s&#8221;"
974
+ msgstr "预览 &#8220;%s&#8221;"
975
+
976
+ #: ../classes/column/post/actions.php:62
977
+ msgid "Preview"
978
+ msgstr "预览"
979
+
980
+ #: ../classes/column/post/actions.php:64
981
+ #, php-format
982
+ msgid "View &#8220;%s&#8221;"
983
+ msgstr "查看 &#8220;%s&#8221;"
984
+
985
+ #: ../classes/column/post/attachment-count.php:12
986
+ msgid "No. of Attachments"
987
+ msgstr "附件数量"
988
+
989
+ #: ../classes/column/post/attachment.php:12
990
+ msgid "Attachment"
991
+ msgstr "附件"
992
+
993
+ #: ../classes/column/post/author-name.php:12
994
+ msgid "Display Author As"
995
+ msgstr "显示作者为"
996
+
997
+ #: ../classes/column/post/author-name.php:33
998
+ msgid "Display Name"
999
+ msgstr "公开显示为"
1000
+
1001
+ #: ../classes/column/post/author-name.php:34
1002
+ msgid "First Name"
1003
+ msgstr "名字"
1004
+
1005
+ #: ../classes/column/post/author-name.php:35
1006
+ msgid "Last Name"
1007
+ msgstr "姓氏"
1008
+
1009
+ #: ../classes/column/post/author-name.php:36
1010
+ #: ../classes/column/user/nickname.php:14
1011
+ msgid "Nickname"
1012
+ msgstr "昵称"
1013
+
1014
+ #: ../classes/column/post/author-name.php:37
1015
+ msgid "User Login"
1016
+ msgstr "用户名"
1017
+
1018
+ #: ../classes/column/post/author-name.php:38
1019
+ msgid "User Email"
1020
+ msgstr "用户邮箱"
1021
+
1022
+ #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1023
+ msgid "User ID"
1024
+ msgstr "用户ID"
1025
+
1026
+ #: ../classes/column/post/author-name.php:40
1027
+ msgid "First and Last Name"
1028
+ msgstr "姓名"
1029
+
1030
+ #: ../classes/column/post/author-name.php:106
1031
+ msgid "This is the format of the author name."
1032
+ msgstr "作者名字的格式"
1033
+
1034
+ #: ../classes/column/post/before-moretag.php:14
1035
+ msgid "Before More Tag"
1036
+ msgstr "More标签前"
1037
+
1038
+ #: ../classes/column/post/comment-count.php:14
1039
+ msgid "Comment count"
1040
+ msgstr "评论数量"
1041
+
1042
+ #: ../classes/column/post/comment-count.php:30
1043
+ msgid "Total"
1044
+ msgstr "所有"
1045
+
1046
+ #: ../classes/column/post/comment-count.php:32
1047
+ msgid "Pending"
1048
+ msgstr "待审"
1049
+
1050
+ #: ../classes/column/post/comment-count.php:33
1051
+ msgid "Spam"
1052
+ msgstr "垃圾评论"
1053
+
1054
+ #: ../classes/column/post/comment-count.php:78
1055
+ #: ../classes/column/post/comment-status.php:14
1056
+ msgid "Comment status"
1057
+ msgstr "评论状态"
1058
+
1059
+ #: ../classes/column/post/comment-count.php:78
1060
+ msgid "Select which comment status you like to display."
1061
+ msgstr "选择你要显示的评论状态"
1062
+
1063
+ #: ../classes/column/post/featured-image.php:14
1064
+ msgid "Featured Image"
1065
+ msgstr "特色图像"
1066
+
1067
+ #: ../classes/column/post/formats.php:14
1068
+ msgid "Post Format"
1069
+ msgstr "文章形式"
1070
+
1071
+ #: ../classes/column/post/modified.php:14
1072
+ msgid "Last modified"
1073
+ msgstr "最后修订"
1074
+
1075
+ #: ../classes/column/post/order.php:14
1076
+ msgid "Page Order"
1077
+ msgstr "页面排序"
1078
+
1079
+ #: ../classes/column/post/page-template.php:12
1080
+ msgid "Page Template"
1081
+ msgstr "页面模板"
1082
+
1083
+ #: ../classes/column/post/parent.php:12
1084
+ msgid "Parent"
1085
+ msgstr "父级"
1086
+
1087
+ #: ../classes/column/post/ping-status.php:14
1088
+ msgid "Ping status"
1089
+ msgstr "Ping状态"
1090
+
1091
+ #: ../classes/column/post/roles.php:14
1092
+ msgid "Roles"
1093
+ msgstr "角色"
1094
+
1095
+ #: ../classes/column/post/slug.php:12
1096
+ msgid "Slug"
1097
+ msgstr "别名"
1098
+
1099
+ #: ../classes/column/post/status.php:14
1100
+ msgid "Status"
1101
+ msgstr "状态"
1102
+
1103
+ #: ../classes/column/post/status.php:30
1104
+ msgid "Published"
1105
+ msgstr "已发布"
1106
+
1107
+ #: ../classes/column/post/status.php:31
1108
+ msgid "Draft"
1109
+ msgstr "草稿"
1110
+
1111
+ #: ../classes/column/post/status.php:32
1112
+ msgid "Scheduled"
1113
+ msgstr "定时"
1114
+
1115
+ #: ../classes/column/post/status.php:33
1116
+ msgid "Private"
1117
+ msgstr "私密"
1118
+
1119
+ #: ../classes/column/post/status.php:34
1120
+ msgid "Pending Review"
1121
+ msgstr "待审核"
1122
+
1123
+ #: ../classes/column/post/sticky.php:14
1124
+ msgid "Sticky"
1125
+ msgstr "置顶"
1126
+
1127
+ #: ../classes/column/post/taxonomy.php:12
1128
+ #: ../classes/column/post/taxonomy.php:68
1129
+ msgid "Taxonomy"
1130
+ msgstr "分类法"
1131
+
1132
+ #: ../classes/column/user/comment-count.php:14
1133
+ msgid "Comment Count"
1134
+ msgstr "评论数量"
1135
+
1136
+ #: ../classes/column/user/first-name.php:14
1137
+ msgid "First name"
1138
+ msgstr "名字"
1139
+
1140
+ #: ../classes/column/user/last-name.php:14
1141
+ msgid "Last name"
1142
+ msgstr "姓氏"
1143
+
1144
+ #: ../classes/column/user/post-count.php:14
1145
+ msgid "Post Count"
1146
+ msgstr "文章数量"
1147
+
1148
+ #: ../classes/column/user/post-count.php:92
1149
+ msgid "Post Type"
1150
+ msgstr "文章类型"
1151
+
1152
+ #: ../classes/column/user/registered.php:14
1153
+ msgid "Registered"
1154
+ msgstr "注册"
1155
+
1156
+ #: ../classes/column/user/url.php:14
1157
+ msgid "Url"
1158
+ msgstr "Url"
1159
+
1160
+ #: ../classes/storage_model/comment.php:13
1161
+ msgid "Comments"
1162
+ msgstr "评论"
1163
+
1164
+ #: ../classes/storage_model/link.php:13
1165
+ msgid "Links"
1166
+ msgstr "链接"
1167
+
1168
+ #: ../classes/storage_model/user.php:13
1169
+ msgid "Users"
1170
+ msgstr "用户"
languages/cpac.mo DELETED
Binary file
readme.txt CHANGED
@@ -3,8 +3,8 @@ 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.5
6
- Tested up to: 3.6
7
- Stable tag: 2.0.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
 
@@ -105,13 +105,13 @@ With the custom field column you can display any custom field values. It can sho
105
 
106
  = Sortable Custom Columns for all Screens =
107
 
108
- All of the new columns will have support for sorting with the <a href="http://www.codepress.nl/plugins/codepress-admin-columns/sortorder-addon/">sorting addon</a>.
109
 
110
  By default WordPress let's you only sort by Title, Date, Comments and Author. This will make you be able to <strong>sort by ALL columns of ANY type</strong>. (columns that are added by other plugins are not supported)
111
 
112
  = Third party plugin support =
113
 
114
- It will work nice with other plugins and support their additional custom columns. A few examples of plugins that are supported: WordPress SEO by Yoast (Robots Meta), Post Admin Shortcuts (Pin), WP Show IDs (ID) and User Access Manager (Access), Co-Authors Plus and Advanced Custom Fields.
115
 
116
  = Translations =
117
 
@@ -122,10 +122,11 @@ If you like to contrinute a language, please use <a href="https://www.transifex.
122
  * German (de_DE) - Thanks to Uli
123
  * Polish (pl_PL) - Thanks to Bartosz
124
  * French (fr_FR) - Thanks to Alexandre Girard
 
125
 
126
  = Upcoming releases =
127
 
128
- * We will post the upcoming features on <a href="http://www.codepresshq.com/wordpress-plugins/admin-columns/">our website</a>.
129
 
130
  **Feedback**
131
 
@@ -143,10 +144,14 @@ You can leave any <a href='http://www.codepresshq.com/support/'>requests or feed
143
 
144
  == Frequently Asked Questions ==
145
 
 
 
 
 
146
  = I have an idea for a great way to improve this plugin =
147
 
148
  Great! I'd love to hear from you.
149
- Leave your feedback at http://www.codepress.nl/plugins/codepress-admin-columns/feedback.
150
 
151
  = How can I change the thumbnail size of images? =
152
 
@@ -169,22 +174,22 @@ Filter explained:
169
 
170
  * **$value** is the original value which would otherwise be displayed
171
  * **$id** will return the ID of the object.
172
- * **$cac** will return the Admin Columns Storage object.
173
  *
174
- * **$cac->options->field** is the name of your custom field
175
- * **$cac->storage_model->key** will return either the posttype or if it is any other type it will return wp-comments, wp-links, wp-users, wp-media.
176
 
177
  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.
178
 
179
  `
180
  <?php
181
- function my_custom_field_value( $value, $id, $cac ) {
182
 
183
  $post_type = 'demo';
184
  $custom_field = 'city';
185
 
186
  // make sure we have the correct posttype and custom field
187
- if ( $post_type == $cac->storage_model->key && $cac->options->field == $custom_field ) {
188
 
189
  if ( '33' == $value )
190
  $value = 'Amsterdam';
@@ -194,10 +199,14 @@ function my_custom_field_value( $value, $id, $cac ) {
194
  }
195
  return $value;
196
  }
197
- add_filter( 'cac/column/meta/value', 'my_custom_field_value', 10, 5 );
198
  ?>
199
  `
200
 
 
 
 
 
201
  == Screenshots ==
202
 
203
  1. Settings page for Post(type) columns.
@@ -211,6 +220,15 @@ add_filter( 'cac/column/meta/value', 'my_custom_field_value', 10, 5 );
211
 
212
  == Changelog ==
213
 
 
 
 
 
 
 
 
 
 
214
 
215
  = 2.0.2 =
216
  * [Fixed] Performance issue
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.5
6
+ Tested up to: 3.7.1
7
+ Stable tag: 2.0.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
 
105
 
106
  = Sortable Custom Columns for all Screens =
107
 
108
+ All of the new columns will have support for sorting with the <a href="http://www.codepresshq.com/wordpress-plugins/admin-columns/pro-add-on/">Pro add-on</a>.
109
 
110
  By default WordPress let's you only sort by Title, Date, Comments and Author. This will make you be able to <strong>sort by ALL columns of ANY type</strong>. (columns that are added by other plugins are not supported)
111
 
112
  = Third party plugin support =
113
 
114
+ It will work nice with other plugins and support their additional custom columns. A few examples of plugins that are supported: WordPress SEO by Yoast (Robots Meta), Post Admin Shortcuts (Pin), WP Show IDs (ID) and User Access Manager (Access), WooCommerce, Co-Authors Plus and Advanced Custom Fields.
115
 
116
  = Translations =
117
 
122
  * German (de_DE) - Thanks to Uli
123
  * Polish (pl_PL) - Thanks to Bartosz
124
  * French (fr_FR) - Thanks to Alexandre Girard
125
+ * Arabic (ar) and RTL support - thanks to Hassan
126
 
127
  = Upcoming releases =
128
 
129
+ * We will post the <a href="https://github.com/codepress/codepress-admin-columns/issues?labels=enhancement&milestone=none&page=1&sort=updated&state=open">upcoming features on GitHub</a>.
130
 
131
  **Feedback**
132
 
144
 
145
  == Frequently Asked Questions ==
146
 
147
+ = Is there documentation for Admin Columns? =
148
+
149
+ Yes, you will find all the documentation you need on <a href="http://www.codepresshq.com/documentation/codepress-admin-columns/">http://www.codepresshq.com/documentation/codepress-admin-columns/</a>.
150
+
151
  = I have an idea for a great way to improve this plugin =
152
 
153
  Great! I'd love to hear from you.
154
+ Leave your feedback at http://www.codepresshq.com/support.
155
 
156
  = How can I change the thumbnail size of images? =
157
 
174
 
175
  * **$value** is the original value which would otherwise be displayed
176
  * **$id** will return the ID of the object.
177
+ * **$column** will return the Admin Columns Column object.
178
  *
179
+ * **$column->options->field** is the name of your custom field
180
+ * **$column->storage_model->key** will return either the posttype or if it is any other type it will return wp-comments, wp-links, wp-users, wp-media.
181
 
182
  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.
183
 
184
  `
185
  <?php
186
+ function my_custom_field_value( $value, $id, $column ) {
187
 
188
  $post_type = 'demo';
189
  $custom_field = 'city';
190
 
191
  // make sure we have the correct posttype and custom field
192
+ if ( $post_type == $column->storage_model->key && $custom_field == $column->options->field ) {
193
 
194
  if ( '33' == $value )
195
  $value = 'Amsterdam';
199
  }
200
  return $value;
201
  }
202
+ add_filter( 'cac/column/meta/value', 'my_custom_field_value', 10, 3 );
203
  ?>
204
  `
205
 
206
+ = What filters and hooks can I use? =
207
+
208
+ Here you will find an overview of filters and examples: http://www.codepresshq.com/documentation/codepress-admin-columns/
209
+
210
  == Screenshots ==
211
 
212
  1. Settings page for Post(type) columns.
220
 
221
  == Changelog ==
222
 
223
+ = 2.0.3 =
224
+ * [Updated] Danish translation - thanks to iosoftgame
225
+ * [Updated] Spanish translation - thanks to redywebs
226
+ * [Added] Chinese translation - thanks to 倡萌
227
+ * [Fixed] Solved bug with before and after field
228
+ * [Added] Fieldtype "Counter" to Custom Fields
229
+ * [Added] Column type ID when you hover over the column type label
230
+ * [Added] Support for raw values
231
+ * [Updated] Changed filter for cac/column/value. See: http://www.codepresshq.com/documentation.
232
 
233
  = 2.0.2 =
234
  * [Fixed] Performance issue