Admin Columns - Version 2.3.1

Version Description

  • [Fixed] Image Uploader failing inside nested Settings pod when using the Pods plugin
Download this release

Release Info

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

Code changes from version 2.2.9 to 2.3.1

api.php CHANGED
@@ -9,10 +9,20 @@
9
  * @param array $columns List of columns ([column_name] => [column_options])
10
  */
11
  function cpac_set_storage_model_columns( $storage_model, $columns ) {
 
 
 
 
12
 
13
- global $cpac;
14
-
15
- if ( $storage_model = $cpac->get_storage_model( $storage_model ) ) {
16
- $storage_model->set_stored_columns( $columns );
 
 
 
 
 
17
  }
 
18
  }
9
  * @param array $columns List of columns ([column_name] => [column_options])
10
  */
11
  function cpac_set_storage_model_columns( $storage_model, $columns ) {
12
+ global $_acp_export_columns;
13
+ $_acp_export_columns = $columns;
14
+ add_filter( 'cpac/storage_model/stored_columns/storage_key=' . $storage_model, 'cpac_set_exported_columns' );
15
+ }
16
 
17
+ /**
18
+ * Set exported columns
19
+ *
20
+ * @since 3.2
21
+ */
22
+ function cpac_set_exported_columns( $columns ) {
23
+ global $_acp_export_columns;
24
+ if ( $_acp_export_columns ) {
25
+ $columns = $_acp_export_columns;
26
  }
27
+ return $columns;
28
  }
assets/js/admin-columns.js CHANGED
@@ -1,15 +1,16 @@
1
  jQuery( document ).ready( function( $ ) {
2
  cpac_tooltips();
3
-
4
- if ( typeof CPAC.storage_model !== 'undefined' && CPAC.storage_model.is_table_header_fixed ) {
5
- cpac_floatingheader();
6
- }
7
  } );
8
 
9
  /**
10
  * @since 2.2.4
11
  */
12
  function cpac_tooltips() {
 
 
 
 
 
13
  jQuery( '.cpac-tip' ).qtip( {
14
  content: {
15
  attr: 'data-tip'
@@ -23,21 +24,4 @@ function cpac_tooltips() {
23
  classes: 'qtip-tipsy'
24
  }
25
  } );
26
- }
27
-
28
- /**
29
- * @since 2.2.4
30
- */
31
- function cpac_floatingheader() {
32
- var table = jQuery( 'table.wp-list-table.widefat' );
33
- var topscroll = 0;
34
-
35
- if ( jQuery( '#wpadminbar' ) ) {
36
- topscroll = 32;
37
- }
38
-
39
- table.floatThead( {
40
- scrollingTop: topscroll
41
- } );
42
-
43
  }
1
  jQuery( document ).ready( function( $ ) {
2
  cpac_tooltips();
 
 
 
 
3
  } );
4
 
5
  /**
6
  * @since 2.2.4
7
  */
8
  function cpac_tooltips() {
9
+
10
+ if ( typeof qtip === 'undefined' || ! jQuery.isFunction( qtip ) ) {
11
+ return;
12
+ }
13
+
14
  jQuery( '.cpac-tip' ).qtip( {
15
  content: {
16
  attr: 'data-tip'
24
  classes: 'qtip-tipsy'
25
  }
26
  } );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  }
assets/js/admin-columns.min.js CHANGED
@@ -1 +1 @@
1
- function cpac_tooltips(){jQuery(".cpac-tip").qtip({content:{attr:"data-tip"},position:{my:"top center",at:"bottom center"},style:{tip:!0,classes:"qtip-tipsy"}})}function cpac_floatingheader(){var e=jQuery("table.wp-list-table.widefat"),t=0;jQuery("#wpadminbar")&&(t=32);e.floatThead({scrollingTop:t})}jQuery(document).ready(function(e){cpac_tooltips();typeof CPAC.storage_model!="undefined"&&CPAC.storage_model.is_table_header_fixed&&cpac_floatingheader()});
1
+ function cpac_tooltips(){if(typeof qtip=="undefined"||!jQuery.isFunction(qtip))return;jQuery(".cpac-tip").qtip({content:{attr:"data-tip"},position:{my:"top center",at:"bottom center"},style:{tip:!0,classes:"qtip-tipsy"}})}jQuery(document).ready(function(e){cpac_tooltips()});
classes/column.php CHANGED
@@ -353,52 +353,6 @@ class CPAC_Column {
353
  return $string;
354
  }
355
 
356
- /**
357
- * @since 2.2
358
- * @param $id Cache ID
359
- * @return string MD5 Cache ID
360
- */
361
- function get_cache_id( $id ) {
362
- return md5( $this->storage_model->key . $this->properties->name . $id );
363
- }
364
-
365
- /**
366
- * @since 2.0
367
- * @param $id Cache ID
368
- * @param $cache_object Cache Object
369
- */
370
- function set_cache( $id, $cache_object ) {
371
-
372
- if ( empty( $cache_object ) ) {
373
- return false;
374
- }
375
-
376
- set_transient( $this->get_cache_id( $id ), $cache_object );
377
- }
378
-
379
- /**
380
- * @since 2.0
381
- * @param $id Cache ID ( could be a name of an addon for example )
382
- * @return false | mixed Returns either false or the cached objects
383
- */
384
- function get_cache( $id ) {
385
- $cache = get_transient( $this->get_cache_id( $id ) );
386
-
387
- if ( empty( $cache ) ) {
388
- return false;
389
- }
390
-
391
- return $cache;
392
- }
393
-
394
- /**
395
- * @since 2.0
396
- * @param $id Cache ID
397
- */
398
- function delete_cache( $id ) {
399
- delete_transient( $this->get_cache_id( $id ) );
400
- }
401
-
402
  /**
403
  * @since 1.3.1
404
  */
@@ -777,7 +731,7 @@ class CPAC_Column {
777
  * @param string $date
778
  * @return string Formatted date
779
  */
780
- private function get_timestamp( $date ) {
781
 
782
  if ( empty( $date ) || in_array( $date, array( '0000-00-00 00:00:00', '0000-00-00', '00:00:00' ) ) ) {
783
  return false;
353
  return $string;
354
  }
355
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  /**
357
  * @since 1.3.1
358
  */
731
  * @param string $date
732
  * @return string Formatted date
733
  */
734
+ public function get_timestamp( $date ) {
735
 
736
  if ( empty( $date ) || in_array( $date, array( '0000-00-00 00:00:00', '0000-00-00', '00:00:00' ) ) ) {
737
  return false;
classes/column/custom-field.php CHANGED
@@ -14,7 +14,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
14
  * @see CPAC_Column::init()
15
  * @since 2.2.1
16
  */
17
- function init() {
18
 
19
  parent::init();
20
 
@@ -44,7 +44,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
44
  * @see CPAC_Column::sanitize_options()
45
  * @since 1.0
46
  */
47
- function sanitize_options( $options ) {
48
 
49
  if ( empty( $options['date_format'] ) ) {
50
  $options['date_format'] = get_option( 'date_format' );
@@ -184,7 +184,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
184
  * @param int $id Optional Object ID
185
  * @return string Users
186
  */
187
- function get_value_by_meta( $meta, $id = null ) {
188
 
189
  switch ( $this->options->field_type ) :
190
 
@@ -246,7 +246,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
246
  *
247
  * @param string Custom Field Key
248
  */
249
- function get_field_key() {
250
 
251
  return substr( $this->options->field, 0, 10 ) == "cpachidden" ? str_replace( 'cpachidden', '', $this->options->field ) : $this->options->field;
252
  }
@@ -279,7 +279,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
279
  * @see CPAC_Column::get_raw_value()
280
  * @since 2.0.3
281
  */
282
- function get_raw_value( $id, $single = true ) {
283
 
284
  $field_key = $this->get_field_key();
285
 
@@ -292,7 +292,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
292
  * @see CPAC_Column::get_value()
293
  * @since 1.0
294
  */
295
- function get_value( $id ) {
296
 
297
  $value = '';
298
 
@@ -319,7 +319,7 @@ class CPAC_Column_Custom_Field extends CPAC_Column {
319
  * @see CPAC_Column::display_settings()
320
  * @since 1.0
321
  */
322
- function display_settings() {
323
 
324
  $show_hidden_meta = true;
325
  ?>
14
  * @see CPAC_Column::init()
15
  * @since 2.2.1
16
  */
17
+ public function init() {
18
 
19
  parent::init();
20
 
44
  * @see CPAC_Column::sanitize_options()
45
  * @since 1.0
46
  */
47
+ public function sanitize_options( $options ) {
48
 
49
  if ( empty( $options['date_format'] ) ) {
50
  $options['date_format'] = get_option( 'date_format' );
184
  * @param int $id Optional Object ID
185
  * @return string Users
186
  */
187
+ public function get_value_by_meta( $meta, $id = null ) {
188
 
189
  switch ( $this->options->field_type ) :
190
 
246
  *
247
  * @param string Custom Field Key
248
  */
249
+ public function get_field_key() {
250
 
251
  return substr( $this->options->field, 0, 10 ) == "cpachidden" ? str_replace( 'cpachidden', '', $this->options->field ) : $this->options->field;
252
  }
279
  * @see CPAC_Column::get_raw_value()
280
  * @since 2.0.3
281
  */
282
+ public function get_raw_value( $id, $single = true ) {
283
 
284
  $field_key = $this->get_field_key();
285
 
292
  * @see CPAC_Column::get_value()
293
  * @since 1.0
294
  */
295
+ public function get_value( $id ) {
296
 
297
  $value = '';
298
 
319
  * @see CPAC_Column::display_settings()
320
  * @since 1.0
321
  */
322
+ public function display_settings() {
323
 
324
  $show_hidden_meta = true;
325
  ?>
classes/column/post/status.php CHANGED
@@ -25,26 +25,19 @@ class CPAC_Column_Post_Status extends CPAC_Column {
25
  */
26
  function get_value( $post_id ) {
27
 
28
- $value = '';
29
-
30
- $post_status = $this->get_raw_value( $post_id );
31
-
32
- $p = get_post( $post_id );
33
-
34
  $builtin_status = array(
35
  'publish' => __( 'Published', 'cpac' ),
36
  'draft' => __( 'Draft', 'cpac' ),
37
- 'future' => __( 'Scheduled', 'cpac' ) . " <p class='description'>" . date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ) , strtotime( $p->post_date ) ) . "</p>",
38
  'private' => __( 'Private', 'cpac' ),
39
  'pending' => __( 'Pending Review', 'cpac' ),
40
  'auto-draft' => __( 'Auto Draft', 'cpac' ),
41
  'trash' => __( 'Trash', 'cpac' ),
42
  );
43
 
44
- if ( isset( $builtin_status[ $post_status ] ) )
45
- $value = $builtin_status[ $post_status ];
46
 
47
- return $value;
48
  }
49
 
50
  /**
25
  */
26
  function get_value( $post_id ) {
27
 
 
 
 
 
 
 
28
  $builtin_status = array(
29
  'publish' => __( 'Published', 'cpac' ),
30
  'draft' => __( 'Draft', 'cpac' ),
31
+ 'future' => __( 'Scheduled', 'cpac' ) . " <p class='description'>" . date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ) , strtotime( get_post_field( 'post_date', $post_id ) ) ) . "</p>",
32
  'private' => __( 'Private', 'cpac' ),
33
  'pending' => __( 'Pending Review', 'cpac' ),
34
  'auto-draft' => __( 'Auto Draft', 'cpac' ),
35
  'trash' => __( 'Trash', 'cpac' ),
36
  );
37
 
38
+ $post_status = $this->get_raw_value( $post_id );
 
39
 
40
+ return isset( $builtin_status[ $post_status ] ) ? $builtin_status[ $post_status ] : '';
41
  }
42
 
43
  /**
classes/column/post/word-count.php CHANGED
@@ -34,7 +34,37 @@ class CPAC_Column_Post_Word_Count extends CPAC_Column {
34
  */
35
  function get_raw_value( $post_id ) {
36
 
37
- return str_word_count( $this->strip_trim( get_post_field( 'post_content', $post_id ) ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  }
39
 
40
  /**
34
  */
35
  function get_raw_value( $post_id ) {
36
 
37
+ return $this->str_count_words( $this->strip_trim( get_post_field( 'post_content', $post_id ) ) );
38
+ }
39
+
40
+ /**
41
+ * Count the number of words in a string (multibyte-compatible)
42
+ *
43
+ * @since 2.3
44
+ *
45
+ * @param string $input Input string
46
+ * @return int Number of words
47
+ */
48
+ public function str_count_words( $input ) {
49
+
50
+ $patterns = array(
51
+ 'strip' => '/<[a-zA-Z\/][^<>]*>/',
52
+ 'clean' => '/[0-9.(),;:!?%#$¿\'"_+=\\/-]+/',
53
+ 'w' => '/\S\s+/',
54
+ 'c' => '/\S/'
55
+ );
56
+
57
+ $type = 'w';
58
+
59
+ $input = preg_replace( $patterns['strip'], ' ', $input );
60
+ $input = preg_replace( '/&nbsp;|&#160;/i', ' ', $input );
61
+ $input = preg_replace( $patterns['clean'], '', $input );
62
+
63
+ if ( ! strlen( preg_replace( '/\s/', '', $input ) ) ) {
64
+ return 0;
65
+ }
66
+
67
+ return preg_match_all( $patterns[ $type ], $input ) + 1;
68
  }
69
 
70
  /**
classes/settings.php CHANGED
@@ -14,6 +14,13 @@ class CPAC_Settings {
14
  */
15
  private $cpac;
16
 
 
 
 
 
 
 
 
17
  /**
18
  * @since 2.0
19
  * @param object CPAC
@@ -33,6 +40,13 @@ class CPAC_Settings {
33
  add_action( 'cpac_messages', array( $this, 'maybe_display_addon_statuschange_message' ) );
34
  }
35
 
 
 
 
 
 
 
 
36
  /**
37
  * Get available Admin Columns admin page URLs
38
  *
@@ -152,14 +166,14 @@ class CPAC_Settings {
152
  public function settings_menu() {
153
 
154
  // add settings page
155
- $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 );
156
 
157
  // add help tabs
158
- add_action( "load-{$settings_page}", array( $this, 'help_tabs' ) );
159
 
160
  // add scripts & styles
161
- add_action( "admin_print_styles-{$settings_page}", array( $this, 'admin_styles' ) );
162
- add_action( "admin_print_scripts-{$settings_page}", array( $this, 'admin_scripts' ) );
163
 
164
  // register setting
165
  register_setting( 'cpac-general-settings', 'cpac_general_options' );
@@ -593,7 +607,6 @@ class CPAC_Settings {
593
  $post_types = array_values( $this->cpac->get_post_types() );
594
  $first = array_shift( $post_types );
595
  ?>
596
-
597
  <div id="cpac" class="wrap">
598
  <?php screen_icon( 'codepress-admin-columns' ); ?>
599
  <h2 class="nav-tab-wrapper cpac-nav-tab-wrapper">
14
  */
15
  private $cpac;
16
 
17
+ /**
18
+ * Settings Page
19
+ *
20
+ * @since 2.0
21
+ */
22
+ private $settings_page;
23
+
24
  /**
25
  * @since 2.0
26
  * @param object CPAC
40
  add_action( 'cpac_messages', array( $this, 'maybe_display_addon_statuschange_message' ) );
41
  }
42
 
43
+ /**
44
+ * @since 3.1.1
45
+ */
46
+ public function get_settings_page() {
47
+ return $this->settings_page;
48
+ }
49
+
50
  /**
51
  * Get available Admin Columns admin page URLs
52
  *
166
  public function settings_menu() {
167
 
168
  // add settings page
169
+ $this->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 );
170
 
171
  // add help tabs
172
+ add_action( "load-{$this->settings_page}", array( $this, 'help_tabs' ) );
173
 
174
  // add scripts & styles
175
+ add_action( "admin_print_styles-{$this->settings_page}", array( $this, 'admin_styles' ) );
176
+ add_action( "admin_print_scripts-{$this->settings_page}", array( $this, 'admin_scripts' ) );
177
 
178
  // register setting
179
  register_setting( 'cpac-general-settings', 'cpac_general_options' );
607
  $post_types = array_values( $this->cpac->get_post_types() );
608
  $first = array_shift( $post_types );
609
  ?>
 
610
  <div id="cpac" class="wrap">
611
  <?php screen_icon( 'codepress-admin-columns' ); ?>
612
  <h2 class="nav-tab-wrapper cpac-nav-tab-wrapper">
classes/storage_model.php CHANGED
@@ -453,15 +453,14 @@ abstract class CPAC_Storage_Model {
453
  */
454
  public function get_stored_columns() {
455
 
456
- if ( $this->stored_columns !== NULL ) {
457
- $columns = $this->stored_columns;
458
- }
459
- else {
460
  $columns = $this->get_database_columns();
461
  }
462
 
463
  $columns = apply_filters( 'cpac/storage_model/stored_columns', $columns, $this );
464
- $columns = apply_filters( 'cpac/storage_model/stored_columns/storage_key={$this->key}', $columns, $this );
465
 
466
  if ( ! $columns ) {
467
  return array();
@@ -547,6 +546,9 @@ abstract class CPAC_Storage_Model {
547
  $groups = apply_filters( "cac/storage_model/column_type_groups", $groups, $this );
548
  $groups = apply_filters( "cac/storage_model/column_type_groups/storage_key={$this->key}", $groups, $this );
549
 
 
 
 
550
  return $groups;
551
  }
552
 
@@ -567,7 +569,7 @@ abstract class CPAC_Storage_Model {
567
  /**
568
  * @since 2.0
569
  */
570
- function get_columns() {
571
 
572
  do_action( 'cac/get_columns', $this );
573
 
@@ -833,15 +835,50 @@ abstract class CPAC_Storage_Model {
833
  }
834
 
835
  /**
836
- * @since 2.2.4
 
 
 
837
  */
838
- public function is_table_header_fixed() {
 
 
839
 
840
- /**
841
- * @since 2.2.4
842
- */
843
- $fixed = apply_filters( 'cpac/storage_model/table_header_fixed', false, $this );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
844
 
845
- return $fixed;
 
 
 
 
 
 
 
 
 
 
 
 
 
846
  }
847
  }
453
  */
454
  public function get_stored_columns() {
455
 
456
+ $columns = $this->stored_columns;
457
+
458
+ if ( $this->stored_columns === NULL ) {
 
459
  $columns = $this->get_database_columns();
460
  }
461
 
462
  $columns = apply_filters( 'cpac/storage_model/stored_columns', $columns, $this );
463
+ $columns = apply_filters( 'cpac/storage_model/stored_columns/storage_key=' . $this->key, $columns, $this );
464
 
465
  if ( ! $columns ) {
466
  return array();
546
  $groups = apply_filters( "cac/storage_model/column_type_groups", $groups, $this );
547
  $groups = apply_filters( "cac/storage_model/column_type_groups/storage_key={$this->key}", $groups, $this );
548
 
549
+ // Integrations first
550
+ krsort( $groups );
551
+
552
  return $groups;
553
  }
554
 
569
  /**
570
  * @since 2.0
571
  */
572
+ public function get_columns() {
573
 
574
  do_action( 'cac/get_columns', $this );
575
 
835
  }
836
 
837
  /**
838
+ * @since 3.1.2
839
+ * @param $id Cache ID
840
+ * @param $column_name Column property name
841
+ * @return string MD5 Cache ID
842
  */
843
+ public function get_cache_id( $id, $column_name ) {
844
+ return md5( $this->key . $id . $column_name );
845
+ }
846
 
847
+ /**
848
+ * @since 3.1.2
849
+ * @param $id Cache ID
850
+ * @param $column_name Column property name
851
+ * @param $cache_object Cache Object
852
+ */
853
+ public function set_cache( $id, $column_name, $cache_object ) {
854
+ if ( empty( $cache_object ) ) {
855
+ return false;
856
+ }
857
+ set_transient( $this->get_cache_id( $id, $column_name ), $cache_object, 3600 * 24 * 7 ); // 7 days
858
+ }
859
+
860
+ /**
861
+ * @since 3.1.2
862
+ * @param $id Cache ID ( could be a name of an addon for example )
863
+ * @param $column_name Column property name
864
+ * @return false | mixed Returns either false or the cached objects
865
+ */
866
+ public function get_cache( $id, $column_name ) {
867
+ $cache = get_transient( $this->get_cache_id( $id, $column_name ) );
868
 
869
+ if ( empty( $cache ) ) {
870
+ return false;
871
+ }
872
+
873
+ return $cache;
874
+ }
875
+
876
+ /**
877
+ * @since 3.1.2
878
+ * @param $id Cache ID
879
+ * @param $column_name Column property name
880
+ */
881
+ public function delete_cache( $id, $column_name ) {
882
+ delete_transient( $this->get_cache_id( $id, $column_name ) );
883
  }
884
  }
classes/third_party.php CHANGED
@@ -171,5 +171,17 @@ function cpac_wpml_is_cac_screen( $is_columns_screen ) {
171
 
172
  return $is_columns_screen;
173
  }
174
-
175
  add_filter( 'cac/is_cac_screen', 'cpac_wpml_is_cac_screen' );
 
 
 
 
 
 
 
 
 
 
 
 
 
171
 
172
  return $is_columns_screen;
173
  }
 
174
  add_filter( 'cac/is_cac_screen', 'cpac_wpml_is_cac_screen' );
175
+
176
+
177
+ /**
178
+ * Disable qTip when using Pods
179
+ *
180
+ * @since 2.2
181
+ */
182
+ function cpac_pods_dequeue_qtip() {
183
+ if ( class_exists( 'PodsInit' ) ) {
184
+ wp_deregister_script( 'jquery-qtip2' );
185
+ }
186
+ }
187
+ add_action( 'admin_enqueue_scripts', 'cpac_pods_dequeue_qtip', 11 );
codepress-admin-columns.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Admin Columns
4
- Version: 2.2.9
5
  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.
6
  Author: AdminColumns.com
7
  Author URI: http://www.admincolumns.com
@@ -29,7 +29,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
29
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
30
 
31
  // Plugin information
32
- define( 'CPAC_VERSION', '2.2.9' ); // Current plugin version
33
  define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // Latest version which requires an upgrade
34
  define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
35
  define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
@@ -160,19 +160,8 @@ class CPAC {
160
  add_action( 'admin_head', array( $this, 'admin_scripts') );
161
 
162
  wp_enqueue_script( 'cpac-admin-columns' );
163
- wp_enqueue_script( 'jquery-qtip2' );
164
  wp_enqueue_style( 'jquery-qtip2' );
165
  wp_enqueue_style( 'cpac-columns' );
166
-
167
- $data = array();
168
-
169
- /*if ( $storage_model = $this->get_current_storage_model() ) {
170
- $data['storage_model'] = array(
171
- 'is_table_header_fixed' => $storage_model->is_table_header_fixed()
172
- );
173
- }*/
174
-
175
- wp_localize_script( 'cpac-admin-columns', 'CPAC', $data );
176
  }
177
  }
178
 
1
  <?php
2
  /*
3
  Plugin Name: Admin Columns
4
+ Version: 2.3.1
5
  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.
6
  Author: AdminColumns.com
7
  Author URI: http://www.admincolumns.com
29
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
30
 
31
  // Plugin information
32
+ define( 'CPAC_VERSION', '2.3.1' ); // Current plugin version
33
  define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // Latest version which requires an upgrade
34
  define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
35
  define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
160
  add_action( 'admin_head', array( $this, 'admin_scripts') );
161
 
162
  wp_enqueue_script( 'cpac-admin-columns' );
 
163
  wp_enqueue_style( 'jquery-qtip2' );
164
  wp_enqueue_style( 'cpac-columns' );
 
 
 
 
 
 
 
 
 
 
165
  }
166
  }
167
 
languages/cpac-ar.mo CHANGED
Binary file
languages/cpac-ar.po CHANGED
@@ -5,345 +5,335 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-08-28 12:17+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.6.8\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
- #: ../classes/addons.php:117
27
  msgid "Third party plugin integration"
28
  msgstr ""
29
 
30
- #: ../classes/addons.php:142
31
  msgid "Advanced Custom Fields"
32
  msgstr ""
33
 
34
- #: ../classes/addons.php:143
35
- msgid ""
36
- "Display and edit Advanced Custom Fields fields in the posts overview in "
37
- "seconds!"
 
 
 
 
 
 
38
  msgstr ""
39
 
40
- #: ../classes/column.php:481
41
  msgid "Thumbnail"
42
  msgstr "صورة مصغرة"
43
 
44
- #: ../classes/column.php:482
45
  msgid "Medium"
46
  msgstr "وسط"
47
 
48
- #: ../classes/column.php:483
49
  msgid "Large"
50
  msgstr "كبير"
51
 
52
- #: ../classes/column.php:484
53
  msgid "Full"
54
  msgstr "كامل"
55
 
56
- #: ../classes/column.php:751
57
  msgid "Date Format"
58
  msgstr "تنسيق التاريخ"
59
 
60
- #: ../classes/column.php:752
61
  msgid "This will determine how the date will be displayed."
62
  msgstr "هذا سيحدد كيف سيتم عرض التاريخ."
63
 
64
- #: ../classes/column.php:758
65
  msgid "Example:"
66
  msgstr "مثال:"
67
 
68
- #: ../classes/column.php:760
69
  #, php-format
70
- msgid ""
71
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
72
- "date format here</a>."
73
- msgstr ""
74
- "أترك خاليا لتنسيق ووردبريس الإفتراضي للتاريخ، قم بتغيير <a href=\"%s\">تنسيق "
75
- "التاريخ الخاص بك هنا</a>."
76
 
77
- #: ../classes/column.php:761
78
  msgid "Documentation on date and time formatting."
79
  msgstr "توثيق حول تنسيق التاريخ والوقت."
80
 
81
- #: ../classes/column.php:775
82
  msgid "Excerpt length"
83
  msgstr "طول المقتطف"
84
 
85
- #: ../classes/column.php:776
86
  msgid "Number of words"
87
  msgstr "عدد الكلمات"
88
 
89
- #: ../classes/column.php:794
90
  msgid "Preview size"
91
  msgstr "حجم المعاينة"
92
 
93
- #: ../classes/column.php:811 ../classes/storage_model.php:505
94
  msgid "Custom"
95
  msgstr "مخصوص"
96
 
97
- #: ../classes/column.php:814
98
  msgid "width"
99
  msgstr "عرض"
100
 
101
- #: ../classes/column.php:817
102
  msgid "height"
103
  msgstr "إرتفاع"
104
 
105
- #: ../classes/column.php:831
106
  msgid "Before"
107
  msgstr "قبل"
108
 
109
- #: ../classes/column.php:831
110
  msgid "This text will appear before the custom field value."
111
  msgstr "هذا النص سيظهر قبل الحقل المخصوص."
112
 
113
- #: ../classes/column.php:837
114
  msgid "After"
115
  msgstr "بعد"
116
 
117
- #: ../classes/column.php:837
118
  msgid "This text will appear after the custom field value."
119
  msgstr "هذا النص سيظهر بعد الحقل المخصوص."
120
 
121
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
122
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
123
- #: ../classes/column/user/actions.php:66
124
  msgid "Edit"
125
  msgstr "تحرير"
126
 
127
- #: ../classes/column.php:927 ../classes/column.php:1005
128
- #: ../classes/column/user/actions.php:74
129
  msgid "Remove"
130
  msgstr "إزالة"
131
 
132
- #: ../classes/column.php:945
133
  msgid "Type"
134
  msgstr "نوع"
135
 
136
- #: ../classes/column.php:945
137
  msgid "Choose a column type."
138
  msgstr "اختر نوع عمود"
139
 
140
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
141
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
142
- #: ../classes/column/post/ID.php:12
143
  msgid "ID"
144
  msgstr "رقم"
145
 
146
- #: ../classes/column.php:955
147
  msgid "Label"
148
  msgstr "العنوان"
149
 
150
- #: ../classes/column.php:955
151
  msgid "This is the name which will appear as the column header."
152
  msgstr "هذا هو الاسم الذي سيظهر كترويسة العمود."
153
 
154
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
155
  msgid "Width"
156
  msgstr "عرض"
157
 
158
- #: ../classes/column.php:964 ../classes/column.php:965
159
  msgid "default"
160
  msgstr "إفتراضي"
161
 
162
- #: ../classes/column/acf-placeholder.php:16
163
  msgid "ACF Field"
164
  msgstr ""
165
 
166
  #: ../classes/column/acf-placeholder.php:32
167
- msgid "This feature is only available in Admin Columns Pro - Developer."
168
  msgstr ""
169
 
170
  #: ../classes/column/acf-placeholder.php:35
171
  #, php-format
172
- msgid ""
173
- "If you have a developer licence please download & install your ACF add-on "
174
- "from the <a href='%s'>add-ons tab</a>."
175
  msgstr ""
176
 
177
  #: ../classes/column/acf-placeholder.php:38
178
- msgid ""
179
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
180
- "integeration, allowing you to easily display and edit ACF fields from within "
181
- "your posts overview."
182
  msgstr ""
183
 
184
- #: ../classes/column/acf-placeholder.php:40
185
  msgid "Find out more"
186
  msgstr ""
187
 
188
- #: ../classes/column/comment/actions.php:14
189
- #: ../classes/column/link/actions.php:14
190
- #: ../classes/column/media/actions.php:14
191
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
192
  msgid "Actions"
193
  msgstr "تطبيقات"
194
 
195
- #: ../classes/column/comment/actions.php:73
196
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
197
  msgid "Unapprove"
198
  msgstr "إلغاء الموافقة"
199
 
200
- #: ../classes/column/comment/actions.php:75
201
- #: ../classes/column/comment/actions.php:77
202
  msgid "Approve"
203
  msgstr "موافقة"
204
 
205
- #: ../classes/column/comment/actions.php:86
206
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
207
  msgid "Restore"
208
  msgstr "استرجاع"
209
 
210
- #: ../classes/column/comment/actions.php:90
211
- #: ../classes/column/post/actions.php:66
212
  msgid "Delete Permanently"
213
  msgstr "حذف نهائي"
214
 
215
- #: ../classes/column/comment/actions.php:97
216
- #: ../classes/column/post/actions.php:58
217
  msgid "Quick&nbsp;Edit"
218
  msgstr "تحرير سريع"
219
 
220
- #: ../classes/column/comment/actions.php:98
221
  msgid "Reply"
222
  msgstr "رد"
223
 
224
- #: ../classes/column/comment/agent.php:12
225
  msgid "Agent"
226
  msgstr "عميل"
227
 
228
- #: ../classes/column/comment/approved.php:12
229
- #: ../classes/column/post/comment-count.php:31
230
  msgid "Approved"
231
  msgstr "موافق عليه"
232
 
233
- #: ../classes/column/comment/author-avatar.php:12
234
  msgid "Avatar"
235
  msgstr "صورة"
236
 
237
- #: ../classes/column/comment/author-email.php:12
238
  msgid "Author email"
239
  msgstr "بريد الكاتب"
240
 
241
- #: ../classes/column/comment/author-ip.php:12
242
  msgid "Author IP"
243
  msgstr "عنوان آي بي الكاتب"
244
 
245
- #: ../classes/column/comment/author-url.php:12
246
  msgid "Author url"
247
  msgstr "عنوان موقع الكاتب"
248
 
249
- #: ../classes/column/comment/author.php:12
250
  msgid "Author"
251
  msgstr "الكاتب"
252
 
253
- #: ../classes/column/comment/date-gmt.php:12
254
  msgid "Date GMT"
255
  msgstr "تاريخ GMT"
256
 
257
- #: ../classes/column/comment/date-gmt.php:25
258
- #: ../classes/column/comment/date.php:25
259
  #, php-format
260
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
261
  msgstr "أرسل في <a href=\"%1$s\">%2$s في %3$s</a>"
262
 
263
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
264
- #: ../classes/settings.php:300
265
  msgid "Date"
266
  msgstr "تاريخ"
267
 
268
- #: ../classes/column/comment/excerpt.php:13
269
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
270
- #: ../classes/settings.php:297
271
  msgid "Excerpt"
272
  msgstr "مقتطف"
273
 
274
- #: ../classes/column/comment/reply-to.php:12
275
  msgid "In Reply To"
276
  msgstr "ردا على"
277
 
278
- #: ../classes/column/comment/word-count.php:12
279
- #: ../classes/column/post/word-count.php:12
280
  msgid "Word count"
281
  msgstr "عدد الكلمات"
282
 
283
- #: ../classes/column/custom-field.php:16
284
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
285
  msgid "Custom Field"
286
  msgstr "حقل مخصوص"
287
 
288
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
289
- #: ../classes/storage_model.php:504
290
  msgid "Default"
291
  msgstr "إفتراضي"
292
 
293
- #: ../classes/column/custom-field.php:66
294
  msgid "Checkmark (true/false)"
295
  msgstr "علامة إختيار (صح/خطأ)"
296
 
297
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
298
  msgid "Color"
299
  msgstr "لون"
300
 
301
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
302
  msgid "Counter"
303
  msgstr "عداد"
304
 
305
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
306
- #: ../classes/settings.php:296
307
  msgid "Image"
308
  msgstr "صورة"
309
 
310
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
311
  msgid "Media Library"
312
  msgstr "مكتبة الوسائط"
313
 
314
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
315
  msgid "Multiple Values"
316
  msgstr "قيم متعددة"
317
 
318
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
319
  msgid "Numeric"
320
  msgstr "رقمي"
321
 
322
- #: ../classes/column/custom-field.php:75
323
  msgid "Post Title (Post ID's)"
324
  msgstr "عنوان تدوينة (أرقام تدوينات)"
325
 
326
- #: ../classes/column/custom-field.php:76
327
  msgid "Username (User ID's)"
328
  msgstr "اسم مستخدم (أرقام مستخدمين)"
329
 
330
- #: ../classes/column/custom-field.php:384
331
  msgid "Select your custom field."
332
  msgstr "اختر حقلك المخصوص"
333
 
334
- #: ../classes/column/custom-field.php:394
335
  msgid "No custom fields available."
336
  msgstr "لا توجد حقول مخصوصة متوفرة."
337
 
338
- #: ../classes/column/custom-field.php:401
339
  msgid "Field Type"
340
  msgstr "نوع الحقل"
341
 
342
- #: ../classes/column/custom-field.php:401
343
  msgid "This will determine how the value will be displayed."
344
  msgstr "هذا سيحدد كيف سيتم عرض القيمة."
345
 
346
- #: ../classes/column/link/actions.php:46
347
  #, php-format
348
  msgid ""
349
  "You are about to delete this link '%s'\n"
@@ -352,830 +342,779 @@ msgstr ""
352
  "انت على وشك حذف هذا الرابط '%s'\n"
353
  " 'إلغاء' للإيقاف، 'موافق' للحذف."
354
 
355
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
356
  msgid "Delete"
357
  msgstr "مسح"
358
 
359
- #: ../classes/column/link/description.php:12
360
- #: ../classes/column/media/description.php:12
361
- #: ../classes/column/user/description.php:14
362
  msgid "Description"
363
  msgstr "وصف"
364
 
365
- #: ../classes/column/link/length.php:12
366
  msgid "Length"
367
  msgstr "طول"
368
 
369
- #: ../classes/column/link/notes.php:13
370
  msgid "Notes"
371
  msgstr "ملاحظات"
372
 
373
- #: ../classes/column/link/owner.php:12
374
  msgid "Owner"
375
  msgstr "مالك"
376
 
377
- #: ../classes/column/link/rss.php:12
378
  msgid "Rss"
379
  msgstr "Rss"
380
 
381
- #: ../classes/column/link/target.php:12
382
  msgid "Target"
383
  msgstr "هدف"
384
 
385
- #: ../classes/column/media/alternate-text.php:12
386
  msgid "Alt"
387
  msgstr "بديل"
388
 
389
- #: ../classes/column/media/available-sizes.php:14
390
  msgid "Available Sizes"
391
  msgstr "الأحجام المتوفرة"
392
 
393
- #: ../classes/column/media/available-sizes.php:37
394
  msgid "full size"
395
  msgstr "حجم كامل"
396
 
397
- #: ../classes/column/media/caption.php:12
398
- #: ../classes/column/media/exif-data.php:36
399
  msgid "Caption"
400
  msgstr "شرح"
401
 
402
- #: ../classes/column/media/dimensions.php:12
403
  msgid "Dimensions"
404
  msgstr "أبعاد"
405
 
406
- #: ../classes/column/media/exif-data.php:12
407
  msgid "EXIF data"
408
  msgstr "بيانات EXIF"
409
 
410
- #: ../classes/column/media/exif-data.php:33
411
  msgid "Aperture"
412
  msgstr "فتحة"
413
 
414
- #: ../classes/column/media/exif-data.php:34
415
  msgid "Credit"
416
  msgstr "شرف"
417
 
418
- #: ../classes/column/media/exif-data.php:35
419
  msgid "Camera"
420
  msgstr "كاميرا"
421
 
422
- #: ../classes/column/media/exif-data.php:37
423
  msgid "Timestamp"
424
  msgstr "طابع زمني"
425
 
426
- #: ../classes/column/media/exif-data.php:38
427
  msgid "Copyright EXIF"
428
  msgstr "بيانات EXIF حق النشر"
429
 
430
- #: ../classes/column/media/exif-data.php:39
431
  msgid "Focal Length"
432
  msgstr "بعد بؤري"
433
 
434
- #: ../classes/column/media/exif-data.php:40
435
  msgid "ISO"
436
  msgstr "ISO"
437
 
438
- #: ../classes/column/media/exif-data.php:41
439
  msgid "Shutter Speed"
440
  msgstr "سرعة مصراع"
441
 
442
- #: ../classes/column/media/exif-data.php:42
443
  msgid "Title"
444
  msgstr "عنوان"
445
 
446
- #: ../classes/column/media/file-name.php:12
447
  msgid "File name"
448
  msgstr "اسم ملف"
449
 
450
- #: ../classes/column/media/file-size.php:12
451
  msgid "File size"
452
  msgstr "حجم ملف"
453
 
454
- #: ../classes/column/media/full-path.php:12
455
  msgid "Full path"
456
  msgstr "مسار كامل"
457
 
458
- #: ../classes/column/media/height.php:12
459
  msgid "Height"
460
  msgstr "إرتفاع"
461
 
462
- #: ../classes/column/media/mime-type.php:12
463
  msgid "Mime type"
464
  msgstr "نوع Mime"
465
 
466
- #: ../classes/column/post/actions.php:57
467
  msgid "Edit this item"
468
  msgstr "تحرير هذا العنصر"
469
 
470
- #: ../classes/column/post/actions.php:58
471
  msgid "Edit this item inline"
472
  msgstr "تحرير هذا العنصر داخليا"
473
 
474
- #: ../classes/column/post/actions.php:62
475
  msgid "Restore this item from the Trash"
476
  msgstr "استعادة هذا العنصر من المهملات"
477
 
478
- #: ../classes/column/post/actions.php:64
479
  msgid "Move this item to the Trash"
480
  msgstr "نقل هذا العنصر إلى المهملات"
481
 
482
- #: ../classes/column/post/actions.php:64
483
- #: ../classes/column/post/comment-count.php:34
484
- #: ../classes/column/post/status.php:38
485
  msgid "Trash"
486
  msgstr "المهملات"
487
 
488
- #: ../classes/column/post/actions.php:66
489
  msgid "Delete this item permanently"
490
  msgstr "حذف هذا العنصر نهائيا"
491
 
492
- #: ../classes/column/post/actions.php:71
493
  #, php-format
494
  msgid "Preview &#8220;%s&#8221;"
495
  msgstr "معاينة &#8220;%s&#8221;"
496
 
497
- #: ../classes/column/post/actions.php:71
498
  msgid "Preview"
499
  msgstr "معاينة"
500
 
501
- #: ../classes/column/post/actions.php:73
502
  #, php-format
503
  msgid "View &#8220;%s&#8221;"
504
  msgstr "عرض &#8220;%s&#8221;"
505
 
506
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
507
  msgid "View"
508
  msgstr "عرض"
509
 
510
- #: ../classes/column/post/attachment-count.php:12
511
  msgid "No. of Attachments"
512
  msgstr "عدد المرفقات"
513
 
514
- #: ../classes/column/post/attachment.php:12
515
  msgid "Attachment"
516
  msgstr "مرفق"
517
 
518
- #: ../classes/column/post/author-name.php:12
519
  msgid "Display Author As"
520
  msgstr "عرض الكاتب كـ"
521
 
522
- #: ../classes/column/post/author-name.php:34
523
  msgid "Display Name"
524
  msgstr "اسم العرض"
525
 
526
- #: ../classes/column/post/author-name.php:35
527
  msgid "First Name"
528
  msgstr "الاسم الأول"
529
 
530
- #: ../classes/column/post/author-name.php:36
531
  msgid "Last Name"
532
  msgstr "الاسم الأخير"
533
 
534
- #: ../classes/column/post/author-name.php:37
535
- #: ../classes/column/user/nickname.php:14
536
  msgid "Nickname"
537
  msgstr "الاسم المستعار"
538
 
539
- #: ../classes/column/post/author-name.php:38
540
  msgid "User Login"
541
  msgstr "اسم الدخول"
542
 
543
- #: ../classes/column/post/author-name.php:39
544
  msgid "User Email"
545
  msgstr "بريد المستخدم"
546
 
547
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
548
  msgid "User ID"
549
  msgstr "رقم المستخدم"
550
 
551
- #: ../classes/column/post/author-name.php:41
552
  msgid "First and Last Name"
553
  msgstr "الاسم الأول والأخير"
554
 
555
- #: ../classes/column/post/author-name.php:118
556
  msgid "This is the format of the author name."
557
  msgstr "هذا هو تنسيق اسم الكاتب."
558
 
559
- #: ../classes/column/post/before-moretag.php:14
560
  msgid "Before More Tag"
561
  msgstr "قبل وسم المزيد"
562
 
563
- #: ../classes/column/post/comment-count.php:14
564
  msgid "Comment count"
565
  msgstr "عدد التعليقات"
566
 
567
- #: ../classes/column/post/comment-count.php:30
568
  msgid "Total"
569
  msgstr "المجموع"
570
 
571
- #: ../classes/column/post/comment-count.php:32
572
  msgid "Pending"
573
  msgstr "بالانتظار"
574
 
575
- #: ../classes/column/post/comment-count.php:33
576
  msgid "Spam"
577
  msgstr "مزعج"
578
 
579
- #: ../classes/column/post/comment-count.php:95
580
- #: ../classes/column/post/comment-status.php:14
581
  msgid "Comment status"
582
  msgstr "حالة التعليق"
583
 
584
- #: ../classes/column/post/comment-count.php:95
585
  msgid "Select which comment status you like to display."
586
  msgstr "اختر حالة التعليق الذي تريد عرضه."
587
 
588
- #: ../classes/column/post/featured-image.php:14
589
  msgid "Featured Image"
590
  msgstr "الصورة المميزة"
591
 
592
- #: ../classes/column/post/formats.php:14
593
  msgid "Post Format"
594
  msgstr "تنسيق التدوينة"
595
 
596
- #: ../classes/column/post/modified.php:14
597
  msgid "Last modified"
598
  msgstr "آخر تحديث"
599
 
600
- #: ../classes/column/post/order.php:14
601
  msgid "Page Order"
602
  msgstr "ترتيب الصفحة"
603
 
604
- #: ../classes/column/post/page-template.php:12
605
  msgid "Page Template"
606
  msgstr "قالب الصفحة"
607
 
608
- #: ../classes/column/post/parent.php:12
609
  msgid "Parent"
610
  msgstr "الأب"
611
 
612
- #: ../classes/column/post/permalink.php:12
 
 
 
 
613
  msgid "Permalink"
614
  msgstr ""
615
 
616
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
 
 
 
 
617
  msgid "Ping status"
618
  msgstr "حالة التنبيه"
619
 
620
- #: ../classes/column/post/roles.php:14
621
  msgid "Roles"
622
  msgstr "الأدوار"
623
 
624
- #: ../classes/column/post/slug.php:12
625
  msgid "Slug"
626
  msgstr "الاسم اللطيف"
627
 
628
- #: ../classes/column/post/status.php:14
629
  msgid "Status"
630
  msgstr "الحالة"
631
 
632
- #: ../classes/column/post/status.php:32
633
  msgid "Published"
634
  msgstr "منشور"
635
 
636
- #: ../classes/column/post/status.php:33
637
  msgid "Draft"
638
  msgstr "مسودة"
639
 
640
- #: ../classes/column/post/status.php:34
641
  msgid "Scheduled"
642
  msgstr "مجدول"
643
 
644
- #: ../classes/column/post/status.php:35
645
  msgid "Private"
646
  msgstr "خاص"
647
 
648
- #: ../classes/column/post/status.php:36
649
  msgid "Pending Review"
650
  msgstr "بانتظار المراجعة"
651
 
652
- #: ../classes/column/post/status.php:37
653
  msgid "Auto Draft"
654
  msgstr ""
655
 
656
- #: ../classes/column/post/sticky.php:14
657
  msgid "Sticky"
658
  msgstr "لاصق"
659
 
660
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
661
  msgid "Taxonomy"
662
  msgstr "التصنيف"
663
 
664
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
665
  msgid "Comment Count"
666
  msgstr "عدد التعليقات"
667
 
668
- #: ../classes/column/user/first-name.php:14
669
  msgid "First name"
670
  msgstr "الاسم الأول"
671
 
672
- #: ../classes/column/user/last-name.php:14
673
  msgid "Last name"
674
  msgstr "الاسم الأخير"
675
 
676
- #: ../classes/column/user/post-count.php:14
677
  msgid "Post Count"
678
  msgstr "عدد التدوينات"
679
 
680
- #: ../classes/column/user/post-count.php:99
681
  msgid "Post Type"
682
  msgstr "نوع تدوبنة"
683
 
684
- #: ../classes/column/user/registered.php:14
685
  msgid "Registered"
686
  msgstr "مسجل"
687
 
688
- #: ../classes/column/user/url.php:14
689
  msgid "Url"
690
  msgstr "عنوان موقع"
691
 
692
- #: ../classes/settings.php:97
693
  msgid "Add-on successfully activated."
694
  msgstr ""
695
 
696
- #: ../classes/settings.php:100
697
  msgid "Add-on successfully deactivated."
698
  msgstr ""
699
 
700
- #: ../classes/settings.php:155
701
  msgid "Admin Columns Settings"
702
  msgstr "إعدادات Admin Columns"
703
 
704
- #: ../classes/settings.php:155 ../classes/settings.php:619
705
- #: ../classes/upgrade.php:83
706
  msgid "Admin Columns"
707
  msgstr "Admin Columns"
708
 
709
- #: ../classes/settings.php:203
710
  #, php-format
711
  msgid "%s column is already present and can not be duplicated."
712
  msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
713
 
714
- #: ../classes/settings.php:256
715
  msgid "Default settings succesfully restored."
716
  msgstr "تمت إستعادة الإعدادات الإفتراضية بنجاح."
717
 
718
- #: ../classes/settings.php:273
719
  msgid "Overview"
720
  msgstr "نظرة عامة"
721
 
722
- #: ../classes/settings.php:276
723
  msgid ""
724
- "This plugin is for adding and removing additional columns to the "
725
- "administration screens for post(types), pages, media library, comments, "
726
- "links and users. Change the column's label and reorder them."
727
- msgstr ""
728
- "هذا البرنامج هو لإضافة وإزالة أعمدة إضافية في الشاشات الإدارية لـ(أنواع) "
729
- "التدوينات، الصفحات، مكتبة الوسائط، التعليقات، الوصلات والمستخدمين. قم بتغيير "
730
- "تسمية الأعمدة وإعادة ترتيبها."
731
 
732
- #: ../classes/settings.php:279
733
  msgid "Basics"
734
  msgstr "مبادئ"
735
 
736
- #: ../classes/settings.php:281
737
  msgid "Change order"
738
  msgstr "تغيير الترتيب"
739
 
740
- #: ../classes/settings.php:282
741
- msgid ""
742
- "By dragging the columns you can change the order which they will appear in."
743
  msgstr "عن طريق سحب الأعمدة يمكنك تغيير ترتيب الذي سوف تظهر فيه."
744
 
745
- #: ../classes/settings.php:283
746
  msgid "Change label"
747
  msgstr "تغيير العنوان"
748
 
749
- #: ../classes/settings.php:284
750
- msgid ""
751
- "By clicking on the triangle you will see the column options. Here you can "
752
- "change each label of the columns heading."
753
- msgstr ""
754
- "بالنقر على المثلث سترى خيارات العمود. هنا يمكنك تغيير تسمية ترويسات الأعمدة."
755
 
756
- #: ../classes/settings.php:285
757
  msgid "Change column width"
758
  msgstr "تغيير عرض العمود"
759
 
760
- #: ../classes/settings.php:286
761
- msgid ""
762
- "By clicking on the triangle you will see the column options. By using the "
763
- "draggable slider you can set the width of the columns in percentages."
764
- msgstr ""
765
- "بالنقر على المثلث سترى خيارات العمود. باستخدام شريط التمرير القابل للسحب "
766
- "يمكنك تعيين عرض الأعمدة بالنسب المئوية."
767
 
768
- #: ../classes/settings.php:292
769
  msgid "'Custom Field' column"
770
  msgstr "عمود 'حقل مخصوص'"
771
 
772
- #: ../classes/settings.php:293
773
- msgid ""
774
- "The custom field colum uses the custom fields from posts and users. There "
775
- "are 10 types which you can set."
776
- msgstr ""
777
- "يستخدم عمود الحقل المخصوص الحقول المخصوصة من التدوينات والمستخدمين. هناك 10 "
778
- "أنواع يمكنك تعيينها."
779
 
780
- #: ../classes/settings.php:295
781
- msgid ""
782
- "Value: Can be either a string or array. Arrays will be flattened and values "
783
- "are seperated by a ',' comma."
784
- msgstr ""
785
- "قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم "
786
- "بـ '،' فاصلة."
787
 
788
- #: ../classes/settings.php:296
789
- msgid ""
790
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
791
- "comma )."
792
- msgstr ""
793
- "قيمة: يجب أن يحتوي عنوان URL للصورة أو معرفات المرفقات (مفصولة بـ '،' فاصلة)."
794
 
795
- #: ../classes/settings.php:297
796
  msgid "Value: This will show the first 20 words of the Post content."
797
  msgstr "قيمة: سيقوم هذا بإظهار أول 20 كلمة من محتوى التدوينة."
798
 
799
- #: ../classes/settings.php:298
800
- msgid ""
801
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
802
  msgstr "قيمة: يجب أن يكون مصفوفة. هذا سوف يسطح أي مصفوفة (متعددة الأبعاد)."
803
 
804
- #: ../classes/settings.php:299
805
- msgid ""
806
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
807
- "for sorting, so you can sort your posts on numeric (custom field) values."
808
- msgstr ""
809
- "القيمة: الأعداد الصحيحة فقط <br/> إذا كان لديك 'ملحق الترتيب' سيتم استخدام "
810
- "هذه للترتيب، بحيث يمكنك ترتيب تدويناتك على القيم الرقمية (الحقل المخصوص)."
811
 
812
- #: ../classes/settings.php:300
813
  #, php-format
814
- msgid ""
815
- "Value: Can be unix time stamp or a date format as described in the <a "
816
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
817
- "href='%s'>general settings</a> page."
818
- msgstr ""
819
- "قيمة: يمكن أن تكون طابع يونكس زمني أو تنسيق تاريخ كما هو موضح في <a "
820
- "href='%s'>Codex</a>. يمكنك تغيير تنسيق التاريخ المخرج من صفحة <a "
821
- "href='%s'>الإعدادات العامة</a>."
822
 
823
- #: ../classes/settings.php:301
824
  msgid "Post Titles"
825
  msgstr "عناوين تدوينات"
826
 
827
- #: ../classes/settings.php:301
828
  msgid "Value: can be one or more Post ID's (seperated by ',')."
829
  msgstr "قيمة: يمكن أن تكون رقم تدوينة واحدة أو أكثر (مفصولة بـ',')."
830
 
831
- #: ../classes/settings.php:302
832
  msgid "Usernames"
833
  msgstr "أسماء مستخدمين"
834
 
835
- #: ../classes/settings.php:302
836
  msgid "Value: can be one or more User ID's (seperated by ',')."
837
  msgstr "قيمة: يمكن أن تكون رقم مستخدم واحد أو أكثر (مفصولة بـ',')."
838
 
839
- #: ../classes/settings.php:303
840
  msgid "Checkmark"
841
  msgstr "علامة اختيار"
842
 
843
- #: ../classes/settings.php:303
844
  msgid "Value: should be a 1 (one) or 0 (zero)."
845
  msgstr "قيمة: يجب أن تكون 1 (واحد) أو 0 (صفر)."
846
 
847
- #: ../classes/settings.php:304
848
  msgid "Value: hex value color, such as #808080."
849
  msgstr "قيمة: لون بقيمة عشرية، مثل 808080#."
850
 
851
- #: ../classes/settings.php:305
852
- msgid ""
853
- "Value: Can be either a string or array. This will display a count of the "
854
- "number of times the meta key is used by the item."
855
- msgstr ""
856
- "القيمة: يمكن أن يكون إما سلسلة أو مجموعة. هذا سيعرض عدد مرات استخدام المفتاح "
857
- "من قبل العنصر."
858
 
859
- #: ../classes/settings.php:399
860
  msgid "Welcome to Admin Columns"
861
  msgstr "مرحبا في Admin Columns"
862
 
863
- #: ../classes/settings.php:402
864
  msgid "Thank you for updating to the latest version!"
865
  msgstr "شكرا لك على التحديث للنسخة الأخيرة!"
866
 
867
- #: ../classes/settings.php:403
868
- msgid ""
869
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
870
- "like it."
871
- msgstr ""
872
- "Admin Columns أصبحت مصقولة وممتعة أكثر من أي وقت مضى. نأمل أن تنال إعجابكم."
873
 
874
- #: ../classes/settings.php:408
875
  msgid "What’s New"
876
  msgstr "ما الجديد"
877
 
878
- #: ../classes/settings.php:409
879
  msgid "Changelog"
880
  msgstr "سجل التغييرات"
881
 
882
- #: ../classes/settings.php:414
883
- msgid "Addons"
884
- msgstr "إضافات"
885
-
886
- #: ../classes/settings.php:416
887
- msgid ""
888
- "Addons are now activated by downloading and installing individual plugins. "
889
- "Although these plugins will not be hosted on the wordpress.org repository, "
890
- "each Add-on will continue to receive updates in the usual way."
891
- msgstr ""
892
- "يتم تنشيط الملحقات الآن عن طريق تحميل وتثبيت الإضافات الفردية. على الرغم من "
893
- "أنه لن يتم استضافة هذه الإضافات على مستودع wordpress.org، سوف تستمر كل إضافة "
894
- "بتلقي التحديثات بالطريقة المعتادة."
895
-
896
- #: ../classes/settings.php:419
897
- msgid ""
898
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
899
- msgstr "هذا الموقع يستخدم ملحق الترتيب. يجب تنزيل هذه الإضافة."
900
-
901
- #: ../classes/settings.php:422
902
- msgid "Addons are seperate plugins which need to be downloaded."
903
- msgstr "الملحقات هي إضافات منفصلة يجب تنزيلها."
904
-
905
- #: ../classes/settings.php:422
906
- msgid "Download your Addons"
907
- msgstr "قم بتنزيل إضافاتك"
908
-
909
- #: ../classes/settings.php:428
910
- msgid "This website does not use add-ons"
911
- msgstr "هذا الموقع لا يستخدم ملحقات"
912
-
913
- #: ../classes/settings.php:428
914
- msgid "See our website for Admin Columns Pro."
915
- msgstr ""
916
-
917
- #: ../classes/settings.php:435
918
  msgid "Important"
919
  msgstr "مهم"
920
 
921
- #: ../classes/settings.php:437
922
  msgid "Database Changes"
923
  msgstr "تغييرات قاعدة البيانات"
924
 
925
- #: ../classes/settings.php:438
926
- msgid ""
927
- "The database has been changed between versions 1 and 2. But we made sure you "
928
- "can still roll back to version 1x without any issues."
929
- msgstr ""
930
- "تم تغيير قاعدة البيانات بين الإصدارات 1 و 2. ولكن حرصنا على ألا يزال بإمكانك "
931
- "الرجوع إلى إصدار 1x دون أية مشاكل."
932
 
933
- #: ../classes/settings.php:441
934
  msgid "Make sure you backup your database and then click"
935
  msgstr "تأكد من عمل نسخة احتياطية لقاعدة بياناتك ثم انقر"
936
 
937
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
938
  msgid "Upgrade Database"
939
  msgstr "تحديث قاعدة البيانات"
940
 
941
- #: ../classes/settings.php:444
942
  msgid "Potential Issues"
943
  msgstr "مشاكل محتملة"
944
 
945
- #: ../classes/settings.php:445
946
- msgid ""
947
- "Do to the sizable refactoring the code, surounding Addons and action/"
948
- "filters, your website may not operate correctly. It is important that you "
949
- "read the full"
950
- msgstr ""
951
- "نسبة إلى إعادة بناء كود الإضافة بشكل كبير، وكذلك الملحاقت والدوال، قد لا "
952
- "يعمل موقع الويب الخاص بك بشكل صحيح. من المهم أن تقرأ بشكل كامل"
953
 
954
- #: ../classes/settings.php:445
955
  msgid "Migrating from v1 to v2"
956
  msgstr "الانتقال من النسخة 1 إلى النسخة 2"
957
 
958
- #: ../classes/settings.php:445
959
  msgid "guide to view the full list of changes."
960
  msgstr "توجيه لعرض القائمة الكاملة للتغييرات."
961
 
962
- #: ../classes/settings.php:445
963
  #, php-format
964
- msgid ""
965
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
966
- "can fix it in the next release."
967
- msgstr ""
968
- "عندما تجد أخطاء الرجاء <a href=\"%s\">التبيلغ عنها لنا</a> لكي نتمكن من "
969
- "إصلاحها في النسخة القادمة."
970
 
971
- #: ../classes/settings.php:448
972
  msgid "Important!"
973
  msgstr "مهم!"
974
 
975
- #: ../classes/settings.php:448
976
- msgid ""
977
- "If you updated the Admin Columns plugin without prior knowledge of such "
978
- "changes, Please roll back to the latest"
979
- msgstr ""
980
- "إذا قمت بتحديث Admin Columns دون معرفة مسبقة بهذه التغييرات، فالرجاء الرجوع "
981
- "لآخر"
982
 
983
- #: ../classes/settings.php:448
984
  msgid "version 1"
985
  msgstr "النسخة 1"
986
 
987
- #: ../classes/settings.php:448
988
  msgid "of this plugin."
989
  msgstr "من هذه الإضافة"
990
 
991
- #: ../classes/settings.php:454
992
  msgid "Changelog for"
993
  msgstr "سجل التغييرات لـ"
994
 
995
- #: ../classes/settings.php:469
996
  msgid "Learn more"
997
  msgstr "تعلم المزيد"
998
 
999
- #: ../classes/settings.php:479
1000
  msgid "Start using Admin Columns"
1001
  msgstr "البدء باستخدام Admin Columns"
1002
 
1003
- #: ../classes/settings.php:522
1004
  msgid "General Settings"
1005
  msgstr "إعدادات عامة"
1006
 
1007
- #: ../classes/settings.php:523
1008
  msgid "Customize your Admin Columns settings."
1009
  msgstr "قم بتخصيص إعدادات Admin Columns."
1010
 
1011
- #: ../classes/settings.php:546
1012
- msgid ""
1013
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1014
  msgstr ""
1015
- "إظهار زر \"تحرير الأعمدة\" على الشاشات الإدارية. الإفتراضي هو <code>لا</"
1016
- "code>."
1017
 
1018
- #: ../classes/settings.php:553 ../classes/settings.php:682
1019
  msgid "Save"
1020
  msgstr "حفظ"
1021
 
1022
- #: ../classes/settings.php:593
1023
  msgid "Restore Settings"
1024
  msgstr "استرجاع الإعدادات"
1025
 
1026
- #: ../classes/settings.php:594
1027
  msgid "This will delete all column settings and restore the default settings."
1028
  msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
1029
 
1030
- #: ../classes/settings.php:600
1031
  msgid "Restore default settings"
1032
  msgstr "استرجاع الإعدادات الإفتراضية"
1033
 
1034
- #: ../classes/settings.php:600
1035
- msgid ""
1036
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1037
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1038
- msgstr ""
1039
- "تحذير! كافة بيانات الأعمدة المحفوظة سيتم حذفها. لا يمكن التراجع عن هذا. "
1040
- "\\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
1041
 
1042
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1043
  msgid "Settings"
1044
  msgstr "إعدادات"
1045
 
1046
- #: ../classes/settings.php:621
1047
  msgid "Add-ons"
1048
  msgstr ""
1049
 
1050
- #: ../classes/settings.php:647
1051
  msgid "Posttypes"
1052
  msgstr ""
1053
 
1054
- #: ../classes/settings.php:648
1055
  msgid "Others"
1056
  msgstr ""
1057
 
1058
- #: ../classes/settings.php:649
1059
  msgid "Taxonomies"
1060
  msgstr ""
1061
 
1062
- #: ../classes/settings.php:668
1063
  #, php-format
1064
- msgid ""
1065
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1066
- "be edited in the admin panel."
1067
  msgstr ""
1068
 
1069
- #: ../classes/settings.php:678
1070
  msgid "Store settings"
1071
  msgstr "حفظ الإعدادات"
1072
 
1073
- #: ../classes/settings.php:682
1074
  msgid "Update"
1075
  msgstr "تحديث"
1076
 
1077
- #: ../classes/settings.php:686
1078
  #, php-format
1079
- msgid ""
1080
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1081
- "\\' to delete, \\'Cancel\\' to stop"
1082
- msgstr ""
1083
- "تحذير! بيانات أعمدة %s سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' "
1084
- "للحذف، \\'إلغاء\\' للإيقاف"
1085
 
1086
- #: ../classes/settings.php:687
1087
  msgid "columns"
1088
  msgstr "أعمدة"
1089
 
1090
- #: ../classes/settings.php:701
1091
  msgid "Get Admin Columns Pro"
1092
  msgstr ""
1093
 
1094
- #: ../classes/settings.php:705
1095
  msgid "Add Sorting"
1096
  msgstr "أضف ترتيب"
1097
 
1098
- #: ../classes/settings.php:706
1099
  msgid "Add Filtering"
1100
  msgstr "أضف تصفية"
1101
 
1102
- #: ../classes/settings.php:707
1103
  msgid "Add Import/Export"
1104
  msgstr "أضف استيراد/تصدير"
1105
 
1106
- #: ../classes/settings.php:708
1107
  msgid "Add Direct Editing"
1108
  msgstr ""
1109
 
1110
- #: ../classes/settings.php:711
1111
  #, php-format
1112
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1113
  msgstr ""
1114
 
 
 
 
 
 
 
 
 
 
 
 
 
1115
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1116
  msgid "Support"
1117
  msgstr "دعم"
1118
 
1119
- #: ../classes/settings.php:745
1120
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1121
- msgstr ""
1122
- "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
1123
 
1124
- #: ../classes/settings.php:748
1125
  #, php-format
1126
- msgid ""
1127
- "For full documentation, bug reports, feature suggestions and other tips <a "
1128
- "href='%s'>visit the Admin Columns website</a>"
1129
- msgstr ""
1130
- "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من "
1131
- "النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
1132
 
1133
- #: ../classes/settings.php:777
1134
  msgid "Drag and drop to reorder"
1135
  msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
1136
 
1137
- #: ../classes/settings.php:780
1138
  msgid "Add Column"
1139
  msgstr "أضف عمود"
1140
 
1141
- #: ../classes/settings.php:853
1142
  msgid "Active"
1143
  msgstr ""
1144
 
1145
- #: ../classes/settings.php:854
1146
  msgid "Deactivate"
1147
  msgstr ""
1148
 
1149
- #: ../classes/settings.php:861
1150
  msgid "Installed"
1151
  msgstr ""
1152
 
1153
- #: ../classes/settings.php:862
1154
  msgid "Activate"
1155
  msgstr ""
1156
 
1157
- #: ../classes/settings.php:876
1158
  msgid "Download & Install"
1159
  msgstr ""
1160
 
1161
- #: ../classes/settings.php:881
1162
  msgid "Get this add-on"
1163
  msgstr ""
1164
 
1165
- #: ../classes/storage_model.php:207
1166
  msgid "settings succesfully restored."
1167
  msgstr "تمت إستعادة الإعدادات بنجاح."
1168
 
1169
- #: ../classes/storage_model.php:222
1170
  msgid "No columns settings available."
1171
  msgstr "لا توجد إعدادات أعمدة متوفرة."
1172
 
1173
- #: ../classes/storage_model.php:243
1174
  #, php-format
1175
  msgid "You are trying to store the same settings for %s."
1176
  msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
1177
 
1178
- #: ../classes/storage_model.php:247
1179
  #, php-format
1180
  msgid "Settings for %s updated succesfully."
1181
  msgstr "إعدادات %s تم تحديثها بنجاح."
@@ -1192,61 +1131,65 @@ msgstr "وصلات"
1192
  msgid "Users"
1193
  msgstr "مستخدمون"
1194
 
1195
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
 
1196
  msgid "Upgrade"
1197
  msgstr "تحديث"
1198
 
1199
- #: ../classes/upgrade.php:84
1200
  msgid "requires a database upgrade"
1201
  msgstr "يتطلب ترقية قاعدة البيانات"
1202
 
1203
- #: ../classes/upgrade.php:87
1204
  msgid "why?"
1205
  msgstr "لماذا؟"
1206
 
1207
- #: ../classes/upgrade.php:88
1208
  msgid "Please"
1209
  msgstr "فضلا"
1210
 
1211
- #: ../classes/upgrade.php:89
1212
  msgid "backup your database"
1213
  msgstr "قم بعمل نسخة إحتياطية من قاعدة بياناتك"
1214
 
1215
- #: ../classes/upgrade.php:90
1216
  msgid "then click"
1217
  msgstr "ثم انقر"
1218
 
1219
- #: ../classes/upgrade.php:298
1220
  msgid "Migrating Column Settings"
1221
  msgstr "نقل إعدادات الأعمدة"
1222
 
1223
- #: ../classes/upgrade.php:334
1224
  msgid "No Upgrade Required"
1225
  msgstr "لا تحديث مطلوب"
1226
 
1227
- #: ../classes/upgrade.php:335
1228
  msgid "Return to welcome screen."
1229
  msgstr "رجوع إلى صفحة الترحيب."
1230
 
1231
- #: ../classes/upgrade.php:353
1232
  msgid "Upgrade Complete!"
1233
  msgstr "اكتمل التحديث"
1234
 
1235
- #: ../classes/upgrade.php:353
1236
  msgid "Return to settings."
1237
  msgstr "العودة للإعدادات."
1238
 
1239
- #: ../classes/upgrade.php:354
1240
  msgid "Error"
1241
  msgstr "خطأ"
1242
 
1243
- #: ../classes/upgrade.php:355
1244
- msgid ""
1245
- "Sorry. Something went wrong during the upgrade process. Please report this "
1246
- "on the support forum."
1247
- msgstr ""
1248
- "عفوا. حدث خطأ أثناء عملية الترقية. الرجاء التبليغ عن هذا في منتديات الدعم."
1249
 
1250
- #: ../codepress-admin-columns.php:439
1251
  msgid "Edit columns"
1252
  msgstr "تحرير الأعمدة"
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
9
+ "PO-Revision-Date: 2014-12-10 17:24+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\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.7.1\n"
 
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
24
+ #: ../classes/addons.php:110
25
  msgid "Third party plugin integration"
26
  msgstr ""
27
 
28
+ #: ../classes/addons.php:135
29
  msgid "Advanced Custom Fields"
30
  msgstr ""
31
 
32
+ #: ../classes/addons.php:136
33
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
34
+ msgstr ""
35
+
36
+ #: ../classes/addons.php:141
37
+ msgid "WooCommerce"
38
+ msgstr ""
39
+
40
+ #: ../classes/addons.php:142
41
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
42
  msgstr ""
43
 
44
+ #: ../classes/column.php:500
45
  msgid "Thumbnail"
46
  msgstr "صورة مصغرة"
47
 
48
+ #: ../classes/column.php:501
49
  msgid "Medium"
50
  msgstr "وسط"
51
 
52
+ #: ../classes/column.php:502
53
  msgid "Large"
54
  msgstr "كبير"
55
 
56
+ #: ../classes/column.php:503
57
  msgid "Full"
58
  msgstr "كامل"
59
 
60
+ #: ../classes/column.php:863
61
  msgid "Date Format"
62
  msgstr "تنسيق التاريخ"
63
 
64
+ #: ../classes/column.php:864
65
  msgid "This will determine how the date will be displayed."
66
  msgstr "هذا سيحدد كيف سيتم عرض التاريخ."
67
 
68
+ #: ../classes/column.php:870
69
  msgid "Example:"
70
  msgstr "مثال:"
71
 
72
+ #: ../classes/column.php:872
73
  #, php-format
74
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
75
+ msgstr "أترك خاليا لتنسيق ووردبريس الإفتراضي للتاريخ، قم بتغيير <a href=\"%s\">تنسيق التاريخ الخاص بك هنا</a>."
 
 
 
 
76
 
77
+ #: ../classes/column.php:873
78
  msgid "Documentation on date and time formatting."
79
  msgstr "توثيق حول تنسيق التاريخ والوقت."
80
 
81
+ #: ../classes/column.php:887
82
  msgid "Excerpt length"
83
  msgstr "طول المقتطف"
84
 
85
+ #: ../classes/column.php:888
86
  msgid "Number of words"
87
  msgstr "عدد الكلمات"
88
 
89
+ #: ../classes/column.php:906
90
  msgid "Preview size"
91
  msgstr "حجم المعاينة"
92
 
93
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
94
  msgid "Custom"
95
  msgstr "مخصوص"
96
 
97
+ #: ../classes/column.php:926
98
  msgid "width"
99
  msgstr "عرض"
100
 
101
+ #: ../classes/column.php:929
102
  msgid "height"
103
  msgstr "إرتفاع"
104
 
105
+ #: ../classes/column.php:943
106
  msgid "Before"
107
  msgstr "قبل"
108
 
109
+ #: ../classes/column.php:943
110
  msgid "This text will appear before the custom field value."
111
  msgstr "هذا النص سيظهر قبل الحقل المخصوص."
112
 
113
+ #: ../classes/column.php:949
114
  msgid "After"
115
  msgstr "بعد"
116
 
117
+ #: ../classes/column.php:949
118
  msgid "This text will appear after the custom field value."
119
  msgstr "هذا النص سيظهر بعد الحقل المخصوص."
120
 
121
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
 
 
122
  msgid "Edit"
123
  msgstr "تحرير"
124
 
125
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
126
  msgid "Remove"
127
  msgstr "إزالة"
128
 
129
+ #: ../classes/column.php:1062
130
  msgid "Type"
131
  msgstr "نوع"
132
 
133
+ #: ../classes/column.php:1062
134
  msgid "Choose a column type."
135
  msgstr "اختر نوع عمود"
136
 
137
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
138
  msgid "ID"
139
  msgstr "رقم"
140
 
141
+ #: ../classes/column.php:1072
142
  msgid "Label"
143
  msgstr "العنوان"
144
 
145
+ #: ../classes/column.php:1072
146
  msgid "This is the name which will appear as the column header."
147
  msgstr "هذا هو الاسم الذي سيظهر كترويسة العمود."
148
 
149
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
150
  msgid "Width"
151
  msgstr "عرض"
152
 
153
+ #: ../classes/column.php:1081 ../classes/column.php:1082
154
  msgid "default"
155
  msgstr "إفتراضي"
156
 
157
+ #: ../classes/column/acf-placeholder.php:19
158
  msgid "ACF Field"
159
  msgstr ""
160
 
161
  #: ../classes/column/acf-placeholder.php:32
162
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
163
  msgstr ""
164
 
165
  #: ../classes/column/acf-placeholder.php:35
166
  #, php-format
167
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
 
 
168
  msgstr ""
169
 
170
  #: ../classes/column/acf-placeholder.php:38
171
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
 
 
 
172
  msgstr ""
173
 
174
+ #: ../classes/column/acf-placeholder.php:44
175
  msgid "Find out more"
176
  msgstr ""
177
 
178
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20
179
+ #: ../classes/column/user/actions.php:19
 
 
180
  msgid "Actions"
181
  msgstr "تطبيقات"
182
 
183
+ #: ../classes/column/actions.php:87
184
+ msgid "Use icons?"
185
+ msgstr ""
186
+
187
+ #: ../classes/column/actions.php:87
188
+ msgid "Use icons instead of text for displaying the actions."
189
+ msgstr ""
190
+
191
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
192
+ msgid "Yes"
193
+ msgstr ""
194
+
195
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
196
+ msgid "No"
197
+ msgstr ""
198
+
199
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
200
  msgid "Unapprove"
201
  msgstr "إلغاء الموافقة"
202
 
203
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
204
  msgid "Approve"
205
  msgstr "موافقة"
206
 
207
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
208
  msgid "Restore"
209
  msgstr "استرجاع"
210
 
211
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
212
  msgid "Delete Permanently"
213
  msgstr "حذف نهائي"
214
 
215
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
216
  msgid "Quick&nbsp;Edit"
217
  msgstr "تحرير سريع"
218
 
219
+ #: ../classes/column/comment/actions.php:101
220
  msgid "Reply"
221
  msgstr "رد"
222
 
223
+ #: ../classes/column/comment/agent.php:19
224
  msgid "Agent"
225
  msgstr "عميل"
226
 
227
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
228
  msgid "Approved"
229
  msgstr "موافق عليه"
230
 
231
+ #: ../classes/column/comment/author-avatar.php:19
232
  msgid "Avatar"
233
  msgstr "صورة"
234
 
235
+ #: ../classes/column/comment/author-email.php:19
236
  msgid "Author email"
237
  msgstr "بريد الكاتب"
238
 
239
+ #: ../classes/column/comment/author-ip.php:19
240
  msgid "Author IP"
241
  msgstr "عنوان آي بي الكاتب"
242
 
243
+ #: ../classes/column/comment/author-url.php:19
244
  msgid "Author url"
245
  msgstr "عنوان موقع الكاتب"
246
 
247
+ #: ../classes/column/comment/author.php:19
248
  msgid "Author"
249
  msgstr "الكاتب"
250
 
251
+ #: ../classes/column/comment/date-gmt.php:19
252
  msgid "Date GMT"
253
  msgstr "تاريخ GMT"
254
 
255
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
256
  #, php-format
257
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
258
  msgstr "أرسل في <a href=\"%1$s\">%2$s في %3$s</a>"
259
 
260
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
261
  msgid "Date"
262
  msgstr "تاريخ"
263
 
264
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
265
  msgid "Excerpt"
266
  msgstr "مقتطف"
267
 
268
+ #: ../classes/column/comment/reply-to.php:19
269
  msgid "In Reply To"
270
  msgstr "ردا على"
271
 
272
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
273
  msgid "Word count"
274
  msgstr "عدد الكلمات"
275
 
276
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
277
  msgid "Custom Field"
278
  msgstr "حقل مخصوص"
279
 
280
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
281
  msgid "Default"
282
  msgstr "إفتراضي"
283
 
284
+ #: ../classes/column/custom-field.php:95
285
  msgid "Checkmark (true/false)"
286
  msgstr "علامة إختيار (صح/خطأ)"
287
 
288
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
289
  msgid "Color"
290
  msgstr "لون"
291
 
292
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
293
  msgid "Counter"
294
  msgstr "عداد"
295
 
296
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
297
  msgid "Image"
298
  msgstr "صورة"
299
 
300
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
301
  msgid "Media Library"
302
  msgstr "مكتبة الوسائط"
303
 
304
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
305
  msgid "Multiple Values"
306
  msgstr "قيم متعددة"
307
 
308
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
309
  msgid "Numeric"
310
  msgstr "رقمي"
311
 
312
+ #: ../classes/column/custom-field.php:104
313
  msgid "Post Title (Post ID's)"
314
  msgstr "عنوان تدوينة (أرقام تدوينات)"
315
 
316
+ #: ../classes/column/custom-field.php:105
317
  msgid "Username (User ID's)"
318
  msgstr "اسم مستخدم (أرقام مستخدمين)"
319
 
320
+ #: ../classes/column/custom-field.php:356
321
  msgid "Select your custom field."
322
  msgstr "اختر حقلك المخصوص"
323
 
324
+ #: ../classes/column/custom-field.php:366
325
  msgid "No custom fields available."
326
  msgstr "لا توجد حقول مخصوصة متوفرة."
327
 
328
+ #: ../classes/column/custom-field.php:373
329
  msgid "Field Type"
330
  msgstr "نوع الحقل"
331
 
332
+ #: ../classes/column/custom-field.php:373
333
  msgid "This will determine how the value will be displayed."
334
  msgstr "هذا سيحدد كيف سيتم عرض القيمة."
335
 
336
+ #: ../classes/column/link/actions.php:49
337
  #, php-format
338
  msgid ""
339
  "You are about to delete this link '%s'\n"
342
  "انت على وشك حذف هذا الرابط '%s'\n"
343
  " 'إلغاء' للإيقاف، 'موافق' للحذف."
344
 
345
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
346
  msgid "Delete"
347
  msgstr "مسح"
348
 
349
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
350
  msgid "Description"
351
  msgstr "وصف"
352
 
353
+ #: ../classes/column/link/length.php:19
354
  msgid "Length"
355
  msgstr "طول"
356
 
357
+ #: ../classes/column/link/notes.php:19
358
  msgid "Notes"
359
  msgstr "ملاحظات"
360
 
361
+ #: ../classes/column/link/owner.php:19
362
  msgid "Owner"
363
  msgstr "مالك"
364
 
365
+ #: ../classes/column/link/rss.php:19
366
  msgid "Rss"
367
  msgstr "Rss"
368
 
369
+ #: ../classes/column/link/target.php:19
370
  msgid "Target"
371
  msgstr "هدف"
372
 
373
+ #: ../classes/column/media/alternate-text.php:19
374
  msgid "Alt"
375
  msgstr "بديل"
376
 
377
+ #: ../classes/column/media/available-sizes.php:20
378
  msgid "Available Sizes"
379
  msgstr "الأحجام المتوفرة"
380
 
381
+ #: ../classes/column/media/available-sizes.php:40
382
  msgid "full size"
383
  msgstr "حجم كامل"
384
 
385
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
386
  msgid "Caption"
387
  msgstr "شرح"
388
 
389
+ #: ../classes/column/media/dimensions.php:19
390
  msgid "Dimensions"
391
  msgstr "أبعاد"
392
 
393
+ #: ../classes/column/media/exif-data.php:19
394
  msgid "EXIF data"
395
  msgstr "بيانات EXIF"
396
 
397
+ #: ../classes/column/media/exif-data.php:38
398
  msgid "Aperture"
399
  msgstr "فتحة"
400
 
401
+ #: ../classes/column/media/exif-data.php:39
402
  msgid "Credit"
403
  msgstr "شرف"
404
 
405
+ #: ../classes/column/media/exif-data.php:40
406
  msgid "Camera"
407
  msgstr "كاميرا"
408
 
409
+ #: ../classes/column/media/exif-data.php:42
410
  msgid "Timestamp"
411
  msgstr "طابع زمني"
412
 
413
+ #: ../classes/column/media/exif-data.php:43
414
  msgid "Copyright EXIF"
415
  msgstr "بيانات EXIF حق النشر"
416
 
417
+ #: ../classes/column/media/exif-data.php:44
418
  msgid "Focal Length"
419
  msgstr "بعد بؤري"
420
 
421
+ #: ../classes/column/media/exif-data.php:45
422
  msgid "ISO"
423
  msgstr "ISO"
424
 
425
+ #: ../classes/column/media/exif-data.php:46
426
  msgid "Shutter Speed"
427
  msgstr "سرعة مصراع"
428
 
429
+ #: ../classes/column/media/exif-data.php:47
430
  msgid "Title"
431
  msgstr "عنوان"
432
 
433
+ #: ../classes/column/media/file-name.php:19
434
  msgid "File name"
435
  msgstr "اسم ملف"
436
 
437
+ #: ../classes/column/media/file-size.php:19
438
  msgid "File size"
439
  msgstr "حجم ملف"
440
 
441
+ #: ../classes/column/media/full-path.php:19
442
  msgid "Full path"
443
  msgstr "مسار كامل"
444
 
445
+ #: ../classes/column/media/height.php:19
446
  msgid "Height"
447
  msgstr "إرتفاع"
448
 
449
+ #: ../classes/column/media/mime-type.php:19
450
  msgid "Mime type"
451
  msgstr "نوع Mime"
452
 
453
+ #: ../classes/column/post/actions.php:31
454
  msgid "Edit this item"
455
  msgstr "تحرير هذا العنصر"
456
 
457
+ #: ../classes/column/post/actions.php:34
458
  msgid "Edit this item inline"
459
  msgstr "تحرير هذا العنصر داخليا"
460
 
461
+ #: ../classes/column/post/actions.php:39
462
  msgid "Restore this item from the Trash"
463
  msgstr "استعادة هذا العنصر من المهملات"
464
 
465
+ #: ../classes/column/post/actions.php:41
466
  msgid "Move this item to the Trash"
467
  msgstr "نقل هذا العنصر إلى المهملات"
468
 
469
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
470
  msgid "Trash"
471
  msgstr "المهملات"
472
 
473
+ #: ../classes/column/post/actions.php:43
474
  msgid "Delete this item permanently"
475
  msgstr "حذف هذا العنصر نهائيا"
476
 
477
+ #: ../classes/column/post/actions.php:48
478
  #, php-format
479
  msgid "Preview &#8220;%s&#8221;"
480
  msgstr "معاينة &#8220;%s&#8221;"
481
 
482
+ #: ../classes/column/post/actions.php:48
483
  msgid "Preview"
484
  msgstr "معاينة"
485
 
486
+ #: ../classes/column/post/actions.php:50
487
  #, php-format
488
  msgid "View &#8220;%s&#8221;"
489
  msgstr "عرض &#8220;%s&#8221;"
490
 
491
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
492
  msgid "View"
493
  msgstr "عرض"
494
 
495
+ #: ../classes/column/post/attachment-count.php:19
496
  msgid "No. of Attachments"
497
  msgstr "عدد المرفقات"
498
 
499
+ #: ../classes/column/post/attachment.php:19
500
  msgid "Attachment"
501
  msgstr "مرفق"
502
 
503
+ #: ../classes/column/post/author-name.php:20
504
  msgid "Display Author As"
505
  msgstr "عرض الكاتب كـ"
506
 
507
+ #: ../classes/column/post/author-name.php:40
508
  msgid "Display Name"
509
  msgstr "اسم العرض"
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
  msgid "First Name"
513
  msgstr "الاسم الأول"
514
 
515
+ #: ../classes/column/post/author-name.php:42
516
  msgid "Last Name"
517
  msgstr "الاسم الأخير"
518
 
519
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
520
  msgid "Nickname"
521
  msgstr "الاسم المستعار"
522
 
523
+ #: ../classes/column/post/author-name.php:44
524
  msgid "User Login"
525
  msgstr "اسم الدخول"
526
 
527
+ #: ../classes/column/post/author-name.php:45
528
  msgid "User Email"
529
  msgstr "بريد المستخدم"
530
 
531
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
532
  msgid "User ID"
533
  msgstr "رقم المستخدم"
534
 
535
+ #: ../classes/column/post/author-name.php:47
536
  msgid "First and Last Name"
537
  msgstr "الاسم الأول والأخير"
538
 
539
+ #: ../classes/column/post/author-name.php:124
540
  msgid "This is the format of the author name."
541
  msgstr "هذا هو تنسيق اسم الكاتب."
542
 
543
+ #: ../classes/column/post/before-moretag.php:19
544
  msgid "Before More Tag"
545
  msgstr "قبل وسم المزيد"
546
 
547
+ #: ../classes/column/post/comment-count.php:20
548
  msgid "Comment count"
549
  msgstr "عدد التعليقات"
550
 
551
+ #: ../classes/column/post/comment-count.php:34
552
  msgid "Total"
553
  msgstr "المجموع"
554
 
555
+ #: ../classes/column/post/comment-count.php:36
556
  msgid "Pending"
557
  msgstr "بالانتظار"
558
 
559
+ #: ../classes/column/post/comment-count.php:37
560
  msgid "Spam"
561
  msgstr "مزعج"
562
 
563
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
564
  msgid "Comment status"
565
  msgstr "حالة التعليق"
566
 
567
+ #: ../classes/column/post/comment-count.php:99
568
  msgid "Select which comment status you like to display."
569
  msgstr "اختر حالة التعليق الذي تريد عرضه."
570
 
571
+ #: ../classes/column/post/featured-image.php:19
572
  msgid "Featured Image"
573
  msgstr "الصورة المميزة"
574
 
575
+ #: ../classes/column/post/formats.php:19
576
  msgid "Post Format"
577
  msgstr "تنسيق التدوينة"
578
 
579
+ #: ../classes/column/post/modified.php:19
580
  msgid "Last modified"
581
  msgstr "آخر تحديث"
582
 
583
+ #: ../classes/column/post/order.php:19
584
  msgid "Page Order"
585
  msgstr "ترتيب الصفحة"
586
 
587
+ #: ../classes/column/post/page-template.php:19
588
  msgid "Page Template"
589
  msgstr "قالب الصفحة"
590
 
591
+ #: ../classes/column/post/parent.php:19
592
  msgid "Parent"
593
  msgstr "الأب"
594
 
595
+ #: ../classes/column/post/path.php:19
596
+ msgid "Path"
597
+ msgstr ""
598
+
599
+ #: ../classes/column/post/permalink.php:19
600
  msgid "Permalink"
601
  msgstr ""
602
 
603
+ #: ../classes/column/post/permalink.php:68
604
+ msgid "Link to post"
605
+ msgstr ""
606
+
607
+ #: ../classes/column/post/permalink.php:68
608
+ msgid "This will make the permalink clickable."
609
+ msgstr ""
610
+
611
+ #: ../classes/column/post/ping-status.php:19
612
  msgid "Ping status"
613
  msgstr "حالة التنبيه"
614
 
615
+ #: ../classes/column/post/roles.php:19
616
  msgid "Roles"
617
  msgstr "الأدوار"
618
 
619
+ #: ../classes/column/post/slug.php:19
620
  msgid "Slug"
621
  msgstr "الاسم اللطيف"
622
 
623
+ #: ../classes/column/post/status.php:19
624
  msgid "Status"
625
  msgstr "الحالة"
626
 
627
+ #: ../classes/column/post/status.php:29
628
  msgid "Published"
629
  msgstr "منشور"
630
 
631
+ #: ../classes/column/post/status.php:30
632
  msgid "Draft"
633
  msgstr "مسودة"
634
 
635
+ #: ../classes/column/post/status.php:31
636
  msgid "Scheduled"
637
  msgstr "مجدول"
638
 
639
+ #: ../classes/column/post/status.php:32
640
  msgid "Private"
641
  msgstr "خاص"
642
 
643
+ #: ../classes/column/post/status.php:33
644
  msgid "Pending Review"
645
  msgstr "بانتظار المراجعة"
646
 
647
+ #: ../classes/column/post/status.php:34
648
  msgid "Auto Draft"
649
  msgstr ""
650
 
651
+ #: ../classes/column/post/sticky.php:19
652
  msgid "Sticky"
653
  msgstr "لاصق"
654
 
655
+ #: ../classes/column/post/title-raw.php:19
656
+ msgid "Title without actions"
657
+ msgstr ""
658
+
659
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
660
  msgid "Taxonomy"
661
  msgstr "التصنيف"
662
 
663
+ #: ../classes/column/used-by-menu.php:20
664
+ msgid "Used by Menu"
665
+ msgstr ""
666
+
667
+ #: ../classes/column/used-by-menu.php:133
668
+ msgid "Link to menu"
669
+ msgstr ""
670
+
671
+ #: ../classes/column/used-by-menu.php:133
672
+ msgid "This will make the title link to the menu."
673
+ msgstr ""
674
+
675
+ #: ../classes/column/user/comment-count.php:19
676
  msgid "Comment Count"
677
  msgstr "عدد التعليقات"
678
 
679
+ #: ../classes/column/user/first-name.php:19
680
  msgid "First name"
681
  msgstr "الاسم الأول"
682
 
683
+ #: ../classes/column/user/last-name.php:19
684
  msgid "Last name"
685
  msgstr "الاسم الأخير"
686
 
687
+ #: ../classes/column/user/post-count.php:19
688
  msgid "Post Count"
689
  msgstr "عدد التدوينات"
690
 
691
+ #: ../classes/column/user/post-count.php:102
692
  msgid "Post Type"
693
  msgstr "نوع تدوبنة"
694
 
695
+ #: ../classes/column/user/registered.php:19
696
  msgid "Registered"
697
  msgstr "مسجل"
698
 
699
+ #: ../classes/column/user/url.php:19
700
  msgid "Url"
701
  msgstr "عنوان موقع"
702
 
703
+ #: ../classes/settings.php:111
704
  msgid "Add-on successfully activated."
705
  msgstr ""
706
 
707
+ #: ../classes/settings.php:114
708
  msgid "Add-on successfully deactivated."
709
  msgstr ""
710
 
711
+ #: ../classes/settings.php:169
712
  msgid "Admin Columns Settings"
713
  msgstr "إعدادات Admin Columns"
714
 
715
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
716
  msgid "Admin Columns"
717
  msgstr "Admin Columns"
718
 
719
+ #: ../classes/settings.php:217
720
  #, php-format
721
  msgid "%s column is already present and can not be duplicated."
722
  msgstr "عمود %s موجود بالفعل ولا يمكن استنساخه."
723
 
724
+ #: ../classes/settings.php:271
725
  msgid "Default settings succesfully restored."
726
  msgstr "تمت إستعادة الإعدادات الإفتراضية بنجاح."
727
 
728
+ #: ../classes/settings.php:288
729
  msgid "Overview"
730
  msgstr "نظرة عامة"
731
 
732
+ #: ../classes/settings.php:291
733
  msgid ""
734
+ "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and "
735
+ "reorder them."
736
+ msgstr "هذا البرنامج هو لإضافة وإزالة أعمدة إضافية في الشاشات الإدارية لـ(أنواع) التدوينات، الصفحات، مكتبة الوسائط، التعليقات، الوصلات والمستخدمين. قم بتغيير تسمية الأعمدة وإعادة ترتيبها."
 
 
 
 
737
 
738
+ #: ../classes/settings.php:294
739
  msgid "Basics"
740
  msgstr "مبادئ"
741
 
742
+ #: ../classes/settings.php:296
743
  msgid "Change order"
744
  msgstr "تغيير الترتيب"
745
 
746
+ #: ../classes/settings.php:297
747
+ msgid "By dragging the columns you can change the order which they will appear in."
 
748
  msgstr "عن طريق سحب الأعمدة يمكنك تغيير ترتيب الذي سوف تظهر فيه."
749
 
750
+ #: ../classes/settings.php:298
751
  msgid "Change label"
752
  msgstr "تغيير العنوان"
753
 
754
+ #: ../classes/settings.php:299
755
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
756
+ msgstr "بالنقر على المثلث سترى خيارات العمود. هنا يمكنك تغيير تسمية ترويسات الأعمدة."
 
 
 
757
 
758
+ #: ../classes/settings.php:300
759
  msgid "Change column width"
760
  msgstr "تغيير عرض العمود"
761
 
762
+ #: ../classes/settings.php:301
763
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
764
+ msgstr "بالنقر على المثلث سترى خيارات العمود. باستخدام شريط التمرير القابل للسحب يمكنك تعيين عرض الأعمدة بالنسب المئوية."
 
 
 
 
765
 
766
+ #: ../classes/settings.php:307
767
  msgid "'Custom Field' column"
768
  msgstr "عمود 'حقل مخصوص'"
769
 
770
+ #: ../classes/settings.php:308
771
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
772
+ msgstr "يستخدم عمود الحقل المخصوص الحقول المخصوصة من التدوينات والمستخدمين. هناك 10 أنواع يمكنك تعيينها."
 
 
 
 
773
 
774
+ #: ../classes/settings.php:310
775
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
776
+ msgstr "قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم بـ '،' فاصلة."
 
 
 
 
777
 
778
+ #: ../classes/settings.php:311
779
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
780
+ msgstr "قيمة: يجب أن يحتوي عنوان URL للصورة أو معرفات المرفقات (مفصولة بـ '،' فاصلة)."
 
 
 
781
 
782
+ #: ../classes/settings.php:312
783
  msgid "Value: This will show the first 20 words of the Post content."
784
  msgstr "قيمة: سيقوم هذا بإظهار أول 20 كلمة من محتوى التدوينة."
785
 
786
+ #: ../classes/settings.php:313
787
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
788
  msgstr "قيمة: يجب أن يكون مصفوفة. هذا سوف يسطح أي مصفوفة (متعددة الأبعاد)."
789
 
790
+ #: ../classes/settings.php:314
791
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
792
+ msgstr "القيمة: الأعداد الصحيحة فقط <br/> إذا كان لديك 'ملحق الترتيب' سيتم استخدام هذه للترتيب، بحيث يمكنك ترتيب تدويناتك على القيم الرقمية (الحقل المخصوص)."
 
 
 
 
793
 
794
+ #: ../classes/settings.php:315
795
  #, php-format
796
+ msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
797
+ msgstr "قيمة: يمكن أن تكون طابع يونكس زمني أو تنسيق تاريخ كما هو موضح في <a href='%s'>Codex</a>. يمكنك تغيير تنسيق التاريخ المخرج من صفحة <a href='%s'>الإعدادات العامة</a>."
 
 
 
 
 
 
798
 
799
+ #: ../classes/settings.php:316
800
  msgid "Post Titles"
801
  msgstr "عناوين تدوينات"
802
 
803
+ #: ../classes/settings.php:316
804
  msgid "Value: can be one or more Post ID's (seperated by ',')."
805
  msgstr "قيمة: يمكن أن تكون رقم تدوينة واحدة أو أكثر (مفصولة بـ',')."
806
 
807
+ #: ../classes/settings.php:317
808
  msgid "Usernames"
809
  msgstr "أسماء مستخدمين"
810
 
811
+ #: ../classes/settings.php:317
812
  msgid "Value: can be one or more User ID's (seperated by ',')."
813
  msgstr "قيمة: يمكن أن تكون رقم مستخدم واحد أو أكثر (مفصولة بـ',')."
814
 
815
+ #: ../classes/settings.php:318
816
  msgid "Checkmark"
817
  msgstr "علامة اختيار"
818
 
819
+ #: ../classes/settings.php:318
820
  msgid "Value: should be a 1 (one) or 0 (zero)."
821
  msgstr "قيمة: يجب أن تكون 1 (واحد) أو 0 (صفر)."
822
 
823
+ #: ../classes/settings.php:319
824
  msgid "Value: hex value color, such as #808080."
825
  msgstr "قيمة: لون بقيمة عشرية، مثل 808080#."
826
 
827
+ #: ../classes/settings.php:320
828
+ msgid "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."
829
+ msgstr "القيمة: يمكن أن يكون إما سلسلة أو مجموعة. هذا سيعرض عدد مرات استخدام المفتاح من قبل العنصر."
 
 
 
 
830
 
831
+ #: ../classes/settings.php:409
832
  msgid "Welcome to Admin Columns"
833
  msgstr "مرحبا في Admin Columns"
834
 
835
+ #: ../classes/settings.php:412
836
  msgid "Thank you for updating to the latest version!"
837
  msgstr "شكرا لك على التحديث للنسخة الأخيرة!"
838
 
839
+ #: ../classes/settings.php:413
840
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
841
+ msgstr "Admin Columns أصبحت مصقولة وممتعة أكثر من أي وقت مضى. نأمل أن تنال إعجابكم."
 
 
 
842
 
843
+ #: ../classes/settings.php:418
844
  msgid "What’s New"
845
  msgstr "ما الجديد"
846
 
847
+ #: ../classes/settings.php:419
848
  msgid "Changelog"
849
  msgstr "سجل التغييرات"
850
 
851
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
852
  msgid "Important"
853
  msgstr "مهم"
854
 
855
+ #: ../classes/settings.php:426
856
  msgid "Database Changes"
857
  msgstr "تغييرات قاعدة البيانات"
858
 
859
+ #: ../classes/settings.php:427
860
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
861
+ msgstr "تم تغيير قاعدة البيانات بين الإصدارات 1 و 2. ولكن حرصنا على ألا يزال بإمكانك الرجوع إلى إصدار 1x دون أية مشاكل."
 
 
 
 
862
 
863
+ #: ../classes/settings.php:430
864
  msgid "Make sure you backup your database and then click"
865
  msgstr "تأكد من عمل نسخة احتياطية لقاعدة بياناتك ثم انقر"
866
 
867
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
868
  msgid "Upgrade Database"
869
  msgstr "تحديث قاعدة البيانات"
870
 
871
+ #: ../classes/settings.php:433
872
  msgid "Potential Issues"
873
  msgstr "مشاكل محتملة"
874
 
875
+ #: ../classes/settings.php:434
876
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
877
+ msgstr "نسبة إلى إعادة بناء كود الإضافة بشكل كبير، وكذلك الملحاقت والدوال، قد لا يعمل موقع الويب الخاص بك بشكل صحيح. من المهم أن تقرأ بشكل كامل"
 
 
 
 
 
878
 
879
+ #: ../classes/settings.php:434
880
  msgid "Migrating from v1 to v2"
881
  msgstr "الانتقال من النسخة 1 إلى النسخة 2"
882
 
883
+ #: ../classes/settings.php:434
884
  msgid "guide to view the full list of changes."
885
  msgstr "توجيه لعرض القائمة الكاملة للتغييرات."
886
 
887
+ #: ../classes/settings.php:434
888
  #, php-format
889
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
890
+ msgstr "عندما تجد أخطاء الرجاء <a href=\"%s\">التبيلغ عنها لنا</a> لكي نتمكن من إصلاحها في النسخة القادمة."
 
 
 
 
891
 
892
+ #: ../classes/settings.php:437
893
  msgid "Important!"
894
  msgstr "مهم!"
895
 
896
+ #: ../classes/settings.php:437
897
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
898
+ msgstr "إذا قمت بتحديث Admin Columns دون معرفة مسبقة بهذه التغييرات، فالرجاء الرجوع لآخر"
 
 
 
 
899
 
900
+ #: ../classes/settings.php:437
901
  msgid "version 1"
902
  msgstr "النسخة 1"
903
 
904
+ #: ../classes/settings.php:437
905
  msgid "of this plugin."
906
  msgstr "من هذه الإضافة"
907
 
908
+ #: ../classes/settings.php:443
909
  msgid "Changelog for"
910
  msgstr "سجل التغييرات لـ"
911
 
912
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
913
  msgid "Learn more"
914
  msgstr "تعلم المزيد"
915
 
916
+ #: ../classes/settings.php:468
917
  msgid "Start using Admin Columns"
918
  msgstr "البدء باستخدام Admin Columns"
919
 
920
+ #: ../classes/settings.php:511
921
  msgid "General Settings"
922
  msgstr "إعدادات عامة"
923
 
924
+ #: ../classes/settings.php:512
925
  msgid "Customize your Admin Columns settings."
926
  msgstr "قم بتخصيص إعدادات Admin Columns."
927
 
928
+ #: ../classes/settings.php:523
929
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
 
930
  msgstr ""
 
 
931
 
932
+ #: ../classes/settings.php:530 ../classes/settings.php:660
933
  msgid "Save"
934
  msgstr "حفظ"
935
 
936
+ #: ../classes/settings.php:570
937
  msgid "Restore Settings"
938
  msgstr "استرجاع الإعدادات"
939
 
940
+ #: ../classes/settings.php:571
941
  msgid "This will delete all column settings and restore the default settings."
942
  msgstr "سيؤدي هذا إلى حذف كافة إعدادات الأعمدة واستعادة الإعدادات الإفتراضية."
943
 
944
+ #: ../classes/settings.php:577
945
  msgid "Restore default settings"
946
  msgstr "استرجاع الإعدادات الإفتراضية"
947
 
948
+ #: ../classes/settings.php:577
949
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
950
+ msgstr "تحذير! كافة بيانات الأعمدة المحفوظة سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
 
 
 
 
951
 
952
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
953
  msgid "Settings"
954
  msgstr "إعدادات"
955
 
956
+ #: ../classes/settings.php:600
957
  msgid "Add-ons"
958
  msgstr ""
959
 
960
+ #: ../classes/settings.php:625
961
  msgid "Posttypes"
962
  msgstr ""
963
 
964
+ #: ../classes/settings.php:626
965
  msgid "Others"
966
  msgstr ""
967
 
968
+ #: ../classes/settings.php:627
969
  msgid "Taxonomies"
970
  msgstr ""
971
 
972
+ #: ../classes/settings.php:646
973
  #, php-format
974
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
 
 
975
  msgstr ""
976
 
977
+ #: ../classes/settings.php:656
978
  msgid "Store settings"
979
  msgstr "حفظ الإعدادات"
980
 
981
+ #: ../classes/settings.php:660
982
  msgid "Update"
983
  msgstr "تحديث"
984
 
985
+ #: ../classes/settings.php:664
986
  #, php-format
987
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
988
+ msgstr "تحذير! بيانات أعمدة %s سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
 
 
 
 
989
 
990
+ #: ../classes/settings.php:665
991
  msgid "columns"
992
  msgstr "أعمدة"
993
 
994
+ #: ../classes/settings.php:684
995
  msgid "Get Admin Columns Pro"
996
  msgstr ""
997
 
998
+ #: ../classes/settings.php:688
999
  msgid "Add Sorting"
1000
  msgstr "أضف ترتيب"
1001
 
1002
+ #: ../classes/settings.php:689
1003
  msgid "Add Filtering"
1004
  msgstr "أضف تصفية"
1005
 
1006
+ #: ../classes/settings.php:690
1007
  msgid "Add Import/Export"
1008
  msgstr "أضف استيراد/تصدير"
1009
 
1010
+ #: ../classes/settings.php:691
1011
  msgid "Add Direct Editing"
1012
  msgstr ""
1013
 
1014
+ #: ../classes/settings.php:694
1015
  #, php-format
1016
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1017
  msgstr ""
1018
 
1019
+ #: ../classes/settings.php:725
1020
+ msgid "Are you happy with Admin Columns?"
1021
+ msgstr ""
1022
+
1023
+ #: ../classes/settings.php:733
1024
+ msgid "What's wrong? Need help? Let us know!"
1025
+ msgstr ""
1026
+
1027
+ #: ../classes/settings.php:734
1028
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1029
+ msgstr ""
1030
+
1031
  #: ../classes/settings.php:742
1032
+ msgid "Docs"
1033
+ msgstr ""
1034
+
1035
+ #: ../classes/settings.php:747
1036
+ msgid "Forums"
1037
+ msgstr ""
1038
+
1039
+ #: ../classes/settings.php:756
1040
+ msgid "Woohoo! We're glad to hear that!"
1041
+ msgstr ""
1042
+
1043
+ #: ../classes/settings.php:757
1044
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1045
+ msgstr ""
1046
+
1047
+ #: ../classes/settings.php:761
1048
+ msgid "Rate"
1049
+ msgstr ""
1050
+
1051
+ #: ../classes/settings.php:772
1052
+ msgid "Tweet"
1053
+ msgstr ""
1054
+
1055
+ #: ../classes/settings.php:782
1056
+ msgid "Buy Pro"
1057
+ msgstr ""
1058
+
1059
+ #: ../classes/settings.php:794
1060
  msgid "Support"
1061
  msgstr "دعم"
1062
 
1063
+ #: ../classes/settings.php:797
1064
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1065
+ msgstr "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
 
1066
 
1067
+ #: ../classes/settings.php:800
1068
  #, php-format
1069
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1070
+ msgstr "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
 
 
 
 
1071
 
1072
+ #: ../classes/settings.php:829
1073
  msgid "Drag and drop to reorder"
1074
  msgstr "قم بالسحب والإلقاء لإعادة الترتيب"
1075
 
1076
+ #: ../classes/settings.php:832
1077
  msgid "Add Column"
1078
  msgstr "أضف عمود"
1079
 
1080
+ #: ../classes/settings.php:908
1081
  msgid "Active"
1082
  msgstr ""
1083
 
1084
+ #: ../classes/settings.php:909
1085
  msgid "Deactivate"
1086
  msgstr ""
1087
 
1088
+ #: ../classes/settings.php:916
1089
  msgid "Installed"
1090
  msgstr ""
1091
 
1092
+ #: ../classes/settings.php:917
1093
  msgid "Activate"
1094
  msgstr ""
1095
 
1096
+ #: ../classes/settings.php:931
1097
  msgid "Download & Install"
1098
  msgstr ""
1099
 
1100
+ #: ../classes/settings.php:936
1101
  msgid "Get this add-on"
1102
  msgstr ""
1103
 
1104
+ #: ../classes/storage_model.php:213
1105
  msgid "settings succesfully restored."
1106
  msgstr "تمت إستعادة الإعدادات بنجاح."
1107
 
1108
+ #: ../classes/storage_model.php:229
1109
  msgid "No columns settings available."
1110
  msgstr "لا توجد إعدادات أعمدة متوفرة."
1111
 
1112
+ #: ../classes/storage_model.php:250
1113
  #, php-format
1114
  msgid "You are trying to store the same settings for %s."
1115
  msgstr "انت تحاول حفظ نفس الإعدادات لـ %s."
1116
 
1117
+ #: ../classes/storage_model.php:254
1118
  #, php-format
1119
  msgid "Settings for %s updated succesfully."
1120
  msgstr "إعدادات %s تم تحديثها بنجاح."
1131
  msgid "Users"
1132
  msgstr "مستخدمون"
1133
 
1134
+ #: ../classes/upgrade.php:62
1135
+ msgid ""
1136
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of <strong>Admin "
1137
+ "Columns Pro</strong> <a href=\"http://www.admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new features, including Direct "
1138
+ "Inline Editing!"
1139
+ msgstr ""
1140
+
1141
+ #: ../classes/upgrade.php:95
1142
  msgid "Upgrade"
1143
  msgstr "تحديث"
1144
 
1145
+ #: ../classes/upgrade.php:136
1146
  msgid "requires a database upgrade"
1147
  msgstr "يتطلب ترقية قاعدة البيانات"
1148
 
1149
+ #: ../classes/upgrade.php:139
1150
  msgid "why?"
1151
  msgstr "لماذا؟"
1152
 
1153
+ #: ../classes/upgrade.php:140
1154
  msgid "Please"
1155
  msgstr "فضلا"
1156
 
1157
+ #: ../classes/upgrade.php:141
1158
  msgid "backup your database"
1159
  msgstr "قم بعمل نسخة إحتياطية من قاعدة بياناتك"
1160
 
1161
+ #: ../classes/upgrade.php:142
1162
  msgid "then click"
1163
  msgstr "ثم انقر"
1164
 
1165
+ #: ../classes/upgrade.php:351
1166
  msgid "Migrating Column Settings"
1167
  msgstr "نقل إعدادات الأعمدة"
1168
 
1169
+ #: ../classes/upgrade.php:387
1170
  msgid "No Upgrade Required"
1171
  msgstr "لا تحديث مطلوب"
1172
 
1173
+ #: ../classes/upgrade.php:388
1174
  msgid "Return to welcome screen."
1175
  msgstr "رجوع إلى صفحة الترحيب."
1176
 
1177
+ #: ../classes/upgrade.php:406
1178
  msgid "Upgrade Complete!"
1179
  msgstr "اكتمل التحديث"
1180
 
1181
+ #: ../classes/upgrade.php:406
1182
  msgid "Return to settings."
1183
  msgstr "العودة للإعدادات."
1184
 
1185
+ #: ../classes/upgrade.php:407
1186
  msgid "Error"
1187
  msgstr "خطأ"
1188
 
1189
+ #: ../classes/upgrade.php:408
1190
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1191
+ msgstr "عفوا. حدث خطأ أثناء عملية الترقية. الرجاء التبليغ عن هذا في منتديات الدعم."
 
 
 
1192
 
1193
+ #: ../codepress-admin-columns.php:390
1194
  msgid "Edit columns"
1195
  msgstr "تحرير الأعمدة"
languages/cpac-da_DK.mo CHANGED
Binary file
languages/cpac-da_DK.po CHANGED
@@ -6,344 +6,334 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
10
- "PO-Revision-Date: 2014-08-28 12:17+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
- "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/admin-"
13
- "columns/language/da_DK/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: da_DK\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Generator: Poedit 1.6.8\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
- #: ../classes/addons.php:117
27
  msgid "Third party plugin integration"
28
  msgstr ""
29
 
30
- #: ../classes/addons.php:142
31
  msgid "Advanced Custom Fields"
32
  msgstr ""
33
 
34
- #: ../classes/addons.php:143
35
- msgid ""
36
- "Display and edit Advanced Custom Fields fields in the posts overview in "
37
- "seconds!"
 
 
 
 
 
 
38
  msgstr ""
39
 
40
- #: ../classes/column.php:481
41
  msgid "Thumbnail"
42
  msgstr "Miniaturebillede"
43
 
44
- #: ../classes/column.php:482
45
  msgid "Medium"
46
  msgstr "Medium"
47
 
48
- #: ../classes/column.php:483
49
  msgid "Large"
50
  msgstr "Stor"
51
 
52
- #: ../classes/column.php:484
53
  msgid "Full"
54
  msgstr "Fuld"
55
 
56
- #: ../classes/column.php:751
57
  msgid "Date Format"
58
  msgstr "Datoformat"
59
 
60
- #: ../classes/column.php:752
61
  msgid "This will determine how the date will be displayed."
62
  msgstr "Dette vil bestmme hvordan datoen vil blive vist."
63
 
64
- #: ../classes/column.php:758
65
  msgid "Example:"
66
  msgstr "Eksempel:"
67
 
68
- #: ../classes/column.php:760
69
  #, php-format
70
- msgid ""
71
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
72
- "date format here</a>."
73
- msgstr ""
74
- "Lad være tomt for at benytte WordPress' datoformat, ændre dit <a href=\"%s"
75
- "\">standard datoformat her</a>."
76
 
77
- #: ../classes/column.php:761
78
  msgid "Documentation on date and time formatting."
79
  msgstr "Dokumentation for dato- og tidsformattering."
80
 
81
- #: ../classes/column.php:775
82
  msgid "Excerpt length"
83
  msgstr "Længden for uddrag"
84
 
85
- #: ../classes/column.php:776
86
  msgid "Number of words"
87
  msgstr "Antal ord"
88
 
89
- #: ../classes/column.php:794
90
  msgid "Preview size"
91
  msgstr "Forhåndsvisningsstørrelse"
92
 
93
- #: ../classes/column.php:811 ../classes/storage_model.php:505
94
  msgid "Custom"
95
  msgstr "Brugerdefineret"
96
 
97
- #: ../classes/column.php:814
98
  msgid "width"
99
  msgstr "bredde"
100
 
101
- #: ../classes/column.php:817
102
  msgid "height"
103
  msgstr "højde"
104
 
105
- #: ../classes/column.php:831
106
  msgid "Before"
107
  msgstr "Før"
108
 
109
- #: ../classes/column.php:831
110
  msgid "This text will appear before the custom field value."
111
  msgstr "Denne tekst vil blive vist før den brugerdefineret værdi."
112
 
113
- #: ../classes/column.php:837
114
  msgid "After"
115
  msgstr "Efter"
116
 
117
- #: ../classes/column.php:837
118
  msgid "This text will appear after the custom field value."
119
  msgstr "Denne tekst vil blive vist efter den brugerdefineret værdi."
120
 
121
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
122
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
123
- #: ../classes/column/user/actions.php:66
124
  msgid "Edit"
125
  msgstr "Rediger"
126
 
127
- #: ../classes/column.php:927 ../classes/column.php:1005
128
- #: ../classes/column/user/actions.php:74
129
  msgid "Remove"
130
  msgstr "Fjern"
131
 
132
- #: ../classes/column.php:945
133
  msgid "Type"
134
  msgstr "Type"
135
 
136
- #: ../classes/column.php:945
137
  msgid "Choose a column type."
138
  msgstr "Vælg en kolonne type."
139
 
140
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
141
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
142
- #: ../classes/column/post/ID.php:12
143
  msgid "ID"
144
  msgstr "ID"
145
 
146
- #: ../classes/column.php:955
147
  msgid "Label"
148
  msgstr "Etikette"
149
 
150
- #: ../classes/column.php:955
151
  msgid "This is the name which will appear as the column header."
152
  msgstr "Dette er navnet, som vil blive vist i kolonne toppen."
153
 
154
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
155
  msgid "Width"
156
  msgstr "Bredde"
157
 
158
- #: ../classes/column.php:964 ../classes/column.php:965
159
  msgid "default"
160
  msgstr "standard"
161
 
162
- #: ../classes/column/acf-placeholder.php:16
163
  msgid "ACF Field"
164
  msgstr ""
165
 
166
  #: ../classes/column/acf-placeholder.php:32
167
- msgid "This feature is only available in Admin Columns Pro - Developer."
168
  msgstr ""
169
 
170
  #: ../classes/column/acf-placeholder.php:35
171
  #, php-format
172
- msgid ""
173
- "If you have a developer licence please download & install your ACF add-on "
174
- "from the <a href='%s'>add-ons tab</a>."
175
  msgstr ""
176
 
177
  #: ../classes/column/acf-placeholder.php:38
178
- msgid ""
179
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
180
- "integeration, allowing you to easily display and edit ACF fields from within "
181
- "your posts overview."
182
  msgstr ""
183
 
184
- #: ../classes/column/acf-placeholder.php:40
185
  msgid "Find out more"
186
  msgstr ""
187
 
188
- #: ../classes/column/comment/actions.php:14
189
- #: ../classes/column/link/actions.php:14
190
- #: ../classes/column/media/actions.php:14
191
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
192
  msgid "Actions"
193
  msgstr "Handlinger"
194
 
195
- #: ../classes/column/comment/actions.php:73
196
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
197
  msgid "Unapprove"
198
  msgstr "Godkend ikke"
199
 
200
- #: ../classes/column/comment/actions.php:75
201
- #: ../classes/column/comment/actions.php:77
202
  msgid "Approve"
203
  msgstr "Godkende"
204
 
205
- #: ../classes/column/comment/actions.php:86
206
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
207
  msgid "Restore"
208
  msgstr "Gendan"
209
 
210
- #: ../classes/column/comment/actions.php:90
211
- #: ../classes/column/post/actions.php:66
212
  msgid "Delete Permanently"
213
  msgstr "Slet permanent"
214
 
215
- #: ../classes/column/comment/actions.php:97
216
- #: ../classes/column/post/actions.php:58
217
  msgid "Quick&nbsp;Edit"
218
  msgstr "Hurtig rediger"
219
 
220
- #: ../classes/column/comment/actions.php:98
221
  msgid "Reply"
222
  msgstr "Besvar"
223
 
224
- #: ../classes/column/comment/agent.php:12
225
  msgid "Agent"
226
  msgstr "Agent"
227
 
228
- #: ../classes/column/comment/approved.php:12
229
- #: ../classes/column/post/comment-count.php:31
230
  msgid "Approved"
231
  msgstr "Godkendt"
232
 
233
- #: ../classes/column/comment/author-avatar.php:12
234
  msgid "Avatar"
235
  msgstr "Avatar"
236
 
237
- #: ../classes/column/comment/author-email.php:12
238
  msgid "Author email"
239
  msgstr "Forfatter email"
240
 
241
- #: ../classes/column/comment/author-ip.php:12
242
  msgid "Author IP"
243
  msgstr "Forfatter IP"
244
 
245
- #: ../classes/column/comment/author-url.php:12
246
  msgid "Author url"
247
  msgstr "Forfatter webadresse"
248
 
249
- #: ../classes/column/comment/author.php:12
250
  msgid "Author"
251
  msgstr "Forfatter"
252
 
253
- #: ../classes/column/comment/date-gmt.php:12
254
  msgid "Date GMT"
255
  msgstr "Dato GMT"
256
 
257
- #: ../classes/column/comment/date-gmt.php:25
258
- #: ../classes/column/comment/date.php:25
259
  #, php-format
260
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
261
  msgstr "Indsendt af <a href=\"%1$s\">%2$s at %3$s</a>"
262
 
263
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
264
- #: ../classes/settings.php:300
265
  msgid "Date"
266
  msgstr "Dato"
267
 
268
- #: ../classes/column/comment/excerpt.php:13
269
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
270
- #: ../classes/settings.php:297
271
  msgid "Excerpt"
272
  msgstr "Uddrag"
273
 
274
- #: ../classes/column/comment/reply-to.php:12
275
  msgid "In Reply To"
276
  msgstr "Som svar på"
277
 
278
- #: ../classes/column/comment/word-count.php:12
279
- #: ../classes/column/post/word-count.php:12
280
  msgid "Word count"
281
  msgstr "Antal ord"
282
 
283
- #: ../classes/column/custom-field.php:16
284
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
285
  msgid "Custom Field"
286
  msgstr "Brugerdefineret felt"
287
 
288
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
289
- #: ../classes/storage_model.php:504
290
  msgid "Default"
291
  msgstr "Standard"
292
 
293
- #: ../classes/column/custom-field.php:66
294
  msgid "Checkmark (true/false)"
295
  msgstr "Flueben (ja/nej)"
296
 
297
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
298
  msgid "Color"
299
  msgstr "Farve"
300
 
301
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
302
  msgid "Counter"
303
  msgstr ""
304
 
305
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
306
- #: ../classes/settings.php:296
307
  msgid "Image"
308
  msgstr "Billede"
309
 
310
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
311
  msgid "Media Library"
312
  msgstr "Mediebibliotek"
313
 
314
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
315
  msgid "Multiple Values"
316
  msgstr "Flere værdier"
317
 
318
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
319
  msgid "Numeric"
320
  msgstr "Numerisk"
321
 
322
- #: ../classes/column/custom-field.php:75
323
  msgid "Post Title (Post ID's)"
324
  msgstr "Indlæg titel (Indlæg ID)"
325
 
326
- #: ../classes/column/custom-field.php:76
327
  msgid "Username (User ID's)"
328
  msgstr "Brugernavn (Bruger ID'er)"
329
 
330
- #: ../classes/column/custom-field.php:384
331
  msgid "Select your custom field."
332
  msgstr "Vælg dit brugerdefineret felt."
333
 
334
- #: ../classes/column/custom-field.php:394
335
  msgid "No custom fields available."
336
  msgstr "Ingen brugerdefineret felter tilgængelige."
337
 
338
- #: ../classes/column/custom-field.php:401
339
  msgid "Field Type"
340
  msgstr "Felttype"
341
 
342
- #: ../classes/column/custom-field.php:401
343
  msgid "This will determine how the value will be displayed."
344
  msgstr "Dette afgør hvordan værdien vil blive vist."
345
 
346
- #: ../classes/column/link/actions.php:46
347
  #, php-format
348
  msgid ""
349
  "You are about to delete this link '%s'\n"
@@ -352,838 +342,778 @@ msgstr ""
352
  "Du er ved at slette dette link '%s'\n"
353
  " 'Annuller' for at stoppe, 'OK' for at slette."
354
 
355
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
356
  msgid "Delete"
357
  msgstr "Slet"
358
 
359
- #: ../classes/column/link/description.php:12
360
- #: ../classes/column/media/description.php:12
361
- #: ../classes/column/user/description.php:14
362
  msgid "Description"
363
  msgstr "Beskrivelse"
364
 
365
- #: ../classes/column/link/length.php:12
366
  msgid "Length"
367
  msgstr "Længde"
368
 
369
- #: ../classes/column/link/notes.php:13
370
  msgid "Notes"
371
  msgstr "Noter"
372
 
373
- #: ../classes/column/link/owner.php:12
374
  msgid "Owner"
375
  msgstr "Ejer"
376
 
377
- #: ../classes/column/link/rss.php:12
378
  msgid "Rss"
379
  msgstr "Rss"
380
 
381
- #: ../classes/column/link/target.php:12
382
  msgid "Target"
383
  msgstr "Mål"
384
 
385
- #: ../classes/column/media/alternate-text.php:12
386
  msgid "Alt"
387
  msgstr "Alt"
388
 
389
- #: ../classes/column/media/available-sizes.php:14
390
  msgid "Available Sizes"
391
  msgstr "Tilgængelige størrelser"
392
 
393
- #: ../classes/column/media/available-sizes.php:37
394
  msgid "full size"
395
  msgstr "fuld størrelse"
396
 
397
- #: ../classes/column/media/caption.php:12
398
- #: ../classes/column/media/exif-data.php:36
399
  msgid "Caption"
400
  msgstr "Titeltekst"
401
 
402
- #: ../classes/column/media/dimensions.php:12
403
  msgid "Dimensions"
404
  msgstr "Mål"
405
 
406
- #: ../classes/column/media/exif-data.php:12
407
  msgid "EXIF data"
408
  msgstr "EXIF data"
409
 
410
- #: ../classes/column/media/exif-data.php:33
411
  msgid "Aperture"
412
  msgstr "Aperture"
413
 
414
- #: ../classes/column/media/exif-data.php:34
415
  msgid "Credit"
416
  msgstr "Credit"
417
 
418
- #: ../classes/column/media/exif-data.php:35
419
  msgid "Camera"
420
  msgstr "Kamera"
421
 
422
- #: ../classes/column/media/exif-data.php:37
423
  msgid "Timestamp"
424
  msgstr "Timestamp"
425
 
426
- #: ../classes/column/media/exif-data.php:38
427
  msgid "Copyright EXIF"
428
  msgstr "Copyright EXIF"
429
 
430
- #: ../classes/column/media/exif-data.php:39
431
  msgid "Focal Length"
432
  msgstr "Focal Length"
433
 
434
- #: ../classes/column/media/exif-data.php:40
435
  msgid "ISO"
436
  msgstr "ISO"
437
 
438
- #: ../classes/column/media/exif-data.php:41
439
  msgid "Shutter Speed"
440
  msgstr "Shutter Speed"
441
 
442
- #: ../classes/column/media/exif-data.php:42
443
  msgid "Title"
444
  msgstr "Title"
445
 
446
- #: ../classes/column/media/file-name.php:12
447
  msgid "File name"
448
  msgstr "Filnavn"
449
 
450
- #: ../classes/column/media/file-size.php:12
451
  msgid "File size"
452
  msgstr "Filstørrelse"
453
 
454
- #: ../classes/column/media/full-path.php:12
455
  msgid "Full path"
456
  msgstr "Fuld sti"
457
 
458
- #: ../classes/column/media/height.php:12
459
  msgid "Height"
460
  msgstr "Højde"
461
 
462
- #: ../classes/column/media/mime-type.php:12
463
  msgid "Mime type"
464
  msgstr "Mime type"
465
 
466
- #: ../classes/column/post/actions.php:57
467
  msgid "Edit this item"
468
  msgstr "Rediger dette element"
469
 
470
- #: ../classes/column/post/actions.php:58
471
  msgid "Edit this item inline"
472
  msgstr "Rediger dette element på linje"
473
 
474
- #: ../classes/column/post/actions.php:62
475
  msgid "Restore this item from the Trash"
476
  msgstr "Gendan dette element fra papirkurven"
477
 
478
- #: ../classes/column/post/actions.php:64
479
  msgid "Move this item to the Trash"
480
  msgstr "Flyt dette element til papirkurven"
481
 
482
- #: ../classes/column/post/actions.php:64
483
- #: ../classes/column/post/comment-count.php:34
484
- #: ../classes/column/post/status.php:38
485
  msgid "Trash"
486
  msgstr "Papirkurv"
487
 
488
- #: ../classes/column/post/actions.php:66
489
  msgid "Delete this item permanently"
490
  msgstr "Slet dette element permanent"
491
 
492
- #: ../classes/column/post/actions.php:71
493
  #, php-format
494
  msgid "Preview &#8220;%s&#8221;"
495
  msgstr "Eksempel &#8220;%s&#8221;"
496
 
497
- #: ../classes/column/post/actions.php:71
498
  msgid "Preview"
499
  msgstr "Eksempel"
500
 
501
- #: ../classes/column/post/actions.php:73
502
  #, php-format
503
  msgid "View &#8220;%s&#8221;"
504
  msgstr "Vis &#8220;%s&#8221;"
505
 
506
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
507
  msgid "View"
508
  msgstr "Vis"
509
 
510
- #: ../classes/column/post/attachment-count.php:12
511
  msgid "No. of Attachments"
512
  msgstr "Antal vedhæftede filer"
513
 
514
- #: ../classes/column/post/attachment.php:12
515
  msgid "Attachment"
516
  msgstr "Vedhæftet fil"
517
 
518
- #: ../classes/column/post/author-name.php:12
519
  msgid "Display Author As"
520
  msgstr "Vis forfatter som"
521
 
522
- #: ../classes/column/post/author-name.php:34
523
  msgid "Display Name"
524
  msgstr "Offentligt navn"
525
 
526
- #: ../classes/column/post/author-name.php:35
527
  msgid "First Name"
528
  msgstr "Fornavn"
529
 
530
- #: ../classes/column/post/author-name.php:36
531
  msgid "Last Name"
532
  msgstr "Efternavn"
533
 
534
- #: ../classes/column/post/author-name.php:37
535
- #: ../classes/column/user/nickname.php:14
536
  msgid "Nickname"
537
  msgstr "Kaldenavn"
538
 
539
- #: ../classes/column/post/author-name.php:38
540
  msgid "User Login"
541
  msgstr "Brugerlogin"
542
 
543
- #: ../classes/column/post/author-name.php:39
544
  msgid "User Email"
545
  msgstr "Bruger e-mail"
546
 
547
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
548
  msgid "User ID"
549
  msgstr "Bruger ID"
550
 
551
- #: ../classes/column/post/author-name.php:41
552
  msgid "First and Last Name"
553
  msgstr "For- og efternavn"
554
 
555
- #: ../classes/column/post/author-name.php:118
556
  msgid "This is the format of the author name."
557
  msgstr "Dette er formattet for forfatterens navn"
558
 
559
- #: ../classes/column/post/before-moretag.php:14
560
  msgid "Before More Tag"
561
  msgstr "Før mere-mærket"
562
 
563
- #: ../classes/column/post/comment-count.php:14
564
  msgid "Comment count"
565
  msgstr "Antal kommentare"
566
 
567
- #: ../classes/column/post/comment-count.php:30
568
  msgid "Total"
569
  msgstr "Total"
570
 
571
- #: ../classes/column/post/comment-count.php:32
572
  msgid "Pending"
573
  msgstr "Afventende"
574
 
575
- #: ../classes/column/post/comment-count.php:33
576
  msgid "Spam"
577
  msgstr "Spam"
578
 
579
- #: ../classes/column/post/comment-count.php:95
580
- #: ../classes/column/post/comment-status.php:14
581
  msgid "Comment status"
582
  msgstr "Kommentar status"
583
 
584
- #: ../classes/column/post/comment-count.php:95
585
  msgid "Select which comment status you like to display."
586
  msgstr "Vælg hvilken kommentarstatus du vil vise."
587
 
588
- #: ../classes/column/post/featured-image.php:14
589
  msgid "Featured Image"
590
  msgstr "Udvalgt billede"
591
 
592
- #: ../classes/column/post/formats.php:14
593
  msgid "Post Format"
594
  msgstr "Indlæg format"
595
 
596
- #: ../classes/column/post/modified.php:14
597
  msgid "Last modified"
598
  msgstr "Sidst ændret"
599
 
600
- #: ../classes/column/post/order.php:14
601
  msgid "Page Order"
602
  msgstr "Siderækkefølge"
603
 
604
- #: ../classes/column/post/page-template.php:12
605
  msgid "Page Template"
606
  msgstr "Sideskabelon"
607
 
608
- #: ../classes/column/post/parent.php:12
609
  msgid "Parent"
610
  msgstr "Forældre"
611
 
612
- #: ../classes/column/post/permalink.php:12
 
 
 
 
613
  msgid "Permalink"
614
  msgstr ""
615
 
616
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
 
 
 
 
617
  msgid "Ping status"
618
  msgstr "Ping status"
619
 
620
- #: ../classes/column/post/roles.php:14
621
  msgid "Roles"
622
  msgstr "Roller"
623
 
624
- #: ../classes/column/post/slug.php:12
625
  msgid "Slug"
626
  msgstr "Kort titel"
627
 
628
- #: ../classes/column/post/status.php:14
629
  msgid "Status"
630
  msgstr "Status"
631
 
632
- #: ../classes/column/post/status.php:32
633
  msgid "Published"
634
  msgstr "Udgivet"
635
 
636
- #: ../classes/column/post/status.php:33
637
  msgid "Draft"
638
  msgstr "Klade"
639
 
640
- #: ../classes/column/post/status.php:34
641
  msgid "Scheduled"
642
  msgstr "Planlagt"
643
 
644
- #: ../classes/column/post/status.php:35
645
  msgid "Private"
646
  msgstr "Privat"
647
 
648
- #: ../classes/column/post/status.php:36
649
  msgid "Pending Review"
650
  msgstr "Afventer revision"
651
 
652
- #: ../classes/column/post/status.php:37
653
  msgid "Auto Draft"
654
  msgstr ""
655
 
656
- #: ../classes/column/post/sticky.php:14
657
  msgid "Sticky"
658
  msgstr "Opslag"
659
 
660
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
661
  msgid "Taxonomy"
662
  msgstr "Taksonomi"
663
 
664
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
665
  msgid "Comment Count"
666
  msgstr "Antal kommentarer"
667
 
668
- #: ../classes/column/user/first-name.php:14
669
  msgid "First name"
670
  msgstr "Fornavn"
671
 
672
- #: ../classes/column/user/last-name.php:14
673
  msgid "Last name"
674
  msgstr "Efternavn"
675
 
676
- #: ../classes/column/user/post-count.php:14
677
  msgid "Post Count"
678
  msgstr "Antal indlæg"
679
 
680
- #: ../classes/column/user/post-count.php:99
681
  msgid "Post Type"
682
  msgstr "Indlægstype"
683
 
684
- #: ../classes/column/user/registered.php:14
685
  msgid "Registered"
686
  msgstr "Registreret"
687
 
688
- #: ../classes/column/user/url.php:14
689
  msgid "Url"
690
  msgstr "Webadresse"
691
 
692
- #: ../classes/settings.php:97
693
  msgid "Add-on successfully activated."
694
  msgstr ""
695
 
696
- #: ../classes/settings.php:100
697
  msgid "Add-on successfully deactivated."
698
  msgstr ""
699
 
700
- #: ../classes/settings.php:155
701
  msgid "Admin Columns Settings"
702
  msgstr "Admin Kolonne Indstillinger"
703
 
704
- #: ../classes/settings.php:155 ../classes/settings.php:619
705
- #: ../classes/upgrade.php:83
706
  msgid "Admin Columns"
707
  msgstr "Admin Columns"
708
 
709
- #: ../classes/settings.php:203
710
  #, php-format
711
  msgid "%s column is already present and can not be duplicated."
712
  msgstr "%s kolonne er allerede til stede og kan ikke duplikeres."
713
 
714
- #: ../classes/settings.php:256
715
  msgid "Default settings succesfully restored."
716
  msgstr "Standard indstillinger gendannet med success."
717
 
718
- #: ../classes/settings.php:273
719
  msgid "Overview"
720
  msgstr "Overblik"
721
 
722
- #: ../classes/settings.php:276
723
  msgid ""
724
- "This plugin is for adding and removing additional columns to the "
725
- "administration screens for post(types), pages, media library, comments, "
726
- "links and users. Change the column's label and reorder them."
727
- msgstr ""
728
- "Dette plugin er til at tilføje og fjerne tillægskolonner på "
729
- "administrationsskærme for indlægs(typer), sider, mediebibliotek, "
730
- "kommentarer, links og brugere. Ændre kolonnens etikette og rækkefølge."
731
 
732
- #: ../classes/settings.php:279
733
  msgid "Basics"
734
  msgstr "Grundlæggende"
735
 
736
- #: ../classes/settings.php:281
737
  msgid "Change order"
738
  msgstr "Ændre rækkefølge"
739
 
740
- #: ../classes/settings.php:282
741
- msgid ""
742
- "By dragging the columns you can change the order which they will appear in."
743
- msgstr ""
744
- "Ved at trække i kolonnerne kan du ændre rækkefølgen, som de bliver vist i."
745
 
746
- #: ../classes/settings.php:283
747
  msgid "Change label"
748
  msgstr "Ændre etikette"
749
 
750
- #: ../classes/settings.php:284
751
- msgid ""
752
- "By clicking on the triangle you will see the column options. Here you can "
753
- "change each label of the columns heading."
754
- msgstr ""
755
- "Ved at klikke på trekanten vil du se kolonne valgmuligheder. Her kan du "
756
- "vælge hver etikette for kolonnernes overskrift. "
757
 
758
- #: ../classes/settings.php:285
759
  msgid "Change column width"
760
  msgstr "Ændre kolonnebredden"
761
 
762
- #: ../classes/settings.php:286
763
- msgid ""
764
- "By clicking on the triangle you will see the column options. By using the "
765
- "draggable slider you can set the width of the columns in percentages."
766
- msgstr ""
767
- "Tryk på trekanten for at se indstillingsmulighederne. Benyt slideren for at "
768
- "indstille kolonnebredden."
769
 
770
- #: ../classes/settings.php:292
771
  msgid "'Custom Field' column"
772
  msgstr "'Brugerdefineret felt' kolonne"
773
 
774
- #: ../classes/settings.php:293
775
- msgid ""
776
- "The custom field colum uses the custom fields from posts and users. There "
777
- "are 10 types which you can set."
778
- msgstr ""
779
- "Den 'brugerdefineret felt' kolonne benytter brugerdefineret felter fra "
780
- "indlæg og brugere. Der er 10 typer som du kan sætte."
781
 
782
- #: ../classes/settings.php:295
783
- msgid ""
784
- "Value: Can be either a string or array. Arrays will be flattened and values "
785
- "are seperated by a ',' comma."
786
- msgstr ""
787
- "Værdi: Kan være enten en tekststreng eller en tabel. Tabeller vil blive "
788
- "fladtrykt og værdier separeret ved et ',' komma."
789
 
790
- #: ../classes/settings.php:296
791
- msgid ""
792
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
793
- "comma )."
794
- msgstr ""
795
- "Værdi: skal indeholde en billede URL eller vedhæftnings ID'er ( separeret "
796
- "ved et ',' komma )."
797
 
798
- #: ../classes/settings.php:297
799
  msgid "Value: This will show the first 20 words of the Post content."
800
  msgstr "Værdi: Dette vil vise de første 20 ord af indlæggets indhold."
801
 
802
- #: ../classes/settings.php:298
803
- msgid ""
804
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
805
- msgstr ""
806
- "Værdi: skal være en tabel. Dette vil fladtrykke enhver ( multi dimensionel ) "
807
- "tabel."
808
 
809
- #: ../classes/settings.php:299
810
- msgid ""
811
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
812
- "for sorting, so you can sort your posts on numeric (custom field) values."
813
- msgstr ""
814
- "Værdi: Kun tal.<br/>Hvis du har sorteringsudvidelsen vil dette blive brugt "
815
- "til sortering, så du kan sortere dine indlæg på numeriske (brugerdefineret "
816
- "felt) værdier."
817
 
818
- #: ../classes/settings.php:300
819
  #, php-format
820
- msgid ""
821
- "Value: Can be unix time stamp or a date format as described in the <a "
822
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
823
- "href='%s'>general settings</a> page."
824
- msgstr ""
825
- "Værdi: Kan være unix tidsstempel eller et datoformat som beskrevet i <a "
826
- "href='%s'>Codex</a>. Du kan ændre det viste datoformat på <a "
827
- "href='%s'>generalle indstillinger</a> siden."
828
 
829
- #: ../classes/settings.php:301
830
  msgid "Post Titles"
831
  msgstr "Indlægstitler"
832
 
833
- #: ../classes/settings.php:301
834
  msgid "Value: can be one or more Post ID's (seperated by ',')."
835
  msgstr "Værdi: kan være ét eller flere indlægs ID'er (separeret med ',')"
836
 
837
- #: ../classes/settings.php:302
838
  msgid "Usernames"
839
  msgstr "Brugernavne"
840
 
841
- #: ../classes/settings.php:302
842
  msgid "Value: can be one or more User ID's (seperated by ',')."
843
  msgstr "Værdi: kan være ét eller flere bruger ID'er (separeret med ',')"
844
 
845
- #: ../classes/settings.php:303
846
  msgid "Checkmark"
847
  msgstr "Flueben"
848
 
849
- #: ../classes/settings.php:303
850
  msgid "Value: should be a 1 (one) or 0 (zero)."
851
  msgstr "Værdi: skal være 1 (en) eller 0 (nul)."
852
 
853
- #: ../classes/settings.php:304
854
  msgid "Value: hex value color, such as #808080."
855
  msgstr "Værdi: hex værdi farve, for eksempel #808080."
856
 
857
- #: ../classes/settings.php:305
858
- msgid ""
859
- "Value: Can be either a string or array. This will display a count of the "
860
- "number of times the meta key is used by the item."
861
  msgstr ""
862
 
863
- #: ../classes/settings.php:399
864
  msgid "Welcome to Admin Columns"
865
  msgstr "Velkommen til Admin Columns"
866
 
867
- #: ../classes/settings.php:402
868
  msgid "Thank you for updating to the latest version!"
869
  msgstr "Tak fordi du opdaterede til den seneste version!"
870
 
871
- #: ../classes/settings.php:403
872
- msgid ""
873
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
874
- "like it."
875
- msgstr ""
876
- "Admin Columns er mere poleret og behageligt end nogensinde før. Vi håber du "
877
- "kan lide det."
878
 
879
- #: ../classes/settings.php:408
880
  msgid "What’s New"
881
  msgstr "Hvad er nyt"
882
 
883
- #: ../classes/settings.php:409
884
  msgid "Changelog"
885
  msgstr "Ændringslog"
886
 
887
- #: ../classes/settings.php:414
888
- msgid "Addons"
889
- msgstr "Udvidelsesmoduler"
890
-
891
- #: ../classes/settings.php:416
892
- msgid ""
893
- "Addons are now activated by downloading and installing individual plugins. "
894
- "Although these plugins will not be hosted on the wordpress.org repository, "
895
- "each Add-on will continue to receive updates in the usual way."
896
- msgstr ""
897
- "Udvidelser aktiveres nu ved hente og installere individuelle plugins. Selvom "
898
- "disse plugins ikke vil blive hosted på wordpress.org, vil disse udvidelser "
899
- "fortsat modtage opdatering på sædvanlig vis."
900
-
901
- #: ../classes/settings.php:419
902
- msgid ""
903
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
904
- msgstr ""
905
- "Denne hjemmeside benytter Sortorder udvidelse. Denne udvidelse skal hentes."
906
-
907
- #: ../classes/settings.php:422
908
- msgid "Addons are seperate plugins which need to be downloaded."
909
- msgstr "Udvidelser er separate plugins, der skal hentes."
910
-
911
- #: ../classes/settings.php:422
912
- msgid "Download your Addons"
913
- msgstr "Hent dine udvidelser"
914
-
915
- #: ../classes/settings.php:428
916
- msgid "This website does not use add-ons"
917
- msgstr "Denne hjemmeside benytter ikke udvidelser"
918
-
919
- #: ../classes/settings.php:428
920
- msgid "See our website for Admin Columns Pro."
921
- msgstr ""
922
-
923
- #: ../classes/settings.php:435
924
  msgid "Important"
925
  msgstr "Vigtigt"
926
 
927
- #: ../classes/settings.php:437
928
  msgid "Database Changes"
929
  msgstr "Database ændringer"
930
 
931
- #: ../classes/settings.php:438
932
- msgid ""
933
- "The database has been changed between versions 1 and 2. But we made sure you "
934
- "can still roll back to version 1x without any issues."
935
- msgstr ""
936
- "Databasen er blevet ændret mellem version 1 og 2. Vi har dog sikret at du "
937
- "stadig kan gå tilbage til version 1x uden nogen problemer."
938
 
939
- #: ../classes/settings.php:441
940
  msgid "Make sure you backup your database and then click"
941
  msgstr "Vær sikker på at du tager backup af din database og derefter klikker"
942
 
943
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
944
  msgid "Upgrade Database"
945
  msgstr "Opgradér database"
946
 
947
- #: ../classes/settings.php:444
948
  msgid "Potential Issues"
949
  msgstr "Mulige problemer"
950
 
951
- #: ../classes/settings.php:445
952
- msgid ""
953
- "Do to the sizable refactoring the code, surounding Addons and action/"
954
- "filters, your website may not operate correctly. It is important that you "
955
- "read the full"
956
- msgstr ""
957
- "På grund af den betydelige omstrukturering af koden omkring udvidelser og "
958
- "action/filters, vil din hjemmeside måske ikke fungerer korrekt. Det er "
959
- "vigtigt at du læser den fulde"
960
 
961
- #: ../classes/settings.php:445
962
  msgid "Migrating from v1 to v2"
963
  msgstr "Migration fra v1 til v2"
964
 
965
- #: ../classes/settings.php:445
966
  msgid "guide to view the full list of changes."
967
  msgstr "guide for at vise den fulde liste med ændringer."
968
 
969
- #: ../classes/settings.php:445
970
  #, php-format
971
- msgid ""
972
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
973
- "can fix it in the next release."
974
- msgstr ""
975
- "Når du har fundet en fejl, venligst <a href=\"%s\">rapporter dem til os</a> "
976
- "så vi kan rette det inden næste udgivelse."
977
 
978
- #: ../classes/settings.php:448
979
  msgid "Important!"
980
  msgstr "Vigtigt!"
981
 
982
- #: ../classes/settings.php:448
983
- msgid ""
984
- "If you updated the Admin Columns plugin without prior knowledge of such "
985
- "changes, Please roll back to the latest"
986
- msgstr ""
987
- "Hvis du har opdateret Admin Columns plugin uden tidligere viden om sådanne "
988
- "ændringer, venligst gå tilbage til den seneste"
989
 
990
- #: ../classes/settings.php:448
991
  msgid "version 1"
992
  msgstr "version 1"
993
 
994
- #: ../classes/settings.php:448
995
  msgid "of this plugin."
996
  msgstr "af dette plugin."
997
 
998
- #: ../classes/settings.php:454
999
  msgid "Changelog for"
1000
  msgstr "Ændringslog for"
1001
 
1002
- #: ../classes/settings.php:469
1003
  msgid "Learn more"
1004
  msgstr "Lær mere"
1005
 
1006
- #: ../classes/settings.php:479
1007
  msgid "Start using Admin Columns"
1008
  msgstr "Gå i gang med at bruge Admin Columns"
1009
 
1010
- #: ../classes/settings.php:522
1011
  msgid "General Settings"
1012
  msgstr "Generelle indstillinger"
1013
 
1014
- #: ../classes/settings.php:523
1015
  msgid "Customize your Admin Columns settings."
1016
  msgstr "Tilpas din Admin Columns indstillinger."
1017
 
1018
- #: ../classes/settings.php:546
1019
- msgid ""
1020
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1021
  msgstr ""
1022
- "Vis \"Rediger kolonner\" knap på administrator skærme. Standard er "
1023
- "<code>fra</code>."
1024
 
1025
- #: ../classes/settings.php:553 ../classes/settings.php:682
1026
  msgid "Save"
1027
  msgstr "Gem"
1028
 
1029
- #: ../classes/settings.php:593
1030
  msgid "Restore Settings"
1031
  msgstr "Gendan indstillinger"
1032
 
1033
- #: ../classes/settings.php:594
1034
  msgid "This will delete all column settings and restore the default settings."
1035
- msgstr ""
1036
- "Dette vil slette alle kolonneindstillinger og gendanne "
1037
- "standardindstillingerne."
1038
 
1039
- #: ../classes/settings.php:600
1040
  msgid "Restore default settings"
1041
  msgstr "Gendan standard indstillinger"
1042
 
1043
- #: ../classes/settings.php:600
1044
- msgid ""
1045
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1046
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1047
- msgstr ""
1048
- "Advarsel! Alle gemte admin kolonner data vil blive slettet. Dette kan ikke "
1049
- "fortrydes. \\'OK\\' for at slette, \\'Annuller\\ ' for at stoppe"
1050
 
1051
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1052
  msgid "Settings"
1053
  msgstr "Indstillinger"
1054
 
1055
- #: ../classes/settings.php:621
1056
  msgid "Add-ons"
1057
  msgstr ""
1058
 
1059
- #: ../classes/settings.php:647
1060
  msgid "Posttypes"
1061
  msgstr ""
1062
 
1063
- #: ../classes/settings.php:648
1064
  msgid "Others"
1065
  msgstr ""
1066
 
1067
- #: ../classes/settings.php:649
1068
  msgid "Taxonomies"
1069
  msgstr ""
1070
 
1071
- #: ../classes/settings.php:668
1072
  #, php-format
1073
- msgid ""
1074
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1075
- "be edited in the admin panel."
1076
  msgstr ""
1077
 
1078
- #: ../classes/settings.php:678
1079
  msgid "Store settings"
1080
  msgstr "Gem indstillinger"
1081
 
1082
- #: ../classes/settings.php:682
1083
  msgid "Update"
1084
  msgstr "Opdater"
1085
 
1086
- #: ../classes/settings.php:686
1087
  #, php-format
1088
- msgid ""
1089
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1090
- "\\' to delete, \\'Cancel\\' to stop"
1091
- msgstr ""
1092
- "Advarsel! %s kolonnernes data vil blive slettet. Dette kan ikke fortrydes. "
1093
- "\\'OK\\' for at slette, \\'Annuller\\' for at afbryde"
1094
 
1095
- #: ../classes/settings.php:687
1096
  msgid "columns"
1097
  msgstr "kolonner"
1098
 
1099
- #: ../classes/settings.php:701
1100
  msgid "Get Admin Columns Pro"
1101
  msgstr ""
1102
 
1103
- #: ../classes/settings.php:705
1104
  msgid "Add Sorting"
1105
  msgstr "Tilføj sortering"
1106
 
1107
- #: ../classes/settings.php:706
1108
  msgid "Add Filtering"
1109
  msgstr "Tilføj filtrering"
1110
 
1111
- #: ../classes/settings.php:707
1112
  msgid "Add Import/Export"
1113
  msgstr "Tilføj import/eksport"
1114
 
1115
- #: ../classes/settings.php:708
1116
  msgid "Add Direct Editing"
1117
  msgstr ""
1118
 
1119
- #: ../classes/settings.php:711
1120
  #, php-format
1121
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1122
  msgstr ""
1123
 
 
 
 
 
 
 
 
 
 
 
 
 
1124
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1125
  msgid "Support"
1126
  msgstr "Hjælp"
1127
 
1128
- #: ../classes/settings.php:745
1129
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1130
  msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
1131
 
1132
- #: ../classes/settings.php:748
1133
  #, php-format
1134
- msgid ""
1135
- "For full documentation, bug reports, feature suggestions and other tips <a "
1136
- "href='%s'>visit the Admin Columns website</a>"
1137
- msgstr ""
1138
- "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips "
1139
- "<a href='%s'>besøg Admin Columns hjemmeside</a>"
1140
 
1141
- #: ../classes/settings.php:777
1142
  msgid "Drag and drop to reorder"
1143
  msgstr "Træk og slip for at ændre rækkefølgen"
1144
 
1145
- #: ../classes/settings.php:780
1146
  msgid "Add Column"
1147
  msgstr "Tilføj kolonne"
1148
 
1149
- #: ../classes/settings.php:853
1150
  msgid "Active"
1151
  msgstr ""
1152
 
1153
- #: ../classes/settings.php:854
1154
  msgid "Deactivate"
1155
  msgstr ""
1156
 
1157
- #: ../classes/settings.php:861
1158
  msgid "Installed"
1159
  msgstr ""
1160
 
1161
- #: ../classes/settings.php:862
1162
  msgid "Activate"
1163
  msgstr ""
1164
 
1165
- #: ../classes/settings.php:876
1166
  msgid "Download & Install"
1167
  msgstr ""
1168
 
1169
- #: ../classes/settings.php:881
1170
  msgid "Get this add-on"
1171
  msgstr ""
1172
 
1173
- #: ../classes/storage_model.php:207
1174
  msgid "settings succesfully restored."
1175
  msgstr "indstillinger er gendannet med success."
1176
 
1177
- #: ../classes/storage_model.php:222
1178
  msgid "No columns settings available."
1179
  msgstr "Ingen kolonneindstillinger tilgængelige."
1180
 
1181
- #: ../classes/storage_model.php:243
1182
  #, php-format
1183
  msgid "You are trying to store the same settings for %s."
1184
  msgstr "Du forsøger at gemme samme indstillinger for %s."
1185
 
1186
- #: ../classes/storage_model.php:247
1187
  #, php-format
1188
  msgid "Settings for %s updated succesfully."
1189
  msgstr "Indstillinger for %s er opdateret med success."
@@ -1200,62 +1130,64 @@ msgstr "Links"
1200
  msgid "Users"
1201
  msgstr "Brugere"
1202
 
1203
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
1204
  msgid "Upgrade"
1205
  msgstr "Opgrader"
1206
 
1207
- #: ../classes/upgrade.php:84
1208
  msgid "requires a database upgrade"
1209
  msgstr "en opgradering af databasen er påkrævet"
1210
 
1211
- #: ../classes/upgrade.php:87
1212
  msgid "why?"
1213
  msgstr "hvorfor?"
1214
 
1215
- #: ../classes/upgrade.php:88
1216
  msgid "Please"
1217
  msgstr "Venligst"
1218
 
1219
- #: ../classes/upgrade.php:89
1220
  msgid "backup your database"
1221
  msgstr "tag backup af din database"
1222
 
1223
- #: ../classes/upgrade.php:90
1224
  msgid "then click"
1225
  msgstr "derefter klik"
1226
 
1227
- #: ../classes/upgrade.php:298
1228
  msgid "Migrating Column Settings"
1229
  msgstr "Migration af kolonne indstillinger"
1230
 
1231
- #: ../classes/upgrade.php:334
1232
  msgid "No Upgrade Required"
1233
  msgstr "Ingen opgradering er påkrævet"
1234
 
1235
- #: ../classes/upgrade.php:335
1236
  msgid "Return to welcome screen."
1237
  msgstr "Gå tilbage til velkomstskærmen."
1238
 
1239
- #: ../classes/upgrade.php:353
1240
  msgid "Upgrade Complete!"
1241
  msgstr "Opgradering fuldført!"
1242
 
1243
- #: ../classes/upgrade.php:353
1244
  msgid "Return to settings."
1245
  msgstr "Gå tilbage til indstillinger."
1246
 
1247
- #: ../classes/upgrade.php:354
1248
  msgid "Error"
1249
  msgstr "Fejl"
1250
 
1251
- #: ../classes/upgrade.php:355
1252
- msgid ""
1253
- "Sorry. Something went wrong during the upgrade process. Please report this "
1254
- "on the support forum."
1255
- msgstr ""
1256
- "Beklager. Noget gik galt i opgraderingsprocessen. Venligst rapporter dette i "
1257
- "support forummet."
1258
 
1259
- #: ../codepress-admin-columns.php:439
1260
  msgid "Edit columns"
1261
  msgstr "Rediger kolonner"
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
10
+ "PO-Revision-Date: 2014-12-10 17:24+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\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.7.1\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
+ #: ../classes/addons.php:110
26
  msgid "Third party plugin integration"
27
  msgstr ""
28
 
29
+ #: ../classes/addons.php:135
30
  msgid "Advanced Custom Fields"
31
  msgstr ""
32
 
33
+ #: ../classes/addons.php:136
34
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
35
+ msgstr ""
36
+
37
+ #: ../classes/addons.php:141
38
+ msgid "WooCommerce"
39
+ msgstr ""
40
+
41
+ #: ../classes/addons.php:142
42
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
43
  msgstr ""
44
 
45
+ #: ../classes/column.php:500
46
  msgid "Thumbnail"
47
  msgstr "Miniaturebillede"
48
 
49
+ #: ../classes/column.php:501
50
  msgid "Medium"
51
  msgstr "Medium"
52
 
53
+ #: ../classes/column.php:502
54
  msgid "Large"
55
  msgstr "Stor"
56
 
57
+ #: ../classes/column.php:503
58
  msgid "Full"
59
  msgstr "Fuld"
60
 
61
+ #: ../classes/column.php:863
62
  msgid "Date Format"
63
  msgstr "Datoformat"
64
 
65
+ #: ../classes/column.php:864
66
  msgid "This will determine how the date will be displayed."
67
  msgstr "Dette vil bestmme hvordan datoen vil blive vist."
68
 
69
+ #: ../classes/column.php:870
70
  msgid "Example:"
71
  msgstr "Eksempel:"
72
 
73
+ #: ../classes/column.php:872
74
  #, php-format
75
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
76
+ msgstr "Lad være tomt for at benytte WordPress' datoformat, ændre dit <a href=\"%s\">standard datoformat her</a>."
 
 
 
 
77
 
78
+ #: ../classes/column.php:873
79
  msgid "Documentation on date and time formatting."
80
  msgstr "Dokumentation for dato- og tidsformattering."
81
 
82
+ #: ../classes/column.php:887
83
  msgid "Excerpt length"
84
  msgstr "Længden for uddrag"
85
 
86
+ #: ../classes/column.php:888
87
  msgid "Number of words"
88
  msgstr "Antal ord"
89
 
90
+ #: ../classes/column.php:906
91
  msgid "Preview size"
92
  msgstr "Forhåndsvisningsstørrelse"
93
 
94
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
95
  msgid "Custom"
96
  msgstr "Brugerdefineret"
97
 
98
+ #: ../classes/column.php:926
99
  msgid "width"
100
  msgstr "bredde"
101
 
102
+ #: ../classes/column.php:929
103
  msgid "height"
104
  msgstr "højde"
105
 
106
+ #: ../classes/column.php:943
107
  msgid "Before"
108
  msgstr "Før"
109
 
110
+ #: ../classes/column.php:943
111
  msgid "This text will appear before the custom field value."
112
  msgstr "Denne tekst vil blive vist før den brugerdefineret værdi."
113
 
114
+ #: ../classes/column.php:949
115
  msgid "After"
116
  msgstr "Efter"
117
 
118
+ #: ../classes/column.php:949
119
  msgid "This text will appear after the custom field value."
120
  msgstr "Denne tekst vil blive vist efter den brugerdefineret værdi."
121
 
122
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
 
 
123
  msgid "Edit"
124
  msgstr "Rediger"
125
 
126
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
127
  msgid "Remove"
128
  msgstr "Fjern"
129
 
130
+ #: ../classes/column.php:1062
131
  msgid "Type"
132
  msgstr "Type"
133
 
134
+ #: ../classes/column.php:1062
135
  msgid "Choose a column type."
136
  msgstr "Vælg en kolonne type."
137
 
138
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
139
  msgid "ID"
140
  msgstr "ID"
141
 
142
+ #: ../classes/column.php:1072
143
  msgid "Label"
144
  msgstr "Etikette"
145
 
146
+ #: ../classes/column.php:1072
147
  msgid "This is the name which will appear as the column header."
148
  msgstr "Dette er navnet, som vil blive vist i kolonne toppen."
149
 
150
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
151
  msgid "Width"
152
  msgstr "Bredde"
153
 
154
+ #: ../classes/column.php:1081 ../classes/column.php:1082
155
  msgid "default"
156
  msgstr "standard"
157
 
158
+ #: ../classes/column/acf-placeholder.php:19
159
  msgid "ACF Field"
160
  msgstr ""
161
 
162
  #: ../classes/column/acf-placeholder.php:32
163
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
164
  msgstr ""
165
 
166
  #: ../classes/column/acf-placeholder.php:35
167
  #, php-format
168
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
 
 
169
  msgstr ""
170
 
171
  #: ../classes/column/acf-placeholder.php:38
172
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
 
 
 
173
  msgstr ""
174
 
175
+ #: ../classes/column/acf-placeholder.php:44
176
  msgid "Find out more"
177
  msgstr ""
178
 
179
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20 ../classes/column/user/actions.php:19
 
 
 
180
  msgid "Actions"
181
  msgstr "Handlinger"
182
 
183
+ #: ../classes/column/actions.php:87
184
+ msgid "Use icons?"
185
+ msgstr ""
186
+
187
+ #: ../classes/column/actions.php:87
188
+ msgid "Use icons instead of text for displaying the actions."
189
+ msgstr ""
190
+
191
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
192
+ msgid "Yes"
193
+ msgstr ""
194
+
195
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
196
+ msgid "No"
197
+ msgstr ""
198
+
199
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
200
  msgid "Unapprove"
201
  msgstr "Godkend ikke"
202
 
203
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
204
  msgid "Approve"
205
  msgstr "Godkende"
206
 
207
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
208
  msgid "Restore"
209
  msgstr "Gendan"
210
 
211
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
212
  msgid "Delete Permanently"
213
  msgstr "Slet permanent"
214
 
215
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
216
  msgid "Quick&nbsp;Edit"
217
  msgstr "Hurtig rediger"
218
 
219
+ #: ../classes/column/comment/actions.php:101
220
  msgid "Reply"
221
  msgstr "Besvar"
222
 
223
+ #: ../classes/column/comment/agent.php:19
224
  msgid "Agent"
225
  msgstr "Agent"
226
 
227
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
228
  msgid "Approved"
229
  msgstr "Godkendt"
230
 
231
+ #: ../classes/column/comment/author-avatar.php:19
232
  msgid "Avatar"
233
  msgstr "Avatar"
234
 
235
+ #: ../classes/column/comment/author-email.php:19
236
  msgid "Author email"
237
  msgstr "Forfatter email"
238
 
239
+ #: ../classes/column/comment/author-ip.php:19
240
  msgid "Author IP"
241
  msgstr "Forfatter IP"
242
 
243
+ #: ../classes/column/comment/author-url.php:19
244
  msgid "Author url"
245
  msgstr "Forfatter webadresse"
246
 
247
+ #: ../classes/column/comment/author.php:19
248
  msgid "Author"
249
  msgstr "Forfatter"
250
 
251
+ #: ../classes/column/comment/date-gmt.php:19
252
  msgid "Date GMT"
253
  msgstr "Dato GMT"
254
 
255
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
256
  #, php-format
257
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
258
  msgstr "Indsendt af <a href=\"%1$s\">%2$s at %3$s</a>"
259
 
260
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
261
  msgid "Date"
262
  msgstr "Dato"
263
 
264
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
265
  msgid "Excerpt"
266
  msgstr "Uddrag"
267
 
268
+ #: ../classes/column/comment/reply-to.php:19
269
  msgid "In Reply To"
270
  msgstr "Som svar på"
271
 
272
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
273
  msgid "Word count"
274
  msgstr "Antal ord"
275
 
276
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
277
  msgid "Custom Field"
278
  msgstr "Brugerdefineret felt"
279
 
280
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
281
  msgid "Default"
282
  msgstr "Standard"
283
 
284
+ #: ../classes/column/custom-field.php:95
285
  msgid "Checkmark (true/false)"
286
  msgstr "Flueben (ja/nej)"
287
 
288
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
289
  msgid "Color"
290
  msgstr "Farve"
291
 
292
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
293
  msgid "Counter"
294
  msgstr ""
295
 
296
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
297
  msgid "Image"
298
  msgstr "Billede"
299
 
300
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
301
  msgid "Media Library"
302
  msgstr "Mediebibliotek"
303
 
304
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
305
  msgid "Multiple Values"
306
  msgstr "Flere værdier"
307
 
308
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
309
  msgid "Numeric"
310
  msgstr "Numerisk"
311
 
312
+ #: ../classes/column/custom-field.php:104
313
  msgid "Post Title (Post ID's)"
314
  msgstr "Indlæg titel (Indlæg ID)"
315
 
316
+ #: ../classes/column/custom-field.php:105
317
  msgid "Username (User ID's)"
318
  msgstr "Brugernavn (Bruger ID'er)"
319
 
320
+ #: ../classes/column/custom-field.php:356
321
  msgid "Select your custom field."
322
  msgstr "Vælg dit brugerdefineret felt."
323
 
324
+ #: ../classes/column/custom-field.php:366
325
  msgid "No custom fields available."
326
  msgstr "Ingen brugerdefineret felter tilgængelige."
327
 
328
+ #: ../classes/column/custom-field.php:373
329
  msgid "Field Type"
330
  msgstr "Felttype"
331
 
332
+ #: ../classes/column/custom-field.php:373
333
  msgid "This will determine how the value will be displayed."
334
  msgstr "Dette afgør hvordan værdien vil blive vist."
335
 
336
+ #: ../classes/column/link/actions.php:49
337
  #, php-format
338
  msgid ""
339
  "You are about to delete this link '%s'\n"
342
  "Du er ved at slette dette link '%s'\n"
343
  " 'Annuller' for at stoppe, 'OK' for at slette."
344
 
345
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
346
  msgid "Delete"
347
  msgstr "Slet"
348
 
349
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
350
  msgid "Description"
351
  msgstr "Beskrivelse"
352
 
353
+ #: ../classes/column/link/length.php:19
354
  msgid "Length"
355
  msgstr "Længde"
356
 
357
+ #: ../classes/column/link/notes.php:19
358
  msgid "Notes"
359
  msgstr "Noter"
360
 
361
+ #: ../classes/column/link/owner.php:19
362
  msgid "Owner"
363
  msgstr "Ejer"
364
 
365
+ #: ../classes/column/link/rss.php:19
366
  msgid "Rss"
367
  msgstr "Rss"
368
 
369
+ #: ../classes/column/link/target.php:19
370
  msgid "Target"
371
  msgstr "Mål"
372
 
373
+ #: ../classes/column/media/alternate-text.php:19
374
  msgid "Alt"
375
  msgstr "Alt"
376
 
377
+ #: ../classes/column/media/available-sizes.php:20
378
  msgid "Available Sizes"
379
  msgstr "Tilgængelige størrelser"
380
 
381
+ #: ../classes/column/media/available-sizes.php:40
382
  msgid "full size"
383
  msgstr "fuld størrelse"
384
 
385
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
386
  msgid "Caption"
387
  msgstr "Titeltekst"
388
 
389
+ #: ../classes/column/media/dimensions.php:19
390
  msgid "Dimensions"
391
  msgstr "Mål"
392
 
393
+ #: ../classes/column/media/exif-data.php:19
394
  msgid "EXIF data"
395
  msgstr "EXIF data"
396
 
397
+ #: ../classes/column/media/exif-data.php:38
398
  msgid "Aperture"
399
  msgstr "Aperture"
400
 
401
+ #: ../classes/column/media/exif-data.php:39
402
  msgid "Credit"
403
  msgstr "Credit"
404
 
405
+ #: ../classes/column/media/exif-data.php:40
406
  msgid "Camera"
407
  msgstr "Kamera"
408
 
409
+ #: ../classes/column/media/exif-data.php:42
410
  msgid "Timestamp"
411
  msgstr "Timestamp"
412
 
413
+ #: ../classes/column/media/exif-data.php:43
414
  msgid "Copyright EXIF"
415
  msgstr "Copyright EXIF"
416
 
417
+ #: ../classes/column/media/exif-data.php:44
418
  msgid "Focal Length"
419
  msgstr "Focal Length"
420
 
421
+ #: ../classes/column/media/exif-data.php:45
422
  msgid "ISO"
423
  msgstr "ISO"
424
 
425
+ #: ../classes/column/media/exif-data.php:46
426
  msgid "Shutter Speed"
427
  msgstr "Shutter Speed"
428
 
429
+ #: ../classes/column/media/exif-data.php:47
430
  msgid "Title"
431
  msgstr "Title"
432
 
433
+ #: ../classes/column/media/file-name.php:19
434
  msgid "File name"
435
  msgstr "Filnavn"
436
 
437
+ #: ../classes/column/media/file-size.php:19
438
  msgid "File size"
439
  msgstr "Filstørrelse"
440
 
441
+ #: ../classes/column/media/full-path.php:19
442
  msgid "Full path"
443
  msgstr "Fuld sti"
444
 
445
+ #: ../classes/column/media/height.php:19
446
  msgid "Height"
447
  msgstr "Højde"
448
 
449
+ #: ../classes/column/media/mime-type.php:19
450
  msgid "Mime type"
451
  msgstr "Mime type"
452
 
453
+ #: ../classes/column/post/actions.php:31
454
  msgid "Edit this item"
455
  msgstr "Rediger dette element"
456
 
457
+ #: ../classes/column/post/actions.php:34
458
  msgid "Edit this item inline"
459
  msgstr "Rediger dette element på linje"
460
 
461
+ #: ../classes/column/post/actions.php:39
462
  msgid "Restore this item from the Trash"
463
  msgstr "Gendan dette element fra papirkurven"
464
 
465
+ #: ../classes/column/post/actions.php:41
466
  msgid "Move this item to the Trash"
467
  msgstr "Flyt dette element til papirkurven"
468
 
469
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
470
  msgid "Trash"
471
  msgstr "Papirkurv"
472
 
473
+ #: ../classes/column/post/actions.php:43
474
  msgid "Delete this item permanently"
475
  msgstr "Slet dette element permanent"
476
 
477
+ #: ../classes/column/post/actions.php:48
478
  #, php-format
479
  msgid "Preview &#8220;%s&#8221;"
480
  msgstr "Eksempel &#8220;%s&#8221;"
481
 
482
+ #: ../classes/column/post/actions.php:48
483
  msgid "Preview"
484
  msgstr "Eksempel"
485
 
486
+ #: ../classes/column/post/actions.php:50
487
  #, php-format
488
  msgid "View &#8220;%s&#8221;"
489
  msgstr "Vis &#8220;%s&#8221;"
490
 
491
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
492
  msgid "View"
493
  msgstr "Vis"
494
 
495
+ #: ../classes/column/post/attachment-count.php:19
496
  msgid "No. of Attachments"
497
  msgstr "Antal vedhæftede filer"
498
 
499
+ #: ../classes/column/post/attachment.php:19
500
  msgid "Attachment"
501
  msgstr "Vedhæftet fil"
502
 
503
+ #: ../classes/column/post/author-name.php:20
504
  msgid "Display Author As"
505
  msgstr "Vis forfatter som"
506
 
507
+ #: ../classes/column/post/author-name.php:40
508
  msgid "Display Name"
509
  msgstr "Offentligt navn"
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
  msgid "First Name"
513
  msgstr "Fornavn"
514
 
515
+ #: ../classes/column/post/author-name.php:42
516
  msgid "Last Name"
517
  msgstr "Efternavn"
518
 
519
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
520
  msgid "Nickname"
521
  msgstr "Kaldenavn"
522
 
523
+ #: ../classes/column/post/author-name.php:44
524
  msgid "User Login"
525
  msgstr "Brugerlogin"
526
 
527
+ #: ../classes/column/post/author-name.php:45
528
  msgid "User Email"
529
  msgstr "Bruger e-mail"
530
 
531
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
532
  msgid "User ID"
533
  msgstr "Bruger ID"
534
 
535
+ #: ../classes/column/post/author-name.php:47
536
  msgid "First and Last Name"
537
  msgstr "For- og efternavn"
538
 
539
+ #: ../classes/column/post/author-name.php:124
540
  msgid "This is the format of the author name."
541
  msgstr "Dette er formattet for forfatterens navn"
542
 
543
+ #: ../classes/column/post/before-moretag.php:19
544
  msgid "Before More Tag"
545
  msgstr "Før mere-mærket"
546
 
547
+ #: ../classes/column/post/comment-count.php:20
548
  msgid "Comment count"
549
  msgstr "Antal kommentare"
550
 
551
+ #: ../classes/column/post/comment-count.php:34
552
  msgid "Total"
553
  msgstr "Total"
554
 
555
+ #: ../classes/column/post/comment-count.php:36
556
  msgid "Pending"
557
  msgstr "Afventende"
558
 
559
+ #: ../classes/column/post/comment-count.php:37
560
  msgid "Spam"
561
  msgstr "Spam"
562
 
563
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
564
  msgid "Comment status"
565
  msgstr "Kommentar status"
566
 
567
+ #: ../classes/column/post/comment-count.php:99
568
  msgid "Select which comment status you like to display."
569
  msgstr "Vælg hvilken kommentarstatus du vil vise."
570
 
571
+ #: ../classes/column/post/featured-image.php:19
572
  msgid "Featured Image"
573
  msgstr "Udvalgt billede"
574
 
575
+ #: ../classes/column/post/formats.php:19
576
  msgid "Post Format"
577
  msgstr "Indlæg format"
578
 
579
+ #: ../classes/column/post/modified.php:19
580
  msgid "Last modified"
581
  msgstr "Sidst ændret"
582
 
583
+ #: ../classes/column/post/order.php:19
584
  msgid "Page Order"
585
  msgstr "Siderækkefølge"
586
 
587
+ #: ../classes/column/post/page-template.php:19
588
  msgid "Page Template"
589
  msgstr "Sideskabelon"
590
 
591
+ #: ../classes/column/post/parent.php:19
592
  msgid "Parent"
593
  msgstr "Forældre"
594
 
595
+ #: ../classes/column/post/path.php:19
596
+ msgid "Path"
597
+ msgstr ""
598
+
599
+ #: ../classes/column/post/permalink.php:19
600
  msgid "Permalink"
601
  msgstr ""
602
 
603
+ #: ../classes/column/post/permalink.php:68
604
+ msgid "Link to post"
605
+ msgstr ""
606
+
607
+ #: ../classes/column/post/permalink.php:68
608
+ msgid "This will make the permalink clickable."
609
+ msgstr ""
610
+
611
+ #: ../classes/column/post/ping-status.php:19
612
  msgid "Ping status"
613
  msgstr "Ping status"
614
 
615
+ #: ../classes/column/post/roles.php:19
616
  msgid "Roles"
617
  msgstr "Roller"
618
 
619
+ #: ../classes/column/post/slug.php:19
620
  msgid "Slug"
621
  msgstr "Kort titel"
622
 
623
+ #: ../classes/column/post/status.php:19
624
  msgid "Status"
625
  msgstr "Status"
626
 
627
+ #: ../classes/column/post/status.php:29
628
  msgid "Published"
629
  msgstr "Udgivet"
630
 
631
+ #: ../classes/column/post/status.php:30
632
  msgid "Draft"
633
  msgstr "Klade"
634
 
635
+ #: ../classes/column/post/status.php:31
636
  msgid "Scheduled"
637
  msgstr "Planlagt"
638
 
639
+ #: ../classes/column/post/status.php:32
640
  msgid "Private"
641
  msgstr "Privat"
642
 
643
+ #: ../classes/column/post/status.php:33
644
  msgid "Pending Review"
645
  msgstr "Afventer revision"
646
 
647
+ #: ../classes/column/post/status.php:34
648
  msgid "Auto Draft"
649
  msgstr ""
650
 
651
+ #: ../classes/column/post/sticky.php:19
652
  msgid "Sticky"
653
  msgstr "Opslag"
654
 
655
+ #: ../classes/column/post/title-raw.php:19
656
+ msgid "Title without actions"
657
+ msgstr ""
658
+
659
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
660
  msgid "Taxonomy"
661
  msgstr "Taksonomi"
662
 
663
+ #: ../classes/column/used-by-menu.php:20
664
+ msgid "Used by Menu"
665
+ msgstr ""
666
+
667
+ #: ../classes/column/used-by-menu.php:133
668
+ msgid "Link to menu"
669
+ msgstr ""
670
+
671
+ #: ../classes/column/used-by-menu.php:133
672
+ msgid "This will make the title link to the menu."
673
+ msgstr ""
674
+
675
+ #: ../classes/column/user/comment-count.php:19
676
  msgid "Comment Count"
677
  msgstr "Antal kommentarer"
678
 
679
+ #: ../classes/column/user/first-name.php:19
680
  msgid "First name"
681
  msgstr "Fornavn"
682
 
683
+ #: ../classes/column/user/last-name.php:19
684
  msgid "Last name"
685
  msgstr "Efternavn"
686
 
687
+ #: ../classes/column/user/post-count.php:19
688
  msgid "Post Count"
689
  msgstr "Antal indlæg"
690
 
691
+ #: ../classes/column/user/post-count.php:102
692
  msgid "Post Type"
693
  msgstr "Indlægstype"
694
 
695
+ #: ../classes/column/user/registered.php:19
696
  msgid "Registered"
697
  msgstr "Registreret"
698
 
699
+ #: ../classes/column/user/url.php:19
700
  msgid "Url"
701
  msgstr "Webadresse"
702
 
703
+ #: ../classes/settings.php:111
704
  msgid "Add-on successfully activated."
705
  msgstr ""
706
 
707
+ #: ../classes/settings.php:114
708
  msgid "Add-on successfully deactivated."
709
  msgstr ""
710
 
711
+ #: ../classes/settings.php:169
712
  msgid "Admin Columns Settings"
713
  msgstr "Admin Kolonne Indstillinger"
714
 
715
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
716
  msgid "Admin Columns"
717
  msgstr "Admin Columns"
718
 
719
+ #: ../classes/settings.php:217
720
  #, php-format
721
  msgid "%s column is already present and can not be duplicated."
722
  msgstr "%s kolonne er allerede til stede og kan ikke duplikeres."
723
 
724
+ #: ../classes/settings.php:271
725
  msgid "Default settings succesfully restored."
726
  msgstr "Standard indstillinger gendannet med success."
727
 
728
+ #: ../classes/settings.php:288
729
  msgid "Overview"
730
  msgstr "Overblik"
731
 
732
+ #: ../classes/settings.php:291
733
  msgid ""
734
+ "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
735
+ 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."
 
 
 
 
 
736
 
737
+ #: ../classes/settings.php:294
738
  msgid "Basics"
739
  msgstr "Grundlæggende"
740
 
741
+ #: ../classes/settings.php:296
742
  msgid "Change order"
743
  msgstr "Ændre rækkefølge"
744
 
745
+ #: ../classes/settings.php:297
746
+ msgid "By dragging the columns you can change the order which they will appear in."
747
+ msgstr "Ved at trække i kolonnerne kan du ændre rækkefølgen, som de bliver vist i."
 
 
748
 
749
+ #: ../classes/settings.php:298
750
  msgid "Change label"
751
  msgstr "Ændre etikette"
752
 
753
+ #: ../classes/settings.php:299
754
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
755
+ msgstr "Ved at klikke trekanten vil du se kolonne valgmuligheder. Her kan du vælge hver etikette for kolonnernes overskrift. "
 
 
 
 
756
 
757
+ #: ../classes/settings.php:300
758
  msgid "Change column width"
759
  msgstr "Ændre kolonnebredden"
760
 
761
+ #: ../classes/settings.php:301
762
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
763
+ msgstr "Tryk trekanten for at se indstillingsmulighederne. Benyt slideren for at indstille kolonnebredden."
 
 
 
 
764
 
765
+ #: ../classes/settings.php:307
766
  msgid "'Custom Field' column"
767
  msgstr "'Brugerdefineret felt' kolonne"
768
 
769
+ #: ../classes/settings.php:308
770
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
771
+ msgstr "Den 'brugerdefineret felt' kolonne benytter brugerdefineret felter fra indlæg og brugere. Der er 10 typer som du kan sætte."
 
 
 
 
772
 
773
+ #: ../classes/settings.php:310
774
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
775
+ msgstr "Værdi: Kan være enten en tekststreng eller en tabel. Tabeller vil blive fladtrykt og værdier separeret ved et ',' komma."
 
 
 
 
776
 
777
+ #: ../classes/settings.php:311
778
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
779
+ msgstr "Værdi: skal indeholde en billede URL eller vedhæftnings ID'er ( separeret ved et ',' komma )."
 
 
 
 
780
 
781
+ #: ../classes/settings.php:312
782
  msgid "Value: This will show the first 20 words of the Post content."
783
  msgstr "Værdi: Dette vil vise de første 20 ord af indlæggets indhold."
784
 
785
+ #: ../classes/settings.php:313
786
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
787
+ msgstr "Værdi: skal være en tabel. Dette vil fladtrykke enhver ( multi dimensionel ) tabel."
 
 
 
788
 
789
+ #: ../classes/settings.php:314
790
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
791
+ 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."
 
 
 
 
 
792
 
793
+ #: ../classes/settings.php:315
794
  #, php-format
795
+ msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
796
+ 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."
 
 
 
 
 
 
797
 
798
+ #: ../classes/settings.php:316
799
  msgid "Post Titles"
800
  msgstr "Indlægstitler"
801
 
802
+ #: ../classes/settings.php:316
803
  msgid "Value: can be one or more Post ID's (seperated by ',')."
804
  msgstr "Værdi: kan være ét eller flere indlægs ID'er (separeret med ',')"
805
 
806
+ #: ../classes/settings.php:317
807
  msgid "Usernames"
808
  msgstr "Brugernavne"
809
 
810
+ #: ../classes/settings.php:317
811
  msgid "Value: can be one or more User ID's (seperated by ',')."
812
  msgstr "Værdi: kan være ét eller flere bruger ID'er (separeret med ',')"
813
 
814
+ #: ../classes/settings.php:318
815
  msgid "Checkmark"
816
  msgstr "Flueben"
817
 
818
+ #: ../classes/settings.php:318
819
  msgid "Value: should be a 1 (one) or 0 (zero)."
820
  msgstr "Værdi: skal være 1 (en) eller 0 (nul)."
821
 
822
+ #: ../classes/settings.php:319
823
  msgid "Value: hex value color, such as #808080."
824
  msgstr "Værdi: hex værdi farve, for eksempel #808080."
825
 
826
+ #: ../classes/settings.php:320
827
+ msgid "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."
 
 
828
  msgstr ""
829
 
830
+ #: ../classes/settings.php:409
831
  msgid "Welcome to Admin Columns"
832
  msgstr "Velkommen til Admin Columns"
833
 
834
+ #: ../classes/settings.php:412
835
  msgid "Thank you for updating to the latest version!"
836
  msgstr "Tak fordi du opdaterede til den seneste version!"
837
 
838
+ #: ../classes/settings.php:413
839
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
840
+ msgstr "Admin Columns er mere poleret og behageligt end nogensinde før. Vi håber du kan lide det."
 
 
 
 
841
 
842
+ #: ../classes/settings.php:418
843
  msgid "What’s New"
844
  msgstr "Hvad er nyt"
845
 
846
+ #: ../classes/settings.php:419
847
  msgid "Changelog"
848
  msgstr "Ændringslog"
849
 
850
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
851
  msgid "Important"
852
  msgstr "Vigtigt"
853
 
854
+ #: ../classes/settings.php:426
855
  msgid "Database Changes"
856
  msgstr "Database ændringer"
857
 
858
+ #: ../classes/settings.php:427
859
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
860
+ 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."
 
 
 
 
861
 
862
+ #: ../classes/settings.php:430
863
  msgid "Make sure you backup your database and then click"
864
  msgstr "Vær sikker på at du tager backup af din database og derefter klikker"
865
 
866
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
867
  msgid "Upgrade Database"
868
  msgstr "Opgradér database"
869
 
870
+ #: ../classes/settings.php:433
871
  msgid "Potential Issues"
872
  msgstr "Mulige problemer"
873
 
874
+ #: ../classes/settings.php:434
875
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
876
+ msgstr " 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"
 
 
 
 
 
 
877
 
878
+ #: ../classes/settings.php:434
879
  msgid "Migrating from v1 to v2"
880
  msgstr "Migration fra v1 til v2"
881
 
882
+ #: ../classes/settings.php:434
883
  msgid "guide to view the full list of changes."
884
  msgstr "guide for at vise den fulde liste med ændringer."
885
 
886
+ #: ../classes/settings.php:434
887
  #, php-format
888
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
889
+ msgstr "Når du har fundet en fejl, venligst <a href=\"%s\">rapporter dem til os</a> vi kan rette det inden næste udgivelse."
 
 
 
 
890
 
891
+ #: ../classes/settings.php:437
892
  msgid "Important!"
893
  msgstr "Vigtigt!"
894
 
895
+ #: ../classes/settings.php:437
896
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
897
+ msgstr "Hvis du har opdateret Admin Columns plugin uden tidligere viden om sådanne ændringer, venligst gå tilbage til den seneste"
 
 
 
 
898
 
899
+ #: ../classes/settings.php:437
900
  msgid "version 1"
901
  msgstr "version 1"
902
 
903
+ #: ../classes/settings.php:437
904
  msgid "of this plugin."
905
  msgstr "af dette plugin."
906
 
907
+ #: ../classes/settings.php:443
908
  msgid "Changelog for"
909
  msgstr "Ændringslog for"
910
 
911
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
912
  msgid "Learn more"
913
  msgstr "Lær mere"
914
 
915
+ #: ../classes/settings.php:468
916
  msgid "Start using Admin Columns"
917
  msgstr "Gå i gang med at bruge Admin Columns"
918
 
919
+ #: ../classes/settings.php:511
920
  msgid "General Settings"
921
  msgstr "Generelle indstillinger"
922
 
923
+ #: ../classes/settings.php:512
924
  msgid "Customize your Admin Columns settings."
925
  msgstr "Tilpas din Admin Columns indstillinger."
926
 
927
+ #: ../classes/settings.php:523
928
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
 
929
  msgstr ""
 
 
930
 
931
+ #: ../classes/settings.php:530 ../classes/settings.php:660
932
  msgid "Save"
933
  msgstr "Gem"
934
 
935
+ #: ../classes/settings.php:570
936
  msgid "Restore Settings"
937
  msgstr "Gendan indstillinger"
938
 
939
+ #: ../classes/settings.php:571
940
  msgid "This will delete all column settings and restore the default settings."
941
+ msgstr "Dette vil slette alle kolonneindstillinger og gendanne standardindstillingerne."
 
 
942
 
943
+ #: ../classes/settings.php:577
944
  msgid "Restore default settings"
945
  msgstr "Gendan standard indstillinger"
946
 
947
+ #: ../classes/settings.php:577
948
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
949
+ msgstr "Advarsel! Alle gemte admin kolonner data vil blive slettet. Dette kan ikke fortrydes. \\'OK\\' for at slette, \\'Annuller\\ ' for at stoppe"
 
 
 
 
950
 
951
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
952
  msgid "Settings"
953
  msgstr "Indstillinger"
954
 
955
+ #: ../classes/settings.php:600
956
  msgid "Add-ons"
957
  msgstr ""
958
 
959
+ #: ../classes/settings.php:625
960
  msgid "Posttypes"
961
  msgstr ""
962
 
963
+ #: ../classes/settings.php:626
964
  msgid "Others"
965
  msgstr ""
966
 
967
+ #: ../classes/settings.php:627
968
  msgid "Taxonomies"
969
  msgstr ""
970
 
971
+ #: ../classes/settings.php:646
972
  #, php-format
973
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
 
 
974
  msgstr ""
975
 
976
+ #: ../classes/settings.php:656
977
  msgid "Store settings"
978
  msgstr "Gem indstillinger"
979
 
980
+ #: ../classes/settings.php:660
981
  msgid "Update"
982
  msgstr "Opdater"
983
 
984
+ #: ../classes/settings.php:664
985
  #, php-format
986
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
987
+ msgstr "Advarsel! %s kolonnernes data vil blive slettet. Dette kan ikke fortrydes. \\'OK\\' for at slette, \\'Annuller\\' for at afbryde"
 
 
 
 
988
 
989
+ #: ../classes/settings.php:665
990
  msgid "columns"
991
  msgstr "kolonner"
992
 
993
+ #: ../classes/settings.php:684
994
  msgid "Get Admin Columns Pro"
995
  msgstr ""
996
 
997
+ #: ../classes/settings.php:688
998
  msgid "Add Sorting"
999
  msgstr "Tilføj sortering"
1000
 
1001
+ #: ../classes/settings.php:689
1002
  msgid "Add Filtering"
1003
  msgstr "Tilføj filtrering"
1004
 
1005
+ #: ../classes/settings.php:690
1006
  msgid "Add Import/Export"
1007
  msgstr "Tilføj import/eksport"
1008
 
1009
+ #: ../classes/settings.php:691
1010
  msgid "Add Direct Editing"
1011
  msgstr ""
1012
 
1013
+ #: ../classes/settings.php:694
1014
  #, php-format
1015
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1016
  msgstr ""
1017
 
1018
+ #: ../classes/settings.php:725
1019
+ msgid "Are you happy with Admin Columns?"
1020
+ msgstr ""
1021
+
1022
+ #: ../classes/settings.php:733
1023
+ msgid "What's wrong? Need help? Let us know!"
1024
+ msgstr ""
1025
+
1026
+ #: ../classes/settings.php:734
1027
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1028
+ msgstr ""
1029
+
1030
  #: ../classes/settings.php:742
1031
+ msgid "Docs"
1032
+ msgstr ""
1033
+
1034
+ #: ../classes/settings.php:747
1035
+ msgid "Forums"
1036
+ msgstr ""
1037
+
1038
+ #: ../classes/settings.php:756
1039
+ msgid "Woohoo! We're glad to hear that!"
1040
+ msgstr ""
1041
+
1042
+ #: ../classes/settings.php:757
1043
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1044
+ msgstr ""
1045
+
1046
+ #: ../classes/settings.php:761
1047
+ msgid "Rate"
1048
+ msgstr ""
1049
+
1050
+ #: ../classes/settings.php:772
1051
+ msgid "Tweet"
1052
+ msgstr ""
1053
+
1054
+ #: ../classes/settings.php:782
1055
+ msgid "Buy Pro"
1056
+ msgstr ""
1057
+
1058
+ #: ../classes/settings.php:794
1059
  msgid "Support"
1060
  msgstr "Hjælp"
1061
 
1062
+ #: ../classes/settings.php:797
1063
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1064
  msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
1065
 
1066
+ #: ../classes/settings.php:800
1067
  #, php-format
1068
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1069
+ msgstr "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips <a href='%s'>besøg Admin Columns hjemmeside</a>"
 
 
 
 
1070
 
1071
+ #: ../classes/settings.php:829
1072
  msgid "Drag and drop to reorder"
1073
  msgstr "Træk og slip for at ændre rækkefølgen"
1074
 
1075
+ #: ../classes/settings.php:832
1076
  msgid "Add Column"
1077
  msgstr "Tilføj kolonne"
1078
 
1079
+ #: ../classes/settings.php:908
1080
  msgid "Active"
1081
  msgstr ""
1082
 
1083
+ #: ../classes/settings.php:909
1084
  msgid "Deactivate"
1085
  msgstr ""
1086
 
1087
+ #: ../classes/settings.php:916
1088
  msgid "Installed"
1089
  msgstr ""
1090
 
1091
+ #: ../classes/settings.php:917
1092
  msgid "Activate"
1093
  msgstr ""
1094
 
1095
+ #: ../classes/settings.php:931
1096
  msgid "Download & Install"
1097
  msgstr ""
1098
 
1099
+ #: ../classes/settings.php:936
1100
  msgid "Get this add-on"
1101
  msgstr ""
1102
 
1103
+ #: ../classes/storage_model.php:213
1104
  msgid "settings succesfully restored."
1105
  msgstr "indstillinger er gendannet med success."
1106
 
1107
+ #: ../classes/storage_model.php:229
1108
  msgid "No columns settings available."
1109
  msgstr "Ingen kolonneindstillinger tilgængelige."
1110
 
1111
+ #: ../classes/storage_model.php:250
1112
  #, php-format
1113
  msgid "You are trying to store the same settings for %s."
1114
  msgstr "Du forsøger at gemme samme indstillinger for %s."
1115
 
1116
+ #: ../classes/storage_model.php:254
1117
  #, php-format
1118
  msgid "Settings for %s updated succesfully."
1119
  msgstr "Indstillinger for %s er opdateret med success."
1130
  msgid "Users"
1131
  msgstr "Brugere"
1132
 
1133
+ #: ../classes/upgrade.php:62
1134
+ msgid ""
1135
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of <strong>Admin Columns Pro</"
1136
+ "strong> <a href=\"http://www.admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new features, including Direct Inline Editing!"
1137
+ msgstr ""
1138
+
1139
+ #: ../classes/upgrade.php:95
1140
  msgid "Upgrade"
1141
  msgstr "Opgrader"
1142
 
1143
+ #: ../classes/upgrade.php:136
1144
  msgid "requires a database upgrade"
1145
  msgstr "en opgradering af databasen er påkrævet"
1146
 
1147
+ #: ../classes/upgrade.php:139
1148
  msgid "why?"
1149
  msgstr "hvorfor?"
1150
 
1151
+ #: ../classes/upgrade.php:140
1152
  msgid "Please"
1153
  msgstr "Venligst"
1154
 
1155
+ #: ../classes/upgrade.php:141
1156
  msgid "backup your database"
1157
  msgstr "tag backup af din database"
1158
 
1159
+ #: ../classes/upgrade.php:142
1160
  msgid "then click"
1161
  msgstr "derefter klik"
1162
 
1163
+ #: ../classes/upgrade.php:351
1164
  msgid "Migrating Column Settings"
1165
  msgstr "Migration af kolonne indstillinger"
1166
 
1167
+ #: ../classes/upgrade.php:387
1168
  msgid "No Upgrade Required"
1169
  msgstr "Ingen opgradering er påkrævet"
1170
 
1171
+ #: ../classes/upgrade.php:388
1172
  msgid "Return to welcome screen."
1173
  msgstr "Gå tilbage til velkomstskærmen."
1174
 
1175
+ #: ../classes/upgrade.php:406
1176
  msgid "Upgrade Complete!"
1177
  msgstr "Opgradering fuldført!"
1178
 
1179
+ #: ../classes/upgrade.php:406
1180
  msgid "Return to settings."
1181
  msgstr "Gå tilbage til indstillinger."
1182
 
1183
+ #: ../classes/upgrade.php:407
1184
  msgid "Error"
1185
  msgstr "Fejl"
1186
 
1187
+ #: ../classes/upgrade.php:408
1188
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1189
+ msgstr "Beklager. Noget gik galt i opgraderingsprocessen. Venligst rapporter dette i support forummet."
 
 
 
 
1190
 
1191
+ #: ../codepress-admin-columns.php:390
1192
  msgid "Edit columns"
1193
  msgstr "Rediger kolonner"
languages/cpac-de_DE.mo ADDED
Binary file
languages/cpac-de_DE.po ADDED
@@ -0,0 +1,1217 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Admin Columns\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
8
+ "PO-Revision-Date: 2014-12-10 17:24+0100\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.7.1\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-KeywordsList: __;_e\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPath-1: ..\n"
22
+
23
+ #: ../classes/addons.php:110
24
+ msgid "Third party plugin integration"
25
+ msgstr ""
26
+
27
+ #: ../classes/addons.php:135
28
+ msgid "Advanced Custom Fields"
29
+ msgstr ""
30
+
31
+ #: ../classes/addons.php:136
32
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
33
+ msgstr ""
34
+
35
+ #: ../classes/addons.php:141
36
+ msgid "WooCommerce"
37
+ msgstr ""
38
+
39
+ #: ../classes/addons.php:142
40
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
41
+ msgstr ""
42
+
43
+ #: ../classes/column.php:500
44
+ msgid "Thumbnail"
45
+ msgstr ""
46
+
47
+ #: ../classes/column.php:501
48
+ msgid "Medium"
49
+ msgstr ""
50
+
51
+ #: ../classes/column.php:502
52
+ msgid "Large"
53
+ msgstr ""
54
+
55
+ #: ../classes/column.php:503
56
+ msgid "Full"
57
+ msgstr ""
58
+
59
+ #: ../classes/column.php:863
60
+ msgid "Date Format"
61
+ msgstr ""
62
+
63
+ #: ../classes/column.php:864
64
+ msgid "This will determine how the date will be displayed."
65
+ msgstr ""
66
+
67
+ #: ../classes/column.php:870
68
+ msgid "Example:"
69
+ msgstr ""
70
+
71
+ #: ../classes/column.php:872
72
+ #, php-format
73
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
74
+ msgstr ""
75
+
76
+ #: ../classes/column.php:873
77
+ msgid "Documentation on date and time formatting."
78
+ msgstr ""
79
+
80
+ #: ../classes/column.php:887
81
+ msgid "Excerpt length"
82
+ msgstr ""
83
+
84
+ #: ../classes/column.php:888
85
+ msgid "Number of words"
86
+ msgstr ""
87
+
88
+ #: ../classes/column.php:906
89
+ msgid "Preview size"
90
+ msgstr ""
91
+
92
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
93
+ msgid "Custom"
94
+ msgstr "Benutzerdefiniert"
95
+
96
+ #: ../classes/column.php:926
97
+ msgid "width"
98
+ msgstr ""
99
+
100
+ #: ../classes/column.php:929
101
+ msgid "height"
102
+ msgstr ""
103
+
104
+ #: ../classes/column.php:943
105
+ msgid "Before"
106
+ msgstr ""
107
+
108
+ #: ../classes/column.php:943
109
+ msgid "This text will appear before the custom field value."
110
+ msgstr ""
111
+
112
+ #: ../classes/column.php:949
113
+ msgid "After"
114
+ msgstr ""
115
+
116
+ #: ../classes/column.php:949
117
+ msgid "This text will appear after the custom field value."
118
+ msgstr ""
119
+
120
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48
121
+ #: ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
122
+ msgid "Edit"
123
+ msgstr "Editieren"
124
+
125
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
126
+ msgid "Remove"
127
+ msgstr "Entfernen"
128
+
129
+ #: ../classes/column.php:1062
130
+ msgid "Type"
131
+ msgstr ""
132
+
133
+ #: ../classes/column.php:1062
134
+ msgid "Choose a column type."
135
+ msgstr ""
136
+
137
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19
138
+ #: ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
139
+ msgid "ID"
140
+ msgstr "ID"
141
+
142
+ #: ../classes/column.php:1072
143
+ msgid "Label"
144
+ msgstr ""
145
+
146
+ #: ../classes/column.php:1072
147
+ msgid "This is the name which will appear as the column header."
148
+ msgstr ""
149
+
150
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
151
+ msgid "Width"
152
+ msgstr "Breite"
153
+
154
+ #: ../classes/column.php:1081 ../classes/column.php:1082
155
+ msgid "default"
156
+ msgstr "Vorgabe"
157
+
158
+ #: ../classes/column/acf-placeholder.php:19
159
+ msgid "ACF Field"
160
+ msgstr ""
161
+
162
+ #: ../classes/column/acf-placeholder.php:32
163
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
164
+ msgstr ""
165
+
166
+ #: ../classes/column/acf-placeholder.php:35
167
+ #, php-format
168
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
169
+ msgstr ""
170
+
171
+ #: ../classes/column/acf-placeholder.php:38
172
+ msgid ""
173
+ "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit "
174
+ "ACF fields from within your posts overview."
175
+ msgstr ""
176
+
177
+ #: ../classes/column/acf-placeholder.php:44
178
+ msgid "Find out more"
179
+ msgstr ""
180
+
181
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19
182
+ #: ../classes/column/media/actions.php:20 ../classes/column/user/actions.php:19
183
+ msgid "Actions"
184
+ msgstr "Aktionen"
185
+
186
+ #: ../classes/column/actions.php:87
187
+ msgid "Use icons?"
188
+ msgstr ""
189
+
190
+ #: ../classes/column/actions.php:87
191
+ msgid "Use icons instead of text for displaying the actions."
192
+ msgstr ""
193
+
194
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
195
+ msgid "Yes"
196
+ msgstr ""
197
+
198
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
199
+ msgid "No"
200
+ msgstr ""
201
+
202
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
203
+ msgid "Unapprove"
204
+ msgstr "Nicht zustimmen"
205
+
206
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
207
+ msgid "Approve"
208
+ msgstr "Zustimmen"
209
+
210
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
211
+ msgid "Restore"
212
+ msgstr "Wiederherstellen"
213
+
214
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
215
+ msgid "Delete Permanently"
216
+ msgstr "Endgültig Löschen"
217
+
218
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
219
+ msgid "Quick&nbsp;Edit"
220
+ msgstr "Schnelleinstellungen"
221
+
222
+ #: ../classes/column/comment/actions.php:101
223
+ msgid "Reply"
224
+ msgstr "Antworten"
225
+
226
+ #: ../classes/column/comment/agent.php:19
227
+ msgid "Agent"
228
+ msgstr "Verfasser"
229
+
230
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
231
+ msgid "Approved"
232
+ msgstr "Genehmigt"
233
+
234
+ #: ../classes/column/comment/author-avatar.php:19
235
+ msgid "Avatar"
236
+ msgstr "Avatar"
237
+
238
+ #: ../classes/column/comment/author-email.php:19
239
+ msgid "Author email"
240
+ msgstr "Mail Adresse des Autors"
241
+
242
+ #: ../classes/column/comment/author-ip.php:19
243
+ msgid "Author IP"
244
+ msgstr "IP des Autors"
245
+
246
+ #: ../classes/column/comment/author-url.php:19
247
+ msgid "Author url"
248
+ msgstr "URL des Autors"
249
+
250
+ #: ../classes/column/comment/author.php:19
251
+ msgid "Author"
252
+ msgstr ""
253
+
254
+ #: ../classes/column/comment/date-gmt.php:19
255
+ msgid "Date GMT"
256
+ msgstr "Datum (GMT)"
257
+
258
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
259
+ #, php-format
260
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
261
+ msgstr "Übetragen per <a href=\"%1$s\">%2$s at %3$s</a>"
262
+
263
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
264
+ msgid "Date"
265
+ msgstr "Datum"
266
+
267
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19
268
+ #: ../classes/settings.php:312
269
+ msgid "Excerpt"
270
+ msgstr "Auszug"
271
+
272
+ #: ../classes/column/comment/reply-to.php:19
273
+ msgid "In Reply To"
274
+ msgstr "In Beantwortung"
275
+
276
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
277
+ msgid "Word count"
278
+ msgstr "Anzahl Worte"
279
+
280
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
281
+ msgid "Custom Field"
282
+ msgstr "Benutzerdefiniertes Feld"
283
+
284
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
285
+ msgid "Default"
286
+ msgstr "Vorgabe"
287
+
288
+ #: ../classes/column/custom-field.php:95
289
+ msgid "Checkmark (true/false)"
290
+ msgstr ""
291
+
292
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
293
+ msgid "Color"
294
+ msgstr ""
295
+
296
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
297
+ msgid "Counter"
298
+ msgstr ""
299
+
300
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
301
+ msgid "Image"
302
+ msgstr "Bild"
303
+
304
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
305
+ msgid "Media Library"
306
+ msgstr ""
307
+
308
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
309
+ msgid "Multiple Values"
310
+ msgstr "Multiple Werte"
311
+
312
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
313
+ msgid "Numeric"
314
+ msgstr "Numerisch"
315
+
316
+ #: ../classes/column/custom-field.php:104
317
+ msgid "Post Title (Post ID's)"
318
+ msgstr "Post Titel (Post ID's)"
319
+
320
+ #: ../classes/column/custom-field.php:105
321
+ msgid "Username (User ID's)"
322
+ msgstr ""
323
+
324
+ #: ../classes/column/custom-field.php:356
325
+ msgid "Select your custom field."
326
+ msgstr ""
327
+
328
+ #: ../classes/column/custom-field.php:366
329
+ msgid "No custom fields available."
330
+ msgstr ""
331
+
332
+ #: ../classes/column/custom-field.php:373
333
+ msgid "Field Type"
334
+ msgstr ""
335
+
336
+ #: ../classes/column/custom-field.php:373
337
+ msgid "This will determine how the value will be displayed."
338
+ msgstr ""
339
+
340
+ #: ../classes/column/link/actions.php:49
341
+ #, php-format
342
+ msgid ""
343
+ "You are about to delete this link '%s'\n"
344
+ " 'Cancel' to stop, 'OK' to delete."
345
+ msgstr ""
346
+ "Sie sind dabei diesen Link zu löschen '%s'\n"
347
+ " 'Cancel' um Abzubrechen, 'OK' zum Löschen."
348
+
349
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
350
+ msgid "Delete"
351
+ msgstr "Löschen"
352
+
353
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19
354
+ #: ../classes/column/user/description.php:19
355
+ msgid "Description"
356
+ msgstr "Beschreibung"
357
+
358
+ #: ../classes/column/link/length.php:19
359
+ msgid "Length"
360
+ msgstr "Länge"
361
+
362
+ #: ../classes/column/link/notes.php:19
363
+ msgid "Notes"
364
+ msgstr "Notizen"
365
+
366
+ #: ../classes/column/link/owner.php:19
367
+ msgid "Owner"
368
+ msgstr "Eigentümer"
369
+
370
+ #: ../classes/column/link/rss.php:19
371
+ msgid "Rss"
372
+ msgstr "RSS"
373
+
374
+ #: ../classes/column/link/target.php:19
375
+ msgid "Target"
376
+ msgstr "Ziel"
377
+
378
+ #: ../classes/column/media/alternate-text.php:19
379
+ msgid "Alt"
380
+ msgstr "alt Attribut"
381
+
382
+ #: ../classes/column/media/available-sizes.php:20
383
+ msgid "Available Sizes"
384
+ msgstr ""
385
+
386
+ #: ../classes/column/media/available-sizes.php:40
387
+ msgid "full size"
388
+ msgstr ""
389
+
390
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
391
+ msgid "Caption"
392
+ msgstr "Untertitel"
393
+
394
+ #: ../classes/column/media/dimensions.php:19
395
+ msgid "Dimensions"
396
+ msgstr "Abmessungen"
397
+
398
+ #: ../classes/column/media/exif-data.php:19
399
+ msgid "EXIF data"
400
+ msgstr ""
401
+
402
+ #: ../classes/column/media/exif-data.php:38
403
+ msgid "Aperture"
404
+ msgstr "Blende"
405
+
406
+ #: ../classes/column/media/exif-data.php:39
407
+ msgid "Credit"
408
+ msgstr "Name"
409
+
410
+ #: ../classes/column/media/exif-data.php:40
411
+ msgid "Camera"
412
+ msgstr "Kamera"
413
+
414
+ #: ../classes/column/media/exif-data.php:42
415
+ msgid "Timestamp"
416
+ msgstr "Zeitangabe"
417
+
418
+ #: ../classes/column/media/exif-data.php:43
419
+ msgid "Copyright EXIF"
420
+ msgstr "Copyright EXIF"
421
+
422
+ #: ../classes/column/media/exif-data.php:44
423
+ msgid "Focal Length"
424
+ msgstr "Brennweite"
425
+
426
+ #: ../classes/column/media/exif-data.php:45
427
+ msgid "ISO"
428
+ msgstr "ISO"
429
+
430
+ #: ../classes/column/media/exif-data.php:46
431
+ msgid "Shutter Speed"
432
+ msgstr "Verschlusszeit"
433
+
434
+ #: ../classes/column/media/exif-data.php:47
435
+ msgid "Title"
436
+ msgstr "Titel"
437
+
438
+ #: ../classes/column/media/file-name.php:19
439
+ msgid "File name"
440
+ msgstr "File Name"
441
+
442
+ #: ../classes/column/media/file-size.php:19
443
+ msgid "File size"
444
+ msgstr "File Größe"
445
+
446
+ #: ../classes/column/media/full-path.php:19
447
+ msgid "Full path"
448
+ msgstr ""
449
+
450
+ #: ../classes/column/media/height.php:19
451
+ msgid "Height"
452
+ msgstr "Höhe"
453
+
454
+ #: ../classes/column/media/mime-type.php:19
455
+ msgid "Mime type"
456
+ msgstr "mime type"
457
+
458
+ #: ../classes/column/post/actions.php:31
459
+ msgid "Edit this item"
460
+ msgstr "Dieses Element editieren"
461
+
462
+ #: ../classes/column/post/actions.php:34
463
+ msgid "Edit this item inline"
464
+ msgstr "Element Inline editieren "
465
+
466
+ #: ../classes/column/post/actions.php:39
467
+ msgid "Restore this item from the Trash"
468
+ msgstr "Element wiederherstellen"
469
+
470
+ #: ../classes/column/post/actions.php:41
471
+ msgid "Move this item to the Trash"
472
+ msgstr "Element in den Papierkorb verschieben"
473
+
474
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
475
+ msgid "Trash"
476
+ msgstr "Papierkorb"
477
+
478
+ #: ../classes/column/post/actions.php:43
479
+ msgid "Delete this item permanently"
480
+ msgstr "Element endgültig löschen"
481
+
482
+ #: ../classes/column/post/actions.php:48
483
+ #, php-format
484
+ msgid "Preview &#8220;%s&#8221;"
485
+ msgstr "Vorschau &#8220;%s&#8221;"
486
+
487
+ #: ../classes/column/post/actions.php:48
488
+ msgid "Preview"
489
+ msgstr "Vorschau"
490
+
491
+ #: ../classes/column/post/actions.php:50
492
+ #, php-format
493
+ msgid "View &#8220;%s&#8221;"
494
+ msgstr "Ansicht &#8220;%s&#8221;"
495
+
496
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
497
+ msgid "View"
498
+ msgstr "Ansicht"
499
+
500
+ #: ../classes/column/post/attachment-count.php:19
501
+ msgid "No. of Attachments"
502
+ msgstr "Zahl der Anlagen"
503
+
504
+ #: ../classes/column/post/attachment.php:19
505
+ msgid "Attachment"
506
+ msgstr "Anlage"
507
+
508
+ #: ../classes/column/post/author-name.php:20
509
+ msgid "Display Author As"
510
+ msgstr ""
511
+
512
+ #: ../classes/column/post/author-name.php:40
513
+ msgid "Display Name"
514
+ msgstr ""
515
+
516
+ #: ../classes/column/post/author-name.php:41
517
+ msgid "First Name"
518
+ msgstr ""
519
+
520
+ #: ../classes/column/post/author-name.php:42
521
+ msgid "Last Name"
522
+ msgstr ""
523
+
524
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
525
+ msgid "Nickname"
526
+ msgstr "Nick"
527
+
528
+ #: ../classes/column/post/author-name.php:44
529
+ msgid "User Login"
530
+ msgstr ""
531
+
532
+ #: ../classes/column/post/author-name.php:45
533
+ msgid "User Email"
534
+ msgstr ""
535
+
536
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
537
+ msgid "User ID"
538
+ msgstr "User ID"
539
+
540
+ #: ../classes/column/post/author-name.php:47
541
+ msgid "First and Last Name"
542
+ msgstr ""
543
+
544
+ #: ../classes/column/post/author-name.php:124
545
+ msgid "This is the format of the author name."
546
+ msgstr ""
547
+
548
+ #: ../classes/column/post/before-moretag.php:19
549
+ msgid "Before More Tag"
550
+ msgstr ""
551
+
552
+ #: ../classes/column/post/comment-count.php:20
553
+ msgid "Comment count"
554
+ msgstr "Anzahl Kommentare"
555
+
556
+ #: ../classes/column/post/comment-count.php:34
557
+ msgid "Total"
558
+ msgstr ""
559
+
560
+ #: ../classes/column/post/comment-count.php:36
561
+ msgid "Pending"
562
+ msgstr ""
563
+
564
+ #: ../classes/column/post/comment-count.php:37
565
+ msgid "Spam"
566
+ msgstr ""
567
+
568
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
569
+ msgid "Comment status"
570
+ msgstr "Kommentar Status"
571
+
572
+ #: ../classes/column/post/comment-count.php:99
573
+ msgid "Select which comment status you like to display."
574
+ msgstr ""
575
+
576
+ #: ../classes/column/post/featured-image.php:19
577
+ msgid "Featured Image"
578
+ msgstr "Benutzerdefiniertes Bild"
579
+
580
+ #: ../classes/column/post/formats.php:19
581
+ msgid "Post Format"
582
+ msgstr "Post Format"
583
+
584
+ #: ../classes/column/post/modified.php:19
585
+ msgid "Last modified"
586
+ msgstr "Zuletzt geändert"
587
+
588
+ #: ../classes/column/post/order.php:19
589
+ msgid "Page Order"
590
+ msgstr "Seitenreihenfolge"
591
+
592
+ #: ../classes/column/post/page-template.php:19
593
+ msgid "Page Template"
594
+ msgstr "Page Template"
595
+
596
+ #: ../classes/column/post/parent.php:19
597
+ msgid "Parent"
598
+ msgstr ""
599
+
600
+ #: ../classes/column/post/path.php:19
601
+ msgid "Path"
602
+ msgstr ""
603
+
604
+ #: ../classes/column/post/permalink.php:19
605
+ msgid "Permalink"
606
+ msgstr ""
607
+
608
+ #: ../classes/column/post/permalink.php:68
609
+ msgid "Link to post"
610
+ msgstr ""
611
+
612
+ #: ../classes/column/post/permalink.php:68
613
+ msgid "This will make the permalink clickable."
614
+ msgstr ""
615
+
616
+ #: ../classes/column/post/ping-status.php:19
617
+ msgid "Ping status"
618
+ msgstr "Ping Status"
619
+
620
+ #: ../classes/column/post/roles.php:19
621
+ msgid "Roles"
622
+ msgstr "Rollen"
623
+
624
+ #: ../classes/column/post/slug.php:19
625
+ msgid "Slug"
626
+ msgstr "Kurz URL"
627
+
628
+ #: ../classes/column/post/status.php:19
629
+ msgid "Status"
630
+ msgstr "Status"
631
+
632
+ #: ../classes/column/post/status.php:29
633
+ msgid "Published"
634
+ msgstr "Veröffentlicht"
635
+
636
+ #: ../classes/column/post/status.php:30
637
+ msgid "Draft"
638
+ msgstr "Entwurf"
639
+
640
+ #: ../classes/column/post/status.php:31
641
+ msgid "Scheduled"
642
+ msgstr "Geplant"
643
+
644
+ #: ../classes/column/post/status.php:32
645
+ msgid "Private"
646
+ msgstr "Privat"
647
+
648
+ #: ../classes/column/post/status.php:33
649
+ msgid "Pending Review"
650
+ msgstr "Ausstehende Revision"
651
+
652
+ #: ../classes/column/post/status.php:34
653
+ msgid "Auto Draft"
654
+ msgstr ""
655
+
656
+ #: ../classes/column/post/sticky.php:19
657
+ msgid "Sticky"
658
+ msgstr "Sticky"
659
+
660
+ #: ../classes/column/post/title-raw.php:19
661
+ msgid "Title without actions"
662
+ msgstr ""
663
+
664
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
665
+ msgid "Taxonomy"
666
+ msgstr "Klassifizierung"
667
+
668
+ #: ../classes/column/used-by-menu.php:20
669
+ msgid "Used by Menu"
670
+ msgstr ""
671
+
672
+ #: ../classes/column/used-by-menu.php:133
673
+ msgid "Link to menu"
674
+ msgstr ""
675
+
676
+ #: ../classes/column/used-by-menu.php:133
677
+ msgid "This will make the title link to the menu."
678
+ msgstr ""
679
+
680
+ #: ../classes/column/user/comment-count.php:19
681
+ msgid "Comment Count"
682
+ msgstr ""
683
+
684
+ #: ../classes/column/user/first-name.php:19
685
+ msgid "First name"
686
+ msgstr "Vorname"
687
+
688
+ #: ../classes/column/user/last-name.php:19
689
+ msgid "Last name"
690
+ msgstr "Nachname"
691
+
692
+ #: ../classes/column/user/post-count.php:19
693
+ msgid "Post Count"
694
+ msgstr ""
695
+
696
+ #: ../classes/column/user/post-count.php:102
697
+ msgid "Post Type"
698
+ msgstr ""
699
+
700
+ #: ../classes/column/user/registered.php:19
701
+ msgid "Registered"
702
+ msgstr "Registriert"
703
+
704
+ #: ../classes/column/user/url.php:19
705
+ msgid "Url"
706
+ msgstr "URL"
707
+
708
+ #: ../classes/settings.php:111
709
+ msgid "Add-on successfully activated."
710
+ msgstr ""
711
+
712
+ #: ../classes/settings.php:114
713
+ msgid "Add-on successfully deactivated."
714
+ msgstr ""
715
+
716
+ #: ../classes/settings.php:169
717
+ msgid "Admin Columns Settings"
718
+ msgstr ""
719
+
720
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
721
+ msgid "Admin Columns"
722
+ msgstr "Admin Spalten"
723
+
724
+ #: ../classes/settings.php:217
725
+ #, php-format
726
+ msgid "%s column is already present and can not be duplicated."
727
+ msgstr ""
728
+
729
+ #: ../classes/settings.php:271
730
+ msgid "Default settings succesfully restored."
731
+ msgstr ""
732
+
733
+ #: ../classes/settings.php:288
734
+ msgid "Overview"
735
+ msgstr ""
736
+
737
+ #: ../classes/settings.php:291
738
+ msgid ""
739
+ "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media "
740
+ "library, comments, links and users. Change the column's label and reorder them."
741
+ msgstr ""
742
+
743
+ #: ../classes/settings.php:294
744
+ msgid "Basics"
745
+ msgstr ""
746
+
747
+ #: ../classes/settings.php:296
748
+ msgid "Change order"
749
+ msgstr ""
750
+
751
+ #: ../classes/settings.php:297
752
+ msgid "By dragging the columns you can change the order which they will appear in."
753
+ msgstr ""
754
+
755
+ #: ../classes/settings.php:298
756
+ msgid "Change label"
757
+ msgstr ""
758
+
759
+ #: ../classes/settings.php:299
760
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
761
+ msgstr ""
762
+
763
+ #: ../classes/settings.php:300
764
+ msgid "Change column width"
765
+ msgstr ""
766
+
767
+ #: ../classes/settings.php:301
768
+ msgid ""
769
+ "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the "
770
+ "columns in percentages."
771
+ msgstr ""
772
+
773
+ #: ../classes/settings.php:307
774
+ msgid "'Custom Field' column"
775
+ msgstr ""
776
+
777
+ #: ../classes/settings.php:308
778
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
779
+ msgstr ""
780
+
781
+ #: ../classes/settings.php:310
782
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
783
+ msgstr ""
784
+
785
+ #: ../classes/settings.php:311
786
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
787
+ msgstr ""
788
+
789
+ #: ../classes/settings.php:312
790
+ msgid "Value: This will show the first 20 words of the Post content."
791
+ msgstr ""
792
+
793
+ #: ../classes/settings.php:313
794
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
795
+ msgstr ""
796
+
797
+ #: ../classes/settings.php:314
798
+ msgid ""
799
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on "
800
+ "numeric (custom field) values."
801
+ msgstr ""
802
+
803
+ #: ../classes/settings.php:315
804
+ #, php-format
805
+ msgid ""
806
+ "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted "
807
+ "date format at the <a href='%s'>general settings</a> page."
808
+ msgstr ""
809
+
810
+ #: ../classes/settings.php:316
811
+ msgid "Post Titles"
812
+ msgstr ""
813
+
814
+ #: ../classes/settings.php:316
815
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
816
+ msgstr ""
817
+
818
+ #: ../classes/settings.php:317
819
+ msgid "Usernames"
820
+ msgstr ""
821
+
822
+ #: ../classes/settings.php:317
823
+ msgid "Value: can be one or more User ID's (seperated by ',')."
824
+ msgstr ""
825
+
826
+ #: ../classes/settings.php:318
827
+ msgid "Checkmark"
828
+ msgstr ""
829
+
830
+ #: ../classes/settings.php:318
831
+ msgid "Value: should be a 1 (one) or 0 (zero)."
832
+ msgstr ""
833
+
834
+ #: ../classes/settings.php:319
835
+ msgid "Value: hex value color, such as #808080."
836
+ msgstr ""
837
+
838
+ #: ../classes/settings.php:320
839
+ msgid ""
840
+ "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 "
841
+ "item."
842
+ msgstr ""
843
+
844
+ #: ../classes/settings.php:409
845
+ msgid "Welcome to Admin Columns"
846
+ msgstr ""
847
+
848
+ #: ../classes/settings.php:412
849
+ msgid "Thank you for updating to the latest version!"
850
+ msgstr ""
851
+
852
+ #: ../classes/settings.php:413
853
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
854
+ msgstr ""
855
+
856
+ #: ../classes/settings.php:418
857
+ msgid "What’s New"
858
+ msgstr ""
859
+
860
+ #: ../classes/settings.php:419
861
+ msgid "Changelog"
862
+ msgstr ""
863
+
864
+ #: ../classes/settings.php:424
865
+ msgid "Important"
866
+ msgstr ""
867
+
868
+ #: ../classes/settings.php:426
869
+ msgid "Database Changes"
870
+ msgstr ""
871
+
872
+ #: ../classes/settings.php:427
873
+ msgid ""
874
+ "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without "
875
+ "any issues."
876
+ msgstr ""
877
+
878
+ #: ../classes/settings.php:430
879
+ msgid "Make sure you backup your database and then click"
880
+ msgstr ""
881
+
882
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
883
+ msgid "Upgrade Database"
884
+ msgstr ""
885
+
886
+ #: ../classes/settings.php:433
887
+ msgid "Potential Issues"
888
+ msgstr ""
889
+
890
+ #: ../classes/settings.php:434
891
+ msgid ""
892
+ "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It "
893
+ "is important that you read the full"
894
+ msgstr ""
895
+
896
+ #: ../classes/settings.php:434
897
+ msgid "Migrating from v1 to v2"
898
+ msgstr ""
899
+
900
+ #: ../classes/settings.php:434
901
+ msgid "guide to view the full list of changes."
902
+ msgstr ""
903
+
904
+ #: ../classes/settings.php:434
905
+ #, php-format
906
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
907
+ msgstr ""
908
+
909
+ #: ../classes/settings.php:437
910
+ msgid "Important!"
911
+ msgstr ""
912
+
913
+ #: ../classes/settings.php:437
914
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
915
+ msgstr ""
916
+
917
+ #: ../classes/settings.php:437
918
+ msgid "version 1"
919
+ msgstr ""
920
+
921
+ #: ../classes/settings.php:437
922
+ msgid "of this plugin."
923
+ msgstr ""
924
+
925
+ #: ../classes/settings.php:443
926
+ msgid "Changelog for"
927
+ msgstr ""
928
+
929
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
930
+ msgid "Learn more"
931
+ msgstr ""
932
+
933
+ #: ../classes/settings.php:468
934
+ msgid "Start using Admin Columns"
935
+ msgstr ""
936
+
937
+ #: ../classes/settings.php:511
938
+ msgid "General Settings"
939
+ msgstr ""
940
+
941
+ #: ../classes/settings.php:512
942
+ msgid "Customize your Admin Columns settings."
943
+ msgstr ""
944
+
945
+ #: ../classes/settings.php:523
946
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
947
+ msgstr ""
948
+
949
+ #: ../classes/settings.php:530 ../classes/settings.php:660
950
+ msgid "Save"
951
+ msgstr ""
952
+
953
+ #: ../classes/settings.php:570
954
+ msgid "Restore Settings"
955
+ msgstr ""
956
+
957
+ #: ../classes/settings.php:571
958
+ msgid "This will delete all column settings and restore the default settings."
959
+ msgstr "Alle Einstellungen werden gelöscht und die Voreinstellungen wiederhergestellt."
960
+
961
+ #: ../classes/settings.php:577
962
+ msgid "Restore default settings"
963
+ msgstr "Vorgabewerte wiederherstellen"
964
+
965
+ #: ../classes/settings.php:577
966
+ msgid ""
967
+ "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
968
+ msgstr "Warnung! Alle Admin Spalteneinstellungen werden endgültig gelöscht. \\'OK\\' zum Löschen, \\'Cancel\\' für Abbruch"
969
+
970
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
971
+ msgid "Settings"
972
+ msgstr "Einstellungen"
973
+
974
+ #: ../classes/settings.php:600
975
+ msgid "Add-ons"
976
+ msgstr ""
977
+
978
+ #: ../classes/settings.php:625
979
+ msgid "Posttypes"
980
+ msgstr ""
981
+
982
+ #: ../classes/settings.php:626
983
+ msgid "Others"
984
+ msgstr ""
985
+
986
+ #: ../classes/settings.php:627
987
+ msgid "Taxonomies"
988
+ msgstr ""
989
+
990
+ #: ../classes/settings.php:646
991
+ #, php-format
992
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
993
+ msgstr ""
994
+
995
+ #: ../classes/settings.php:656
996
+ msgid "Store settings"
997
+ msgstr ""
998
+
999
+ #: ../classes/settings.php:660
1000
+ msgid "Update"
1001
+ msgstr ""
1002
+
1003
+ #: ../classes/settings.php:664
1004
+ #, php-format
1005
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1006
+ msgstr ""
1007
+
1008
+ #: ../classes/settings.php:665
1009
+ msgid "columns"
1010
+ msgstr ""
1011
+
1012
+ #: ../classes/settings.php:684
1013
+ msgid "Get Admin Columns Pro"
1014
+ msgstr ""
1015
+
1016
+ #: ../classes/settings.php:688
1017
+ msgid "Add Sorting"
1018
+ msgstr ""
1019
+
1020
+ #: ../classes/settings.php:689
1021
+ msgid "Add Filtering"
1022
+ msgstr ""
1023
+
1024
+ #: ../classes/settings.php:690
1025
+ msgid "Add Import/Export"
1026
+ msgstr ""
1027
+
1028
+ #: ../classes/settings.php:691
1029
+ msgid "Add Direct Editing"
1030
+ msgstr ""
1031
+
1032
+ #: ../classes/settings.php:694
1033
+ #, php-format
1034
+ msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1035
+ msgstr ""
1036
+
1037
+ #: ../classes/settings.php:725
1038
+ msgid "Are you happy with Admin Columns?"
1039
+ msgstr ""
1040
+
1041
+ #: ../classes/settings.php:733
1042
+ msgid "What's wrong? Need help? Let us know!"
1043
+ msgstr ""
1044
+
1045
+ #: ../classes/settings.php:734
1046
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1047
+ msgstr ""
1048
+
1049
+ #: ../classes/settings.php:742
1050
+ msgid "Docs"
1051
+ msgstr ""
1052
+
1053
+ #: ../classes/settings.php:747
1054
+ msgid "Forums"
1055
+ msgstr ""
1056
+
1057
+ #: ../classes/settings.php:756
1058
+ msgid "Woohoo! We're glad to hear that!"
1059
+ msgstr ""
1060
+
1061
+ #: ../classes/settings.php:757
1062
+ msgid ""
1063
+ "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin "
1064
+ "Columns!"
1065
+ msgstr ""
1066
+
1067
+ #: ../classes/settings.php:761
1068
+ msgid "Rate"
1069
+ msgstr ""
1070
+
1071
+ #: ../classes/settings.php:772
1072
+ msgid "Tweet"
1073
+ msgstr ""
1074
+
1075
+ #: ../classes/settings.php:782
1076
+ msgid "Buy Pro"
1077
+ msgstr ""
1078
+
1079
+ #: ../classes/settings.php:794
1080
+ msgid "Support"
1081
+ msgstr ""
1082
+
1083
+ #: ../classes/settings.php:797
1084
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
1085
+ msgstr ""
1086
+
1087
+ #: ../classes/settings.php:800
1088
+ #, php-format
1089
+ msgid ""
1090
+ "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1091
+ msgstr ""
1092
+
1093
+ #: ../classes/settings.php:829
1094
+ msgid "Drag and drop to reorder"
1095
+ msgstr ""
1096
+
1097
+ #: ../classes/settings.php:832
1098
+ msgid "Add Column"
1099
+ msgstr ""
1100
+
1101
+ #: ../classes/settings.php:908
1102
+ msgid "Active"
1103
+ msgstr ""
1104
+
1105
+ #: ../classes/settings.php:909
1106
+ msgid "Deactivate"
1107
+ msgstr ""
1108
+
1109
+ #: ../classes/settings.php:916
1110
+ msgid "Installed"
1111
+ msgstr ""
1112
+
1113
+ #: ../classes/settings.php:917
1114
+ msgid "Activate"
1115
+ msgstr ""
1116
+
1117
+ #: ../classes/settings.php:931
1118
+ msgid "Download & Install"
1119
+ msgstr ""
1120
+
1121
+ #: ../classes/settings.php:936
1122
+ msgid "Get this add-on"
1123
+ msgstr ""
1124
+
1125
+ #: ../classes/storage_model.php:213
1126
+ msgid "settings succesfully restored."
1127
+ msgstr ""
1128
+
1129
+ #: ../classes/storage_model.php:229
1130
+ msgid "No columns settings available."
1131
+ msgstr ""
1132
+
1133
+ #: ../classes/storage_model.php:250
1134
+ #, php-format
1135
+ msgid "You are trying to store the same settings for %s."
1136
+ msgstr ""
1137
+
1138
+ #: ../classes/storage_model.php:254
1139
+ #, php-format
1140
+ msgid "Settings for %s updated succesfully."
1141
+ msgstr ""
1142
+
1143
+ #: ../classes/storage_model/comment.php:13
1144
+ msgid "Comments"
1145
+ msgstr "Kommentare"
1146
+
1147
+ #: ../classes/storage_model/link.php:13
1148
+ msgid "Links"
1149
+ msgstr ""
1150
+
1151
+ #: ../classes/storage_model/user.php:13
1152
+ msgid "Users"
1153
+ msgstr ""
1154
+
1155
+ #: ../classes/upgrade.php:62
1156
+ msgid ""
1157
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer "
1158
+ "supported by Admin Columns 2.2+. However, a free license of <strong>Admin Columns Pro</strong> <a href=\"http://www."
1159
+ "admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new "
1160
+ "features, including Direct Inline Editing!"
1161
+ msgstr ""
1162
+
1163
+ #: ../classes/upgrade.php:95
1164
+ msgid "Upgrade"
1165
+ msgstr ""
1166
+
1167
+ #: ../classes/upgrade.php:136
1168
+ msgid "requires a database upgrade"
1169
+ msgstr ""
1170
+
1171
+ #: ../classes/upgrade.php:139
1172
+ msgid "why?"
1173
+ msgstr ""
1174
+
1175
+ #: ../classes/upgrade.php:140
1176
+ msgid "Please"
1177
+ msgstr ""
1178
+
1179
+ #: ../classes/upgrade.php:141
1180
+ msgid "backup your database"
1181
+ msgstr ""
1182
+
1183
+ #: ../classes/upgrade.php:142
1184
+ msgid "then click"
1185
+ msgstr ""
1186
+
1187
+ #: ../classes/upgrade.php:351
1188
+ msgid "Migrating Column Settings"
1189
+ msgstr ""
1190
+
1191
+ #: ../classes/upgrade.php:387
1192
+ msgid "No Upgrade Required"
1193
+ msgstr ""
1194
+
1195
+ #: ../classes/upgrade.php:388
1196
+ msgid "Return to welcome screen."
1197
+ msgstr ""
1198
+
1199
+ #: ../classes/upgrade.php:406
1200
+ msgid "Upgrade Complete!"
1201
+ msgstr ""
1202
+
1203
+ #: ../classes/upgrade.php:406
1204
+ msgid "Return to settings."
1205
+ msgstr ""
1206
+
1207
+ #: ../classes/upgrade.php:407
1208
+ msgid "Error"
1209
+ msgstr ""
1210
+
1211
+ #: ../classes/upgrade.php:408
1212
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1213
+ msgstr ""
1214
+
1215
+ #: ../codepress-admin-columns.php:390
1216
+ msgid "Edit columns"
1217
+ msgstr ""
languages/cpac-es_ES.mo CHANGED
Binary file
languages/cpac-es_ES.po CHANGED
@@ -1,20 +1,23 @@
 
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Codepress Admin Columns\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-08-19 21:05+0100\n"
6
- "PO-Revision-Date: 2014-08-28 12:17+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
- "Language-Team: Codepress <info@codepress.nl>\n"
9
- "Language: en_GB\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.6.8\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
20
 
@@ -27,144 +30,127 @@ msgid "Advanced Custom Fields"
27
  msgstr "Campos Personalizados Avanzados"
28
 
29
  #: ../classes/addons.php:136
30
- msgid ""
31
- "Display and edit Advanced Custom Fields fields in the posts overview in "
32
- "seconds!"
33
- msgstr ""
34
- "¡Mostrar y editar los campos de Campos Personalizados Avanzados en el "
35
- "resumen de posts en segundos!"
36
 
37
  #: ../classes/addons.php:141
38
  msgid "WooCommerce"
39
- msgstr "WooCommerce"
40
 
41
  #: ../classes/addons.php:142
42
- msgid ""
43
- "Enhance the products, orders and coupons overviews with new columns and "
44
- "inline editing."
45
  msgstr ""
46
- "Mejora los resúmenes de los productos, órdenes y cupones con nuevas columnas "
47
- "y edición inline."
48
 
49
- #: ../classes/column.php:502
50
  msgid "Thumbnail"
51
  msgstr "Miniatura"
52
 
53
- #: ../classes/column.php:503
54
  msgid "Medium"
55
  msgstr "Medio"
56
 
57
- #: ../classes/column.php:504
58
  msgid "Large"
59
  msgstr "Largo"
60
 
61
- #: ../classes/column.php:505
62
  msgid "Full"
63
  msgstr "Completo"
64
 
65
- #: ../classes/column.php:858
66
  msgid "Date Format"
67
  msgstr "Formato de Fecha"
68
 
69
- #: ../classes/column.php:859
70
  msgid "This will determine how the date will be displayed."
71
  msgstr "Esto determinará cómo la fecha se mostrará."
72
 
73
- #: ../classes/column.php:865
74
  msgid "Example:"
75
  msgstr "Ejemplo:"
76
 
77
- #: ../classes/column.php:867
78
  #, php-format
79
- msgid ""
80
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
81
- "date format here</a>."
82
- msgstr ""
83
- "Dejar en blanco para formato de fecha de WordPress, cambie su <a href=\"%s"
84
- "\">formato de fecha por defecto aquí</a>."
85
 
86
- #: ../classes/column.php:868
87
  msgid "Documentation on date and time formatting."
88
  msgstr "Documentación en formato de fecha y hora."
89
 
90
- #: ../classes/column.php:882
91
  msgid "Excerpt length"
92
  msgstr "Tamaño de extracto"
93
 
94
- #: ../classes/column.php:883
95
  msgid "Number of words"
96
  msgstr "Número de palabras"
97
 
98
- #: ../classes/column.php:901
99
  msgid "Preview size"
100
  msgstr "Tamaño de vista previa"
101
 
102
- #: ../classes/column.php:918 ../classes/storage_model.php:519
103
  msgid "Custom"
104
  msgstr "Personalizado"
105
 
106
- #: ../classes/column.php:921
107
  msgid "width"
108
  msgstr "ancho"
109
 
110
- #: ../classes/column.php:924
111
  msgid "height"
112
  msgstr "largo"
113
 
114
- #: ../classes/column.php:938
115
  msgid "Before"
116
  msgstr "Antes"
117
 
118
- #: ../classes/column.php:938
119
  msgid "This text will appear before the custom field value."
120
  msgstr "Este texto aparecerá antes del valor del campo personalizado."
121
 
122
- #: ../classes/column.php:944
123
  msgid "After"
124
  msgstr "Después"
125
 
126
- #: ../classes/column.php:944
127
  msgid "This text will appear after the custom field value."
128
  msgstr "Este texto aparecerá después del valor del campo personalizado."
129
 
130
- #: ../classes/column.php:1038 ../classes/column/comment/actions.php:99
131
- #: ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31
132
- #: ../classes/column/user/actions.php:69
133
  msgid "Edit"
134
  msgstr "Editar"
135
 
136
- #: ../classes/column.php:1039 ../classes/column.php:1117
137
- #: ../classes/column/user/actions.php:77
138
  msgid "Remove"
139
  msgstr "Borrar"
140
 
141
- #: ../classes/column.php:1057
142
  msgid "Type"
143
  msgstr "Tipo"
144
 
145
- #: ../classes/column.php:1057
146
  msgid "Choose a column type."
147
  msgstr "Escoger un tipo de columna."
148
 
149
- #: ../classes/column.php:1057 ../classes/column/comment/ID.php:19
150
- #: ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19
151
- #: ../classes/column/post/ID.php:19
152
  msgid "ID"
153
  msgstr "ID"
154
 
155
- #: ../classes/column.php:1067
156
  msgid "Label"
157
  msgstr "Etiqueta"
158
 
159
- #: ../classes/column.php:1067
160
  msgid "This is the name which will appear as the column header."
161
  msgstr "Este es el nombre que aparecerá como el encabezado de la columna."
162
 
163
- #: ../classes/column.php:1074 ../classes/column/media/width.php:19
164
  msgid "Width"
165
  msgstr "Ancho"
166
 
167
- #: ../classes/column.php:1076 ../classes/column.php:1077
168
  msgid "default"
169
  msgstr "por defecto"
170
 
@@ -173,80 +159,59 @@ msgid "ACF Field"
173
  msgstr "Campo ACF"
174
 
175
  #: ../classes/column/acf-placeholder.php:32
176
- msgid "This feature is only available in Admin Columns Pro - Developer."
177
  msgstr ""
178
- "Esta característica está disponible solo en Admin Columns Pro - Developer."
179
 
180
  #: ../classes/column/acf-placeholder.php:35
181
  #, php-format
182
- msgid ""
183
- "If you have a developer licence please download & install your ACF add-on "
184
- "from the <a href='%s'>add-ons tab</a>."
185
- msgstr ""
186
- "Si tiene una licencia de desarrollador por favor baje e instale su add-on "
187
- "ACF de <a href='%s'>la pestaña de add-ons</a>."
188
 
189
  #: ../classes/column/acf-placeholder.php:38
190
- msgid ""
191
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
192
- "integeration, allowing you to easily display and edit ACF fields from within "
193
- "your posts overview."
194
- msgstr ""
195
- "Admin Columns Pro - Developer ofrece una integración completa de Campos "
196
- "Personalizados Avanzados, permitiéndole mostrar y editar fácilmente campos "
197
- "ACF desde el resumen de sus posts."
198
 
199
  #: ../classes/column/acf-placeholder.php:44
200
  msgid "Find out more"
201
  msgstr "Descubra más"
202
 
203
- #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19
204
- #: ../classes/column/link/actions.php:19
205
- #: ../classes/column/media/actions.php:20
206
- #: ../classes/column/user/actions.php:19
207
  msgid "Actions"
208
  msgstr "Acciones"
209
 
210
- #: ../classes/column/actions.php:79
211
  msgid "Use icons?"
212
- msgstr "¿Usar iconos?"
213
 
214
- #: ../classes/column/actions.php:79
215
  msgid "Use icons instead of text for displaying the actions."
216
- msgstr "Usar iconos en vez de texto para mostrar las acciones."
217
 
218
- #: ../classes/column/actions.php:83 ../classes/column/post/permalink.php:72
219
- #: ../classes/column/used-by-menu.php:137
220
  msgid "Yes"
221
- msgstr "Si"
222
 
223
- #: ../classes/column/actions.php:87 ../classes/column/post/permalink.php:76
224
- #: ../classes/column/used-by-menu.php:141
225
  msgid "No"
226
- msgstr "No"
227
 
228
- #: ../classes/column/comment/actions.php:76
229
- #: ../classes/column/comment/actions.php:81
230
  msgid "Unapprove"
231
  msgstr "Desaprobado"
232
 
233
- #: ../classes/column/comment/actions.php:78
234
- #: ../classes/column/comment/actions.php:80
235
  msgid "Approve"
236
  msgstr "Aprobado"
237
 
238
- #: ../classes/column/comment/actions.php:89
239
- #: ../classes/column/post/actions.php:39 ../classes/settings.php:678
240
  msgid "Restore"
241
  msgstr "Restaurar"
242
 
243
- #: ../classes/column/comment/actions.php:93
244
- #: ../classes/column/post/actions.php:43
245
  msgid "Delete Permanently"
246
  msgstr "Borrar Permanentemente"
247
 
248
- #: ../classes/column/comment/actions.php:100
249
- #: ../classes/column/post/actions.php:34
250
  msgid "Quick&nbsp;Edit"
251
  msgstr "Edición&nbsp;Rápida"
252
 
@@ -258,8 +223,7 @@ msgstr "Responder"
258
  msgid "Agent"
259
  msgstr "Agente"
260
 
261
- #: ../classes/column/comment/approved.php:19
262
- #: ../classes/column/post/comment-count.php:35
263
  msgid "Approved"
264
  msgstr "Aprobado"
265
 
@@ -287,20 +251,16 @@ msgstr "Autor"
287
  msgid "Date GMT"
288
  msgstr "Fecha GMT"
289
 
290
- #: ../classes/column/comment/date-gmt.php:30
291
- #: ../classes/column/comment/date.php:30
292
  #, php-format
293
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
294
  msgstr "Enviado el <a href=\"%1$s\">%2$s a las %3$s</a>"
295
 
296
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:70
297
- #: ../classes/settings.php:300
298
  msgid "Date"
299
  msgstr "Fecha"
300
 
301
- #: ../classes/column/comment/excerpt.php:19
302
- #: ../classes/column/custom-field.php:71 ../classes/column/post/excerpt.php:19
303
- #: ../classes/settings.php:297
304
  msgid "Excerpt"
305
  msgstr "Extracto"
306
 
@@ -308,71 +268,67 @@ msgstr "Extracto"
308
  msgid "In Reply To"
309
  msgstr "En Respuesta A"
310
 
311
- #: ../classes/column/comment/word-count.php:19
312
- #: ../classes/column/post/word-count.php:19
313
  msgid "Word count"
314
  msgstr "Conteo de palabra"
315
 
316
- #: ../classes/column/custom-field.php:23
317
- #: ../classes/column/custom-field.php:348 ../classes/settings.php:290
318
  msgid "Custom Field"
319
  msgstr "Campo Personalizado"
320
 
321
- #: ../classes/column/custom-field.php:66 ../classes/settings.php:295
322
- #: ../classes/storage_model.php:520
323
  msgid "Default"
324
  msgstr "Por Defecto"
325
 
326
- #: ../classes/column/custom-field.php:67
327
  msgid "Checkmark (true/false)"
328
  msgstr "Marca de Verificación (true/false)"
329
 
330
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:304
331
  msgid "Color"
332
  msgstr "Color"
333
 
334
- #: ../classes/column/custom-field.php:69 ../classes/settings.php:305
335
  msgid "Counter"
336
  msgstr "Contador"
337
 
338
- #: ../classes/column/custom-field.php:72 ../classes/column/link/image.php:19
339
- #: ../classes/settings.php:296
340
  msgid "Image"
341
  msgstr "Imagen"
342
 
343
- #: ../classes/column/custom-field.php:73 ../classes/storage_model/media.php:13
344
  msgid "Media Library"
345
  msgstr "Librería de Media"
346
 
347
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:298
348
  msgid "Multiple Values"
349
  msgstr "Valores Múltiples"
350
 
351
- #: ../classes/column/custom-field.php:75 ../classes/settings.php:299
352
  msgid "Numeric"
353
  msgstr "Numérico"
354
 
355
- #: ../classes/column/custom-field.php:76
356
  msgid "Post Title (Post ID's)"
357
  msgstr "Título del Post (IDs de Post)"
358
 
359
- #: ../classes/column/custom-field.php:77
360
  msgid "Username (User ID's)"
361
  msgstr "Nombre de Usuario (IDs de Usuario)"
362
 
363
- #: ../classes/column/custom-field.php:348
364
  msgid "Select your custom field."
365
  msgstr "Seleccione su campo personalizado."
366
 
367
- #: ../classes/column/custom-field.php:358
368
  msgid "No custom fields available."
369
  msgstr "No hay campos personalizados disponibles."
370
 
371
- #: ../classes/column/custom-field.php:365
372
  msgid "Field Type"
373
  msgstr "Tipo de Campo"
374
 
375
- #: ../classes/column/custom-field.php:365
376
  msgid "This will determine how the value will be displayed."
377
  msgstr "Esto determinará cómo el valor se mostrará."
378
 
@@ -389,9 +345,7 @@ msgstr ""
389
  msgid "Delete"
390
  msgstr "Borrar"
391
 
392
- #: ../classes/column/link/description.php:19
393
- #: ../classes/column/media/description.php:19
394
- #: ../classes/column/user/description.php:19
395
  msgid "Description"
396
  msgstr "Decripción"
397
 
@@ -427,8 +381,7 @@ msgstr "Tamaños Disponibles"
427
  msgid "full size"
428
  msgstr "tamaño completo"
429
 
430
- #: ../classes/column/media/caption.php:19
431
- #: ../classes/column/media/exif-data.php:41
432
  msgid "Caption"
433
  msgstr "Caption"
434
 
@@ -512,9 +465,7 @@ msgstr "Restaurar este elemento de la Papelera"
512
  msgid "Move this item to the Trash"
513
  msgstr "Mover este elemento a la papelera"
514
 
515
- #: ../classes/column/post/actions.php:41
516
- #: ../classes/column/post/comment-count.php:38
517
- #: ../classes/column/post/status.php:41
518
  msgid "Trash"
519
  msgstr "Papelera"
520
 
@@ -536,7 +487,7 @@ msgstr "Vista Previa"
536
  msgid "View &#8220;%s&#8221;"
537
  msgstr "Ver &#8220;%s&#8221; "
538
 
539
- #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:728
540
  msgid "View"
541
  msgstr "Ver"
542
 
@@ -564,8 +515,7 @@ msgstr "Primer Nombre"
564
  msgid "Last Name"
565
  msgstr "Apellido"
566
 
567
- #: ../classes/column/post/author-name.php:43
568
- #: ../classes/column/user/nickname.php:19
569
  msgid "Nickname"
570
  msgstr "Alias"
571
 
@@ -609,8 +559,7 @@ msgstr "Pendiente"
609
  msgid "Spam"
610
  msgstr "Spam"
611
 
612
- #: ../classes/column/post/comment-count.php:99
613
- #: ../classes/column/post/comment-status.php:20
614
  msgid "Comment status"
615
  msgstr "Estado del comentario"
616
 
@@ -644,7 +593,7 @@ msgstr "Padre"
644
 
645
  #: ../classes/column/post/path.php:19
646
  msgid "Path"
647
- msgstr "Camino"
648
 
649
  #: ../classes/column/post/permalink.php:19
650
  msgid "Permalink"
@@ -652,11 +601,11 @@ msgstr "Permalink"
652
 
653
  #: ../classes/column/post/permalink.php:68
654
  msgid "Link to post"
655
- msgstr "Enlazar al post"
656
 
657
  #: ../classes/column/post/permalink.php:68
658
  msgid "This will make the permalink clickable."
659
- msgstr "Esto hará el permalink clickable."
660
 
661
  #: ../classes/column/post/ping-status.php:19
662
  msgid "Ping status"
@@ -674,27 +623,27 @@ msgstr "Alias"
674
  msgid "Status"
675
  msgstr "Estado"
676
 
677
- #: ../classes/column/post/status.php:35
678
  msgid "Published"
679
  msgstr "Publicado"
680
 
681
- #: ../classes/column/post/status.php:36
682
  msgid "Draft"
683
  msgstr "Borrador"
684
 
685
- #: ../classes/column/post/status.php:37
686
  msgid "Scheduled"
687
  msgstr "Programado"
688
 
689
- #: ../classes/column/post/status.php:38
690
  msgid "Private"
691
  msgstr "Privado"
692
 
693
- #: ../classes/column/post/status.php:39
694
  msgid "Pending Review"
695
  msgstr "Revisión Pendiente"
696
 
697
- #: ../classes/column/post/status.php:40
698
  msgid "Auto Draft"
699
  msgstr "Auto Borrador"
700
 
@@ -704,7 +653,7 @@ msgstr "Pegajoso"
704
 
705
  #: ../classes/column/post/title-raw.php:19
706
  msgid "Title without actions"
707
- msgstr "Título sin acciones"
708
 
709
  #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
710
  msgid "Taxonomy"
@@ -712,15 +661,15 @@ msgstr "Taxonomía"
712
 
713
  #: ../classes/column/used-by-menu.php:20
714
  msgid "Used by Menu"
715
- msgstr "Usado por Menú"
716
 
717
  #: ../classes/column/used-by-menu.php:133
718
  msgid "Link to menu"
719
- msgstr "Enlace al menú"
720
 
721
  #: ../classes/column/used-by-menu.php:133
722
  msgid "This will make the title link to the menu."
723
- msgstr "Esto hará que el título se enlace al menú."
724
 
725
  #: ../classes/column/user/comment-count.php:19
726
  msgid "Comment Count"
@@ -750,545 +699,402 @@ msgstr "Registrado"
750
  msgid "Url"
751
  msgstr "Url"
752
 
753
- #: ../classes/settings.php:97
754
  msgid "Add-on successfully activated."
755
  msgstr "Add-on activado satisfactoriamente."
756
 
757
- #: ../classes/settings.php:100
758
  msgid "Add-on successfully deactivated."
759
  msgstr "Add-on desactivado satisfactoriamente."
760
 
761
- #: ../classes/settings.php:155
762
  msgid "Admin Columns Settings"
763
  msgstr "Ajustes de Admin Columns"
764
 
765
- #: ../classes/settings.php:155 ../classes/settings.php:610
766
- #: ../classes/upgrade.php:121
767
  msgid "Admin Columns"
768
  msgstr "Admin Columns"
769
 
770
- #: ../classes/settings.php:203
771
  #, php-format
772
  msgid "%s column is already present and can not be duplicated."
773
  msgstr "%s columna está ya presente y no puede ser duplicada."
774
 
775
- #: ../classes/settings.php:256
776
  msgid "Default settings succesfully restored."
777
  msgstr "Ajustes por defecto restaurados satisfactoriamente."
778
 
779
- #: ../classes/settings.php:273
780
  msgid "Overview"
781
  msgstr "Resumen"
782
 
783
- #: ../classes/settings.php:276
784
- msgid ""
785
- "This plugin is for adding and removing additional columns to the "
786
- "administration screens for post(types), pages, media library, comments, "
787
- "links and users. Change the column's label and reorder them."
788
- msgstr ""
789
- "Este plugin es para adicionar y borrar columnas adicionales a las pantallas "
790
- "de administración para posts (tipos), páginas, librería de media, "
791
- "comentarios, enlaces y usuarios. Cambie la etiqueta de las columnas y "
792
- "reordénelas."
793
 
794
- #: ../classes/settings.php:279
795
  msgid "Basics"
796
  msgstr "Fundamentos"
797
 
798
- #: ../classes/settings.php:281
799
  msgid "Change order"
800
  msgstr "Cambiar orden"
801
 
802
- #: ../classes/settings.php:282
803
- msgid ""
804
- "By dragging the columns you can change the order which they will appear in."
805
- msgstr ""
806
- "Al arrastrar las columnas usted puede cambiar el orden en las que aparecerán."
807
 
808
- #: ../classes/settings.php:283
809
  msgid "Change label"
810
  msgstr "Cambiar etiqueta"
811
 
812
- #: ../classes/settings.php:284
813
- msgid ""
814
- "By clicking on the triangle you will see the column options. Here you can "
815
- "change each label of the columns heading."
816
- msgstr ""
817
- "Al hacer clic en el triángulo verá las opciones de la columna. Aquí puede "
818
- "cambiar cada etiqueta del encabezado de las columnas."
819
 
820
- #: ../classes/settings.php:285
821
  msgid "Change column width"
822
  msgstr "Cambiar ancho de columna"
823
 
824
- #: ../classes/settings.php:286
825
- msgid ""
826
- "By clicking on the triangle you will see the column options. By using the "
827
- "draggable slider you can set the width of the columns in percentages."
828
- msgstr ""
829
- "Al hacer clic en el triángulo verá las opciones de la columna. Al usar el "
830
- "slider arrastrable puede establecer el ancho de las columnas en por ciento."
831
 
832
- #: ../classes/settings.php:292
833
  msgid "'Custom Field' column"
834
  msgstr "Columna 'Campo Personalizado'"
835
 
836
- #: ../classes/settings.php:293
837
- msgid ""
838
- "The custom field colum uses the custom fields from posts and users. There "
839
- "are 10 types which you can set."
840
- msgstr ""
841
- "La columna del campo personalizado utiliza los campos personalizados de los "
842
- "posts y los usuarios. Hay 10 tipos que puede establecer."
843
 
844
- #: ../classes/settings.php:295
845
- msgid ""
846
- "Value: Can be either a string or array. Arrays will be flattened and values "
847
- "are seperated by a ',' comma."
848
- msgstr ""
849
- "Valor: Puede ser una cadena o un arreglo. Los arreglos serán aplanados y los "
850
- "valores serán separados por una coma ','."
851
 
852
- #: ../classes/settings.php:296
853
- msgid ""
854
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
855
- "comma )."
856
- msgstr ""
857
- "Valor: debería contener una URL de imagen o IDs de Adjunto (separados por "
858
- "una coma ',')."
859
 
860
- #: ../classes/settings.php:297
861
  msgid "Value: This will show the first 20 words of the Post content."
862
  msgstr "Valor: Esto mostrará las primeras 20 palabras del contenido del Post."
863
 
864
- #: ../classes/settings.php:298
865
- msgid ""
866
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
867
- msgstr ""
868
- "Valor: debería ser un arreglo. Esto aplanará cualquier arreglo "
869
- "(multidimensional)."
870
 
871
- #: ../classes/settings.php:299
872
- msgid ""
873
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
874
- "for sorting, so you can sort your posts on numeric (custom field) values."
875
- msgstr ""
876
- "Valor: Enteros solamente. <br/> Si usted tiene el 'addon de ordenación' esto "
877
- "será utilizado para ordenar, por lo que puede ordenar sus posts sobre "
878
- "valores numéricos (campo personalizado)."
879
 
880
- #: ../classes/settings.php:300
881
  #, php-format
882
- msgid ""
883
- "Value: Can be unix time stamp or a date format as described in the <a "
884
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
885
- "href='%s'>general settings</a> page."
886
- msgstr ""
887
- "Valor: Puede ser una marca de tiempo unix o un formato de fecha como se "
888
- "describe en <a href='%s'>Codex</a>.Usted puede cambiar el formato de fecha "
889
- "devuelto en la página de <a href='%s'>ajustes generales</a>"
890
 
891
- #: ../classes/settings.php:301
892
  msgid "Post Titles"
893
  msgstr "Títulos de Post"
894
 
895
- #: ../classes/settings.php:301
896
  msgid "Value: can be one or more Post ID's (seperated by ',')."
897
  msgstr "Valor: puede ser uno o más IDs de Post (separados por ',')."
898
 
899
- #: ../classes/settings.php:302
900
  msgid "Usernames"
901
  msgstr "Nombres de Usuario"
902
 
903
- #: ../classes/settings.php:302
904
  msgid "Value: can be one or more User ID's (seperated by ',')."
905
  msgstr "Valor: puede ser uno o más IDs de Usuario (separados por ',')."
906
 
907
- #: ../classes/settings.php:303
908
  msgid "Checkmark"
909
  msgstr "Marca de Verificación"
910
 
911
- #: ../classes/settings.php:303
912
  msgid "Value: should be a 1 (one) or 0 (zero)."
913
  msgstr "Valor: debería ser un 1 (uno) o 0 (cero)."
914
 
915
- #: ../classes/settings.php:304
916
  msgid "Value: hex value color, such as #808080."
917
  msgstr "Valor: color de valor hex, ej. #808080."
918
 
919
- #: ../classes/settings.php:305
920
- msgid ""
921
- "Value: Can be either a string or array. This will display a count of the "
922
- "number of times the meta key is used by the item."
923
- msgstr ""
924
- "Valor: Puede ser una cadena o un arreglo. Esto mostrará la cantidad del "
925
- "número de tiempos que la clave meta es usada por el elemento."
926
 
927
- #: ../classes/settings.php:399
928
  msgid "Welcome to Admin Columns"
929
  msgstr "Bienvenido a Admin Columns"
930
 
931
- #: ../classes/settings.php:402
932
  msgid "Thank you for updating to the latest version!"
933
  msgstr "¡Gracias por actualizar a la última versión!"
934
 
935
- #: ../classes/settings.php:403
936
- msgid ""
937
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
938
- "like it."
939
- msgstr ""
940
- "Admin Columns está más pulido y es más disfrutable que nunca antes. "
941
- "Esperamos que le guste."
942
 
943
- #: ../classes/settings.php:408
944
  msgid "What’s New"
945
  msgstr "Qué hay de Nuevo"
946
 
947
- #: ../classes/settings.php:409
948
  msgid "Changelog"
949
  msgstr "Log de Cambio"
950
 
951
- #: ../classes/settings.php:414
952
- msgid "Addons"
953
- msgstr "Addons"
954
-
955
- #: ../classes/settings.php:416
956
- msgid ""
957
- "Addons are now activated by downloading and installing individual plugins. "
958
- "Although these plugins will not be hosted on the wordpress.org repository, "
959
- "each Add-on will continue to receive updates in the usual way."
960
- msgstr ""
961
- "Addons está ahora activado bajando e instalando plugins individuales. A "
962
- "pesar de que estos plugins no serán hosteados en el repositorio de wordpress."
963
- "org, cada Add-on continuará recibiendo actualizaciones de la manera usual."
964
-
965
- #: ../classes/settings.php:419
966
- msgid ""
967
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
968
- msgstr ""
969
- "Este sitio web utiliza el Addon Sortorder. Este addon necesita ser "
970
- "descargado."
971
-
972
- #: ../classes/settings.php:422
973
- msgid "Addons are seperate plugins which need to be downloaded."
974
- msgstr "Los addons son plugins separados que necesitan ser descargados."
975
-
976
- #: ../classes/settings.php:422
977
- msgid "Download your Addons"
978
- msgstr "Descargue sus Addons"
979
-
980
- #: ../classes/settings.php:428
981
- msgid "This website does not use add-ons"
982
- msgstr "Este sitio web no utiliza add-ons"
983
-
984
- #: ../classes/settings.php:428
985
- msgid "See our website for Admin Columns Pro."
986
- msgstr "Vea nuestro sitio web para Admin Columns Pro."
987
-
988
- #: ../classes/settings.php:435
989
  msgid "Important"
990
  msgstr "Importante"
991
 
992
- #: ../classes/settings.php:437
993
  msgid "Database Changes"
994
  msgstr "Cambios de Base de Datos"
995
 
996
- #: ../classes/settings.php:438
997
- msgid ""
998
- "The database has been changed between versions 1 and 2. But we made sure you "
999
- "can still roll back to version 1x without any issues."
1000
- msgstr ""
1001
- "La base de datos ha sido cambiada entre las versiones 1 y 2. Pero nos "
1002
- "aseguramos de que usted siempre pueda virar a la versión 1x sin ningún "
1003
- "problema."
1004
 
1005
- #: ../classes/settings.php:441
1006
  msgid "Make sure you backup your database and then click"
1007
- msgstr ""
1008
- "Esté seguro de hacer una copia de seguridad a su base de datos y luego haga "
1009
- "clic"
1010
 
1011
- #: ../classes/settings.php:441 ../classes/upgrade.php:129
1012
  msgid "Upgrade Database"
1013
  msgstr "Actualizar Base de Datos"
1014
 
1015
- #: ../classes/settings.php:444
1016
  msgid "Potential Issues"
1017
  msgstr "Problemas Potenciales"
1018
 
1019
- #: ../classes/settings.php:445
1020
- msgid ""
1021
- "Do to the sizable refactoring the code, surounding Addons and action/"
1022
- "filters, your website may not operate correctly. It is important that you "
1023
- "read the full"
1024
- msgstr ""
1025
- "Debido a la refactorización cambiable del código, de los Add-ons "
1026
- "circundantes y las acciones/filtros, su sitio web puede no operar "
1027
- "correctamente. Es importante que lea la completa"
1028
 
1029
- #: ../classes/settings.php:445
1030
  msgid "Migrating from v1 to v2"
1031
  msgstr "Migración de v1 a v2"
1032
 
1033
- #: ../classes/settings.php:445
1034
  msgid "guide to view the full list of changes."
1035
  msgstr "guía para ver la lista completa de cambios."
1036
 
1037
- #: ../classes/settings.php:445
1038
  #, php-format
1039
- msgid ""
1040
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
1041
- "can fix it in the next release."
1042
- msgstr ""
1043
- "Cuando usted encuentre un bug por favor <a href=\"%s\">repórtenoslo</a> para "
1044
- "poder arreglarlo en el próximo release."
1045
 
1046
- #: ../classes/settings.php:448
1047
  msgid "Important!"
1048
  msgstr "¡Importante!"
1049
 
1050
- #: ../classes/settings.php:448
1051
- msgid ""
1052
- "If you updated the Admin Columns plugin without prior knowledge of such "
1053
- "changes, Please roll back to the latest"
1054
- msgstr ""
1055
- "Si usted actualizó el plugin Admin Columns sin conocimiento previo de tales "
1056
- "cambios, Por favor vire hacia atrás a la última"
1057
 
1058
- #: ../classes/settings.php:448
1059
  msgid "version 1"
1060
  msgstr "versión 1"
1061
 
1062
- #: ../classes/settings.php:448
1063
  msgid "of this plugin."
1064
  msgstr "de este plugin."
1065
 
1066
- #: ../classes/settings.php:454
1067
  msgid "Changelog for"
1068
  msgstr "Log de cambios para "
1069
 
1070
- #: ../classes/settings.php:469 ../classes/upgrade.php:49
1071
  msgid "Learn more"
1072
  msgstr "Ver más"
1073
 
1074
- #: ../classes/settings.php:479
1075
  msgid "Start using Admin Columns"
1076
  msgstr "Comenzar a usar Admin Columns"
1077
 
1078
- #: ../classes/settings.php:522
1079
  msgid "General Settings"
1080
  msgstr "Ajustes Generales"
1081
 
1082
- #: ../classes/settings.php:523
1083
  msgid "Customize your Admin Columns settings."
1084
  msgstr "Personalice sus ajustes de Admin Columns."
1085
 
1086
- #: ../classes/settings.php:537
1087
- #, fuzzy
1088
- msgid ""
1089
- "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1090
  msgstr ""
1091
- "Mostrar botón \"Editar Columnas\" en las pantallas de admin. El valor por "
1092
- "defecto es <code>off</code>."
1093
 
1094
- #: ../classes/settings.php:544 ../classes/settings.php:673
1095
  msgid "Save"
1096
  msgstr "Salvar"
1097
 
1098
- #: ../classes/settings.php:584
1099
  msgid "Restore Settings"
1100
  msgstr "Restaurar Ajustes"
1101
 
1102
- #: ../classes/settings.php:585
1103
  msgid "This will delete all column settings and restore the default settings."
1104
- msgstr ""
1105
- "Esto borrará todos los ajustes de columna y restaurará los ajustes por "
1106
- "defecto."
1107
 
1108
- #: ../classes/settings.php:591
1109
  msgid "Restore default settings"
1110
  msgstr "Restaurar ajustes por defecto"
1111
 
1112
- #: ../classes/settings.php:591
1113
- msgid ""
1114
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1115
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1116
- msgstr ""
1117
- "¡Advertencia! Todos los datos salvados de Admin columns serán borrados. Esto "
1118
- "no puede ser deshecho.\\'OK\\' para borrar, \\'Cancelar\\' para cancelar"
1119
 
1120
- #: ../classes/settings.php:611 ../codepress-admin-columns.php:387
1121
  msgid "Settings"
1122
  msgstr "Ajustes"
1123
 
1124
- #: ../classes/settings.php:612
1125
  msgid "Add-ons"
1126
  msgstr "Add-ons"
1127
 
1128
- #: ../classes/settings.php:638
1129
  msgid "Posttypes"
1130
  msgstr "Tipos de Post"
1131
 
1132
- #: ../classes/settings.php:639
1133
  msgid "Others"
1134
  msgstr "Otros"
1135
 
1136
- #: ../classes/settings.php:640
1137
  msgid "Taxonomies"
1138
  msgstr "Taxonomías"
1139
 
1140
- #: ../classes/settings.php:659
1141
  #, php-format
1142
- msgid ""
1143
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1144
- "be edited in the admin panel."
1145
- msgstr ""
1146
- "Las columnas para <strong>%s</strong> están establecidas vía PHP y pueden "
1147
- "por tanto no ser editadas en el panel de admin."
1148
 
1149
- #: ../classes/settings.php:669
1150
  msgid "Store settings"
1151
  msgstr "Almacenar ajustes"
1152
 
1153
- #: ../classes/settings.php:673
1154
  msgid "Update"
1155
  msgstr "Actualizar"
1156
 
1157
- #: ../classes/settings.php:677
1158
  #, php-format
1159
- msgid ""
1160
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1161
- "\\' to delete, \\'Cancel\\' to stop"
1162
- msgstr ""
1163
- "¡Advertencia! Los %s datos de columnas serán borrados. Esto no puede ser "
1164
- "deshecho. \\'OK\\' para borrar, \\'Cancelar\\' para cancelar"
1165
 
1166
- #: ../classes/settings.php:678
1167
  msgid "columns"
1168
  msgstr "columnas"
1169
 
1170
- #: ../classes/settings.php:697
1171
  msgid "Get Admin Columns Pro"
1172
  msgstr "Obtener Admin Columns Pro"
1173
 
1174
- #: ../classes/settings.php:701
1175
  msgid "Add Sorting"
1176
  msgstr "Adicionar Ordenamiento"
1177
 
1178
- #: ../classes/settings.php:702
1179
  msgid "Add Filtering"
1180
  msgstr "Adicionar Filtro"
1181
 
1182
- #: ../classes/settings.php:703
1183
  msgid "Add Import/Export"
1184
  msgstr "Adicionar Importar/Exportar"
1185
 
1186
- #: ../classes/settings.php:704
1187
  msgid "Add Direct Editing"
1188
  msgstr "Adicionar Edición Directa"
1189
 
1190
- #: ../classes/settings.php:707
1191
  #, php-format
1192
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1193
  msgstr "¡Vea <a href=\"%s\">Admin Columns Pro</a> para más detalles!"
1194
 
1195
- #: ../classes/settings.php:738
1196
  msgid "Are you happy with Admin Columns?"
1197
- msgstr "¿Está feliz con Admin Columns?"
1198
 
1199
- #: ../classes/settings.php:746
1200
  msgid "What's wrong? Need help? Let us know!"
1201
- msgstr "¿Qué ocurre? ¿Necesita ayuda? ¡Déjenos saber!"
1202
 
1203
- #: ../classes/settings.php:747
1204
- msgid ""
1205
- "Check out our extensive documentation, or you can open a support topic on "
1206
- "WordPress.org!"
1207
  msgstr ""
1208
- "¡Vea nuestra documentación extensiva, o puede abrir un tópico de soporte en "
1209
- "WordPress.org!"
1210
 
1211
- #: ../classes/settings.php:755
1212
  msgid "Docs"
1213
- msgstr "Documentos"
1214
 
1215
- #: ../classes/settings.php:760
1216
  msgid "Forums"
1217
- msgstr "Foros"
1218
 
1219
- #: ../classes/settings.php:769
1220
  msgid "Woohoo! We're glad to hear that!"
1221
- msgstr "¡Woohoo!¡Nos alegra oir eso!"
1222
 
1223
- #: ../classes/settings.php:770
1224
- msgid ""
1225
- "We would really love it if you could show your appreciation by giving us a "
1226
- "rating on WordPress.org or tweet about Admin Columns!"
1227
  msgstr ""
1228
- "¡Nos gustaría si usted pudiera mostrar su apreciación dándonos un rating en "
1229
- "WordPress.org o haciendo tweet acerca de Admin Columns!"
1230
 
1231
- #: ../classes/settings.php:774
1232
  msgid "Rate"
1233
- msgstr "Ranker"
1234
 
1235
- #: ../classes/settings.php:785
1236
  msgid "Tweet"
1237
- msgstr "Tweet"
1238
 
1239
- #: ../classes/settings.php:795
1240
  msgid "Buy Pro"
1241
- msgstr "Comprar Pro"
1242
 
1243
- #: ../classes/settings.php:807
1244
  msgid "Support"
1245
  msgstr "Soporte"
1246
 
1247
- #: ../classes/settings.php:810
1248
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1249
- msgstr ""
1250
- "Vea la sección de <strong>Ayuda</strong> en la parte superior derecha de la "
1251
- "pantalla."
1252
 
1253
- #: ../classes/settings.php:813
1254
  #, php-format
1255
- msgid ""
1256
- "For full documentation, bug reports, feature suggestions and other tips <a "
1257
- "href='%s'>visit the Admin Columns website</a>"
1258
- msgstr ""
1259
- "Para una documentación completa, reportes de bug, sugerencias de "
1260
- "características y otros consejos <a href='%s'>visite el sitio web de Admin "
1261
- "Columns</a>"
1262
 
1263
- #: ../classes/settings.php:842
1264
  msgid "Drag and drop to reorder"
1265
  msgstr "Arrastre y suelte para reordenar"
1266
 
1267
- #: ../classes/settings.php:845
1268
  msgid "Add Column"
1269
  msgstr "Adicionar Columna"
1270
 
1271
- #: ../classes/settings.php:921
1272
  msgid "Active"
1273
  msgstr "Activo"
1274
 
1275
- #: ../classes/settings.php:922
1276
  msgid "Deactivate"
1277
  msgstr "Inactivo"
1278
 
1279
- #: ../classes/settings.php:929
1280
  msgid "Installed"
1281
  msgstr "Instalado"
1282
 
1283
- #: ../classes/settings.php:930
1284
  msgid "Activate"
1285
  msgstr "Activar"
1286
 
1287
- #: ../classes/settings.php:944
1288
  msgid "Download & Install"
1289
  msgstr "Descargar e Instalar"
1290
 
1291
- #: ../classes/settings.php:949
1292
  msgid "Get this add-on"
1293
  msgstr "Obtener este add-on"
1294
 
@@ -1322,78 +1128,64 @@ msgstr "Enlaces"
1322
  msgid "Users"
1323
  msgstr "Usuarios"
1324
 
1325
- #: ../classes/upgrade.php:48
1326
  msgid ""
1327
- "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the "
1328
- "<em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. "
1329
- "However, a free license of <strong>Admin Columns Pro</strong> <a href="
1330
- "\"http://www.admincolumns.com/pro-addon-information/\" target=\"_blank\">is "
1331
- "available</a>, which features a bunch of cool new features, including Direct "
1332
- "Inline Editing!"
1333
  msgstr ""
1334
- "<strong>Importante:</strong> Hemos notado que usted está usando el <em>Add-"
1335
- "on Pro</em>, el cual no está ya soportado por Admin Columns 2.2+. Sin "
1336
- "embargo, una licencia gratis de <strong>Admin Columns Pro</strong> <a href="
1337
- "\"http://www.admincolumns.com/pro-addon-information/\" target=\"_blank"
1338
- "\">está disponible</a>, que tiene un montón de nuevas características "
1339
- "interesantes, ¡incluyendo Edición Inline Directa! "
1340
-
1341
- #: ../classes/upgrade.php:81
1342
  msgid "Upgrade"
1343
  msgstr "Actualizar"
1344
 
1345
- #: ../classes/upgrade.php:122
1346
  msgid "requires a database upgrade"
1347
  msgstr "requiere una actualización de la base de datos"
1348
 
1349
- #: ../classes/upgrade.php:125
1350
  msgid "why?"
1351
  msgstr "¿Por qué?"
1352
 
1353
- #: ../classes/upgrade.php:126
1354
  msgid "Please"
1355
  msgstr "Por favor"
1356
 
1357
- #: ../classes/upgrade.php:127
1358
  msgid "backup your database"
1359
  msgstr "haga una copia de seguridad de su base de datos"
1360
 
1361
- #: ../classes/upgrade.php:128
1362
  msgid "then click"
1363
  msgstr "luego haga clic"
1364
 
1365
- #: ../classes/upgrade.php:336
1366
  msgid "Migrating Column Settings"
1367
  msgstr "Migrando Ajustes de Columna"
1368
 
1369
- #: ../classes/upgrade.php:372
1370
  msgid "No Upgrade Required"
1371
  msgstr "No Hay Actualizaciones Obligatorias"
1372
 
1373
- #: ../classes/upgrade.php:373
1374
  msgid "Return to welcome screen."
1375
  msgstr "Volver a la pantalla de bienvenida."
1376
 
1377
- #: ../classes/upgrade.php:391
1378
  msgid "Upgrade Complete!"
1379
  msgstr "¡Actualización Completada!"
1380
 
1381
- #: ../classes/upgrade.php:391
1382
  msgid "Return to settings."
1383
  msgstr "Volver a la configuración."
1384
 
1385
- #: ../classes/upgrade.php:392
1386
  msgid "Error"
1387
  msgstr "Error"
1388
 
1389
- #: ../classes/upgrade.php:393
1390
- msgid ""
1391
- "Sorry. Something went wrong during the upgrade process. Please report this "
1392
- "on the support forum."
1393
- msgstr ""
1394
- "Lo sentimos. Algo salió mal durante el proceso de actualización. Por favor, "
1395
- "reporte esto en el foro de soporte."
1396
 
1397
- #: ../codepress-admin-columns.php:474
1398
  msgid "Edit columns"
1399
  msgstr "Editar columnas"
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: 2014-12-10 17:02+0100\n"
9
+ "PO-Revision-Date: 2014-12-10 17:24+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\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.7.1\n"
18
  "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
 
 
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
30
  msgstr "Campos Personalizados Avanzados"
31
 
32
  #: ../classes/addons.php:136
33
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
34
+ msgstr "¡Mostrar y editar los campos de Campos Personalizados Avanzados en el resumen de posts en segundos!"
 
 
 
 
35
 
36
  #: ../classes/addons.php:141
37
  msgid "WooCommerce"
38
+ msgstr ""
39
 
40
  #: ../classes/addons.php:142
41
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
 
 
42
  msgstr ""
 
 
43
 
44
+ #: ../classes/column.php:500
45
  msgid "Thumbnail"
46
  msgstr "Miniatura"
47
 
48
+ #: ../classes/column.php:501
49
  msgid "Medium"
50
  msgstr "Medio"
51
 
52
+ #: ../classes/column.php:502
53
  msgid "Large"
54
  msgstr "Largo"
55
 
56
+ #: ../classes/column.php:503
57
  msgid "Full"
58
  msgstr "Completo"
59
 
60
+ #: ../classes/column.php:863
61
  msgid "Date Format"
62
  msgstr "Formato de Fecha"
63
 
64
+ #: ../classes/column.php:864
65
  msgid "This will determine how the date will be displayed."
66
  msgstr "Esto determinará cómo la fecha se mostrará."
67
 
68
+ #: ../classes/column.php:870
69
  msgid "Example:"
70
  msgstr "Ejemplo:"
71
 
72
+ #: ../classes/column.php:872
73
  #, php-format
74
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
75
+ msgstr "Dejar en blanco para formato de fecha de WordPress, cambie su <a href=\"%s\">formato de fecha por defecto aquí</a>."
 
 
 
 
76
 
77
+ #: ../classes/column.php:873
78
  msgid "Documentation on date and time formatting."
79
  msgstr "Documentación en formato de fecha y hora."
80
 
81
+ #: ../classes/column.php:887
82
  msgid "Excerpt length"
83
  msgstr "Tamaño de extracto"
84
 
85
+ #: ../classes/column.php:888
86
  msgid "Number of words"
87
  msgstr "Número de palabras"
88
 
89
+ #: ../classes/column.php:906
90
  msgid "Preview size"
91
  msgstr "Tamaño de vista previa"
92
 
93
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
94
  msgid "Custom"
95
  msgstr "Personalizado"
96
 
97
+ #: ../classes/column.php:926
98
  msgid "width"
99
  msgstr "ancho"
100
 
101
+ #: ../classes/column.php:929
102
  msgid "height"
103
  msgstr "largo"
104
 
105
+ #: ../classes/column.php:943
106
  msgid "Before"
107
  msgstr "Antes"
108
 
109
+ #: ../classes/column.php:943
110
  msgid "This text will appear before the custom field value."
111
  msgstr "Este texto aparecerá antes del valor del campo personalizado."
112
 
113
+ #: ../classes/column.php:949
114
  msgid "After"
115
  msgstr "Después"
116
 
117
+ #: ../classes/column.php:949
118
  msgid "This text will appear after the custom field value."
119
  msgstr "Este texto aparecerá después del valor del campo personalizado."
120
 
121
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
 
 
122
  msgid "Edit"
123
  msgstr "Editar"
124
 
125
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
126
  msgid "Remove"
127
  msgstr "Borrar"
128
 
129
+ #: ../classes/column.php:1062
130
  msgid "Type"
131
  msgstr "Tipo"
132
 
133
+ #: ../classes/column.php:1062
134
  msgid "Choose a column type."
135
  msgstr "Escoger un tipo de columna."
136
 
137
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
138
  msgid "ID"
139
  msgstr "ID"
140
 
141
+ #: ../classes/column.php:1072
142
  msgid "Label"
143
  msgstr "Etiqueta"
144
 
145
+ #: ../classes/column.php:1072
146
  msgid "This is the name which will appear as the column header."
147
  msgstr "Este es el nombre que aparecerá como el encabezado de la columna."
148
 
149
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
150
  msgid "Width"
151
  msgstr "Ancho"
152
 
153
+ #: ../classes/column.php:1081 ../classes/column.php:1082
154
  msgid "default"
155
  msgstr "por defecto"
156
 
159
  msgstr "Campo ACF"
160
 
161
  #: ../classes/column/acf-placeholder.php:32
162
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
163
  msgstr ""
 
164
 
165
  #: ../classes/column/acf-placeholder.php:35
166
  #, php-format
167
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
168
+ msgstr "Si tiene una licencia de desarrollador por favor baje e instale su add-on ACF de <a href='%s'>la pestaña de add-ons</a>."
 
 
 
 
169
 
170
  #: ../classes/column/acf-placeholder.php:38
171
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
172
+ msgstr "Admin Columns Pro - Developer ofrece una integración completa de Campos Personalizados Avanzados, permitiéndole mostrar y editar fácilmente campos ACF desde el resumen de sus posts."
 
 
 
 
 
 
173
 
174
  #: ../classes/column/acf-placeholder.php:44
175
  msgid "Find out more"
176
  msgstr "Descubra más"
177
 
178
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20 ../classes/column/user/actions.php:19
 
 
 
179
  msgid "Actions"
180
  msgstr "Acciones"
181
 
182
+ #: ../classes/column/actions.php:87
183
  msgid "Use icons?"
184
+ msgstr ""
185
 
186
+ #: ../classes/column/actions.php:87
187
  msgid "Use icons instead of text for displaying the actions."
188
+ msgstr ""
189
 
190
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
 
191
  msgid "Yes"
192
+ msgstr ""
193
 
194
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
 
195
  msgid "No"
196
+ msgstr ""
197
 
198
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
 
199
  msgid "Unapprove"
200
  msgstr "Desaprobado"
201
 
202
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
203
  msgid "Approve"
204
  msgstr "Aprobado"
205
 
206
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
207
  msgid "Restore"
208
  msgstr "Restaurar"
209
 
210
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
211
  msgid "Delete Permanently"
212
  msgstr "Borrar Permanentemente"
213
 
214
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
215
  msgid "Quick&nbsp;Edit"
216
  msgstr "Edición&nbsp;Rápida"
217
 
223
  msgid "Agent"
224
  msgstr "Agente"
225
 
226
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
227
  msgid "Approved"
228
  msgstr "Aprobado"
229
 
251
  msgid "Date GMT"
252
  msgstr "Fecha GMT"
253
 
254
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
255
  #, php-format
256
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
257
  msgstr "Enviado el <a href=\"%1$s\">%2$s a las %3$s</a>"
258
 
259
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
260
  msgid "Date"
261
  msgstr "Fecha"
262
 
263
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
264
  msgid "Excerpt"
265
  msgstr "Extracto"
266
 
268
  msgid "In Reply To"
269
  msgstr "En Respuesta A"
270
 
271
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
272
  msgid "Word count"
273
  msgstr "Conteo de palabra"
274
 
275
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
276
  msgid "Custom Field"
277
  msgstr "Campo Personalizado"
278
 
279
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
280
  msgid "Default"
281
  msgstr "Por Defecto"
282
 
283
+ #: ../classes/column/custom-field.php:95
284
  msgid "Checkmark (true/false)"
285
  msgstr "Marca de Verificación (true/false)"
286
 
287
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
288
  msgid "Color"
289
  msgstr "Color"
290
 
291
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
292
  msgid "Counter"
293
  msgstr "Contador"
294
 
295
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
296
  msgid "Image"
297
  msgstr "Imagen"
298
 
299
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
300
  msgid "Media Library"
301
  msgstr "Librería de Media"
302
 
303
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
304
  msgid "Multiple Values"
305
  msgstr "Valores Múltiples"
306
 
307
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
308
  msgid "Numeric"
309
  msgstr "Numérico"
310
 
311
+ #: ../classes/column/custom-field.php:104
312
  msgid "Post Title (Post ID's)"
313
  msgstr "Título del Post (IDs de Post)"
314
 
315
+ #: ../classes/column/custom-field.php:105
316
  msgid "Username (User ID's)"
317
  msgstr "Nombre de Usuario (IDs de Usuario)"
318
 
319
+ #: ../classes/column/custom-field.php:356
320
  msgid "Select your custom field."
321
  msgstr "Seleccione su campo personalizado."
322
 
323
+ #: ../classes/column/custom-field.php:366
324
  msgid "No custom fields available."
325
  msgstr "No hay campos personalizados disponibles."
326
 
327
+ #: ../classes/column/custom-field.php:373
328
  msgid "Field Type"
329
  msgstr "Tipo de Campo"
330
 
331
+ #: ../classes/column/custom-field.php:373
332
  msgid "This will determine how the value will be displayed."
333
  msgstr "Esto determinará cómo el valor se mostrará."
334
 
345
  msgid "Delete"
346
  msgstr "Borrar"
347
 
348
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
349
  msgid "Description"
350
  msgstr "Decripción"
351
 
381
  msgid "full size"
382
  msgstr "tamaño completo"
383
 
384
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
385
  msgid "Caption"
386
  msgstr "Caption"
387
 
465
  msgid "Move this item to the Trash"
466
  msgstr "Mover este elemento a la papelera"
467
 
468
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
469
  msgid "Trash"
470
  msgstr "Papelera"
471
 
487
  msgid "View &#8220;%s&#8221;"
488
  msgstr "Ver &#8220;%s&#8221; "
489
 
490
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
491
  msgid "View"
492
  msgstr "Ver"
493
 
515
  msgid "Last Name"
516
  msgstr "Apellido"
517
 
518
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
519
  msgid "Nickname"
520
  msgstr "Alias"
521
 
559
  msgid "Spam"
560
  msgstr "Spam"
561
 
562
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
563
  msgid "Comment status"
564
  msgstr "Estado del comentario"
565
 
593
 
594
  #: ../classes/column/post/path.php:19
595
  msgid "Path"
596
+ msgstr ""
597
 
598
  #: ../classes/column/post/permalink.php:19
599
  msgid "Permalink"
601
 
602
  #: ../classes/column/post/permalink.php:68
603
  msgid "Link to post"
604
+ msgstr ""
605
 
606
  #: ../classes/column/post/permalink.php:68
607
  msgid "This will make the permalink clickable."
608
+ msgstr ""
609
 
610
  #: ../classes/column/post/ping-status.php:19
611
  msgid "Ping status"
623
  msgid "Status"
624
  msgstr "Estado"
625
 
626
+ #: ../classes/column/post/status.php:29
627
  msgid "Published"
628
  msgstr "Publicado"
629
 
630
+ #: ../classes/column/post/status.php:30
631
  msgid "Draft"
632
  msgstr "Borrador"
633
 
634
+ #: ../classes/column/post/status.php:31
635
  msgid "Scheduled"
636
  msgstr "Programado"
637
 
638
+ #: ../classes/column/post/status.php:32
639
  msgid "Private"
640
  msgstr "Privado"
641
 
642
+ #: ../classes/column/post/status.php:33
643
  msgid "Pending Review"
644
  msgstr "Revisión Pendiente"
645
 
646
+ #: ../classes/column/post/status.php:34
647
  msgid "Auto Draft"
648
  msgstr "Auto Borrador"
649
 
653
 
654
  #: ../classes/column/post/title-raw.php:19
655
  msgid "Title without actions"
656
+ msgstr ""
657
 
658
  #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
659
  msgid "Taxonomy"
661
 
662
  #: ../classes/column/used-by-menu.php:20
663
  msgid "Used by Menu"
664
+ msgstr ""
665
 
666
  #: ../classes/column/used-by-menu.php:133
667
  msgid "Link to menu"
668
+ msgstr ""
669
 
670
  #: ../classes/column/used-by-menu.php:133
671
  msgid "This will make the title link to the menu."
672
+ msgstr ""
673
 
674
  #: ../classes/column/user/comment-count.php:19
675
  msgid "Comment Count"
699
  msgid "Url"
700
  msgstr "Url"
701
 
702
+ #: ../classes/settings.php:111
703
  msgid "Add-on successfully activated."
704
  msgstr "Add-on activado satisfactoriamente."
705
 
706
+ #: ../classes/settings.php:114
707
  msgid "Add-on successfully deactivated."
708
  msgstr "Add-on desactivado satisfactoriamente."
709
 
710
+ #: ../classes/settings.php:169
711
  msgid "Admin Columns Settings"
712
  msgstr "Ajustes de Admin Columns"
713
 
714
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
715
  msgid "Admin Columns"
716
  msgstr "Admin Columns"
717
 
718
+ #: ../classes/settings.php:217
719
  #, php-format
720
  msgid "%s column is already present and can not be duplicated."
721
  msgstr "%s columna está ya presente y no puede ser duplicada."
722
 
723
+ #: ../classes/settings.php:271
724
  msgid "Default settings succesfully restored."
725
  msgstr "Ajustes por defecto restaurados satisfactoriamente."
726
 
727
+ #: ../classes/settings.php:288
728
  msgid "Overview"
729
  msgstr "Resumen"
730
 
731
+ #: ../classes/settings.php:291
732
+ msgid "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
733
+ msgstr "Este plugin es para adicionar y borrar columnas adicionales a las pantallas de administración para posts (tipos), páginas, librería de media, comentarios, enlaces y usuarios. Cambie la etiqueta de las columnas y reordénelas."
 
 
 
 
 
 
 
734
 
735
+ #: ../classes/settings.php:294
736
  msgid "Basics"
737
  msgstr "Fundamentos"
738
 
739
+ #: ../classes/settings.php:296
740
  msgid "Change order"
741
  msgstr "Cambiar orden"
742
 
743
+ #: ../classes/settings.php:297
744
+ msgid "By dragging the columns you can change the order which they will appear in."
745
+ msgstr "Al arrastrar las columnas usted puede cambiar el orden en las que aparecerán."
 
 
746
 
747
+ #: ../classes/settings.php:298
748
  msgid "Change label"
749
  msgstr "Cambiar etiqueta"
750
 
751
+ #: ../classes/settings.php:299
752
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
753
+ msgstr "Al hacer clic en el triángulo verá las opciones de la columna. Aquí puede cambiar cada etiqueta del encabezado de las columnas."
 
 
 
 
754
 
755
+ #: ../classes/settings.php:300
756
  msgid "Change column width"
757
  msgstr "Cambiar ancho de columna"
758
 
759
+ #: ../classes/settings.php:301
760
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
761
+ msgstr "Al hacer clic en el triángulo verá las opciones de la columna. Al usar el slider arrastrable puede establecer el ancho de las columnas en por ciento."
 
 
 
 
762
 
763
+ #: ../classes/settings.php:307
764
  msgid "'Custom Field' column"
765
  msgstr "Columna 'Campo Personalizado'"
766
 
767
+ #: ../classes/settings.php:308
768
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
769
+ msgstr "La columna del campo personalizado utiliza los campos personalizados de los posts y los usuarios. Hay 10 tipos que puede establecer."
 
 
 
 
770
 
771
+ #: ../classes/settings.php:310
772
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
773
+ msgstr "Valor: Puede ser una cadena o un arreglo. Los arreglos serán aplanados y los valores serán separados por una coma ','."
 
 
 
 
774
 
775
+ #: ../classes/settings.php:311
776
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
777
+ msgstr "Valor: debería contener una URL de imagen o IDs de Adjunto (separados por una coma ',')."
 
 
 
 
778
 
779
+ #: ../classes/settings.php:312
780
  msgid "Value: This will show the first 20 words of the Post content."
781
  msgstr "Valor: Esto mostrará las primeras 20 palabras del contenido del Post."
782
 
783
+ #: ../classes/settings.php:313
784
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
785
+ msgstr "Valor: debería ser un arreglo. Esto aplanará cualquier arreglo (multidimensional)."
 
 
 
786
 
787
+ #: ../classes/settings.php:314
788
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
789
+ msgstr "Valor: Enteros solamente. <br/> Si usted tiene el 'addon de ordenación' esto será utilizado para ordenar, por lo que puede ordenar sus posts sobre valores numéricos (campo personalizado)."
 
 
 
 
 
790
 
791
+ #: ../classes/settings.php:315
792
  #, php-format
793
+ msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
794
+ msgstr "Valor: Puede ser una marca de tiempo unix o un formato de fecha como se describe en <a href='%s'>Codex</a>.Usted puede cambiar el formato de fecha devuelto en la página de <a href='%s'>ajustes generales</a>"
 
 
 
 
 
 
795
 
796
+ #: ../classes/settings.php:316
797
  msgid "Post Titles"
798
  msgstr "Títulos de Post"
799
 
800
+ #: ../classes/settings.php:316
801
  msgid "Value: can be one or more Post ID's (seperated by ',')."
802
  msgstr "Valor: puede ser uno o más IDs de Post (separados por ',')."
803
 
804
+ #: ../classes/settings.php:317
805
  msgid "Usernames"
806
  msgstr "Nombres de Usuario"
807
 
808
+ #: ../classes/settings.php:317
809
  msgid "Value: can be one or more User ID's (seperated by ',')."
810
  msgstr "Valor: puede ser uno o más IDs de Usuario (separados por ',')."
811
 
812
+ #: ../classes/settings.php:318
813
  msgid "Checkmark"
814
  msgstr "Marca de Verificación"
815
 
816
+ #: ../classes/settings.php:318
817
  msgid "Value: should be a 1 (one) or 0 (zero)."
818
  msgstr "Valor: debería ser un 1 (uno) o 0 (cero)."
819
 
820
+ #: ../classes/settings.php:319
821
  msgid "Value: hex value color, such as #808080."
822
  msgstr "Valor: color de valor hex, ej. #808080."
823
 
824
+ #: ../classes/settings.php:320
825
+ msgid "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."
826
+ msgstr "Valor: Puede ser una cadena o un arreglo. Esto mostrará la cantidad del número de tiempos que la clave meta es usada por el elemento."
 
 
 
 
827
 
828
+ #: ../classes/settings.php:409
829
  msgid "Welcome to Admin Columns"
830
  msgstr "Bienvenido a Admin Columns"
831
 
832
+ #: ../classes/settings.php:412
833
  msgid "Thank you for updating to the latest version!"
834
  msgstr "¡Gracias por actualizar a la última versión!"
835
 
836
+ #: ../classes/settings.php:413
837
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
838
+ msgstr "Admin Columns está más pulido y es más disfrutable que nunca antes. Esperamos que le guste."
 
 
 
 
839
 
840
+ #: ../classes/settings.php:418
841
  msgid "What’s New"
842
  msgstr "Qué hay de Nuevo"
843
 
844
+ #: ../classes/settings.php:419
845
  msgid "Changelog"
846
  msgstr "Log de Cambio"
847
 
848
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
849
  msgid "Important"
850
  msgstr "Importante"
851
 
852
+ #: ../classes/settings.php:426
853
  msgid "Database Changes"
854
  msgstr "Cambios de Base de Datos"
855
 
856
+ #: ../classes/settings.php:427
857
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
858
+ msgstr "La base de datos ha sido cambiada entre las versiones 1 y 2. Pero nos aseguramos de que usted siempre pueda virar a la versión 1x sin ningún problema."
 
 
 
 
 
859
 
860
+ #: ../classes/settings.php:430
861
  msgid "Make sure you backup your database and then click"
862
+ msgstr "Esté seguro de hacer una copia de seguridad a su base de datos y luego haga clic"
 
 
863
 
864
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
865
  msgid "Upgrade Database"
866
  msgstr "Actualizar Base de Datos"
867
 
868
+ #: ../classes/settings.php:433
869
  msgid "Potential Issues"
870
  msgstr "Problemas Potenciales"
871
 
872
+ #: ../classes/settings.php:434
873
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
874
+ msgstr "Debido a la refactorización cambiable del código, de los Add-ons circundantes y las acciones/filtros, su sitio web puede no operar correctamente. Es importante que lea la completa"
 
 
 
 
 
 
875
 
876
+ #: ../classes/settings.php:434
877
  msgid "Migrating from v1 to v2"
878
  msgstr "Migración de v1 a v2"
879
 
880
+ #: ../classes/settings.php:434
881
  msgid "guide to view the full list of changes."
882
  msgstr "guía para ver la lista completa de cambios."
883
 
884
+ #: ../classes/settings.php:434
885
  #, php-format
886
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
887
+ msgstr "Cuando usted encuentre un bug por favor <a href=\"%s\">repórtenoslo</a> para poder arreglarlo en el próximo release."
 
 
 
 
888
 
889
+ #: ../classes/settings.php:437
890
  msgid "Important!"
891
  msgstr "¡Importante!"
892
 
893
+ #: ../classes/settings.php:437
894
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
895
+ msgstr "Si usted actualizó el plugin Admin Columns sin conocimiento previo de tales cambios, Por favor vire hacia atrás a la última"
 
 
 
 
896
 
897
+ #: ../classes/settings.php:437
898
  msgid "version 1"
899
  msgstr "versión 1"
900
 
901
+ #: ../classes/settings.php:437
902
  msgid "of this plugin."
903
  msgstr "de este plugin."
904
 
905
+ #: ../classes/settings.php:443
906
  msgid "Changelog for"
907
  msgstr "Log de cambios para "
908
 
909
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
910
  msgid "Learn more"
911
  msgstr "Ver más"
912
 
913
+ #: ../classes/settings.php:468
914
  msgid "Start using Admin Columns"
915
  msgstr "Comenzar a usar Admin Columns"
916
 
917
+ #: ../classes/settings.php:511
918
  msgid "General Settings"
919
  msgstr "Ajustes Generales"
920
 
921
+ #: ../classes/settings.php:512
922
  msgid "Customize your Admin Columns settings."
923
  msgstr "Personalice sus ajustes de Admin Columns."
924
 
925
+ #: ../classes/settings.php:523
926
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
 
 
927
  msgstr ""
 
 
928
 
929
+ #: ../classes/settings.php:530 ../classes/settings.php:660
930
  msgid "Save"
931
  msgstr "Salvar"
932
 
933
+ #: ../classes/settings.php:570
934
  msgid "Restore Settings"
935
  msgstr "Restaurar Ajustes"
936
 
937
+ #: ../classes/settings.php:571
938
  msgid "This will delete all column settings and restore the default settings."
939
+ msgstr "Esto borrará todos los ajustes de columna y restaurará los ajustes por defecto."
 
 
940
 
941
+ #: ../classes/settings.php:577
942
  msgid "Restore default settings"
943
  msgstr "Restaurar ajustes por defecto"
944
 
945
+ #: ../classes/settings.php:577
946
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
947
+ msgstr "¡Advertencia! Todos los datos salvados de Admin columns serán borrados. Esto no puede ser deshecho.\\'OK\\' para borrar, \\'Cancelar\\' para cancelar"
 
 
 
 
948
 
949
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
950
  msgid "Settings"
951
  msgstr "Ajustes"
952
 
953
+ #: ../classes/settings.php:600
954
  msgid "Add-ons"
955
  msgstr "Add-ons"
956
 
957
+ #: ../classes/settings.php:625
958
  msgid "Posttypes"
959
  msgstr "Tipos de Post"
960
 
961
+ #: ../classes/settings.php:626
962
  msgid "Others"
963
  msgstr "Otros"
964
 
965
+ #: ../classes/settings.php:627
966
  msgid "Taxonomies"
967
  msgstr "Taxonomías"
968
 
969
+ #: ../classes/settings.php:646
970
  #, php-format
971
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
972
+ msgstr "Las columnas para <strong>%s</strong> están establecidas vía PHP y pueden por tanto no ser editadas en el panel de admin."
 
 
 
 
973
 
974
+ #: ../classes/settings.php:656
975
  msgid "Store settings"
976
  msgstr "Almacenar ajustes"
977
 
978
+ #: ../classes/settings.php:660
979
  msgid "Update"
980
  msgstr "Actualizar"
981
 
982
+ #: ../classes/settings.php:664
983
  #, php-format
984
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
985
+ msgstr "¡Advertencia! Los %s datos de columnas serán borrados. Esto no puede ser deshecho. \\'OK\\' para borrar, \\'Cancelar\\' para cancelar"
 
 
 
 
986
 
987
+ #: ../classes/settings.php:665
988
  msgid "columns"
989
  msgstr "columnas"
990
 
991
+ #: ../classes/settings.php:684
992
  msgid "Get Admin Columns Pro"
993
  msgstr "Obtener Admin Columns Pro"
994
 
995
+ #: ../classes/settings.php:688
996
  msgid "Add Sorting"
997
  msgstr "Adicionar Ordenamiento"
998
 
999
+ #: ../classes/settings.php:689
1000
  msgid "Add Filtering"
1001
  msgstr "Adicionar Filtro"
1002
 
1003
+ #: ../classes/settings.php:690
1004
  msgid "Add Import/Export"
1005
  msgstr "Adicionar Importar/Exportar"
1006
 
1007
+ #: ../classes/settings.php:691
1008
  msgid "Add Direct Editing"
1009
  msgstr "Adicionar Edición Directa"
1010
 
1011
+ #: ../classes/settings.php:694
1012
  #, php-format
1013
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1014
  msgstr "¡Vea <a href=\"%s\">Admin Columns Pro</a> para más detalles!"
1015
 
1016
+ #: ../classes/settings.php:725
1017
  msgid "Are you happy with Admin Columns?"
1018
+ msgstr ""
1019
 
1020
+ #: ../classes/settings.php:733
1021
  msgid "What's wrong? Need help? Let us know!"
1022
+ msgstr ""
1023
 
1024
+ #: ../classes/settings.php:734
1025
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
 
 
1026
  msgstr ""
 
 
1027
 
1028
+ #: ../classes/settings.php:742
1029
  msgid "Docs"
1030
+ msgstr ""
1031
 
1032
+ #: ../classes/settings.php:747
1033
  msgid "Forums"
1034
+ msgstr ""
1035
 
1036
+ #: ../classes/settings.php:756
1037
  msgid "Woohoo! We're glad to hear that!"
1038
+ msgstr ""
1039
 
1040
+ #: ../classes/settings.php:757
1041
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
 
 
1042
  msgstr ""
 
 
1043
 
1044
+ #: ../classes/settings.php:761
1045
  msgid "Rate"
1046
+ msgstr ""
1047
 
1048
+ #: ../classes/settings.php:772
1049
  msgid "Tweet"
1050
+ msgstr ""
1051
 
1052
+ #: ../classes/settings.php:782
1053
  msgid "Buy Pro"
1054
+ msgstr ""
1055
 
1056
+ #: ../classes/settings.php:794
1057
  msgid "Support"
1058
  msgstr "Soporte"
1059
 
1060
+ #: ../classes/settings.php:797
1061
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1062
+ msgstr "Vea la sección de <strong>Ayuda</strong> en la parte superior derecha de la pantalla."
 
 
1063
 
1064
+ #: ../classes/settings.php:800
1065
  #, php-format
1066
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1067
+ msgstr "Para una documentación completa, reportes de bug, sugerencias de características y otros consejos <a href='%s'>visite el sitio web de Admin Columns</a>"
 
 
 
 
 
1068
 
1069
+ #: ../classes/settings.php:829
1070
  msgid "Drag and drop to reorder"
1071
  msgstr "Arrastre y suelte para reordenar"
1072
 
1073
+ #: ../classes/settings.php:832
1074
  msgid "Add Column"
1075
  msgstr "Adicionar Columna"
1076
 
1077
+ #: ../classes/settings.php:908
1078
  msgid "Active"
1079
  msgstr "Activo"
1080
 
1081
+ #: ../classes/settings.php:909
1082
  msgid "Deactivate"
1083
  msgstr "Inactivo"
1084
 
1085
+ #: ../classes/settings.php:916
1086
  msgid "Installed"
1087
  msgstr "Instalado"
1088
 
1089
+ #: ../classes/settings.php:917
1090
  msgid "Activate"
1091
  msgstr "Activar"
1092
 
1093
+ #: ../classes/settings.php:931
1094
  msgid "Download & Install"
1095
  msgstr "Descargar e Instalar"
1096
 
1097
+ #: ../classes/settings.php:936
1098
  msgid "Get this add-on"
1099
  msgstr "Obtener este add-on"
1100
 
1128
  msgid "Users"
1129
  msgstr "Usuarios"
1130
 
1131
+ #: ../classes/upgrade.php:62
1132
  msgid ""
1133
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of <strong>Admin Columns Pro</strong> <a href=\"http://www."
1134
+ "admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new features, including Direct Inline Editing!"
 
 
 
 
1135
  msgstr ""
1136
+
1137
+ #: ../classes/upgrade.php:95
 
 
 
 
 
 
1138
  msgid "Upgrade"
1139
  msgstr "Actualizar"
1140
 
1141
+ #: ../classes/upgrade.php:136
1142
  msgid "requires a database upgrade"
1143
  msgstr "requiere una actualización de la base de datos"
1144
 
1145
+ #: ../classes/upgrade.php:139
1146
  msgid "why?"
1147
  msgstr "¿Por qué?"
1148
 
1149
+ #: ../classes/upgrade.php:140
1150
  msgid "Please"
1151
  msgstr "Por favor"
1152
 
1153
+ #: ../classes/upgrade.php:141
1154
  msgid "backup your database"
1155
  msgstr "haga una copia de seguridad de su base de datos"
1156
 
1157
+ #: ../classes/upgrade.php:142
1158
  msgid "then click"
1159
  msgstr "luego haga clic"
1160
 
1161
+ #: ../classes/upgrade.php:351
1162
  msgid "Migrating Column Settings"
1163
  msgstr "Migrando Ajustes de Columna"
1164
 
1165
+ #: ../classes/upgrade.php:387
1166
  msgid "No Upgrade Required"
1167
  msgstr "No Hay Actualizaciones Obligatorias"
1168
 
1169
+ #: ../classes/upgrade.php:388
1170
  msgid "Return to welcome screen."
1171
  msgstr "Volver a la pantalla de bienvenida."
1172
 
1173
+ #: ../classes/upgrade.php:406
1174
  msgid "Upgrade Complete!"
1175
  msgstr "¡Actualización Completada!"
1176
 
1177
+ #: ../classes/upgrade.php:406
1178
  msgid "Return to settings."
1179
  msgstr "Volver a la configuración."
1180
 
1181
+ #: ../classes/upgrade.php:407
1182
  msgid "Error"
1183
  msgstr "Error"
1184
 
1185
+ #: ../classes/upgrade.php:408
1186
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1187
+ msgstr "Lo sentimos. Algo salió mal durante el proceso de actualización. Por favor, reporte esto en el foro de soporte."
 
 
 
 
1188
 
1189
+ #: ../codepress-admin-columns.php:390
1190
  msgid "Edit columns"
1191
  msgstr "Editar columnas"
languages/cpac-fa_IR.mo CHANGED
Binary file
languages/cpac-fa_IR.po CHANGED
@@ -5,350 +5,334 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-10-20 13:37+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
- "Language-Team: Persian (http://www.transifex.com/projects/p/admin-columns/"
12
- "language/fa/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: fa\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
- "X-Generator: Poedit 1.6.10\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../classes/addons.php:117
26
  msgid "Third party plugin integration"
27
  msgstr "سازگاری با افزونه های دیگر"
28
 
29
- #: ../classes/addons.php:142
30
  msgid "Advanced Custom Fields"
31
  msgstr "زمینه های دلخواه پیشرفته"
32
 
33
- #: ../classes/addons.php:143
34
- msgid ""
35
- "Display and edit Advanced Custom Fields fields in the posts overview in "
36
- "seconds!"
 
 
 
 
 
 
37
  msgstr ""
38
- "نمایش و ویرایش زمنیه های دلخواه پیشرفته در صفحه همه نوشته ها در چند ثانیه!"
39
 
40
- #: ../classes/column.php:481
41
  msgid "Thumbnail"
42
  msgstr "بندانگشتی"
43
 
44
- #: ../classes/column.php:482
45
  msgid "Medium"
46
  msgstr "متوسط"
47
 
48
- #: ../classes/column.php:483
49
  msgid "Large"
50
  msgstr "بزرگ"
51
 
52
- #: ../classes/column.php:484
53
  msgid "Full"
54
  msgstr "کامل"
55
 
56
- #: ../classes/column.php:751
57
  msgid "Date Format"
58
  msgstr "قابل تاریخ"
59
 
60
- #: ../classes/column.php:752
61
  msgid "This will determine how the date will be displayed."
62
  msgstr "چگونگی نمایش تاریخ را مشخص می کند."
63
 
64
- #: ../classes/column.php:758
65
  msgid "Example:"
66
  msgstr "مثال:"
67
 
68
- #: ../classes/column.php:760
69
  #, php-format
70
- msgid ""
71
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
72
- "date format here</a>."
73
- msgstr ""
74
- "برای استفاده از قالب تاریخ وردپرس خالی بگذارید، یا به <a href=\"%s\">قالب "
75
- "دلخواهی از اینجا</a> تغییر دهید."
76
 
77
- #: ../classes/column.php:761
78
  msgid "Documentation on date and time formatting."
79
  msgstr "مستندات در باره قالب بندی تاریخ و زمان."
80
 
81
- #: ../classes/column.php:775
82
  msgid "Excerpt length"
83
  msgstr "طول چکیده"
84
 
85
- #: ../classes/column.php:776
86
  msgid "Number of words"
87
  msgstr "تعداد کلمات"
88
 
89
- #: ../classes/column.php:794
90
  msgid "Preview size"
91
  msgstr "اندازه پیش نمایش"
92
 
93
- #: ../classes/column.php:811 ../classes/storage_model.php:505
94
  msgid "Custom"
95
  msgstr "دلخواه"
96
 
97
- #: ../classes/column.php:814
98
  msgid "width"
99
  msgstr "عرض"
100
 
101
- #: ../classes/column.php:817
102
  msgid "height"
103
  msgstr "ارتفاع"
104
 
105
- #: ../classes/column.php:831
106
  msgid "Before"
107
  msgstr "قبل"
108
 
109
- #: ../classes/column.php:831
110
  msgid "This text will appear before the custom field value."
111
  msgstr "این متن قبل از مقدار زمینه دلخواه نمایش داده خواهد شد."
112
 
113
- #: ../classes/column.php:837
114
  msgid "After"
115
  msgstr "بعد"
116
 
117
- #: ../classes/column.php:837
118
  msgid "This text will appear after the custom field value."
119
  msgstr "این متن بعد از مقدار زمینه دلخواه نمایش داده خواهد شد."
120
 
121
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
122
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
123
- #: ../classes/column/user/actions.php:66
124
  msgid "Edit"
125
  msgstr "ویرایش"
126
 
127
- #: ../classes/column.php:927 ../classes/column.php:1005
128
- #: ../classes/column/user/actions.php:74
129
  msgid "Remove"
130
  msgstr "حذف"
131
 
132
- #: ../classes/column.php:945
133
  msgid "Type"
134
  msgstr "نوع"
135
 
136
- #: ../classes/column.php:945
137
  msgid "Choose a column type."
138
  msgstr "انتخاب نوع ستون"
139
 
140
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
141
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
142
- #: ../classes/column/post/ID.php:12
143
  msgid "ID"
144
  msgstr "شناسه"
145
 
146
- #: ../classes/column.php:955
147
  msgid "Label"
148
  msgstr "برچسب"
149
 
150
- #: ../classes/column.php:955
151
  msgid "This is the name which will appear as the column header."
152
  msgstr "این نامی است که در تیتر ستون دیده می شود."
153
 
154
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
155
  msgid "Width"
156
  msgstr "عرض"
157
 
158
- #: ../classes/column.php:964 ../classes/column.php:965
159
  msgid "default"
160
  msgstr "پیش فرض"
161
 
162
- #: ../classes/column/acf-placeholder.php:16
163
  msgid "ACF Field"
164
  msgstr "زمینه ACF"
165
 
166
  #: ../classes/column/acf-placeholder.php:32
167
- msgid "This feature is only available in Admin Columns Pro - Developer."
168
- msgstr "این قابلیت فقط در نسخه حرفه توسعه دهندگان فعال می باشد"
169
 
170
  #: ../classes/column/acf-placeholder.php:35
171
  #, php-format
172
- msgid ""
173
- "If you have a developer licence please download & install your ACF add-on "
174
- "from the <a href='%s'>add-ons tab</a>."
175
- msgstr ""
176
- "اگر شما مجوز نسخه توسعه دهنده دارید می توانید افزونه ی ACF را از <a "
177
- "href='%s'>تب افزونه ها</a> دانلود و نصب نمایید."
178
 
179
  #: ../classes/column/acf-placeholder.php:38
180
- msgid ""
181
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
182
- "integeration, allowing you to easily display and edit ACF fields from within "
183
- "your posts overview."
184
- msgstr ""
185
- "این افزونه در نسخه توسعه دهندگان به صورت کامل افزونه زمینه دلخواه پیشرفته را "
186
- "در بر خواهد گرفتو به شما اجازه می دهد به آسانی زمینه های ACF را از قسمت همه "
187
- "نوشته ها مشاهده و ویرایش کنید."
188
 
189
- #: ../classes/column/acf-placeholder.php:40
190
  msgid "Find out more"
191
  msgstr "اطلاعات بیشتر"
192
 
193
- #: ../classes/column/comment/actions.php:14
194
- #: ../classes/column/link/actions.php:14
195
- #: ../classes/column/media/actions.php:14
196
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
197
  msgid "Actions"
198
  msgstr "عملیات ها"
199
 
200
- #: ../classes/column/comment/actions.php:73
201
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  msgid "Unapprove"
203
  msgstr "عدم تایید"
204
 
205
- #: ../classes/column/comment/actions.php:75
206
- #: ../classes/column/comment/actions.php:77
207
  msgid "Approve"
208
  msgstr "تایید"
209
 
210
- #: ../classes/column/comment/actions.php:86
211
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
212
  msgid "Restore"
213
  msgstr "بازسازی"
214
 
215
- #: ../classes/column/comment/actions.php:90
216
- #: ../classes/column/post/actions.php:66
217
  msgid "Delete Permanently"
218
  msgstr "حذف برای همیشه"
219
 
220
- #: ../classes/column/comment/actions.php:97
221
- #: ../classes/column/post/actions.php:58
222
  msgid "Quick&nbsp;Edit"
223
  msgstr "ویرایش سریع"
224
 
225
- #: ../classes/column/comment/actions.php:98
226
  msgid "Reply"
227
  msgstr "پاسخ"
228
 
229
- #: ../classes/column/comment/agent.php:12
230
  msgid "Agent"
231
  msgstr "مرورگر"
232
 
233
- #: ../classes/column/comment/approved.php:12
234
- #: ../classes/column/post/comment-count.php:31
235
  msgid "Approved"
236
  msgstr "تایید شده"
237
 
238
- #: ../classes/column/comment/author-avatar.php:12
239
  msgid "Avatar"
240
  msgstr "آواتار"
241
 
242
- #: ../classes/column/comment/author-email.php:12
243
  msgid "Author email"
244
  msgstr "ایمیل نویسنده"
245
 
246
- #: ../classes/column/comment/author-ip.php:12
247
  msgid "Author IP"
248
  msgstr "آی پی نویسنده"
249
 
250
- #: ../classes/column/comment/author-url.php:12
251
  msgid "Author url"
252
  msgstr "آدرس نویسنده"
253
 
254
- #: ../classes/column/comment/author.php:12
255
  msgid "Author"
256
  msgstr "نویسنده"
257
 
258
- #: ../classes/column/comment/date-gmt.php:12
259
  msgid "Date GMT"
260
  msgstr "تاریخ مرجع"
261
 
262
- #: ../classes/column/comment/date-gmt.php:25
263
- #: ../classes/column/comment/date.php:25
264
  #, php-format
265
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
266
  msgstr "ارسالی در <a href=\"%1$s\">%2$s در %3$s</a>"
267
 
268
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
269
- #: ../classes/settings.php:300
270
  msgid "Date"
271
  msgstr "تاریخ"
272
 
273
- #: ../classes/column/comment/excerpt.php:13
274
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
275
- #: ../classes/settings.php:297
276
  msgid "Excerpt"
277
  msgstr "چکیده"
278
 
279
- #: ../classes/column/comment/reply-to.php:12
280
  msgid "In Reply To"
281
  msgstr "در پاسخ به"
282
 
283
- #: ../classes/column/comment/word-count.php:12
284
- #: ../classes/column/post/word-count.php:12
285
  msgid "Word count"
286
  msgstr "تعداد کلمات"
287
 
288
- #: ../classes/column/custom-field.php:16
289
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
290
  msgid "Custom Field"
291
  msgstr "زمینه دلخواه"
292
 
293
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
294
- #: ../classes/storage_model.php:504
295
  msgid "Default"
296
  msgstr "پیش فرض"
297
 
298
- #: ../classes/column/custom-field.php:66
299
  msgid "Checkmark (true/false)"
300
  msgstr "تیک(صحیح غلط)"
301
 
302
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
303
  msgid "Color"
304
  msgstr "رنگ"
305
 
306
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
307
  msgid "Counter"
308
  msgstr "شمارنده"
309
 
310
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
311
- #: ../classes/settings.php:296
312
  msgid "Image"
313
  msgstr "تصویر"
314
 
315
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
316
  msgid "Media Library"
317
  msgstr "کتابخانه رسانه"
318
 
319
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
320
  msgid "Multiple Values"
321
  msgstr "چندین مقدار"
322
 
323
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
324
  msgid "Numeric"
325
  msgstr "عددی"
326
 
327
- #: ../classes/column/custom-field.php:75
328
  msgid "Post Title (Post ID's)"
329
  msgstr "تیتر نوشته (شناسه نوشته)"
330
 
331
- #: ../classes/column/custom-field.php:76
332
  msgid "Username (User ID's)"
333
  msgstr "نام کاربری(شناسه کاربری)"
334
 
335
- #: ../classes/column/custom-field.php:384
336
  msgid "Select your custom field."
337
  msgstr "زمینه دلخواه خود را انتخاب کنید."
338
 
339
- #: ../classes/column/custom-field.php:394
340
  msgid "No custom fields available."
341
  msgstr "زمینه دلخواهی موجود نیست."
342
 
343
- #: ../classes/column/custom-field.php:401
344
  msgid "Field Type"
345
  msgstr "نوع فیلد"
346
 
347
- #: ../classes/column/custom-field.php:401
348
  msgid "This will determine how the value will be displayed."
349
  msgstr "نمایانگر این موضوع که مقادیر چگونه نمایش داده خواهند شد."
350
 
351
- #: ../classes/column/link/actions.php:46
352
  #, php-format
353
  msgid ""
354
  "You are about to delete this link '%s'\n"
@@ -357,831 +341,779 @@ msgstr ""
357
  "در حال حذف این لینک '%s'\n"
358
  "می باشید."
359
 
360
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
361
  msgid "Delete"
362
  msgstr "حذف"
363
 
364
- #: ../classes/column/link/description.php:12
365
- #: ../classes/column/media/description.php:12
366
- #: ../classes/column/user/description.php:14
367
  msgid "Description"
368
  msgstr "توضیحات"
369
 
370
- #: ../classes/column/link/length.php:12
371
  msgid "Length"
372
  msgstr "طول"
373
 
374
- #: ../classes/column/link/notes.php:13
375
  msgid "Notes"
376
  msgstr "نکته ها"
377
 
378
- #: ../classes/column/link/owner.php:12
379
  msgid "Owner"
380
  msgstr "مالک"
381
 
382
- #: ../classes/column/link/rss.php:12
383
  msgid "Rss"
384
  msgstr "Rss"
385
 
386
- #: ../classes/column/link/target.php:12
387
  msgid "Target"
388
  msgstr "هدف"
389
 
390
- #: ../classes/column/media/alternate-text.php:12
391
  msgid "Alt"
392
  msgstr "متن جایگزین"
393
 
394
- #: ../classes/column/media/available-sizes.php:14
395
  msgid "Available Sizes"
396
  msgstr "اندازه های موجود"
397
 
398
- #: ../classes/column/media/available-sizes.php:37
399
  msgid "full size"
400
  msgstr "اندازه کامل"
401
 
402
- #: ../classes/column/media/caption.php:12
403
- #: ../classes/column/media/exif-data.php:36
404
  msgid "Caption"
405
  msgstr "عنوان"
406
 
407
- #: ../classes/column/media/dimensions.php:12
408
  msgid "Dimensions"
409
  msgstr "ابعاد"
410
 
411
- #: ../classes/column/media/exif-data.php:12
412
  msgid "EXIF data"
413
  msgstr "داده های EXIF"
414
 
415
- #: ../classes/column/media/exif-data.php:33
416
  msgid "Aperture"
417
  msgstr "دیافراگم"
418
 
419
- #: ../classes/column/media/exif-data.php:34
420
  msgid "Credit"
421
  msgstr "اعتبار"
422
 
423
- #: ../classes/column/media/exif-data.php:35
424
  msgid "Camera"
425
  msgstr "دوربین"
426
 
427
- #: ../classes/column/media/exif-data.php:37
428
  msgid "Timestamp"
429
  msgstr "زمان"
430
 
431
- #: ../classes/column/media/exif-data.php:38
432
  msgid "Copyright EXIF"
433
  msgstr "کپی رایت EXIF"
434
 
435
- #: ../classes/column/media/exif-data.php:39
436
  msgid "Focal Length"
437
  msgstr "فاصله کانونی"
438
 
439
- #: ../classes/column/media/exif-data.php:40
440
  msgid "ISO"
441
  msgstr "ISO"
442
 
443
- #: ../classes/column/media/exif-data.php:41
444
  msgid "Shutter Speed"
445
  msgstr "سرعت شاتر"
446
 
447
- #: ../classes/column/media/exif-data.php:42
448
  msgid "Title"
449
  msgstr "تیتر"
450
 
451
- #: ../classes/column/media/file-name.php:12
452
  msgid "File name"
453
  msgstr "نام فایل"
454
 
455
- #: ../classes/column/media/file-size.php:12
456
  msgid "File size"
457
  msgstr "حجم فایل"
458
 
459
- #: ../classes/column/media/full-path.php:12
460
  msgid "Full path"
461
  msgstr "مسیر کامل"
462
 
463
- #: ../classes/column/media/height.php:12
464
  msgid "Height"
465
  msgstr "ارتفاع"
466
 
467
- #: ../classes/column/media/mime-type.php:12
468
  msgid "Mime type"
469
  msgstr "نوع فایل"
470
 
471
- #: ../classes/column/post/actions.php:57
472
  msgid "Edit this item"
473
  msgstr "ویرایش این آیتم"
474
 
475
- #: ../classes/column/post/actions.php:58
476
  msgid "Edit this item inline"
477
  msgstr "ویرایش درجای آیتم"
478
 
479
- #: ../classes/column/post/actions.php:62
480
  msgid "Restore this item from the Trash"
481
  msgstr "بازسازی این آیتم از زباله دان"
482
 
483
- #: ../classes/column/post/actions.php:64
484
  msgid "Move this item to the Trash"
485
  msgstr "انتقال این آیتم به زباله دان"
486
 
487
- #: ../classes/column/post/actions.php:64
488
- #: ../classes/column/post/comment-count.php:34
489
- #: ../classes/column/post/status.php:38
490
  msgid "Trash"
491
  msgstr "زباله دان"
492
 
493
- #: ../classes/column/post/actions.php:66
494
  msgid "Delete this item permanently"
495
  msgstr "حذف کلی این آیتم"
496
 
497
- #: ../classes/column/post/actions.php:71
498
  #, php-format
499
  msgid "Preview &#8220;%s&#8221;"
500
  msgstr "پیش نمایش &#8220;%s&#8221;"
501
 
502
- #: ../classes/column/post/actions.php:71
503
  msgid "Preview"
504
  msgstr "پیش نمایش"
505
 
506
- #: ../classes/column/post/actions.php:73
507
  #, php-format
508
  msgid "View &#8220;%s&#8221;"
509
  msgstr "نمایش &#8220;%s&#8221;"
510
 
511
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
512
  msgid "View"
513
  msgstr "نمایش"
514
 
515
- #: ../classes/column/post/attachment-count.php:12
516
  msgid "No. of Attachments"
517
  msgstr "تعداد پیوست ها"
518
 
519
- #: ../classes/column/post/attachment.php:12
520
  msgid "Attachment"
521
  msgstr "پیوست ها"
522
 
523
- #: ../classes/column/post/author-name.php:12
524
  msgid "Display Author As"
525
  msgstr "نمایش نویسنده با"
526
 
527
- #: ../classes/column/post/author-name.php:34
528
  msgid "Display Name"
529
  msgstr "نام عمومی"
530
 
531
- #: ../classes/column/post/author-name.php:35
532
  msgid "First Name"
533
  msgstr "نام"
534
 
535
- #: ../classes/column/post/author-name.php:36
536
  msgid "Last Name"
537
  msgstr "نام خانوادگی"
538
 
539
- #: ../classes/column/post/author-name.php:37
540
- #: ../classes/column/user/nickname.php:14
541
  msgid "Nickname"
542
  msgstr "لغب"
543
 
544
- #: ../classes/column/post/author-name.php:38
545
  msgid "User Login"
546
  msgstr "نام کاربری"
547
 
548
- #: ../classes/column/post/author-name.php:39
549
  msgid "User Email"
550
  msgstr "ایمیل کاربر"
551
 
552
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
553
  msgid "User ID"
554
  msgstr "شناسه کاربر"
555
 
556
- #: ../classes/column/post/author-name.php:41
557
  msgid "First and Last Name"
558
  msgstr "نام و نام خانوادگی"
559
 
560
- #: ../classes/column/post/author-name.php:118
561
  msgid "This is the format of the author name."
562
  msgstr "فرمت نمایش نام نویسنده"
563
 
564
- #: ../classes/column/post/before-moretag.php:14
565
  msgid "Before More Tag"
566
  msgstr "قبل از تگ بیشتر"
567
 
568
- #: ../classes/column/post/comment-count.php:14
569
  msgid "Comment count"
570
  msgstr "تعداد نظرات"
571
 
572
- #: ../classes/column/post/comment-count.php:30
573
  msgid "Total"
574
  msgstr "مجموع"
575
 
576
- #: ../classes/column/post/comment-count.php:32
577
  msgid "Pending"
578
  msgstr "منتظر"
579
 
580
- #: ../classes/column/post/comment-count.php:33
581
  msgid "Spam"
582
  msgstr "جفنگ"
583
 
584
- #: ../classes/column/post/comment-count.php:95
585
- #: ../classes/column/post/comment-status.php:14
586
  msgid "Comment status"
587
  msgstr "وضعیت نظر"
588
 
589
- #: ../classes/column/post/comment-count.php:95
590
  msgid "Select which comment status you like to display."
591
  msgstr "مشخص کنید چه نوع نظراتی مایلید نمایش داده شود."
592
 
593
- #: ../classes/column/post/featured-image.php:14
594
  msgid "Featured Image"
595
  msgstr "تصویر شاخص"
596
 
597
- #: ../classes/column/post/formats.php:14
598
  msgid "Post Format"
599
  msgstr "قالب نوشته"
600
 
601
- #: ../classes/column/post/modified.php:14
602
  msgid "Last modified"
603
  msgstr "آخرین ویرایش"
604
 
605
- #: ../classes/column/post/order.php:14
606
  msgid "Page Order"
607
  msgstr "ترتیب صفحه"
608
 
609
- #: ../classes/column/post/page-template.php:12
610
  msgid "Page Template"
611
  msgstr "قالب صفحه"
612
 
613
- #: ../classes/column/post/parent.php:12
614
  msgid "Parent"
615
  msgstr "مادر"
616
 
617
- #: ../classes/column/post/permalink.php:12
 
 
 
 
618
  msgid "Permalink"
619
  msgstr "پیوندیکتا"
620
 
621
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
 
 
 
 
622
  msgid "Ping status"
623
  msgstr "وضعیت پینگ"
624
 
625
- #: ../classes/column/post/roles.php:14
626
  msgid "Roles"
627
  msgstr "نقش ها"
628
 
629
- #: ../classes/column/post/slug.php:12
630
  msgid "Slug"
631
  msgstr "نامک"
632
 
633
- #: ../classes/column/post/status.php:14
634
  msgid "Status"
635
  msgstr "وضعیت"
636
 
637
- #: ../classes/column/post/status.php:32
638
  msgid "Published"
639
  msgstr "منتشرشده"
640
 
641
- #: ../classes/column/post/status.php:33
642
  msgid "Draft"
643
  msgstr "پیش نویس"
644
 
645
- #: ../classes/column/post/status.php:34
646
  msgid "Scheduled"
647
  msgstr "زمانبندی شده"
648
 
649
- #: ../classes/column/post/status.php:35
650
  msgid "Private"
651
  msgstr "خصوصی"
652
 
653
- #: ../classes/column/post/status.php:36
654
  msgid "Pending Review"
655
  msgstr "منتظر بازبینی"
656
 
657
- #: ../classes/column/post/status.php:37
658
  msgid "Auto Draft"
659
  msgstr "پیش نویس خودکار"
660
 
661
- #: ../classes/column/post/sticky.php:14
662
  msgid "Sticky"
663
  msgstr "سنجاق شده"
664
 
665
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
666
  msgid "Taxonomy"
667
  msgstr "طبقه بندی"
668
 
669
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
670
  msgid "Comment Count"
671
  msgstr "تعداد کامنت"
672
 
673
- #: ../classes/column/user/first-name.php:14
674
  msgid "First name"
675
  msgstr "نام"
676
 
677
- #: ../classes/column/user/last-name.php:14
678
  msgid "Last name"
679
  msgstr "نام خانوادگی"
680
 
681
- #: ../classes/column/user/post-count.php:14
682
  msgid "Post Count"
683
  msgstr "تعداد نوشته"
684
 
685
- #: ../classes/column/user/post-count.php:99
686
  msgid "Post Type"
687
  msgstr "نوع نوشته"
688
 
689
- #: ../classes/column/user/registered.php:14
690
  msgid "Registered"
691
  msgstr "ثبت نام شده"
692
 
693
- #: ../classes/column/user/url.php:14
694
  msgid "Url"
695
  msgstr "آدرس"
696
 
697
- #: ../classes/settings.php:97
698
  msgid "Add-on successfully activated."
699
  msgstr "افزونه با موفقیت فعال شد"
700
 
701
- #: ../classes/settings.php:100
702
  msgid "Add-on successfully deactivated."
703
  msgstr "افزونه با موفقیت غیرفعال شد"
704
 
705
- #: ../classes/settings.php:155
706
  msgid "Admin Columns Settings"
707
  msgstr "تنظیمات ستون ها"
708
 
709
- #: ../classes/settings.php:155 ../classes/settings.php:619
710
- #: ../classes/upgrade.php:83
711
  msgid "Admin Columns"
712
  msgstr "تنظیمات ستون ها"
713
 
714
- #: ../classes/settings.php:203
715
  #, php-format
716
  msgid "%s column is already present and can not be duplicated."
717
  msgstr "%s ستون موجود است و نمی توان آنها را تکثیر کرد."
718
 
719
- #: ../classes/settings.php:256
720
  msgid "Default settings succesfully restored."
721
  msgstr "تنظیمات پیش فرض با موفقیت بازسازی شدند."
722
 
723
- #: ../classes/settings.php:273
724
  msgid "Overview"
725
  msgstr "مرورکلی"
726
 
727
- #: ../classes/settings.php:276
728
  msgid ""
729
- "This plugin is for adding and removing additional columns to the "
730
- "administration screens for post(types), pages, media library, comments, "
731
- "links and users. Change the column's label and reorder them."
732
- msgstr ""
733
- "این افزونه برای ایجاد ستون های دلخواه و یا حذف آنها و مرتب سازی و همچنین "
734
- "تغییر نام آنها در نوشته ها و برگه ها ، رسانه ها ، نظرات، لینک ها و کاربران "
735
- "طراحی شده است."
736
 
737
- #: ../classes/settings.php:279
738
  msgid "Basics"
739
  msgstr "مقدمات"
740
 
741
- #: ../classes/settings.php:281
742
  msgid "Change order"
743
  msgstr "تغییر ترتیب"
744
 
745
- #: ../classes/settings.php:282
746
- msgid ""
747
- "By dragging the columns you can change the order which they will appear in."
748
  msgstr "با گرفتن و کشیدن ستون ها می توانید ترتیب نمایش آنها را تغییر دهید."
749
 
750
- #: ../classes/settings.php:283
751
  msgid "Change label"
752
  msgstr "تغییر برچسب"
753
 
754
- #: ../classes/settings.php:284
755
- msgid ""
756
- "By clicking on the triangle you will see the column options. Here you can "
757
- "change each label of the columns heading."
758
- msgstr ""
759
- "با کلیک روی مثلث می توانید تنظیمات ستون را مشاهده فرمایید. در اینجا می "
760
- "توانید برچسب هر ستون را تغییر دهید."
761
 
762
- #: ../classes/settings.php:285
763
  msgid "Change column width"
764
  msgstr "تغییر عرض ستون"
765
 
766
- #: ../classes/settings.php:286
767
- msgid ""
768
- "By clicking on the triangle you will see the column options. By using the "
769
- "draggable slider you can set the width of the columns in percentages."
770
- msgstr ""
771
- "با کلیک روی مثلث تنظیمات ستون را مشاهده خواهید کرد. به کمک جابجایی اسلایدر "
772
- "می توانید عرض هر ستون را به صورت درصد مشخص کنید."
773
 
774
- #: ../classes/settings.php:292
775
  msgid "'Custom Field' column"
776
  msgstr "ستون 'زمینه دلخواه'"
777
 
778
- #: ../classes/settings.php:293
779
- msgid ""
780
- "The custom field colum uses the custom fields from posts and users. There "
781
- "are 10 types which you can set."
782
- msgstr ""
783
- "ستون زمینه دلخواه از زمینه های دلخواه نوشته ها و کاربران استفاده می کند. ده "
784
- "نوع مختلف برای تنظیم وجود دارد."
785
 
786
- #: ../classes/settings.php:295
787
- msgid ""
788
- "Value: Can be either a string or array. Arrays will be flattened and values "
789
- "are seperated by a ',' comma."
790
- msgstr ""
791
- "مقدار:می تواند متن یا آرایه باشد. آرایه ها به متن تبدیل خواهند شد و با ',' "
792
- "جدا خواهند شد."
793
 
794
- #: ../classes/settings.php:296
795
- msgid ""
796
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
797
- "comma )."
798
- msgstr ""
799
- "مثدار: باید شامل یک آدرس (url) تصویر باشد یا شناسه هایی (ID) از پیوست ها که "
800
- "با ',' جدا شده اند."
801
 
802
- #: ../classes/settings.php:297
803
  msgid "Value: This will show the first 20 words of the Post content."
804
  msgstr "مقدار: بیست کلمه ابتدای متن را نشان خواهد داد."
805
 
806
- #: ../classes/settings.php:298
807
- msgid ""
808
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
809
  msgstr "مثدار: باید آرایه باشد. هر آرایه ای (چند بعدی) متنی خواهد شد."
810
 
811
- #: ../classes/settings.php:299
812
- msgid ""
813
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
814
- "for sorting, so you can sort your posts on numeric (custom field) values."
815
- msgstr ""
816
- "مقدار: فقط عددی. <br/> اگر از افزونه 'مرتب سازی' استفاده کنید، از این مقدار "
817
- "برای مرتب سازی استفاده خواهد شد. می توانید نوشته هایتان را یک مقدار عددی "
818
- "(زمینه دلخواه) مرتب سازی کنید."
819
 
820
- #: ../classes/settings.php:300
821
  #, php-format
822
- msgid ""
823
- "Value: Can be unix time stamp or a date format as described in the <a "
824
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
825
- "href='%s'>general settings</a> page."
826
- msgstr ""
827
- "مقدار: باید زمان تاریخ سیستم یونیکس یا تاریخ قالب بندی شده باشد که در <a "
828
- "href='%s'>راهنما</a> شرح داده شده. می توانید خروجی تاریخ را از <a "
829
- "href='%s'>تنظیمات همگانی</a> تغییر دهید."
830
 
831
- #: ../classes/settings.php:301
832
  msgid "Post Titles"
833
  msgstr "تیترهای نوشته"
834
 
835
- #: ../classes/settings.php:301
836
  msgid "Value: can be one or more Post ID's (seperated by ',')."
837
- msgstr ""
838
- "مقدار: می تواند شامل یک یا چند شناسه (ID) نوشته ها (جدا شده با ',') باشد."
839
 
840
- #: ../classes/settings.php:302
841
  msgid "Usernames"
842
  msgstr "نام های کاربری"
843
 
844
- #: ../classes/settings.php:302
845
  msgid "Value: can be one or more User ID's (seperated by ',')."
846
  msgstr "می تواند شامل یک یا چند شناسه (ID) کاربری (جداشده با ',') باشد."
847
 
848
- #: ../classes/settings.php:303
849
  msgid "Checkmark"
850
  msgstr "تیک"
851
 
852
- #: ../classes/settings.php:303
853
  msgid "Value: should be a 1 (one) or 0 (zero)."
854
  msgstr "مقدار: می تواند یک یا صفر باشد"
855
 
856
- #: ../classes/settings.php:304
857
  msgid "Value: hex value color, such as #808080."
858
  msgstr "مقدار: می تواند کد هکس رنگ مانند #808080 باشد"
859
 
860
- #: ../classes/settings.php:305
861
- msgid ""
862
- "Value: Can be either a string or array. This will display a count of the "
863
- "number of times the meta key is used by the item."
864
- msgstr ""
865
- "مقدار: می تواند متن یا آرایه باشد. تعداد دفعات استفاده از meta key های آیتم "
866
- "را نمایش می دهد."
867
 
868
- #: ../classes/settings.php:399
869
  msgid "Welcome to Admin Columns"
870
  msgstr "به مدیریت ستون ها خوش آمدید"
871
 
872
- #: ../classes/settings.php:402
873
  msgid "Thank you for updating to the latest version!"
874
  msgstr "از اینکه به نسخه نهایی به روزرسانی کردید متشکریم!"
875
 
876
- #: ../classes/settings.php:403
877
- msgid ""
878
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
879
- "like it."
880
- msgstr ""
881
- "مدیریت ستون ها بهینه تر و لذت بخش تر از قبل شده است. امیدواریم شما بپسندید."
882
 
883
- #: ../classes/settings.php:408
884
  msgid "What’s New"
885
  msgstr "چه چیز جدید است"
886
 
887
- #: ../classes/settings.php:409
888
  msgid "Changelog"
889
  msgstr "تغییرات"
890
 
891
- #: ../classes/settings.php:414
892
- msgid "Addons"
893
- msgstr "افزونه ها"
894
-
895
- #: ../classes/settings.php:416
896
- msgid ""
897
- "Addons are now activated by downloading and installing individual plugins. "
898
- "Although these plugins will not be hosted on the wordpress.org repository, "
899
- "each Add-on will continue to receive updates in the usual way."
900
- msgstr ""
901
- "افزودنی ها اکنون با دانلود و نصب افزونه هایی جداگانه فعال می شوند. اگرچه این "
902
- "افزدونه ها در سایت wordpress.org قرارنگرفته اند ولی هر افزونه به روزرسانی ها "
903
- "را به صورت معمول دریافت خواهد نمود."
904
-
905
- #: ../classes/settings.php:419
906
- msgid ""
907
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
908
- msgstr "این سایت از افزودنی مرتب سازی استفاده می کند که لازم است دانلود شود."
909
-
910
- #: ../classes/settings.php:422
911
- msgid "Addons are seperate plugins which need to be downloaded."
912
- msgstr "افزونه ها درواقع پلاگین های جداگانه می باشند که لازم است دانلود شوند."
913
-
914
- #: ../classes/settings.php:422
915
- msgid "Download your Addons"
916
- msgstr "دانلود افزودنی ها"
917
-
918
- #: ../classes/settings.php:428
919
- msgid "This website does not use add-ons"
920
- msgstr "این سایت از افزودنی ها استفاده نمی کند"
921
-
922
- #: ../classes/settings.php:428
923
- msgid "See our website for Admin Columns Pro."
924
- msgstr "برای دیدن نسخه حرفه ای ستون های مدیریت به سایت ما مراجعه کنید."
925
-
926
- #: ../classes/settings.php:435
927
  msgid "Important"
928
  msgstr "مهم"
929
 
930
- #: ../classes/settings.php:437
931
  msgid "Database Changes"
932
  msgstr "تغییرات بانک اطلاعاتی"
933
 
934
- #: ../classes/settings.php:438
935
- msgid ""
936
- "The database has been changed between versions 1 and 2. But we made sure you "
937
- "can still roll back to version 1x without any issues."
938
- msgstr ""
939
- "بانک اطلاعاتی بین نسخه های 1 و 2 تغییراتی داشته است ولی اطمینان داشته باشید "
940
- "هر زمان می توانید به نسخه 1 برگردید."
941
 
942
- #: ../classes/settings.php:441
943
  msgid "Make sure you backup your database and then click"
944
  msgstr "از بانک اطلاعاتی خود پشتیبان تهیه کنید و روی "
945
 
946
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
947
  msgid "Upgrade Database"
948
  msgstr "به روز رسانی بانک اطلاعاتی کلیک کنید"
949
 
950
- #: ../classes/settings.php:444
951
  msgid "Potential Issues"
952
  msgstr "مشکلات بالقوه"
953
 
954
- #: ../classes/settings.php:445
955
- msgid ""
956
- "Do to the sizable refactoring the code, surounding Addons and action/"
957
- "filters, your website may not operate correctly. It is important that you "
958
- "read the full"
959
- msgstr ""
960
- "به دلیل تغییرات در کدهای برنامه نویسی این امکان وجود دارد که بعضی افزونه های "
961
- "شما به خوبی کار نکند. توصیه می شود راهنما انتقال از "
962
 
963
- #: ../classes/settings.php:445
964
  msgid "Migrating from v1 to v2"
965
  msgstr "نسخه 1 به 2 را به صورت کامل مطالعه فرمایید"
966
 
967
- #: ../classes/settings.php:445
968
  msgid "guide to view the full list of changes."
969
  msgstr "راهنما برای دیدن لیست تمام تغییرات."
970
 
971
- #: ../classes/settings.php:445
972
  #, php-format
973
- msgid ""
974
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
975
- "can fix it in the next release."
976
- msgstr ""
977
- "زمانی که مشکلی مشاهده کردید لطفا آنرا به ما <a href=\"%s\">گزارش کنید</a>تا "
978
- "در نسخه بعدی تصحیح کنیم."
979
 
980
- #: ../classes/settings.php:448
981
  msgid "Important!"
982
  msgstr "مهم !"
983
 
984
- #: ../classes/settings.php:448
985
- msgid ""
986
- "If you updated the Admin Columns plugin without prior knowledge of such "
987
- "changes, Please roll back to the latest"
988
- msgstr ""
989
- "اگر بدون آگاهی از تغییرات رخ داده افزونه را به روز رسانی کرده اید به آخرین "
990
 
991
- #: ../classes/settings.php:448
992
  msgid "version 1"
993
  msgstr "نسخه 1"
994
 
995
- #: ../classes/settings.php:448
996
  msgid "of this plugin."
997
  msgstr "از افزونه برگردید."
998
 
999
- #: ../classes/settings.php:454
1000
  msgid "Changelog for"
1001
  msgstr "تغییرات برای"
1002
 
1003
- #: ../classes/settings.php:469
1004
  msgid "Learn more"
1005
  msgstr "آموزش بیشتر"
1006
 
1007
- #: ../classes/settings.php:479
1008
  msgid "Start using Admin Columns"
1009
  msgstr "شروع استفاده از ستون های مدیریت"
1010
 
1011
- #: ../classes/settings.php:522
1012
  msgid "General Settings"
1013
  msgstr "تنظیمات عمومی"
1014
 
1015
- #: ../classes/settings.php:523
1016
  msgid "Customize your Admin Columns settings."
1017
  msgstr "دلخواه سازی تنظیمات افزونه"
1018
 
1019
- #: ../classes/settings.php:546
1020
- msgid ""
1021
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1022
  msgstr ""
1023
- "نمایش دکمه \"ویرایش ستون ها\" در محیط مدیریت. پیش فرض <code>خاموش</code است."
1024
 
1025
- #: ../classes/settings.php:553 ../classes/settings.php:682
1026
  msgid "Save"
1027
  msgstr "ذخیره"
1028
 
1029
- #: ../classes/settings.php:593
1030
  msgid "Restore Settings"
1031
  msgstr "بازنشانی تنظیمات"
1032
 
1033
- #: ../classes/settings.php:594
1034
  msgid "This will delete all column settings and restore the default settings."
1035
  msgstr "این کار تمام تنظیمات را حذف و به حالت پیش فرض در خواهد آورد."
1036
 
1037
- #: ../classes/settings.php:600
1038
  msgid "Restore default settings"
1039
  msgstr "بازسازی تنظیمات پیش فرض"
1040
 
1041
- #: ../classes/settings.php:600
1042
- msgid ""
1043
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1044
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1045
- msgstr ""
1046
- "اخطار! تمام ستون های مدیریت ذخیره شده حذف خواهند شد. این کار بازگشت پذیر "
1047
- "نیست!"
1048
 
1049
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1050
  msgid "Settings"
1051
  msgstr "تنظیمات"
1052
 
1053
- #: ../classes/settings.php:621
1054
  msgid "Add-ons"
1055
  msgstr "افزودنی ها"
1056
 
1057
- #: ../classes/settings.php:647
1058
  msgid "Posttypes"
1059
  msgstr "نوع نوشته ها"
1060
 
1061
- #: ../classes/settings.php:648
1062
  msgid "Others"
1063
  msgstr "دیگر"
1064
 
1065
- #: ../classes/settings.php:649
1066
  msgid "Taxonomies"
1067
  msgstr "طبقه بندی ها"
1068
 
1069
- #: ../classes/settings.php:668
1070
  #, php-format
1071
- msgid ""
1072
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1073
- "be edited in the admin panel."
1074
- msgstr ""
1075
- "ستون های برای <strong>%s</strong> به کمک PHP تنظیم شده اند و به همین دلیل از "
1076
- "طریق بخش مدیریت قابل ویرایش نیستند."
1077
 
1078
- #: ../classes/settings.php:678
1079
  msgid "Store settings"
1080
  msgstr "ذخیره تنظیمات"
1081
 
1082
- #: ../classes/settings.php:682
1083
  msgid "Update"
1084
  msgstr "به روز رسانی"
1085
 
1086
- #: ../classes/settings.php:686
1087
  #, php-format
1088
- msgid ""
1089
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1090
- "\\' to delete, \\'Cancel\\' to stop"
1091
  msgstr "اخطار! داده های %s ستون حذف خواهد شد. این کار بازگشت ناپذیر است."
1092
 
1093
- #: ../classes/settings.php:687
1094
  msgid "columns"
1095
  msgstr "ستون ها"
1096
 
1097
- #: ../classes/settings.php:701
1098
  msgid "Get Admin Columns Pro"
1099
  msgstr "خرید نسخه حرفه ای"
1100
 
1101
- #: ../classes/settings.php:705
1102
  msgid "Add Sorting"
1103
  msgstr "اضافه کردن مرتب سازی"
1104
 
1105
- #: ../classes/settings.php:706
1106
  msgid "Add Filtering"
1107
  msgstr "اضافه کردن فیلترسازی"
1108
 
1109
- #: ../classes/settings.php:707
1110
  msgid "Add Import/Export"
1111
  msgstr "اضافه کردن وارد/ خارج کردن"
1112
 
1113
- #: ../classes/settings.php:708
1114
  msgid "Add Direct Editing"
1115
  msgstr "اضافه کردن ویرایش مستقیم"
1116
 
1117
- #: ../classes/settings.php:711
1118
  #, php-format
1119
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1120
  msgstr "برای اطلاعات بیشتر <a href=\"%s\">نسخه حرفه ای</a> را بررسی کنید."
1121
 
 
 
 
 
 
 
 
 
 
 
 
 
1122
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1123
  msgid "Support"
1124
  msgstr "پشتیبانی"
1125
 
1126
- #: ../classes/settings.php:745
1127
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1128
  msgstr "قسمت <strong>راهنما</strong> را در بالای صفحه بررسی کنید."
1129
 
1130
- #: ../classes/settings.php:748
1131
  #, php-format
1132
- msgid ""
1133
- "For full documentation, bug reports, feature suggestions and other tips <a "
1134
- "href='%s'>visit the Admin Columns website</a>"
1135
- msgstr ""
1136
- "برای دیدن تمام مستندات، امکانات آینده و نکات به <a href='%s'>وب سایت افزونه</"
1137
- "a> مراجعه فرمایید."
1138
 
1139
- #: ../classes/settings.php:777
1140
  msgid "Drag and drop to reorder"
1141
  msgstr "برای مرتب سازی بگیرید و بکشید"
1142
 
1143
- #: ../classes/settings.php:780
1144
  msgid "Add Column"
1145
  msgstr "ستون جدید"
1146
 
1147
- #: ../classes/settings.php:853
1148
  msgid "Active"
1149
  msgstr "فعال"
1150
 
1151
- #: ../classes/settings.php:854
1152
  msgid "Deactivate"
1153
  msgstr "غیرفعال"
1154
 
1155
- #: ../classes/settings.php:861
1156
  msgid "Installed"
1157
  msgstr "نصب شده"
1158
 
1159
- #: ../classes/settings.php:862
1160
  msgid "Activate"
1161
  msgstr "فعال"
1162
 
1163
- #: ../classes/settings.php:876
1164
  msgid "Download & Install"
1165
  msgstr "دانلود و نصب"
1166
 
1167
- #: ../classes/settings.php:881
1168
  msgid "Get this add-on"
1169
  msgstr "دریافت این افزودنی"
1170
 
1171
- #: ../classes/storage_model.php:207
1172
  msgid "settings succesfully restored."
1173
  msgstr "تنظیمات با موفقیت بازنشانی شدند."
1174
 
1175
- #: ../classes/storage_model.php:222
1176
  msgid "No columns settings available."
1177
  msgstr "هیچ تنظیمی برای ستونها موجود نیست."
1178
 
1179
- #: ../classes/storage_model.php:243
1180
  #, php-format
1181
  msgid "You are trying to store the same settings for %s."
1182
  msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
1183
 
1184
- #: ../classes/storage_model.php:247
1185
  #, php-format
1186
  msgid "Settings for %s updated succesfully."
1187
  msgstr "تنظیمات برای %s با موفقیت به روز شد."
@@ -1198,62 +1130,65 @@ msgstr "لینک ها"
1198
  msgid "Users"
1199
  msgstr "کاربران"
1200
 
1201
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
 
1202
  msgid "Upgrade"
1203
  msgstr "به روزرسانی"
1204
 
1205
- #: ../classes/upgrade.php:84
1206
  msgid "requires a database upgrade"
1207
  msgstr "نیاز به به روزرسانی بانک اطلاعاتی دارد"
1208
 
1209
- #: ../classes/upgrade.php:87
1210
  msgid "why?"
1211
  msgstr "چرا؟"
1212
 
1213
- #: ../classes/upgrade.php:88
1214
  msgid "Please"
1215
  msgstr "لطفا"
1216
 
1217
- #: ../classes/upgrade.php:89
1218
  msgid "backup your database"
1219
  msgstr "از بانک اطلاعاتی خود پشتیبان تهیه کنید"
1220
 
1221
- #: ../classes/upgrade.php:90
1222
  msgid "then click"
1223
  msgstr "سپس روی "
1224
 
1225
- #: ../classes/upgrade.php:298
1226
  msgid "Migrating Column Settings"
1227
  msgstr "همگام سازی تنظیمات ستون ها کلیک کنید"
1228
 
1229
- #: ../classes/upgrade.php:334
1230
  msgid "No Upgrade Required"
1231
  msgstr "به روزرسانی لازم نیست"
1232
 
1233
- #: ../classes/upgrade.php:335
1234
  msgid "Return to welcome screen."
1235
  msgstr "بازگشت به صفحه خوش آمد گویی."
1236
 
1237
- #: ../classes/upgrade.php:353
1238
  msgid "Upgrade Complete!"
1239
  msgstr "به روز رسانی تکمیل شد!"
1240
 
1241
- #: ../classes/upgrade.php:353
1242
  msgid "Return to settings."
1243
  msgstr "بازگشت به تنظیمات."
1244
 
1245
- #: ../classes/upgrade.php:354
1246
  msgid "Error"
1247
  msgstr "خطا"
1248
 
1249
- #: ../classes/upgrade.php:355
1250
- msgid ""
1251
- "Sorry. Something went wrong during the upgrade process. Please report this "
1252
- "on the support forum."
1253
- msgstr ""
1254
- "متاسفبم. به نظر می آید خطایی در فرایند به روز رسانی رخ داده است. لطفا این "
1255
- "مشکل را فروم پشتیبانی ما مطرح کنید."
1256
 
1257
- #: ../codepress-admin-columns.php:439
1258
  msgid "Edit columns"
1259
  msgstr "ویرایش ستون ها"
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
9
+ "PO-Revision-Date: 2014-12-10 17:24+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Persian (http://www.transifex.com/projects/p/admin-columns/language/fa/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: fa\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
+ "X-Generator: Poedit 1.7.1\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
24
+ #: ../classes/addons.php:110
25
  msgid "Third party plugin integration"
26
  msgstr "سازگاری با افزونه های دیگر"
27
 
28
+ #: ../classes/addons.php:135
29
  msgid "Advanced Custom Fields"
30
  msgstr "زمینه های دلخواه پیشرفته"
31
 
32
+ #: ../classes/addons.php:136
33
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
34
+ msgstr "نمایش و ویرایش زمنیه های دلخواه پیشرفته در صفحه همه نوشته ها در چند ثانیه!"
35
+
36
+ #: ../classes/addons.php:141
37
+ msgid "WooCommerce"
38
+ msgstr ""
39
+
40
+ #: ../classes/addons.php:142
41
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
42
  msgstr ""
 
43
 
44
+ #: ../classes/column.php:500
45
  msgid "Thumbnail"
46
  msgstr "بندانگشتی"
47
 
48
+ #: ../classes/column.php:501
49
  msgid "Medium"
50
  msgstr "متوسط"
51
 
52
+ #: ../classes/column.php:502
53
  msgid "Large"
54
  msgstr "بزرگ"
55
 
56
+ #: ../classes/column.php:503
57
  msgid "Full"
58
  msgstr "کامل"
59
 
60
+ #: ../classes/column.php:863
61
  msgid "Date Format"
62
  msgstr "قابل تاریخ"
63
 
64
+ #: ../classes/column.php:864
65
  msgid "This will determine how the date will be displayed."
66
  msgstr "چگونگی نمایش تاریخ را مشخص می کند."
67
 
68
+ #: ../classes/column.php:870
69
  msgid "Example:"
70
  msgstr "مثال:"
71
 
72
+ #: ../classes/column.php:872
73
  #, php-format
74
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
75
+ msgstr "برای استفاده از قالب تاریخ وردپرس خالی بگذارید، یا به <a href=\"%s\">قالب دلخواهی از اینجا</a> تغییر دهید."
 
 
 
 
76
 
77
+ #: ../classes/column.php:873
78
  msgid "Documentation on date and time formatting."
79
  msgstr "مستندات در باره قالب بندی تاریخ و زمان."
80
 
81
+ #: ../classes/column.php:887
82
  msgid "Excerpt length"
83
  msgstr "طول چکیده"
84
 
85
+ #: ../classes/column.php:888
86
  msgid "Number of words"
87
  msgstr "تعداد کلمات"
88
 
89
+ #: ../classes/column.php:906
90
  msgid "Preview size"
91
  msgstr "اندازه پیش نمایش"
92
 
93
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
94
  msgid "Custom"
95
  msgstr "دلخواه"
96
 
97
+ #: ../classes/column.php:926
98
  msgid "width"
99
  msgstr "عرض"
100
 
101
+ #: ../classes/column.php:929
102
  msgid "height"
103
  msgstr "ارتفاع"
104
 
105
+ #: ../classes/column.php:943
106
  msgid "Before"
107
  msgstr "قبل"
108
 
109
+ #: ../classes/column.php:943
110
  msgid "This text will appear before the custom field value."
111
  msgstr "این متن قبل از مقدار زمینه دلخواه نمایش داده خواهد شد."
112
 
113
+ #: ../classes/column.php:949
114
  msgid "After"
115
  msgstr "بعد"
116
 
117
+ #: ../classes/column.php:949
118
  msgid "This text will appear after the custom field value."
119
  msgstr "این متن بعد از مقدار زمینه دلخواه نمایش داده خواهد شد."
120
 
121
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
 
 
122
  msgid "Edit"
123
  msgstr "ویرایش"
124
 
125
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
126
  msgid "Remove"
127
  msgstr "حذف"
128
 
129
+ #: ../classes/column.php:1062
130
  msgid "Type"
131
  msgstr "نوع"
132
 
133
+ #: ../classes/column.php:1062
134
  msgid "Choose a column type."
135
  msgstr "انتخاب نوع ستون"
136
 
137
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
138
  msgid "ID"
139
  msgstr "شناسه"
140
 
141
+ #: ../classes/column.php:1072
142
  msgid "Label"
143
  msgstr "برچسب"
144
 
145
+ #: ../classes/column.php:1072
146
  msgid "This is the name which will appear as the column header."
147
  msgstr "این نامی است که در تیتر ستون دیده می شود."
148
 
149
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
150
  msgid "Width"
151
  msgstr "عرض"
152
 
153
+ #: ../classes/column.php:1081 ../classes/column.php:1082
154
  msgid "default"
155
  msgstr "پیش فرض"
156
 
157
+ #: ../classes/column/acf-placeholder.php:19
158
  msgid "ACF Field"
159
  msgstr "زمینه ACF"
160
 
161
  #: ../classes/column/acf-placeholder.php:32
162
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
163
+ msgstr ""
164
 
165
  #: ../classes/column/acf-placeholder.php:35
166
  #, php-format
167
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
168
+ msgstr "اگر شما مجوز نسخه توسعه دهنده دارید می توانید افزونه ی ACF را از <a href='%s'>تب افزونه ها</a> دانلود و نصب نمایید."
 
 
 
 
169
 
170
  #: ../classes/column/acf-placeholder.php:38
171
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
172
+ msgstr "این افزونه در نسخه توسعه دهندگان به صورت کامل افزونه زمینه دلخواه پیشرفته را در بر خواهد گرفتو به شما اجازه می دهد به آسانی زمینه های ACF را از قسمت همه نوشته ها مشاهده و ویرایش کنید."
 
 
 
 
 
 
173
 
174
+ #: ../classes/column/acf-placeholder.php:44
175
  msgid "Find out more"
176
  msgstr "اطلاعات بیشتر"
177
 
178
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20 ../classes/column/user/actions.php:19
 
 
 
179
  msgid "Actions"
180
  msgstr "عملیات ها"
181
 
182
+ #: ../classes/column/actions.php:87
183
+ msgid "Use icons?"
184
+ msgstr ""
185
+
186
+ #: ../classes/column/actions.php:87
187
+ msgid "Use icons instead of text for displaying the actions."
188
+ msgstr ""
189
+
190
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
191
+ msgid "Yes"
192
+ msgstr ""
193
+
194
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
195
+ msgid "No"
196
+ msgstr ""
197
+
198
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
199
  msgid "Unapprove"
200
  msgstr "عدم تایید"
201
 
202
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
203
  msgid "Approve"
204
  msgstr "تایید"
205
 
206
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
207
  msgid "Restore"
208
  msgstr "بازسازی"
209
 
210
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
211
  msgid "Delete Permanently"
212
  msgstr "حذف برای همیشه"
213
 
214
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
215
  msgid "Quick&nbsp;Edit"
216
  msgstr "ویرایش سریع"
217
 
218
+ #: ../classes/column/comment/actions.php:101
219
  msgid "Reply"
220
  msgstr "پاسخ"
221
 
222
+ #: ../classes/column/comment/agent.php:19
223
  msgid "Agent"
224
  msgstr "مرورگر"
225
 
226
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
227
  msgid "Approved"
228
  msgstr "تایید شده"
229
 
230
+ #: ../classes/column/comment/author-avatar.php:19
231
  msgid "Avatar"
232
  msgstr "آواتار"
233
 
234
+ #: ../classes/column/comment/author-email.php:19
235
  msgid "Author email"
236
  msgstr "ایمیل نویسنده"
237
 
238
+ #: ../classes/column/comment/author-ip.php:19
239
  msgid "Author IP"
240
  msgstr "آی پی نویسنده"
241
 
242
+ #: ../classes/column/comment/author-url.php:19
243
  msgid "Author url"
244
  msgstr "آدرس نویسنده"
245
 
246
+ #: ../classes/column/comment/author.php:19
247
  msgid "Author"
248
  msgstr "نویسنده"
249
 
250
+ #: ../classes/column/comment/date-gmt.php:19
251
  msgid "Date GMT"
252
  msgstr "تاریخ مرجع"
253
 
254
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
255
  #, php-format
256
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
257
  msgstr "ارسالی در <a href=\"%1$s\">%2$s در %3$s</a>"
258
 
259
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
260
  msgid "Date"
261
  msgstr "تاریخ"
262
 
263
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
264
  msgid "Excerpt"
265
  msgstr "چکیده"
266
 
267
+ #: ../classes/column/comment/reply-to.php:19
268
  msgid "In Reply To"
269
  msgstr "در پاسخ به"
270
 
271
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
272
  msgid "Word count"
273
  msgstr "تعداد کلمات"
274
 
275
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
276
  msgid "Custom Field"
277
  msgstr "زمینه دلخواه"
278
 
279
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
280
  msgid "Default"
281
  msgstr "پیش فرض"
282
 
283
+ #: ../classes/column/custom-field.php:95
284
  msgid "Checkmark (true/false)"
285
  msgstr "تیک(صحیح غلط)"
286
 
287
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
288
  msgid "Color"
289
  msgstr "رنگ"
290
 
291
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
292
  msgid "Counter"
293
  msgstr "شمارنده"
294
 
295
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
296
  msgid "Image"
297
  msgstr "تصویر"
298
 
299
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
300
  msgid "Media Library"
301
  msgstr "کتابخانه رسانه"
302
 
303
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
304
  msgid "Multiple Values"
305
  msgstr "چندین مقدار"
306
 
307
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
308
  msgid "Numeric"
309
  msgstr "عددی"
310
 
311
+ #: ../classes/column/custom-field.php:104
312
  msgid "Post Title (Post ID's)"
313
  msgstr "تیتر نوشته (شناسه نوشته)"
314
 
315
+ #: ../classes/column/custom-field.php:105
316
  msgid "Username (User ID's)"
317
  msgstr "نام کاربری(شناسه کاربری)"
318
 
319
+ #: ../classes/column/custom-field.php:356
320
  msgid "Select your custom field."
321
  msgstr "زمینه دلخواه خود را انتخاب کنید."
322
 
323
+ #: ../classes/column/custom-field.php:366
324
  msgid "No custom fields available."
325
  msgstr "زمینه دلخواهی موجود نیست."
326
 
327
+ #: ../classes/column/custom-field.php:373
328
  msgid "Field Type"
329
  msgstr "نوع فیلد"
330
 
331
+ #: ../classes/column/custom-field.php:373
332
  msgid "This will determine how the value will be displayed."
333
  msgstr "نمایانگر این موضوع که مقادیر چگونه نمایش داده خواهند شد."
334
 
335
+ #: ../classes/column/link/actions.php:49
336
  #, php-format
337
  msgid ""
338
  "You are about to delete this link '%s'\n"
341
  "در حال حذف این لینک '%s'\n"
342
  "می باشید."
343
 
344
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
345
  msgid "Delete"
346
  msgstr "حذف"
347
 
348
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
349
  msgid "Description"
350
  msgstr "توضیحات"
351
 
352
+ #: ../classes/column/link/length.php:19
353
  msgid "Length"
354
  msgstr "طول"
355
 
356
+ #: ../classes/column/link/notes.php:19
357
  msgid "Notes"
358
  msgstr "نکته ها"
359
 
360
+ #: ../classes/column/link/owner.php:19
361
  msgid "Owner"
362
  msgstr "مالک"
363
 
364
+ #: ../classes/column/link/rss.php:19
365
  msgid "Rss"
366
  msgstr "Rss"
367
 
368
+ #: ../classes/column/link/target.php:19
369
  msgid "Target"
370
  msgstr "هدف"
371
 
372
+ #: ../classes/column/media/alternate-text.php:19
373
  msgid "Alt"
374
  msgstr "متن جایگزین"
375
 
376
+ #: ../classes/column/media/available-sizes.php:20
377
  msgid "Available Sizes"
378
  msgstr "اندازه های موجود"
379
 
380
+ #: ../classes/column/media/available-sizes.php:40
381
  msgid "full size"
382
  msgstr "اندازه کامل"
383
 
384
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
385
  msgid "Caption"
386
  msgstr "عنوان"
387
 
388
+ #: ../classes/column/media/dimensions.php:19
389
  msgid "Dimensions"
390
  msgstr "ابعاد"
391
 
392
+ #: ../classes/column/media/exif-data.php:19
393
  msgid "EXIF data"
394
  msgstr "داده های EXIF"
395
 
396
+ #: ../classes/column/media/exif-data.php:38
397
  msgid "Aperture"
398
  msgstr "دیافراگم"
399
 
400
+ #: ../classes/column/media/exif-data.php:39
401
  msgid "Credit"
402
  msgstr "اعتبار"
403
 
404
+ #: ../classes/column/media/exif-data.php:40
405
  msgid "Camera"
406
  msgstr "دوربین"
407
 
408
+ #: ../classes/column/media/exif-data.php:42
409
  msgid "Timestamp"
410
  msgstr "زمان"
411
 
412
+ #: ../classes/column/media/exif-data.php:43
413
  msgid "Copyright EXIF"
414
  msgstr "کپی رایت EXIF"
415
 
416
+ #: ../classes/column/media/exif-data.php:44
417
  msgid "Focal Length"
418
  msgstr "فاصله کانونی"
419
 
420
+ #: ../classes/column/media/exif-data.php:45
421
  msgid "ISO"
422
  msgstr "ISO"
423
 
424
+ #: ../classes/column/media/exif-data.php:46
425
  msgid "Shutter Speed"
426
  msgstr "سرعت شاتر"
427
 
428
+ #: ../classes/column/media/exif-data.php:47
429
  msgid "Title"
430
  msgstr "تیتر"
431
 
432
+ #: ../classes/column/media/file-name.php:19
433
  msgid "File name"
434
  msgstr "نام فایل"
435
 
436
+ #: ../classes/column/media/file-size.php:19
437
  msgid "File size"
438
  msgstr "حجم فایل"
439
 
440
+ #: ../classes/column/media/full-path.php:19
441
  msgid "Full path"
442
  msgstr "مسیر کامل"
443
 
444
+ #: ../classes/column/media/height.php:19
445
  msgid "Height"
446
  msgstr "ارتفاع"
447
 
448
+ #: ../classes/column/media/mime-type.php:19
449
  msgid "Mime type"
450
  msgstr "نوع فایل"
451
 
452
+ #: ../classes/column/post/actions.php:31
453
  msgid "Edit this item"
454
  msgstr "ویرایش این آیتم"
455
 
456
+ #: ../classes/column/post/actions.php:34
457
  msgid "Edit this item inline"
458
  msgstr "ویرایش درجای آیتم"
459
 
460
+ #: ../classes/column/post/actions.php:39
461
  msgid "Restore this item from the Trash"
462
  msgstr "بازسازی این آیتم از زباله دان"
463
 
464
+ #: ../classes/column/post/actions.php:41
465
  msgid "Move this item to the Trash"
466
  msgstr "انتقال این آیتم به زباله دان"
467
 
468
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
469
  msgid "Trash"
470
  msgstr "زباله دان"
471
 
472
+ #: ../classes/column/post/actions.php:43
473
  msgid "Delete this item permanently"
474
  msgstr "حذف کلی این آیتم"
475
 
476
+ #: ../classes/column/post/actions.php:48
477
  #, php-format
478
  msgid "Preview &#8220;%s&#8221;"
479
  msgstr "پیش نمایش &#8220;%s&#8221;"
480
 
481
+ #: ../classes/column/post/actions.php:48
482
  msgid "Preview"
483
  msgstr "پیش نمایش"
484
 
485
+ #: ../classes/column/post/actions.php:50
486
  #, php-format
487
  msgid "View &#8220;%s&#8221;"
488
  msgstr "نمایش &#8220;%s&#8221;"
489
 
490
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
491
  msgid "View"
492
  msgstr "نمایش"
493
 
494
+ #: ../classes/column/post/attachment-count.php:19
495
  msgid "No. of Attachments"
496
  msgstr "تعداد پیوست ها"
497
 
498
+ #: ../classes/column/post/attachment.php:19
499
  msgid "Attachment"
500
  msgstr "پیوست ها"
501
 
502
+ #: ../classes/column/post/author-name.php:20
503
  msgid "Display Author As"
504
  msgstr "نمایش نویسنده با"
505
 
506
+ #: ../classes/column/post/author-name.php:40
507
  msgid "Display Name"
508
  msgstr "نام عمومی"
509
 
510
+ #: ../classes/column/post/author-name.php:41
511
  msgid "First Name"
512
  msgstr "نام"
513
 
514
+ #: ../classes/column/post/author-name.php:42
515
  msgid "Last Name"
516
  msgstr "نام خانوادگی"
517
 
518
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
519
  msgid "Nickname"
520
  msgstr "لغب"
521
 
522
+ #: ../classes/column/post/author-name.php:44
523
  msgid "User Login"
524
  msgstr "نام کاربری"
525
 
526
+ #: ../classes/column/post/author-name.php:45
527
  msgid "User Email"
528
  msgstr "ایمیل کاربر"
529
 
530
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
531
  msgid "User ID"
532
  msgstr "شناسه کاربر"
533
 
534
+ #: ../classes/column/post/author-name.php:47
535
  msgid "First and Last Name"
536
  msgstr "نام و نام خانوادگی"
537
 
538
+ #: ../classes/column/post/author-name.php:124
539
  msgid "This is the format of the author name."
540
  msgstr "فرمت نمایش نام نویسنده"
541
 
542
+ #: ../classes/column/post/before-moretag.php:19
543
  msgid "Before More Tag"
544
  msgstr "قبل از تگ بیشتر"
545
 
546
+ #: ../classes/column/post/comment-count.php:20
547
  msgid "Comment count"
548
  msgstr "تعداد نظرات"
549
 
550
+ #: ../classes/column/post/comment-count.php:34
551
  msgid "Total"
552
  msgstr "مجموع"
553
 
554
+ #: ../classes/column/post/comment-count.php:36
555
  msgid "Pending"
556
  msgstr "منتظر"
557
 
558
+ #: ../classes/column/post/comment-count.php:37
559
  msgid "Spam"
560
  msgstr "جفنگ"
561
 
562
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
563
  msgid "Comment status"
564
  msgstr "وضعیت نظر"
565
 
566
+ #: ../classes/column/post/comment-count.php:99
567
  msgid "Select which comment status you like to display."
568
  msgstr "مشخص کنید چه نوع نظراتی مایلید نمایش داده شود."
569
 
570
+ #: ../classes/column/post/featured-image.php:19
571
  msgid "Featured Image"
572
  msgstr "تصویر شاخص"
573
 
574
+ #: ../classes/column/post/formats.php:19
575
  msgid "Post Format"
576
  msgstr "قالب نوشته"
577
 
578
+ #: ../classes/column/post/modified.php:19
579
  msgid "Last modified"
580
  msgstr "آخرین ویرایش"
581
 
582
+ #: ../classes/column/post/order.php:19
583
  msgid "Page Order"
584
  msgstr "ترتیب صفحه"
585
 
586
+ #: ../classes/column/post/page-template.php:19
587
  msgid "Page Template"
588
  msgstr "قالب صفحه"
589
 
590
+ #: ../classes/column/post/parent.php:19
591
  msgid "Parent"
592
  msgstr "مادر"
593
 
594
+ #: ../classes/column/post/path.php:19
595
+ msgid "Path"
596
+ msgstr ""
597
+
598
+ #: ../classes/column/post/permalink.php:19
599
  msgid "Permalink"
600
  msgstr "پیوندیکتا"
601
 
602
+ #: ../classes/column/post/permalink.php:68
603
+ msgid "Link to post"
604
+ msgstr ""
605
+
606
+ #: ../classes/column/post/permalink.php:68
607
+ msgid "This will make the permalink clickable."
608
+ msgstr ""
609
+
610
+ #: ../classes/column/post/ping-status.php:19
611
  msgid "Ping status"
612
  msgstr "وضعیت پینگ"
613
 
614
+ #: ../classes/column/post/roles.php:19
615
  msgid "Roles"
616
  msgstr "نقش ها"
617
 
618
+ #: ../classes/column/post/slug.php:19
619
  msgid "Slug"
620
  msgstr "نامک"
621
 
622
+ #: ../classes/column/post/status.php:19
623
  msgid "Status"
624
  msgstr "وضعیت"
625
 
626
+ #: ../classes/column/post/status.php:29
627
  msgid "Published"
628
  msgstr "منتشرشده"
629
 
630
+ #: ../classes/column/post/status.php:30
631
  msgid "Draft"
632
  msgstr "پیش نویس"
633
 
634
+ #: ../classes/column/post/status.php:31
635
  msgid "Scheduled"
636
  msgstr "زمانبندی شده"
637
 
638
+ #: ../classes/column/post/status.php:32
639
  msgid "Private"
640
  msgstr "خصوصی"
641
 
642
+ #: ../classes/column/post/status.php:33
643
  msgid "Pending Review"
644
  msgstr "منتظر بازبینی"
645
 
646
+ #: ../classes/column/post/status.php:34
647
  msgid "Auto Draft"
648
  msgstr "پیش نویس خودکار"
649
 
650
+ #: ../classes/column/post/sticky.php:19
651
  msgid "Sticky"
652
  msgstr "سنجاق شده"
653
 
654
+ #: ../classes/column/post/title-raw.php:19
655
+ msgid "Title without actions"
656
+ msgstr ""
657
+
658
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
659
  msgid "Taxonomy"
660
  msgstr "طبقه بندی"
661
 
662
+ #: ../classes/column/used-by-menu.php:20
663
+ msgid "Used by Menu"
664
+ msgstr ""
665
+
666
+ #: ../classes/column/used-by-menu.php:133
667
+ msgid "Link to menu"
668
+ msgstr ""
669
+
670
+ #: ../classes/column/used-by-menu.php:133
671
+ msgid "This will make the title link to the menu."
672
+ msgstr ""
673
+
674
+ #: ../classes/column/user/comment-count.php:19
675
  msgid "Comment Count"
676
  msgstr "تعداد کامنت"
677
 
678
+ #: ../classes/column/user/first-name.php:19
679
  msgid "First name"
680
  msgstr "نام"
681
 
682
+ #: ../classes/column/user/last-name.php:19
683
  msgid "Last name"
684
  msgstr "نام خانوادگی"
685
 
686
+ #: ../classes/column/user/post-count.php:19
687
  msgid "Post Count"
688
  msgstr "تعداد نوشته"
689
 
690
+ #: ../classes/column/user/post-count.php:102
691
  msgid "Post Type"
692
  msgstr "نوع نوشته"
693
 
694
+ #: ../classes/column/user/registered.php:19
695
  msgid "Registered"
696
  msgstr "ثبت نام شده"
697
 
698
+ #: ../classes/column/user/url.php:19
699
  msgid "Url"
700
  msgstr "آدرس"
701
 
702
+ #: ../classes/settings.php:111
703
  msgid "Add-on successfully activated."
704
  msgstr "افزونه با موفقیت فعال شد"
705
 
706
+ #: ../classes/settings.php:114
707
  msgid "Add-on successfully deactivated."
708
  msgstr "افزونه با موفقیت غیرفعال شد"
709
 
710
+ #: ../classes/settings.php:169
711
  msgid "Admin Columns Settings"
712
  msgstr "تنظیمات ستون ها"
713
 
714
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
715
  msgid "Admin Columns"
716
  msgstr "تنظیمات ستون ها"
717
 
718
+ #: ../classes/settings.php:217
719
  #, php-format
720
  msgid "%s column is already present and can not be duplicated."
721
  msgstr "%s ستون موجود است و نمی توان آنها را تکثیر کرد."
722
 
723
+ #: ../classes/settings.php:271
724
  msgid "Default settings succesfully restored."
725
  msgstr "تنظیمات پیش فرض با موفقیت بازسازی شدند."
726
 
727
+ #: ../classes/settings.php:288
728
  msgid "Overview"
729
  msgstr "مرورکلی"
730
 
731
+ #: ../classes/settings.php:291
732
  msgid ""
733
+ "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and "
734
+ "reorder them."
735
+ msgstr "این افزونه برای ایجاد ستون های دلخواه و یا حذف آنها و مرتب سازی و همچنین تغییر نام آنها در نوشته ها و برگه ها ، رسانه ها ، نظرات، لینک ها و کاربران طراحی شده است."
 
 
 
 
736
 
737
+ #: ../classes/settings.php:294
738
  msgid "Basics"
739
  msgstr "مقدمات"
740
 
741
+ #: ../classes/settings.php:296
742
  msgid "Change order"
743
  msgstr "تغییر ترتیب"
744
 
745
+ #: ../classes/settings.php:297
746
+ msgid "By dragging the columns you can change the order which they will appear in."
 
747
  msgstr "با گرفتن و کشیدن ستون ها می توانید ترتیب نمایش آنها را تغییر دهید."
748
 
749
+ #: ../classes/settings.php:298
750
  msgid "Change label"
751
  msgstr "تغییر برچسب"
752
 
753
+ #: ../classes/settings.php:299
754
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
755
+ msgstr "با کلیک روی مثلث می توانید تنظیمات ستون را مشاهده فرمایید. در اینجا می توانید برچسب هر ستون را تغییر دهید."
 
 
 
 
756
 
757
+ #: ../classes/settings.php:300
758
  msgid "Change column width"
759
  msgstr "تغییر عرض ستون"
760
 
761
+ #: ../classes/settings.php:301
762
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
763
+ msgstr "با کلیک روی مثلث تنظیمات ستون را مشاهده خواهید کرد. به کمک جابجایی اسلایدر می توانید عرض هر ستون را به صورت درصد مشخص کنید."
 
 
 
 
764
 
765
+ #: ../classes/settings.php:307
766
  msgid "'Custom Field' column"
767
  msgstr "ستون 'زمینه دلخواه'"
768
 
769
+ #: ../classes/settings.php:308
770
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
771
+ msgstr "ستون زمینه دلخواه از زمینه های دلخواه نوشته ها و کاربران استفاده می کند. ده نوع مختلف برای تنظیم وجود دارد."
 
 
 
 
772
 
773
+ #: ../classes/settings.php:310
774
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
775
+ msgstr "مقدار:می تواند متن یا آرایه باشد. آرایه ها به متن تبدیل خواهند شد و با ',' جدا خواهند شد."
 
 
 
 
776
 
777
+ #: ../classes/settings.php:311
778
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
779
+ msgstr "مثدار: باید شامل یک آدرس (url) تصویر باشد یا شناسه هایی (ID) از پیوست ها که با ',' جدا شده اند."
 
 
 
 
780
 
781
+ #: ../classes/settings.php:312
782
  msgid "Value: This will show the first 20 words of the Post content."
783
  msgstr "مقدار: بیست کلمه ابتدای متن را نشان خواهد داد."
784
 
785
+ #: ../classes/settings.php:313
786
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
787
  msgstr "مثدار: باید آرایه باشد. هر آرایه ای (چند بعدی) متنی خواهد شد."
788
 
789
+ #: ../classes/settings.php:314
790
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
791
+ msgstr "مقدار: فقط عددی. <br/> اگر از افزونه 'مرتب سازی' استفاده کنید، از این مقدار برای مرتب سازی استفاده خواهد شد. می توانید نوشته هایتان را یک مقدار عددی (زمینه دلخواه) مرتب سازی کنید."
 
 
 
 
 
792
 
793
+ #: ../classes/settings.php:315
794
  #, php-format
795
+ msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
796
+ msgstr "مقدار: باید زمان تاریخ سیستم یونیکس یا تاریخ قالب بندی شده باشد که در <a href='%s'>راهنما</a> شرح داده شده. می توانید خروجی تاریخ را از <a href='%s'>تنظیمات همگانی</a> تغییر دهید."
 
 
 
 
 
 
797
 
798
+ #: ../classes/settings.php:316
799
  msgid "Post Titles"
800
  msgstr "تیترهای نوشته"
801
 
802
+ #: ../classes/settings.php:316
803
  msgid "Value: can be one or more Post ID's (seperated by ',')."
804
+ msgstr "مقدار: می تواند شامل یک یا چند شناسه (ID) نوشته ها (جدا شده با ',') باشد."
 
805
 
806
+ #: ../classes/settings.php:317
807
  msgid "Usernames"
808
  msgstr "نام های کاربری"
809
 
810
+ #: ../classes/settings.php:317
811
  msgid "Value: can be one or more User ID's (seperated by ',')."
812
  msgstr "می تواند شامل یک یا چند شناسه (ID) کاربری (جداشده با ',') باشد."
813
 
814
+ #: ../classes/settings.php:318
815
  msgid "Checkmark"
816
  msgstr "تیک"
817
 
818
+ #: ../classes/settings.php:318
819
  msgid "Value: should be a 1 (one) or 0 (zero)."
820
  msgstr "مقدار: می تواند یک یا صفر باشد"
821
 
822
+ #: ../classes/settings.php:319
823
  msgid "Value: hex value color, such as #808080."
824
  msgstr "مقدار: می تواند کد هکس رنگ مانند #808080 باشد"
825
 
826
+ #: ../classes/settings.php:320
827
+ msgid "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."
828
+ msgstr "مقدار: می تواند متن یا آرایه باشد. تعداد دفعات استفاده از meta key های آیتم را نمایش می دهد."
 
 
 
 
829
 
830
+ #: ../classes/settings.php:409
831
  msgid "Welcome to Admin Columns"
832
  msgstr "به مدیریت ستون ها خوش آمدید"
833
 
834
+ #: ../classes/settings.php:412
835
  msgid "Thank you for updating to the latest version!"
836
  msgstr "از اینکه به نسخه نهایی به روزرسانی کردید متشکریم!"
837
 
838
+ #: ../classes/settings.php:413
839
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
840
+ msgstr "مدیریت ستون ها بهینه تر و لذت بخش تر از قبل شده است. امیدواریم شما بپسندید."
 
 
 
841
 
842
+ #: ../classes/settings.php:418
843
  msgid "What’s New"
844
  msgstr "چه چیز جدید است"
845
 
846
+ #: ../classes/settings.php:419
847
  msgid "Changelog"
848
  msgstr "تغییرات"
849
 
850
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
851
  msgid "Important"
852
  msgstr "مهم"
853
 
854
+ #: ../classes/settings.php:426
855
  msgid "Database Changes"
856
  msgstr "تغییرات بانک اطلاعاتی"
857
 
858
+ #: ../classes/settings.php:427
859
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
860
+ msgstr "بانک اطلاعاتی بین نسخه های 1 و 2 تغییراتی داشته است ولی اطمینان داشته باشید هر زمان می توانید به نسخه 1 برگردید."
 
 
 
 
861
 
862
+ #: ../classes/settings.php:430
863
  msgid "Make sure you backup your database and then click"
864
  msgstr "از بانک اطلاعاتی خود پشتیبان تهیه کنید و روی "
865
 
866
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
867
  msgid "Upgrade Database"
868
  msgstr "به روز رسانی بانک اطلاعاتی کلیک کنید"
869
 
870
+ #: ../classes/settings.php:433
871
  msgid "Potential Issues"
872
  msgstr "مشکلات بالقوه"
873
 
874
+ #: ../classes/settings.php:434
875
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
876
+ msgstr "به دلیل تغییرات در کدهای برنامه نویسی این امکان وجود دارد که بعضی افزونه های شما به خوبی کار نکند. توصیه می شود راهنما انتقال از "
 
 
 
 
 
877
 
878
+ #: ../classes/settings.php:434
879
  msgid "Migrating from v1 to v2"
880
  msgstr "نسخه 1 به 2 را به صورت کامل مطالعه فرمایید"
881
 
882
+ #: ../classes/settings.php:434
883
  msgid "guide to view the full list of changes."
884
  msgstr "راهنما برای دیدن لیست تمام تغییرات."
885
 
886
+ #: ../classes/settings.php:434
887
  #, php-format
888
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
889
+ msgstr "زمانی که مشکلی مشاهده کردید لطفا آنرا به ما <a href=\"%s\">گزارش کنید</a>تا در نسخه بعدی تصحیح کنیم."
 
 
 
 
890
 
891
+ #: ../classes/settings.php:437
892
  msgid "Important!"
893
  msgstr "مهم !"
894
 
895
+ #: ../classes/settings.php:437
896
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
897
+ msgstr "اگر بدون آگاهی از تغییرات رخ داده افزونه را به روز رسانی کرده اید به آخرین "
 
 
 
898
 
899
+ #: ../classes/settings.php:437
900
  msgid "version 1"
901
  msgstr "نسخه 1"
902
 
903
+ #: ../classes/settings.php:437
904
  msgid "of this plugin."
905
  msgstr "از افزونه برگردید."
906
 
907
+ #: ../classes/settings.php:443
908
  msgid "Changelog for"
909
  msgstr "تغییرات برای"
910
 
911
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
912
  msgid "Learn more"
913
  msgstr "آموزش بیشتر"
914
 
915
+ #: ../classes/settings.php:468
916
  msgid "Start using Admin Columns"
917
  msgstr "شروع استفاده از ستون های مدیریت"
918
 
919
+ #: ../classes/settings.php:511
920
  msgid "General Settings"
921
  msgstr "تنظیمات عمومی"
922
 
923
+ #: ../classes/settings.php:512
924
  msgid "Customize your Admin Columns settings."
925
  msgstr "دلخواه سازی تنظیمات افزونه"
926
 
927
+ #: ../classes/settings.php:523
928
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
 
929
  msgstr ""
 
930
 
931
+ #: ../classes/settings.php:530 ../classes/settings.php:660
932
  msgid "Save"
933
  msgstr "ذخیره"
934
 
935
+ #: ../classes/settings.php:570
936
  msgid "Restore Settings"
937
  msgstr "بازنشانی تنظیمات"
938
 
939
+ #: ../classes/settings.php:571
940
  msgid "This will delete all column settings and restore the default settings."
941
  msgstr "این کار تمام تنظیمات را حذف و به حالت پیش فرض در خواهد آورد."
942
 
943
+ #: ../classes/settings.php:577
944
  msgid "Restore default settings"
945
  msgstr "بازسازی تنظیمات پیش فرض"
946
 
947
+ #: ../classes/settings.php:577
948
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
949
+ msgstr "اخطار! تمام ستون های مدیریت ذخیره شده حذف خواهند شد. این کار بازگشت پذیر نیست!"
 
 
 
 
950
 
951
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
952
  msgid "Settings"
953
  msgstr "تنظیمات"
954
 
955
+ #: ../classes/settings.php:600
956
  msgid "Add-ons"
957
  msgstr "افزودنی ها"
958
 
959
+ #: ../classes/settings.php:625
960
  msgid "Posttypes"
961
  msgstr "نوع نوشته ها"
962
 
963
+ #: ../classes/settings.php:626
964
  msgid "Others"
965
  msgstr "دیگر"
966
 
967
+ #: ../classes/settings.php:627
968
  msgid "Taxonomies"
969
  msgstr "طبقه بندی ها"
970
 
971
+ #: ../classes/settings.php:646
972
  #, php-format
973
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
974
+ msgstr "ستون های برای <strong>%s</strong> به کمک PHP تنظیم شده اند و به همین دلیل از طریق بخش مدیریت قابل ویرایش نیستند."
 
 
 
 
975
 
976
+ #: ../classes/settings.php:656
977
  msgid "Store settings"
978
  msgstr "ذخیره تنظیمات"
979
 
980
+ #: ../classes/settings.php:660
981
  msgid "Update"
982
  msgstr "به روز رسانی"
983
 
984
+ #: ../classes/settings.php:664
985
  #, php-format
986
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
 
 
987
  msgstr "اخطار! داده های %s ستون حذف خواهد شد. این کار بازگشت ناپذیر است."
988
 
989
+ #: ../classes/settings.php:665
990
  msgid "columns"
991
  msgstr "ستون ها"
992
 
993
+ #: ../classes/settings.php:684
994
  msgid "Get Admin Columns Pro"
995
  msgstr "خرید نسخه حرفه ای"
996
 
997
+ #: ../classes/settings.php:688
998
  msgid "Add Sorting"
999
  msgstr "اضافه کردن مرتب سازی"
1000
 
1001
+ #: ../classes/settings.php:689
1002
  msgid "Add Filtering"
1003
  msgstr "اضافه کردن فیلترسازی"
1004
 
1005
+ #: ../classes/settings.php:690
1006
  msgid "Add Import/Export"
1007
  msgstr "اضافه کردن وارد/ خارج کردن"
1008
 
1009
+ #: ../classes/settings.php:691
1010
  msgid "Add Direct Editing"
1011
  msgstr "اضافه کردن ویرایش مستقیم"
1012
 
1013
+ #: ../classes/settings.php:694
1014
  #, php-format
1015
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1016
  msgstr "برای اطلاعات بیشتر <a href=\"%s\">نسخه حرفه ای</a> را بررسی کنید."
1017
 
1018
+ #: ../classes/settings.php:725
1019
+ msgid "Are you happy with Admin Columns?"
1020
+ msgstr ""
1021
+
1022
+ #: ../classes/settings.php:733
1023
+ msgid "What's wrong? Need help? Let us know!"
1024
+ msgstr ""
1025
+
1026
+ #: ../classes/settings.php:734
1027
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1028
+ msgstr ""
1029
+
1030
  #: ../classes/settings.php:742
1031
+ msgid "Docs"
1032
+ msgstr ""
1033
+
1034
+ #: ../classes/settings.php:747
1035
+ msgid "Forums"
1036
+ msgstr ""
1037
+
1038
+ #: ../classes/settings.php:756
1039
+ msgid "Woohoo! We're glad to hear that!"
1040
+ msgstr ""
1041
+
1042
+ #: ../classes/settings.php:757
1043
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1044
+ msgstr ""
1045
+
1046
+ #: ../classes/settings.php:761
1047
+ msgid "Rate"
1048
+ msgstr ""
1049
+
1050
+ #: ../classes/settings.php:772
1051
+ msgid "Tweet"
1052
+ msgstr ""
1053
+
1054
+ #: ../classes/settings.php:782
1055
+ msgid "Buy Pro"
1056
+ msgstr ""
1057
+
1058
+ #: ../classes/settings.php:794
1059
  msgid "Support"
1060
  msgstr "پشتیبانی"
1061
 
1062
+ #: ../classes/settings.php:797
1063
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1064
  msgstr "قسمت <strong>راهنما</strong> را در بالای صفحه بررسی کنید."
1065
 
1066
+ #: ../classes/settings.php:800
1067
  #, php-format
1068
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1069
+ msgstr "برای دیدن تمام مستندات، امکانات آینده و نکات به <a href='%s'>وب سایت افزونه</a> مراجعه فرمایید."
 
 
 
 
1070
 
1071
+ #: ../classes/settings.php:829
1072
  msgid "Drag and drop to reorder"
1073
  msgstr "برای مرتب سازی بگیرید و بکشید"
1074
 
1075
+ #: ../classes/settings.php:832
1076
  msgid "Add Column"
1077
  msgstr "ستون جدید"
1078
 
1079
+ #: ../classes/settings.php:908
1080
  msgid "Active"
1081
  msgstr "فعال"
1082
 
1083
+ #: ../classes/settings.php:909
1084
  msgid "Deactivate"
1085
  msgstr "غیرفعال"
1086
 
1087
+ #: ../classes/settings.php:916
1088
  msgid "Installed"
1089
  msgstr "نصب شده"
1090
 
1091
+ #: ../classes/settings.php:917
1092
  msgid "Activate"
1093
  msgstr "فعال"
1094
 
1095
+ #: ../classes/settings.php:931
1096
  msgid "Download & Install"
1097
  msgstr "دانلود و نصب"
1098
 
1099
+ #: ../classes/settings.php:936
1100
  msgid "Get this add-on"
1101
  msgstr "دریافت این افزودنی"
1102
 
1103
+ #: ../classes/storage_model.php:213
1104
  msgid "settings succesfully restored."
1105
  msgstr "تنظیمات با موفقیت بازنشانی شدند."
1106
 
1107
+ #: ../classes/storage_model.php:229
1108
  msgid "No columns settings available."
1109
  msgstr "هیچ تنظیمی برای ستونها موجود نیست."
1110
 
1111
+ #: ../classes/storage_model.php:250
1112
  #, php-format
1113
  msgid "You are trying to store the same settings for %s."
1114
  msgstr "درحال ذخیره همان تنظیمات برای %s هستید."
1115
 
1116
+ #: ../classes/storage_model.php:254
1117
  #, php-format
1118
  msgid "Settings for %s updated succesfully."
1119
  msgstr "تنظیمات برای %s با موفقیت به روز شد."
1130
  msgid "Users"
1131
  msgstr "کاربران"
1132
 
1133
+ #: ../classes/upgrade.php:62
1134
+ msgid ""
1135
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of <strong>Admin "
1136
+ "Columns Pro</strong> <a href=\"http://www.admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new features, including Direct Inline "
1137
+ "Editing!"
1138
+ msgstr ""
1139
+
1140
+ #: ../classes/upgrade.php:95
1141
  msgid "Upgrade"
1142
  msgstr "به روزرسانی"
1143
 
1144
+ #: ../classes/upgrade.php:136
1145
  msgid "requires a database upgrade"
1146
  msgstr "نیاز به به روزرسانی بانک اطلاعاتی دارد"
1147
 
1148
+ #: ../classes/upgrade.php:139
1149
  msgid "why?"
1150
  msgstr "چرا؟"
1151
 
1152
+ #: ../classes/upgrade.php:140
1153
  msgid "Please"
1154
  msgstr "لطفا"
1155
 
1156
+ #: ../classes/upgrade.php:141
1157
  msgid "backup your database"
1158
  msgstr "از بانک اطلاعاتی خود پشتیبان تهیه کنید"
1159
 
1160
+ #: ../classes/upgrade.php:142
1161
  msgid "then click"
1162
  msgstr "سپس روی "
1163
 
1164
+ #: ../classes/upgrade.php:351
1165
  msgid "Migrating Column Settings"
1166
  msgstr "همگام سازی تنظیمات ستون ها کلیک کنید"
1167
 
1168
+ #: ../classes/upgrade.php:387
1169
  msgid "No Upgrade Required"
1170
  msgstr "به روزرسانی لازم نیست"
1171
 
1172
+ #: ../classes/upgrade.php:388
1173
  msgid "Return to welcome screen."
1174
  msgstr "بازگشت به صفحه خوش آمد گویی."
1175
 
1176
+ #: ../classes/upgrade.php:406
1177
  msgid "Upgrade Complete!"
1178
  msgstr "به روز رسانی تکمیل شد!"
1179
 
1180
+ #: ../classes/upgrade.php:406
1181
  msgid "Return to settings."
1182
  msgstr "بازگشت به تنظیمات."
1183
 
1184
+ #: ../classes/upgrade.php:407
1185
  msgid "Error"
1186
  msgstr "خطا"
1187
 
1188
+ #: ../classes/upgrade.php:408
1189
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1190
+ msgstr "متاسفبم. به نظر می آید خطایی در فرایند به روز رسانی رخ داده است. لطفا این مشکل را فروم پشتیبانی ما مطرح کنید."
 
 
 
 
1191
 
1192
+ #: ../codepress-admin-columns.php:390
1193
  msgid "Edit columns"
1194
  msgstr "ویرایش ستون ها"
languages/cpac-fr_FR.mo CHANGED
Binary file
languages/cpac-fr_FR.po CHANGED
@@ -8,1151 +8,1111 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: Admin Columns\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
12
- "PO-Revision-Date: 2014-08-28 12:17+0100\n"
13
  "Last-Translator: Codepress <info@codepress.nl>\n"
14
- "Language-Team: French (France) (http://www.transifex.com/projects/p/admin-"
15
- "columns/language/fr_FR/)\n"
16
  "MIME-Version: 1.0\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
  "Language: fr_FR\n"
20
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
21
- "X-Generator: Poedit 1.6.8\n"
22
  "X-Poedit-Basepath: .\n"
23
  "X-Poedit-KeywordsList: __;_e\n"
24
  "X-Poedit-SourceCharset: UTF-8\n"
25
  "X-Poedit-SearchPath-0: .\n"
26
  "X-Poedit-SearchPath-1: ..\n"
27
 
28
- #: ../classes/addons.php:117
29
  msgid "Third party plugin integration"
30
  msgstr "Troisième parties d'intégration du module complémentaire"
31
 
32
- #: ../classes/addons.php:142
33
  msgid "Advanced Custom Fields"
34
  msgstr "Personnalisation avancée de champ"
35
 
36
- #: ../classes/addons.php:143
37
- msgid ""
38
- "Display and edit Advanced Custom Fields fields in the posts overview in "
39
- "seconds!"
 
 
 
 
 
 
40
  msgstr ""
41
 
42
- #: ../classes/column.php:481
43
  msgid "Thumbnail"
44
  msgstr "Vignette"
45
 
46
- #: ../classes/column.php:482
47
  msgid "Medium"
48
  msgstr "Moyen"
49
 
50
- #: ../classes/column.php:483
51
  msgid "Large"
52
  msgstr "Large"
53
 
54
- #: ../classes/column.php:484
55
  msgid "Full"
56
  msgstr "Pleine taille"
57
 
58
- #: ../classes/column.php:751
59
  msgid "Date Format"
60
  msgstr "Format de date"
61
 
62
- #: ../classes/column.php:752
63
  msgid "This will determine how the date will be displayed."
64
  msgstr "Ceci déterminera l'affichage de la date."
65
 
66
- #: ../classes/column.php:758
67
  msgid "Example:"
68
  msgstr "Exemple :"
69
 
70
- #: ../classes/column.php:760
71
  #, php-format
72
- msgid ""
73
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
74
- "date format here</a>."
75
- msgstr ""
76
- "Laisser vide pour utiliser le format spécifié par WordPress, modifier votre "
77
- "<a href=\"%s\">votre format de date par défaut ici</a>."
78
 
79
- #: ../classes/column.php:761
80
  msgid "Documentation on date and time formatting."
81
  msgstr "Documentation sur le formatage de la date et du temps."
82
 
83
- #: ../classes/column.php:775
84
  msgid "Excerpt length"
85
  msgstr "Longueur de l'extrait"
86
 
87
- #: ../classes/column.php:776
88
  msgid "Number of words"
89
  msgstr "Nombre de mots"
90
 
91
- #: ../classes/column.php:794
92
  msgid "Preview size"
93
  msgstr "Taille de prévisualisation"
94
 
95
- #: ../classes/column.php:811 ../classes/storage_model.php:505
96
  msgid "Custom"
97
  msgstr "Personnalisé"
98
 
99
- #: ../classes/column.php:814
100
  msgid "width"
101
  msgstr "largeur"
102
 
103
- #: ../classes/column.php:817
104
  msgid "height"
105
  msgstr "hauteur"
106
 
107
- #: ../classes/column.php:831
108
  msgid "Before"
109
  msgstr "Avant"
110
 
111
- #: ../classes/column.php:831
112
  msgid "This text will appear before the custom field value."
113
  msgstr "Ce texte apparaîtra avant la valeur du champ personnalisé."
114
 
115
- #: ../classes/column.php:837
116
  msgid "After"
117
  msgstr "Après"
118
 
119
- #: ../classes/column.php:837
120
  msgid "This text will appear after the custom field value."
121
  msgstr "Ce texte apparaîtra après la valeur du champ personnalisé."
122
 
123
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
124
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
125
- #: ../classes/column/user/actions.php:66
126
  msgid "Edit"
127
  msgstr "Modifier"
128
 
129
- #: ../classes/column.php:927 ../classes/column.php:1005
130
- #: ../classes/column/user/actions.php:74
131
  msgid "Remove"
132
  msgstr "Retirer"
133
 
134
- #: ../classes/column.php:945
135
  msgid "Type"
136
  msgstr "Type"
137
 
138
- #: ../classes/column.php:945
139
  msgid "Choose a column type."
140
  msgstr "Choisissez le type de colonne."
141
 
142
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
143
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
144
- #: ../classes/column/post/ID.php:12
145
  msgid "ID"
146
  msgstr "ID"
147
 
148
- #: ../classes/column.php:955
149
  msgid "Label"
150
  msgstr "Libellé"
151
 
152
- #: ../classes/column.php:955
153
  msgid "This is the name which will appear as the column header."
154
  msgstr "Ceci est le nom qui apparaitra comme l'entête de colonne."
155
 
156
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
157
  msgid "Width"
158
  msgstr "Largeur"
159
 
160
- #: ../classes/column.php:964 ../classes/column.php:965
161
  msgid "default"
162
  msgstr "Par défaut"
163
 
164
- #: ../classes/column/acf-placeholder.php:16
165
  msgid "ACF Field"
166
  msgstr "Champ ACF"
167
 
168
  #: ../classes/column/acf-placeholder.php:32
169
- msgid "This feature is only available in Admin Columns Pro - Developer."
170
  msgstr ""
171
- "Cette caractéristique est essentiellement disponible pour l'admin colonne "
172
- "Pro - Développeur."
173
 
174
  #: ../classes/column/acf-placeholder.php:35
175
  #, php-format
176
- msgid ""
177
- "If you have a developer licence please download & install your ACF add-on "
178
- "from the <a href='%s'>add-ons tab</a>."
179
  msgstr ""
180
 
181
  #: ../classes/column/acf-placeholder.php:38
182
- msgid ""
183
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
184
- "integeration, allowing you to easily display and edit ACF fields from within "
185
- "your posts overview."
186
  msgstr ""
187
 
188
- #: ../classes/column/acf-placeholder.php:40
189
  msgid "Find out more"
190
  msgstr "En savoir plus"
191
 
192
- #: ../classes/column/comment/actions.php:14
193
- #: ../classes/column/link/actions.php:14
194
- #: ../classes/column/media/actions.php:14
195
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
196
  msgid "Actions"
197
  msgstr "Actions"
198
 
199
- #: ../classes/column/comment/actions.php:73
200
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  msgid "Unapprove"
202
  msgstr "Désapprouver"
203
 
204
- #: ../classes/column/comment/actions.php:75
205
- #: ../classes/column/comment/actions.php:77
206
  msgid "Approve"
207
  msgstr "Approuver"
208
 
209
- #: ../classes/column/comment/actions.php:86
210
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
211
  msgid "Restore"
212
  msgstr "Restaurer"
213
 
214
- #: ../classes/column/comment/actions.php:90
215
- #: ../classes/column/post/actions.php:66
216
  msgid "Delete Permanently"
217
  msgstr "Supprimer définitivement"
218
 
219
- #: ../classes/column/comment/actions.php:97
220
- #: ../classes/column/post/actions.php:58
221
  msgid "Quick&nbsp;Edit"
222
  msgstr "Rapide&nbsp;Modification"
223
 
224
- #: ../classes/column/comment/actions.php:98
225
  msgid "Reply"
226
  msgstr "Répondre"
227
 
228
- #: ../classes/column/comment/agent.php:12
229
  msgid "Agent"
230
  msgstr "Agent"
231
 
232
- #: ../classes/column/comment/approved.php:12
233
- #: ../classes/column/post/comment-count.php:31
234
  msgid "Approved"
235
  msgstr "Approuvé"
236
 
237
- #: ../classes/column/comment/author-avatar.php:12
238
  msgid "Avatar"
239
  msgstr "Avatar"
240
 
241
- #: ../classes/column/comment/author-email.php:12
242
  msgid "Author email"
243
  msgstr "Courriel de l'auteur"
244
 
245
- #: ../classes/column/comment/author-ip.php:12
246
  msgid "Author IP"
247
  msgstr "IP de l'auteur"
248
 
249
- #: ../classes/column/comment/author-url.php:12
250
  msgid "Author url"
251
  msgstr "URL de l'auteur"
252
 
253
- #: ../classes/column/comment/author.php:12
254
  msgid "Author"
255
  msgstr "Auteur"
256
 
257
- #: ../classes/column/comment/date-gmt.php:12
258
  msgid "Date GMT"
259
  msgstr "Date GMT"
260
 
261
- #: ../classes/column/comment/date-gmt.php:25
262
- #: ../classes/column/comment/date.php:25
263
  #, php-format
264
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
265
  msgstr "Soumis le<a href=\"%1$s\">%2$s à %3$s</a>"
266
 
267
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
268
- #: ../classes/settings.php:300
269
  msgid "Date"
270
  msgstr "Date"
271
 
272
- #: ../classes/column/comment/excerpt.php:13
273
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
274
- #: ../classes/settings.php:297
275
  msgid "Excerpt"
276
  msgstr "Extrait"
277
 
278
- #: ../classes/column/comment/reply-to.php:12
279
  msgid "In Reply To"
280
  msgstr "En réponse à"
281
 
282
- #: ../classes/column/comment/word-count.php:12
283
- #: ../classes/column/post/word-count.php:12
284
  msgid "Word count"
285
  msgstr "Nombre de mots"
286
 
287
- #: ../classes/column/custom-field.php:16
288
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
289
  msgid "Custom Field"
290
  msgstr "Champ personnalisé"
291
 
292
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
293
- #: ../classes/storage_model.php:504
294
  msgid "Default"
295
  msgstr "Par défaut"
296
 
297
- #: ../classes/column/custom-field.php:66
298
  msgid "Checkmark (true/false)"
299
  msgstr "Cocher (vrai/faux)"
300
 
301
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
302
  msgid "Color"
303
  msgstr "Couleur"
304
 
305
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
306
  msgid "Counter"
307
  msgstr "Compteur"
308
 
309
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
310
- #: ../classes/settings.php:296
311
  msgid "Image"
312
  msgstr "Image"
313
 
314
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
315
  msgid "Media Library"
316
  msgstr "Bibliothèque des médias"
317
 
318
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
319
  msgid "Multiple Values"
320
  msgstr "Valeurs multiples"
321
 
322
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
323
  msgid "Numeric"
324
  msgstr "Numérique"
325
 
326
- #: ../classes/column/custom-field.php:75
327
  msgid "Post Title (Post ID's)"
328
  msgstr "Titre du post (Post ID)"
329
 
330
- #: ../classes/column/custom-field.php:76
331
  msgid "Username (User ID's)"
332
  msgstr "Nom d'utilisateur (ID d'utilisateur)"
333
 
334
- #: ../classes/column/custom-field.php:384
335
  msgid "Select your custom field."
336
  msgstr "Sélectionnez votre champ personnalisé."
337
 
338
- #: ../classes/column/custom-field.php:394
339
  msgid "No custom fields available."
340
  msgstr "Aucun champ personnalisé disponible."
341
 
342
- #: ../classes/column/custom-field.php:401
343
  msgid "Field Type"
344
  msgstr "Type de champ"
345
 
346
- #: ../classes/column/custom-field.php:401
347
  msgid "This will determine how the value will be displayed."
348
  msgstr "Ceci va déterminer la manière dont la valeur sera affichée."
349
 
350
- #: ../classes/column/link/actions.php:46
351
  #, php-format
352
  msgid ""
353
  "You are about to delete this link '%s'\n"
354
  " 'Cancel' to stop, 'OK' to delete."
355
  msgstr ""
356
 
357
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
358
  msgid "Delete"
359
  msgstr "Supprimer"
360
 
361
- #: ../classes/column/link/description.php:12
362
- #: ../classes/column/media/description.php:12
363
- #: ../classes/column/user/description.php:14
364
  msgid "Description"
365
  msgstr "Description"
366
 
367
- #: ../classes/column/link/length.php:12
368
  msgid "Length"
369
  msgstr "Longueur"
370
 
371
- #: ../classes/column/link/notes.php:13
372
  msgid "Notes"
373
  msgstr "Notes"
374
 
375
- #: ../classes/column/link/owner.php:12
376
  msgid "Owner"
377
  msgstr "Propriétaire"
378
 
379
- #: ../classes/column/link/rss.php:12
380
  msgid "Rss"
381
  msgstr "Rss"
382
 
383
- #: ../classes/column/link/target.php:12
384
  msgid "Target"
385
  msgstr "Cible"
386
 
387
- #: ../classes/column/media/alternate-text.php:12
388
  msgid "Alt"
389
  msgstr "Texte alternatif"
390
 
391
- #: ../classes/column/media/available-sizes.php:14
392
  msgid "Available Sizes"
393
  msgstr "Tailles disponibles"
394
 
395
- #: ../classes/column/media/available-sizes.php:37
396
  msgid "full size"
397
  msgstr "Taille réelle"
398
 
399
- #: ../classes/column/media/caption.php:12
400
- #: ../classes/column/media/exif-data.php:36
401
  msgid "Caption"
402
  msgstr "Légende"
403
 
404
- #: ../classes/column/media/dimensions.php:12
405
  msgid "Dimensions"
406
  msgstr "Dimensions"
407
 
408
- #: ../classes/column/media/exif-data.php:12
409
  msgid "EXIF data"
410
  msgstr "Données EXIF"
411
 
412
- #: ../classes/column/media/exif-data.php:33
413
  msgid "Aperture"
414
  msgstr "Ouverture"
415
 
416
- #: ../classes/column/media/exif-data.php:34
417
  msgid "Credit"
418
  msgstr "Crédit"
419
 
420
- #: ../classes/column/media/exif-data.php:35
421
  msgid "Camera"
422
  msgstr "Appareil photo"
423
 
424
- #: ../classes/column/media/exif-data.php:37
425
  msgid "Timestamp"
426
  msgstr "Horodateur"
427
 
428
- #: ../classes/column/media/exif-data.php:38
429
  msgid "Copyright EXIF"
430
  msgstr "Copyright EXIF"
431
 
432
- #: ../classes/column/media/exif-data.php:39
433
  msgid "Focal Length"
434
  msgstr "Distance focale"
435
 
436
- #: ../classes/column/media/exif-data.php:40
437
  msgid "ISO"
438
  msgstr "ISO"
439
 
440
- #: ../classes/column/media/exif-data.php:41
441
  msgid "Shutter Speed"
442
  msgstr "Vitesse d'obturation"
443
 
444
- #: ../classes/column/media/exif-data.php:42
445
  msgid "Title"
446
  msgstr "Titre"
447
 
448
- #: ../classes/column/media/file-name.php:12
449
  msgid "File name"
450
  msgstr "Nom du fichier"
451
 
452
- #: ../classes/column/media/file-size.php:12
453
  msgid "File size"
454
  msgstr "Taille du fichier"
455
 
456
- #: ../classes/column/media/full-path.php:12
457
  msgid "Full path"
458
  msgstr "Chemin d'accès complet"
459
 
460
- #: ../classes/column/media/height.php:12
461
  msgid "Height"
462
  msgstr "Hauteur"
463
 
464
- #: ../classes/column/media/mime-type.php:12
465
  msgid "Mime type"
466
  msgstr "Type Mime"
467
 
468
- #: ../classes/column/post/actions.php:57
469
  msgid "Edit this item"
470
  msgstr "Modifier cet élément"
471
 
472
- #: ../classes/column/post/actions.php:58
473
  msgid "Edit this item inline"
474
  msgstr "Modifier cette ligne d'élément"
475
 
476
- #: ../classes/column/post/actions.php:62
477
  msgid "Restore this item from the Trash"
478
  msgstr "Restaurer cet élément de la Corbeille"
479
 
480
- #: ../classes/column/post/actions.php:64
481
  msgid "Move this item to the Trash"
482
  msgstr "Déplacer cet élément vers la Corbeille"
483
 
484
- #: ../classes/column/post/actions.php:64
485
- #: ../classes/column/post/comment-count.php:34
486
- #: ../classes/column/post/status.php:38
487
  msgid "Trash"
488
  msgstr "Corbeille"
489
 
490
- #: ../classes/column/post/actions.php:66
491
  msgid "Delete this item permanently"
492
  msgstr "Supprimer cet élément de façon permanente"
493
 
494
- #: ../classes/column/post/actions.php:71
495
  #, php-format
496
  msgid "Preview &#8220;%s&#8221;"
497
  msgstr "Arperçu &#8220;%s&#8221;"
498
 
499
- #: ../classes/column/post/actions.php:71
500
  msgid "Preview"
501
  msgstr "Arperçu"
502
 
503
- #: ../classes/column/post/actions.php:73
504
  #, php-format
505
  msgid "View &#8220;%s&#8221;"
506
  msgstr "Voir &#8220;%s&#8221;"
507
 
508
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
509
  msgid "View"
510
  msgstr "Voir"
511
 
512
- #: ../classes/column/post/attachment-count.php:12
513
  msgid "No. of Attachments"
514
  msgstr "Nombre de pièces jointes"
515
 
516
- #: ../classes/column/post/attachment.php:12
517
  msgid "Attachment"
518
  msgstr "Pièce jointe"
519
 
520
- #: ../classes/column/post/author-name.php:12
521
  msgid "Display Author As"
522
  msgstr "Afficher l'auteur comme"
523
 
524
- #: ../classes/column/post/author-name.php:34
525
  msgid "Display Name"
526
  msgstr "Afficher nom"
527
 
528
- #: ../classes/column/post/author-name.php:35
529
  msgid "First Name"
530
  msgstr "Nom"
531
 
532
- #: ../classes/column/post/author-name.php:36
533
  msgid "Last Name"
534
  msgstr "Prénom"
535
 
536
- #: ../classes/column/post/author-name.php:37
537
- #: ../classes/column/user/nickname.php:14
538
  msgid "Nickname"
539
  msgstr "Surnom"
540
 
541
- #: ../classes/column/post/author-name.php:38
542
  msgid "User Login"
543
  msgstr "Nom d'utilisateur"
544
 
545
- #: ../classes/column/post/author-name.php:39
546
  msgid "User Email"
547
  msgstr "E-mail"
548
 
549
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
550
  msgid "User ID"
551
  msgstr "ID utilisateur"
552
 
553
- #: ../classes/column/post/author-name.php:41
554
  msgid "First and Last Name"
555
  msgstr "Nom et prénom"
556
 
557
- #: ../classes/column/post/author-name.php:118
558
  msgid "This is the format of the author name."
559
  msgstr "Ceci est le format du nom de l'auteur"
560
 
561
- #: ../classes/column/post/before-moretag.php:14
562
  msgid "Before More Tag"
563
  msgstr "Avant plus de balise"
564
 
565
- #: ../classes/column/post/comment-count.php:14
566
  msgid "Comment count"
567
  msgstr "Nombre de commentaires"
568
 
569
- #: ../classes/column/post/comment-count.php:30
570
  msgid "Total"
571
  msgstr "Total"
572
 
573
- #: ../classes/column/post/comment-count.php:32
574
  msgid "Pending"
575
  msgstr "En attente"
576
 
577
- #: ../classes/column/post/comment-count.php:33
578
  msgid "Spam"
579
  msgstr "Indésirable"
580
 
581
- #: ../classes/column/post/comment-count.php:95
582
- #: ../classes/column/post/comment-status.php:14
583
  msgid "Comment status"
584
  msgstr "Status de commentaire"
585
 
586
- #: ../classes/column/post/comment-count.php:95
587
  msgid "Select which comment status you like to display."
588
  msgstr "Sélectionnez quel commentaire voulez-vous afficher."
589
 
590
- #: ../classes/column/post/featured-image.php:14
591
  msgid "Featured Image"
592
  msgstr "Image à la Une"
593
 
594
- #: ../classes/column/post/formats.php:14
595
  msgid "Post Format"
596
  msgstr "Format de post"
597
 
598
- #: ../classes/column/post/modified.php:14
599
  msgid "Last modified"
600
  msgstr "Dernière modification"
601
 
602
- #: ../classes/column/post/order.php:14
603
  msgid "Page Order"
604
  msgstr "Ordre de page"
605
 
606
- #: ../classes/column/post/page-template.php:12
607
  msgid "Page Template"
608
  msgstr "Modèle de page"
609
 
610
- #: ../classes/column/post/parent.php:12
611
  msgid "Parent"
612
  msgstr "Parent"
613
 
614
- #: ../classes/column/post/permalink.php:12
 
 
 
 
615
  msgid "Permalink"
616
  msgstr "Permalien"
617
 
618
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
 
 
 
 
619
  msgid "Ping status"
620
  msgstr "Status du ping"
621
 
622
- #: ../classes/column/post/roles.php:14
623
  msgid "Roles"
624
  msgstr "Rôles"
625
 
626
- #: ../classes/column/post/slug.php:12
627
  msgid "Slug"
628
  msgstr "Slug"
629
 
630
- #: ../classes/column/post/status.php:14
631
  msgid "Status"
632
  msgstr "Status"
633
 
634
- #: ../classes/column/post/status.php:32
635
  msgid "Published"
636
  msgstr "Publié"
637
 
638
- #: ../classes/column/post/status.php:33
639
  msgid "Draft"
640
  msgstr "Brouillon"
641
 
642
- #: ../classes/column/post/status.php:34
643
  msgid "Scheduled"
644
  msgstr "Planifié"
645
 
646
- #: ../classes/column/post/status.php:35
647
  msgid "Private"
648
  msgstr "Privé"
649
 
650
- #: ../classes/column/post/status.php:36
651
  msgid "Pending Review"
652
  msgstr "Avis en attente"
653
 
654
- #: ../classes/column/post/status.php:37
655
  msgid "Auto Draft"
656
  msgstr "Projet automatique"
657
 
658
- #: ../classes/column/post/sticky.php:14
659
  msgid "Sticky"
660
  msgstr "Attaché"
661
 
662
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
663
  msgid "Taxonomy"
664
  msgstr "Taxonomy"
665
 
666
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
667
  msgid "Comment Count"
668
  msgstr "Nombre de commentaires"
669
 
670
- #: ../classes/column/user/first-name.php:14
671
  msgid "First name"
672
  msgstr "Prénom"
673
 
674
- #: ../classes/column/user/last-name.php:14
675
  msgid "Last name"
676
  msgstr "Nom"
677
 
678
- #: ../classes/column/user/post-count.php:14
679
  msgid "Post Count"
680
  msgstr "Nombre d'article"
681
 
682
- #: ../classes/column/user/post-count.php:99
683
  msgid "Post Type"
684
  msgstr "Type d'article"
685
 
686
- #: ../classes/column/user/registered.php:14
687
  msgid "Registered"
688
  msgstr "Inscrit"
689
 
690
- #: ../classes/column/user/url.php:14
691
  msgid "Url"
692
  msgstr "URL"
693
 
694
- #: ../classes/settings.php:97
695
  msgid "Add-on successfully activated."
696
  msgstr "Module correctement activé."
697
 
698
- #: ../classes/settings.php:100
699
  msgid "Add-on successfully deactivated."
700
  msgstr "Module correctement désactivé."
701
 
702
- #: ../classes/settings.php:155
703
  msgid "Admin Columns Settings"
704
  msgstr "Réglages Admin Columns"
705
 
706
- #: ../classes/settings.php:155 ../classes/settings.php:619
707
- #: ../classes/upgrade.php:83
708
  msgid "Admin Columns"
709
  msgstr "Admin Columns"
710
 
711
- #: ../classes/settings.php:203
712
  #, php-format
713
  msgid "%s column is already present and can not be duplicated."
714
  msgstr ""
715
 
716
- #: ../classes/settings.php:256
717
  msgid "Default settings succesfully restored."
718
  msgstr "Les paramètres par défaut ont été restaurés avec succès."
719
 
720
- #: ../classes/settings.php:273
721
  msgid "Overview"
722
  msgstr "Résumé"
723
 
724
- #: ../classes/settings.php:276
725
- msgid ""
726
- "This plugin is for adding and removing additional columns to the "
727
- "administration screens for post(types), pages, media library, comments, "
728
- "links and users. Change the column's label and reorder them."
729
- msgstr ""
730
- "Cette extension permet l'ajout et la suppression de colonnes additionnelles "
731
- "dans les écrans d'administration pour les articles (types), pages, librairie "
732
- "des médias, commentaires, liens et usagers. Modifier le libellé des colonnes "
733
- "et réarranger leur ordre à votre guise."
734
 
735
- #: ../classes/settings.php:279
736
  msgid "Basics"
737
  msgstr "Basiques"
738
 
739
- #: ../classes/settings.php:281
740
  msgid "Change order"
741
  msgstr "Modifier l'ordre"
742
 
743
- #: ../classes/settings.php:282
744
- msgid ""
745
- "By dragging the columns you can change the order which they will appear in."
746
- msgstr ""
747
- "En déplaçant les colonnes vous modifierez ainsi l'ordre dans lequel ils "
748
- "apparaissent."
749
 
750
- #: ../classes/settings.php:283
751
  msgid "Change label"
752
  msgstr "Modifier le label"
753
 
754
- #: ../classes/settings.php:284
755
- msgid ""
756
- "By clicking on the triangle you will see the column options. Here you can "
757
- "change each label of the columns heading."
758
  msgstr ""
759
 
760
- #: ../classes/settings.php:285
761
  msgid "Change column width"
762
  msgstr "Modifier la largeur de colonne"
763
 
764
- #: ../classes/settings.php:286
765
- msgid ""
766
- "By clicking on the triangle you will see the column options. By using the "
767
- "draggable slider you can set the width of the columns in percentages."
768
  msgstr ""
769
 
770
- #: ../classes/settings.php:292
771
  msgid "'Custom Field' column"
772
  msgstr "Colonne 'Champ personnalisé'"
773
 
774
- #: ../classes/settings.php:293
775
- msgid ""
776
- "The custom field colum uses the custom fields from posts and users. There "
777
- "are 10 types which you can set."
778
  msgstr ""
779
 
780
- #: ../classes/settings.php:295
781
- msgid ""
782
- "Value: Can be either a string or array. Arrays will be flattened and values "
783
- "are seperated by a ',' comma."
784
  msgstr ""
785
 
786
- #: ../classes/settings.php:296
787
- msgid ""
788
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
789
- "comma )."
790
  msgstr ""
791
 
792
- #: ../classes/settings.php:297
793
  msgid "Value: This will show the first 20 words of the Post content."
794
  msgstr "Utile : Ceci affiche les 20 premiers mots de l'article."
795
 
796
- #: ../classes/settings.php:298
797
- msgid ""
798
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
799
- msgstr ""
800
- "Utile : Ce devrait être un tableau. Ce sera n'importe quel tableau "
801
- "(multidimensionnel) flottant."
802
 
803
- #: ../classes/settings.php:299
804
- msgid ""
805
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
806
- "for sorting, so you can sort your posts on numeric (custom field) values."
807
  msgstr ""
808
 
809
- #: ../classes/settings.php:300
810
  #, php-format
811
- msgid ""
812
- "Value: Can be unix time stamp or a date format as described in the <a "
813
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
814
- "href='%s'>general settings</a> page."
815
  msgstr ""
816
 
817
- #: ../classes/settings.php:301
818
  msgid "Post Titles"
819
  msgstr "Titre de l'article"
820
 
821
- #: ../classes/settings.php:301
822
  msgid "Value: can be one or more Post ID's (seperated by ',')."
823
  msgstr ""
824
 
825
- #: ../classes/settings.php:302
826
  msgid "Usernames"
827
  msgstr "Noms d'utilisateurs"
828
 
829
- #: ../classes/settings.php:302
830
  msgid "Value: can be one or more User ID's (seperated by ',')."
831
  msgstr ""
832
 
833
- #: ../classes/settings.php:303
834
  msgid "Checkmark"
835
  msgstr "Cocher"
836
 
837
- #: ../classes/settings.php:303
838
  msgid "Value: should be a 1 (one) or 0 (zero)."
839
  msgstr "Utile : Peut être la valeur un (1) ou zéro (0)."
840
 
841
- #: ../classes/settings.php:304
842
  msgid "Value: hex value color, such as #808080."
843
  msgstr "Utile : code couleur en hexadécimal, comme #808080."
844
 
845
- #: ../classes/settings.php:305
846
- msgid ""
847
- "Value: Can be either a string or array. This will display a count of the "
848
- "number of times the meta key is used by the item."
849
  msgstr ""
850
 
851
- #: ../classes/settings.php:399
852
  msgid "Welcome to Admin Columns"
853
  msgstr "Bienvenue dans Admin Columns"
854
 
855
- #: ../classes/settings.php:402
856
  msgid "Thank you for updating to the latest version!"
857
  msgstr "Merci d'avoir mis à jour vers la dernière version!"
858
 
859
- #: ../classes/settings.php:403
860
- msgid ""
861
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
862
- "like it."
863
  msgstr ""
864
 
865
- #: ../classes/settings.php:408
866
  msgid "What’s New"
867
  msgstr "Quoi de neuf"
868
 
869
- #: ../classes/settings.php:409
870
  msgid "Changelog"
871
  msgstr "Modifications"
872
 
873
- #: ../classes/settings.php:414
874
- msgid "Addons"
875
- msgstr "Modules complémentaires"
876
-
877
- #: ../classes/settings.php:416
878
- msgid ""
879
- "Addons are now activated by downloading and installing individual plugins. "
880
- "Although these plugins will not be hosted on the wordpress.org repository, "
881
- "each Add-on will continue to receive updates in the usual way."
882
- msgstr ""
883
-
884
- #: ../classes/settings.php:419
885
- msgid ""
886
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
887
- msgstr ""
888
-
889
- #: ../classes/settings.php:422
890
- msgid "Addons are seperate plugins which need to be downloaded."
891
- msgstr ""
892
-
893
- #: ../classes/settings.php:422
894
- msgid "Download your Addons"
895
- msgstr "Télécharger vos modules"
896
-
897
- #: ../classes/settings.php:428
898
- msgid "This website does not use add-ons"
899
- msgstr "Ce site internet n'utilise pas de modules"
900
-
901
- #: ../classes/settings.php:428
902
- msgid "See our website for Admin Columns Pro."
903
- msgstr ""
904
-
905
- #: ../classes/settings.php:435
906
  msgid "Important"
907
  msgstr "Important"
908
 
909
- #: ../classes/settings.php:437
910
  msgid "Database Changes"
911
  msgstr "Changements dans la base de données"
912
 
913
- #: ../classes/settings.php:438
914
- msgid ""
915
- "The database has been changed between versions 1 and 2. But we made sure you "
916
- "can still roll back to version 1x without any issues."
917
- msgstr ""
918
- "La base de données à été modifiée entre les versions 1 et 2. Mais nous "
919
- "sommes sûr que vous pouvez retourner à la version 1x sans aucun problème."
920
 
921
- #: ../classes/settings.php:441
922
  msgid "Make sure you backup your database and then click"
923
  msgstr "Assurez-vous de sauvegarder votre base de données et cliquez "
924
 
925
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
926
  msgid "Upgrade Database"
927
  msgstr "Mettre à jour la base de données"
928
 
929
- #: ../classes/settings.php:444
930
  msgid "Potential Issues"
931
  msgstr "Problèmes potentiels"
932
 
933
- #: ../classes/settings.php:445
934
- msgid ""
935
- "Do to the sizable refactoring the code, surounding Addons and action/"
936
- "filters, your website may not operate correctly. It is important that you "
937
- "read the full"
938
  msgstr ""
939
 
940
- #: ../classes/settings.php:445
941
  msgid "Migrating from v1 to v2"
942
  msgstr "Migration de la v1 à la v2"
943
 
944
- #: ../classes/settings.php:445
945
  msgid "guide to view the full list of changes."
946
  msgstr "guide pour voir la liste complète des modifications."
947
 
948
- #: ../classes/settings.php:445
949
  #, php-format
950
- msgid ""
951
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
952
- "can fix it in the next release."
953
  msgstr ""
954
 
955
- #: ../classes/settings.php:448
956
  msgid "Important!"
957
  msgstr "Important!"
958
 
959
- #: ../classes/settings.php:448
960
- msgid ""
961
- "If you updated the Admin Columns plugin without prior knowledge of such "
962
- "changes, Please roll back to the latest"
963
  msgstr ""
964
 
965
- #: ../classes/settings.php:448
966
  msgid "version 1"
967
  msgstr "version 1"
968
 
969
- #: ../classes/settings.php:448
970
  msgid "of this plugin."
971
  msgstr "de ce plugin."
972
 
973
- #: ../classes/settings.php:454
974
  msgid "Changelog for"
975
  msgstr "Nouveautés pour"
976
 
977
- #: ../classes/settings.php:469
978
  msgid "Learn more"
979
  msgstr "En savoir plus"
980
 
981
- #: ../classes/settings.php:479
982
  msgid "Start using Admin Columns"
983
  msgstr "Commencer à utiliser Admin Columns"
984
 
985
- #: ../classes/settings.php:522
986
  msgid "General Settings"
987
  msgstr "Réglages généraux"
988
 
989
- #: ../classes/settings.php:523
990
  msgid "Customize your Admin Columns settings."
991
  msgstr "Personnalisez vos réglages Admin Columns."
992
 
993
- #: ../classes/settings.php:546
994
- msgid ""
995
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
996
  msgstr ""
997
 
998
- #: ../classes/settings.php:553 ../classes/settings.php:682
999
  msgid "Save"
1000
  msgstr "Enregistrer"
1001
 
1002
- #: ../classes/settings.php:593
1003
  msgid "Restore Settings"
1004
  msgstr "Rétablir les réglages"
1005
 
1006
- #: ../classes/settings.php:594
1007
  msgid "This will delete all column settings and restore the default settings."
1008
- msgstr ""
1009
- "Cette opération va supprimer tous les paramètres de colonnes et restaure "
1010
- "tous les paramètres par défaut."
1011
 
1012
- #: ../classes/settings.php:600
1013
  msgid "Restore default settings"
1014
  msgstr "Restaurer les paramètres par défaut"
1015
 
1016
- #: ../classes/settings.php:600
1017
- msgid ""
1018
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1019
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1020
- msgstr ""
1021
- "Attention! Tous les données des colonnes d'administration seront supprimées. "
1022
- "Cela n'est pas irréversible. \\'OK\\' supprimer, \\'Annuler\\' arrêter"
1023
 
1024
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1025
  msgid "Settings"
1026
  msgstr "Réglages"
1027
 
1028
- #: ../classes/settings.php:621
1029
  msgid "Add-ons"
1030
  msgstr "Modules"
1031
 
1032
- #: ../classes/settings.php:647
1033
  msgid "Posttypes"
1034
  msgstr "Type d'article"
1035
 
1036
- #: ../classes/settings.php:648
1037
  msgid "Others"
1038
  msgstr "Autres"
1039
 
1040
- #: ../classes/settings.php:649
1041
  msgid "Taxonomies"
1042
  msgstr "Taxonomie"
1043
 
1044
- #: ../classes/settings.php:668
1045
  #, php-format
1046
- msgid ""
1047
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1048
- "be edited in the admin panel."
1049
  msgstr ""
1050
 
1051
- #: ../classes/settings.php:678
1052
  msgid "Store settings"
1053
  msgstr "Enregistrer les réglages"
1054
 
1055
- #: ../classes/settings.php:682
1056
  msgid "Update"
1057
  msgstr "Mettre à jour"
1058
 
1059
- #: ../classes/settings.php:686
1060
  #, php-format
1061
- msgid ""
1062
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1063
- "\\' to delete, \\'Cancel\\' to stop"
1064
  msgstr ""
1065
 
1066
- #: ../classes/settings.php:687
1067
  msgid "columns"
1068
  msgstr "colonnes"
1069
 
1070
- #: ../classes/settings.php:701
1071
  msgid "Get Admin Columns Pro"
1072
  msgstr ""
1073
 
1074
- #: ../classes/settings.php:705
1075
  msgid "Add Sorting"
1076
  msgstr "Ajouter le tri"
1077
 
1078
- #: ../classes/settings.php:706
1079
  msgid "Add Filtering"
1080
  msgstr "Ajouter le filtrage"
1081
 
1082
- #: ../classes/settings.php:707
1083
  msgid "Add Import/Export"
1084
  msgstr "Ajouter l'import/export"
1085
 
1086
- #: ../classes/settings.php:708
1087
  msgid "Add Direct Editing"
1088
  msgstr "Ajouter la modification directe"
1089
 
1090
- #: ../classes/settings.php:711
1091
  #, php-format
1092
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1093
  msgstr ""
1094
 
 
 
 
 
 
 
 
 
 
 
 
 
1095
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1096
  msgid "Support"
1097
  msgstr "Aide"
1098
 
1099
- #: ../classes/settings.php:745
1100
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1101
  msgstr ""
1102
 
1103
- #: ../classes/settings.php:748
1104
  #, php-format
1105
- msgid ""
1106
- "For full documentation, bug reports, feature suggestions and other tips <a "
1107
- "href='%s'>visit the Admin Columns website</a>"
1108
  msgstr ""
1109
 
1110
- #: ../classes/settings.php:777
1111
  msgid "Drag and drop to reorder"
1112
  msgstr "Vous pouvez modifier l'ordre."
1113
 
1114
- #: ../classes/settings.php:780
1115
  msgid "Add Column"
1116
  msgstr "Ajouter une colonne."
1117
 
1118
- #: ../classes/settings.php:853
1119
  msgid "Active"
1120
  msgstr "Actif"
1121
 
1122
- #: ../classes/settings.php:854
1123
  msgid "Deactivate"
1124
  msgstr "Désactiver"
1125
 
1126
- #: ../classes/settings.php:861
1127
  msgid "Installed"
1128
  msgstr "Installé"
1129
 
1130
- #: ../classes/settings.php:862
1131
  msgid "Activate"
1132
  msgstr "Activer"
1133
 
1134
- #: ../classes/settings.php:876
1135
  msgid "Download & Install"
1136
  msgstr "Télécharger & Installer"
1137
 
1138
- #: ../classes/settings.php:881
1139
  msgid "Get this add-on"
1140
  msgstr "Obtenir ce module"
1141
 
1142
- #: ../classes/storage_model.php:207
1143
  msgid "settings succesfully restored."
1144
  msgstr "les paramètres ont été restaurés avec succès."
1145
 
1146
- #: ../classes/storage_model.php:222
1147
  msgid "No columns settings available."
1148
  msgstr "Aucun paramètre de colonne disponible."
1149
 
1150
- #: ../classes/storage_model.php:243
1151
  #, php-format
1152
  msgid "You are trying to store the same settings for %s."
1153
  msgstr "Vous essayez de conserver les mêmes paramètres pour %s."
1154
 
1155
- #: ../classes/storage_model.php:247
1156
  #, php-format
1157
  msgid "Settings for %s updated succesfully."
1158
  msgstr "Les paramètres pour %s correctement mis à jour."
@@ -1169,62 +1129,64 @@ msgstr "Liens"
1169
  msgid "Users"
1170
  msgstr "Utilisateurs"
1171
 
1172
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
1173
  msgid "Upgrade"
1174
  msgstr "Mettre à jour"
1175
 
1176
- #: ../classes/upgrade.php:84
1177
  msgid "requires a database upgrade"
1178
  msgstr "nécessite une mise à jour de la base de données"
1179
 
1180
- #: ../classes/upgrade.php:87
1181
  msgid "why?"
1182
  msgstr "pourquoi?"
1183
 
1184
- #: ../classes/upgrade.php:88
1185
  msgid "Please"
1186
  msgstr "Veuillez"
1187
 
1188
- #: ../classes/upgrade.php:89
1189
  msgid "backup your database"
1190
  msgstr "sauvegarder votre base de données"
1191
 
1192
- #: ../classes/upgrade.php:90
1193
  msgid "then click"
1194
  msgstr "puis cliquer"
1195
 
1196
- #: ../classes/upgrade.php:298
1197
  msgid "Migrating Column Settings"
1198
  msgstr "Migration des paramètres de colonne"
1199
 
1200
- #: ../classes/upgrade.php:334
1201
  msgid "No Upgrade Required"
1202
  msgstr "Aucune mise à jour n'est nécessaire."
1203
 
1204
- #: ../classes/upgrade.php:335
1205
  msgid "Return to welcome screen."
1206
  msgstr "Retour à l'écran d'accueil."
1207
 
1208
- #: ../classes/upgrade.php:353
1209
  msgid "Upgrade Complete!"
1210
  msgstr "Mise à jour terminée!"
1211
 
1212
- #: ../classes/upgrade.php:353
1213
  msgid "Return to settings."
1214
  msgstr "Retour aux réglages."
1215
 
1216
- #: ../classes/upgrade.php:354
1217
  msgid "Error"
1218
  msgstr "Erreur"
1219
 
1220
- #: ../classes/upgrade.php:355
1221
- msgid ""
1222
- "Sorry. Something went wrong during the upgrade process. Please report this "
1223
- "on the support forum."
1224
- msgstr ""
1225
- "Désoler. Quelque chose ne c'est pas bien déroulé durant la mise à jour. "
1226
- "Veuillez reporter cela au support du forum."
1227
 
1228
- #: ../codepress-admin-columns.php:439
1229
  msgid "Edit columns"
1230
  msgstr "Éditer les colonnes"
8
  msgstr ""
9
  "Project-Id-Version: Admin Columns\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
12
+ "PO-Revision-Date: 2014-12-10 17:24+0100\n"
13
  "Last-Translator: Codepress <info@codepress.nl>\n"
14
+ "Language-Team: French (France) (http://www.transifex.com/projects/p/admin-columns/language/fr_FR/)\n"
 
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Language: fr_FR\n"
19
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20
+ "X-Generator: Poedit 1.7.1\n"
21
  "X-Poedit-Basepath: .\n"
22
  "X-Poedit-KeywordsList: __;_e\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
  "X-Poedit-SearchPath-1: ..\n"
26
 
27
+ #: ../classes/addons.php:110
28
  msgid "Third party plugin integration"
29
  msgstr "Troisième parties d'intégration du module complémentaire"
30
 
31
+ #: ../classes/addons.php:135
32
  msgid "Advanced Custom Fields"
33
  msgstr "Personnalisation avancée de champ"
34
 
35
+ #: ../classes/addons.php:136
36
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
37
+ msgstr ""
38
+
39
+ #: ../classes/addons.php:141
40
+ msgid "WooCommerce"
41
+ msgstr ""
42
+
43
+ #: ../classes/addons.php:142
44
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
45
  msgstr ""
46
 
47
+ #: ../classes/column.php:500
48
  msgid "Thumbnail"
49
  msgstr "Vignette"
50
 
51
+ #: ../classes/column.php:501
52
  msgid "Medium"
53
  msgstr "Moyen"
54
 
55
+ #: ../classes/column.php:502
56
  msgid "Large"
57
  msgstr "Large"
58
 
59
+ #: ../classes/column.php:503
60
  msgid "Full"
61
  msgstr "Pleine taille"
62
 
63
+ #: ../classes/column.php:863
64
  msgid "Date Format"
65
  msgstr "Format de date"
66
 
67
+ #: ../classes/column.php:864
68
  msgid "This will determine how the date will be displayed."
69
  msgstr "Ceci déterminera l'affichage de la date."
70
 
71
+ #: ../classes/column.php:870
72
  msgid "Example:"
73
  msgstr "Exemple :"
74
 
75
+ #: ../classes/column.php:872
76
  #, php-format
77
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
78
+ msgstr "Laisser vide pour utiliser le format spécifié par WordPress, modifier votre <a href=\"%s\">votre format de date par défaut ici</a>."
 
 
 
 
79
 
80
+ #: ../classes/column.php:873
81
  msgid "Documentation on date and time formatting."
82
  msgstr "Documentation sur le formatage de la date et du temps."
83
 
84
+ #: ../classes/column.php:887
85
  msgid "Excerpt length"
86
  msgstr "Longueur de l'extrait"
87
 
88
+ #: ../classes/column.php:888
89
  msgid "Number of words"
90
  msgstr "Nombre de mots"
91
 
92
+ #: ../classes/column.php:906
93
  msgid "Preview size"
94
  msgstr "Taille de prévisualisation"
95
 
96
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
97
  msgid "Custom"
98
  msgstr "Personnalisé"
99
 
100
+ #: ../classes/column.php:926
101
  msgid "width"
102
  msgstr "largeur"
103
 
104
+ #: ../classes/column.php:929
105
  msgid "height"
106
  msgstr "hauteur"
107
 
108
+ #: ../classes/column.php:943
109
  msgid "Before"
110
  msgstr "Avant"
111
 
112
+ #: ../classes/column.php:943
113
  msgid "This text will appear before the custom field value."
114
  msgstr "Ce texte apparaîtra avant la valeur du champ personnalisé."
115
 
116
+ #: ../classes/column.php:949
117
  msgid "After"
118
  msgstr "Après"
119
 
120
+ #: ../classes/column.php:949
121
  msgid "This text will appear after the custom field value."
122
  msgstr "Ce texte apparaîtra après la valeur du champ personnalisé."
123
 
124
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
 
 
125
  msgid "Edit"
126
  msgstr "Modifier"
127
 
128
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
129
  msgid "Remove"
130
  msgstr "Retirer"
131
 
132
+ #: ../classes/column.php:1062
133
  msgid "Type"
134
  msgstr "Type"
135
 
136
+ #: ../classes/column.php:1062
137
  msgid "Choose a column type."
138
  msgstr "Choisissez le type de colonne."
139
 
140
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
141
  msgid "ID"
142
  msgstr "ID"
143
 
144
+ #: ../classes/column.php:1072
145
  msgid "Label"
146
  msgstr "Libellé"
147
 
148
+ #: ../classes/column.php:1072
149
  msgid "This is the name which will appear as the column header."
150
  msgstr "Ceci est le nom qui apparaitra comme l'entête de colonne."
151
 
152
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
153
  msgid "Width"
154
  msgstr "Largeur"
155
 
156
+ #: ../classes/column.php:1081 ../classes/column.php:1082
157
  msgid "default"
158
  msgstr "Par défaut"
159
 
160
+ #: ../classes/column/acf-placeholder.php:19
161
  msgid "ACF Field"
162
  msgstr "Champ ACF"
163
 
164
  #: ../classes/column/acf-placeholder.php:32
165
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
166
  msgstr ""
 
 
167
 
168
  #: ../classes/column/acf-placeholder.php:35
169
  #, php-format
170
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
 
 
171
  msgstr ""
172
 
173
  #: ../classes/column/acf-placeholder.php:38
174
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
 
 
 
175
  msgstr ""
176
 
177
+ #: ../classes/column/acf-placeholder.php:44
178
  msgid "Find out more"
179
  msgstr "En savoir plus"
180
 
181
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20 ../classes/column/user/actions.php:19
 
 
 
182
  msgid "Actions"
183
  msgstr "Actions"
184
 
185
+ #: ../classes/column/actions.php:87
186
+ msgid "Use icons?"
187
+ msgstr ""
188
+
189
+ #: ../classes/column/actions.php:87
190
+ msgid "Use icons instead of text for displaying the actions."
191
+ msgstr ""
192
+
193
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
194
+ msgid "Yes"
195
+ msgstr ""
196
+
197
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
198
+ msgid "No"
199
+ msgstr ""
200
+
201
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
202
  msgid "Unapprove"
203
  msgstr "Désapprouver"
204
 
205
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
206
  msgid "Approve"
207
  msgstr "Approuver"
208
 
209
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
210
  msgid "Restore"
211
  msgstr "Restaurer"
212
 
213
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
214
  msgid "Delete Permanently"
215
  msgstr "Supprimer définitivement"
216
 
217
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
218
  msgid "Quick&nbsp;Edit"
219
  msgstr "Rapide&nbsp;Modification"
220
 
221
+ #: ../classes/column/comment/actions.php:101
222
  msgid "Reply"
223
  msgstr "Répondre"
224
 
225
+ #: ../classes/column/comment/agent.php:19
226
  msgid "Agent"
227
  msgstr "Agent"
228
 
229
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
230
  msgid "Approved"
231
  msgstr "Approuvé"
232
 
233
+ #: ../classes/column/comment/author-avatar.php:19
234
  msgid "Avatar"
235
  msgstr "Avatar"
236
 
237
+ #: ../classes/column/comment/author-email.php:19
238
  msgid "Author email"
239
  msgstr "Courriel de l'auteur"
240
 
241
+ #: ../classes/column/comment/author-ip.php:19
242
  msgid "Author IP"
243
  msgstr "IP de l'auteur"
244
 
245
+ #: ../classes/column/comment/author-url.php:19
246
  msgid "Author url"
247
  msgstr "URL de l'auteur"
248
 
249
+ #: ../classes/column/comment/author.php:19
250
  msgid "Author"
251
  msgstr "Auteur"
252
 
253
+ #: ../classes/column/comment/date-gmt.php:19
254
  msgid "Date GMT"
255
  msgstr "Date GMT"
256
 
257
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
258
  #, php-format
259
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
260
  msgstr "Soumis le<a href=\"%1$s\">%2$s à %3$s</a>"
261
 
262
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
263
  msgid "Date"
264
  msgstr "Date"
265
 
266
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
267
  msgid "Excerpt"
268
  msgstr "Extrait"
269
 
270
+ #: ../classes/column/comment/reply-to.php:19
271
  msgid "In Reply To"
272
  msgstr "En réponse à"
273
 
274
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
275
  msgid "Word count"
276
  msgstr "Nombre de mots"
277
 
278
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
279
  msgid "Custom Field"
280
  msgstr "Champ personnalisé"
281
 
282
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
283
  msgid "Default"
284
  msgstr "Par défaut"
285
 
286
+ #: ../classes/column/custom-field.php:95
287
  msgid "Checkmark (true/false)"
288
  msgstr "Cocher (vrai/faux)"
289
 
290
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
291
  msgid "Color"
292
  msgstr "Couleur"
293
 
294
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
295
  msgid "Counter"
296
  msgstr "Compteur"
297
 
298
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
299
  msgid "Image"
300
  msgstr "Image"
301
 
302
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
303
  msgid "Media Library"
304
  msgstr "Bibliothèque des médias"
305
 
306
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
307
  msgid "Multiple Values"
308
  msgstr "Valeurs multiples"
309
 
310
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
311
  msgid "Numeric"
312
  msgstr "Numérique"
313
 
314
+ #: ../classes/column/custom-field.php:104
315
  msgid "Post Title (Post ID's)"
316
  msgstr "Titre du post (Post ID)"
317
 
318
+ #: ../classes/column/custom-field.php:105
319
  msgid "Username (User ID's)"
320
  msgstr "Nom d'utilisateur (ID d'utilisateur)"
321
 
322
+ #: ../classes/column/custom-field.php:356
323
  msgid "Select your custom field."
324
  msgstr "Sélectionnez votre champ personnalisé."
325
 
326
+ #: ../classes/column/custom-field.php:366
327
  msgid "No custom fields available."
328
  msgstr "Aucun champ personnalisé disponible."
329
 
330
+ #: ../classes/column/custom-field.php:373
331
  msgid "Field Type"
332
  msgstr "Type de champ"
333
 
334
+ #: ../classes/column/custom-field.php:373
335
  msgid "This will determine how the value will be displayed."
336
  msgstr "Ceci va déterminer la manière dont la valeur sera affichée."
337
 
338
+ #: ../classes/column/link/actions.php:49
339
  #, php-format
340
  msgid ""
341
  "You are about to delete this link '%s'\n"
342
  " 'Cancel' to stop, 'OK' to delete."
343
  msgstr ""
344
 
345
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
346
  msgid "Delete"
347
  msgstr "Supprimer"
348
 
349
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
350
  msgid "Description"
351
  msgstr "Description"
352
 
353
+ #: ../classes/column/link/length.php:19
354
  msgid "Length"
355
  msgstr "Longueur"
356
 
357
+ #: ../classes/column/link/notes.php:19
358
  msgid "Notes"
359
  msgstr "Notes"
360
 
361
+ #: ../classes/column/link/owner.php:19
362
  msgid "Owner"
363
  msgstr "Propriétaire"
364
 
365
+ #: ../classes/column/link/rss.php:19
366
  msgid "Rss"
367
  msgstr "Rss"
368
 
369
+ #: ../classes/column/link/target.php:19
370
  msgid "Target"
371
  msgstr "Cible"
372
 
373
+ #: ../classes/column/media/alternate-text.php:19
374
  msgid "Alt"
375
  msgstr "Texte alternatif"
376
 
377
+ #: ../classes/column/media/available-sizes.php:20
378
  msgid "Available Sizes"
379
  msgstr "Tailles disponibles"
380
 
381
+ #: ../classes/column/media/available-sizes.php:40
382
  msgid "full size"
383
  msgstr "Taille réelle"
384
 
385
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
386
  msgid "Caption"
387
  msgstr "Légende"
388
 
389
+ #: ../classes/column/media/dimensions.php:19
390
  msgid "Dimensions"
391
  msgstr "Dimensions"
392
 
393
+ #: ../classes/column/media/exif-data.php:19
394
  msgid "EXIF data"
395
  msgstr "Données EXIF"
396
 
397
+ #: ../classes/column/media/exif-data.php:38
398
  msgid "Aperture"
399
  msgstr "Ouverture"
400
 
401
+ #: ../classes/column/media/exif-data.php:39
402
  msgid "Credit"
403
  msgstr "Crédit"
404
 
405
+ #: ../classes/column/media/exif-data.php:40
406
  msgid "Camera"
407
  msgstr "Appareil photo"
408
 
409
+ #: ../classes/column/media/exif-data.php:42
410
  msgid "Timestamp"
411
  msgstr "Horodateur"
412
 
413
+ #: ../classes/column/media/exif-data.php:43
414
  msgid "Copyright EXIF"
415
  msgstr "Copyright EXIF"
416
 
417
+ #: ../classes/column/media/exif-data.php:44
418
  msgid "Focal Length"
419
  msgstr "Distance focale"
420
 
421
+ #: ../classes/column/media/exif-data.php:45
422
  msgid "ISO"
423
  msgstr "ISO"
424
 
425
+ #: ../classes/column/media/exif-data.php:46
426
  msgid "Shutter Speed"
427
  msgstr "Vitesse d'obturation"
428
 
429
+ #: ../classes/column/media/exif-data.php:47
430
  msgid "Title"
431
  msgstr "Titre"
432
 
433
+ #: ../classes/column/media/file-name.php:19
434
  msgid "File name"
435
  msgstr "Nom du fichier"
436
 
437
+ #: ../classes/column/media/file-size.php:19
438
  msgid "File size"
439
  msgstr "Taille du fichier"
440
 
441
+ #: ../classes/column/media/full-path.php:19
442
  msgid "Full path"
443
  msgstr "Chemin d'accès complet"
444
 
445
+ #: ../classes/column/media/height.php:19
446
  msgid "Height"
447
  msgstr "Hauteur"
448
 
449
+ #: ../classes/column/media/mime-type.php:19
450
  msgid "Mime type"
451
  msgstr "Type Mime"
452
 
453
+ #: ../classes/column/post/actions.php:31
454
  msgid "Edit this item"
455
  msgstr "Modifier cet élément"
456
 
457
+ #: ../classes/column/post/actions.php:34
458
  msgid "Edit this item inline"
459
  msgstr "Modifier cette ligne d'élément"
460
 
461
+ #: ../classes/column/post/actions.php:39
462
  msgid "Restore this item from the Trash"
463
  msgstr "Restaurer cet élément de la Corbeille"
464
 
465
+ #: ../classes/column/post/actions.php:41
466
  msgid "Move this item to the Trash"
467
  msgstr "Déplacer cet élément vers la Corbeille"
468
 
469
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
470
  msgid "Trash"
471
  msgstr "Corbeille"
472
 
473
+ #: ../classes/column/post/actions.php:43
474
  msgid "Delete this item permanently"
475
  msgstr "Supprimer cet élément de façon permanente"
476
 
477
+ #: ../classes/column/post/actions.php:48
478
  #, php-format
479
  msgid "Preview &#8220;%s&#8221;"
480
  msgstr "Arperçu &#8220;%s&#8221;"
481
 
482
+ #: ../classes/column/post/actions.php:48
483
  msgid "Preview"
484
  msgstr "Arperçu"
485
 
486
+ #: ../classes/column/post/actions.php:50
487
  #, php-format
488
  msgid "View &#8220;%s&#8221;"
489
  msgstr "Voir &#8220;%s&#8221;"
490
 
491
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
492
  msgid "View"
493
  msgstr "Voir"
494
 
495
+ #: ../classes/column/post/attachment-count.php:19
496
  msgid "No. of Attachments"
497
  msgstr "Nombre de pièces jointes"
498
 
499
+ #: ../classes/column/post/attachment.php:19
500
  msgid "Attachment"
501
  msgstr "Pièce jointe"
502
 
503
+ #: ../classes/column/post/author-name.php:20
504
  msgid "Display Author As"
505
  msgstr "Afficher l'auteur comme"
506
 
507
+ #: ../classes/column/post/author-name.php:40
508
  msgid "Display Name"
509
  msgstr "Afficher nom"
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
  msgid "First Name"
513
  msgstr "Nom"
514
 
515
+ #: ../classes/column/post/author-name.php:42
516
  msgid "Last Name"
517
  msgstr "Prénom"
518
 
519
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
520
  msgid "Nickname"
521
  msgstr "Surnom"
522
 
523
+ #: ../classes/column/post/author-name.php:44
524
  msgid "User Login"
525
  msgstr "Nom d'utilisateur"
526
 
527
+ #: ../classes/column/post/author-name.php:45
528
  msgid "User Email"
529
  msgstr "E-mail"
530
 
531
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
532
  msgid "User ID"
533
  msgstr "ID utilisateur"
534
 
535
+ #: ../classes/column/post/author-name.php:47
536
  msgid "First and Last Name"
537
  msgstr "Nom et prénom"
538
 
539
+ #: ../classes/column/post/author-name.php:124
540
  msgid "This is the format of the author name."
541
  msgstr "Ceci est le format du nom de l'auteur"
542
 
543
+ #: ../classes/column/post/before-moretag.php:19
544
  msgid "Before More Tag"
545
  msgstr "Avant plus de balise"
546
 
547
+ #: ../classes/column/post/comment-count.php:20
548
  msgid "Comment count"
549
  msgstr "Nombre de commentaires"
550
 
551
+ #: ../classes/column/post/comment-count.php:34
552
  msgid "Total"
553
  msgstr "Total"
554
 
555
+ #: ../classes/column/post/comment-count.php:36
556
  msgid "Pending"
557
  msgstr "En attente"
558
 
559
+ #: ../classes/column/post/comment-count.php:37
560
  msgid "Spam"
561
  msgstr "Indésirable"
562
 
563
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
564
  msgid "Comment status"
565
  msgstr "Status de commentaire"
566
 
567
+ #: ../classes/column/post/comment-count.php:99
568
  msgid "Select which comment status you like to display."
569
  msgstr "Sélectionnez quel commentaire voulez-vous afficher."
570
 
571
+ #: ../classes/column/post/featured-image.php:19
572
  msgid "Featured Image"
573
  msgstr "Image à la Une"
574
 
575
+ #: ../classes/column/post/formats.php:19
576
  msgid "Post Format"
577
  msgstr "Format de post"
578
 
579
+ #: ../classes/column/post/modified.php:19
580
  msgid "Last modified"
581
  msgstr "Dernière modification"
582
 
583
+ #: ../classes/column/post/order.php:19
584
  msgid "Page Order"
585
  msgstr "Ordre de page"
586
 
587
+ #: ../classes/column/post/page-template.php:19
588
  msgid "Page Template"
589
  msgstr "Modèle de page"
590
 
591
+ #: ../classes/column/post/parent.php:19
592
  msgid "Parent"
593
  msgstr "Parent"
594
 
595
+ #: ../classes/column/post/path.php:19
596
+ msgid "Path"
597
+ msgstr ""
598
+
599
+ #: ../classes/column/post/permalink.php:19
600
  msgid "Permalink"
601
  msgstr "Permalien"
602
 
603
+ #: ../classes/column/post/permalink.php:68
604
+ msgid "Link to post"
605
+ msgstr ""
606
+
607
+ #: ../classes/column/post/permalink.php:68
608
+ msgid "This will make the permalink clickable."
609
+ msgstr ""
610
+
611
+ #: ../classes/column/post/ping-status.php:19
612
  msgid "Ping status"
613
  msgstr "Status du ping"
614
 
615
+ #: ../classes/column/post/roles.php:19
616
  msgid "Roles"
617
  msgstr "Rôles"
618
 
619
+ #: ../classes/column/post/slug.php:19
620
  msgid "Slug"
621
  msgstr "Slug"
622
 
623
+ #: ../classes/column/post/status.php:19
624
  msgid "Status"
625
  msgstr "Status"
626
 
627
+ #: ../classes/column/post/status.php:29
628
  msgid "Published"
629
  msgstr "Publié"
630
 
631
+ #: ../classes/column/post/status.php:30
632
  msgid "Draft"
633
  msgstr "Brouillon"
634
 
635
+ #: ../classes/column/post/status.php:31
636
  msgid "Scheduled"
637
  msgstr "Planifié"
638
 
639
+ #: ../classes/column/post/status.php:32
640
  msgid "Private"
641
  msgstr "Privé"
642
 
643
+ #: ../classes/column/post/status.php:33
644
  msgid "Pending Review"
645
  msgstr "Avis en attente"
646
 
647
+ #: ../classes/column/post/status.php:34
648
  msgid "Auto Draft"
649
  msgstr "Projet automatique"
650
 
651
+ #: ../classes/column/post/sticky.php:19
652
  msgid "Sticky"
653
  msgstr "Attaché"
654
 
655
+ #: ../classes/column/post/title-raw.php:19
656
+ msgid "Title without actions"
657
+ msgstr ""
658
+
659
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
660
  msgid "Taxonomy"
661
  msgstr "Taxonomy"
662
 
663
+ #: ../classes/column/used-by-menu.php:20
664
+ msgid "Used by Menu"
665
+ msgstr ""
666
+
667
+ #: ../classes/column/used-by-menu.php:133
668
+ msgid "Link to menu"
669
+ msgstr ""
670
+
671
+ #: ../classes/column/used-by-menu.php:133
672
+ msgid "This will make the title link to the menu."
673
+ msgstr ""
674
+
675
+ #: ../classes/column/user/comment-count.php:19
676
  msgid "Comment Count"
677
  msgstr "Nombre de commentaires"
678
 
679
+ #: ../classes/column/user/first-name.php:19
680
  msgid "First name"
681
  msgstr "Prénom"
682
 
683
+ #: ../classes/column/user/last-name.php:19
684
  msgid "Last name"
685
  msgstr "Nom"
686
 
687
+ #: ../classes/column/user/post-count.php:19
688
  msgid "Post Count"
689
  msgstr "Nombre d'article"
690
 
691
+ #: ../classes/column/user/post-count.php:102
692
  msgid "Post Type"
693
  msgstr "Type d'article"
694
 
695
+ #: ../classes/column/user/registered.php:19
696
  msgid "Registered"
697
  msgstr "Inscrit"
698
 
699
+ #: ../classes/column/user/url.php:19
700
  msgid "Url"
701
  msgstr "URL"
702
 
703
+ #: ../classes/settings.php:111
704
  msgid "Add-on successfully activated."
705
  msgstr "Module correctement activé."
706
 
707
+ #: ../classes/settings.php:114
708
  msgid "Add-on successfully deactivated."
709
  msgstr "Module correctement désactivé."
710
 
711
+ #: ../classes/settings.php:169
712
  msgid "Admin Columns Settings"
713
  msgstr "Réglages Admin Columns"
714
 
715
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
716
  msgid "Admin Columns"
717
  msgstr "Admin Columns"
718
 
719
+ #: ../classes/settings.php:217
720
  #, php-format
721
  msgid "%s column is already present and can not be duplicated."
722
  msgstr ""
723
 
724
+ #: ../classes/settings.php:271
725
  msgid "Default settings succesfully restored."
726
  msgstr "Les paramètres par défaut ont été restaurés avec succès."
727
 
728
+ #: ../classes/settings.php:288
729
  msgid "Overview"
730
  msgstr "Résumé"
731
 
732
+ #: ../classes/settings.php:291
733
+ msgid "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
734
+ msgstr "Cette extension permet l'ajout et la suppression de colonnes additionnelles dans les écrans d'administration pour les articles (types), pages, librairie des médias, commentaires, liens et usagers. Modifier le libellé des colonnes et réarranger leur ordre à votre guise."
 
 
 
 
 
 
 
735
 
736
+ #: ../classes/settings.php:294
737
  msgid "Basics"
738
  msgstr "Basiques"
739
 
740
+ #: ../classes/settings.php:296
741
  msgid "Change order"
742
  msgstr "Modifier l'ordre"
743
 
744
+ #: ../classes/settings.php:297
745
+ msgid "By dragging the columns you can change the order which they will appear in."
746
+ msgstr "En déplaçant les colonnes vous modifierez ainsi l'ordre dans lequel ils apparaissent."
 
 
 
747
 
748
+ #: ../classes/settings.php:298
749
  msgid "Change label"
750
  msgstr "Modifier le label"
751
 
752
+ #: ../classes/settings.php:299
753
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
 
 
754
  msgstr ""
755
 
756
+ #: ../classes/settings.php:300
757
  msgid "Change column width"
758
  msgstr "Modifier la largeur de colonne"
759
 
760
+ #: ../classes/settings.php:301
761
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
 
 
762
  msgstr ""
763
 
764
+ #: ../classes/settings.php:307
765
  msgid "'Custom Field' column"
766
  msgstr "Colonne 'Champ personnalisé'"
767
 
768
+ #: ../classes/settings.php:308
769
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
 
 
770
  msgstr ""
771
 
772
+ #: ../classes/settings.php:310
773
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
 
 
774
  msgstr ""
775
 
776
+ #: ../classes/settings.php:311
777
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
 
 
778
  msgstr ""
779
 
780
+ #: ../classes/settings.php:312
781
  msgid "Value: This will show the first 20 words of the Post content."
782
  msgstr "Utile : Ceci affiche les 20 premiers mots de l'article."
783
 
784
+ #: ../classes/settings.php:313
785
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
786
+ msgstr "Utile : Ce devrait être un tableau. Ce sera n'importe quel tableau (multidimensionnel) flottant."
 
 
 
787
 
788
+ #: ../classes/settings.php:314
789
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
 
 
790
  msgstr ""
791
 
792
+ #: ../classes/settings.php:315
793
  #, php-format
794
+ msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
 
 
 
795
  msgstr ""
796
 
797
+ #: ../classes/settings.php:316
798
  msgid "Post Titles"
799
  msgstr "Titre de l'article"
800
 
801
+ #: ../classes/settings.php:316
802
  msgid "Value: can be one or more Post ID's (seperated by ',')."
803
  msgstr ""
804
 
805
+ #: ../classes/settings.php:317
806
  msgid "Usernames"
807
  msgstr "Noms d'utilisateurs"
808
 
809
+ #: ../classes/settings.php:317
810
  msgid "Value: can be one or more User ID's (seperated by ',')."
811
  msgstr ""
812
 
813
+ #: ../classes/settings.php:318
814
  msgid "Checkmark"
815
  msgstr "Cocher"
816
 
817
+ #: ../classes/settings.php:318
818
  msgid "Value: should be a 1 (one) or 0 (zero)."
819
  msgstr "Utile : Peut être la valeur un (1) ou zéro (0)."
820
 
821
+ #: ../classes/settings.php:319
822
  msgid "Value: hex value color, such as #808080."
823
  msgstr "Utile : code couleur en hexadécimal, comme #808080."
824
 
825
+ #: ../classes/settings.php:320
826
+ msgid "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."
 
 
827
  msgstr ""
828
 
829
+ #: ../classes/settings.php:409
830
  msgid "Welcome to Admin Columns"
831
  msgstr "Bienvenue dans Admin Columns"
832
 
833
+ #: ../classes/settings.php:412
834
  msgid "Thank you for updating to the latest version!"
835
  msgstr "Merci d'avoir mis à jour vers la dernière version!"
836
 
837
+ #: ../classes/settings.php:413
838
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
 
 
839
  msgstr ""
840
 
841
+ #: ../classes/settings.php:418
842
  msgid "What’s New"
843
  msgstr "Quoi de neuf"
844
 
845
+ #: ../classes/settings.php:419
846
  msgid "Changelog"
847
  msgstr "Modifications"
848
 
849
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
850
  msgid "Important"
851
  msgstr "Important"
852
 
853
+ #: ../classes/settings.php:426
854
  msgid "Database Changes"
855
  msgstr "Changements dans la base de données"
856
 
857
+ #: ../classes/settings.php:427
858
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
859
+ msgstr "La base de données à été modifiée entre les versions 1 et 2. Mais nous sommes sûr que vous pouvez retourner à la version 1x sans aucun problème."
 
 
 
 
860
 
861
+ #: ../classes/settings.php:430
862
  msgid "Make sure you backup your database and then click"
863
  msgstr "Assurez-vous de sauvegarder votre base de données et cliquez "
864
 
865
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
866
  msgid "Upgrade Database"
867
  msgstr "Mettre à jour la base de données"
868
 
869
+ #: ../classes/settings.php:433
870
  msgid "Potential Issues"
871
  msgstr "Problèmes potentiels"
872
 
873
+ #: ../classes/settings.php:434
874
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
 
 
 
875
  msgstr ""
876
 
877
+ #: ../classes/settings.php:434
878
  msgid "Migrating from v1 to v2"
879
  msgstr "Migration de la v1 à la v2"
880
 
881
+ #: ../classes/settings.php:434
882
  msgid "guide to view the full list of changes."
883
  msgstr "guide pour voir la liste complète des modifications."
884
 
885
+ #: ../classes/settings.php:434
886
  #, php-format
887
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
 
 
888
  msgstr ""
889
 
890
+ #: ../classes/settings.php:437
891
  msgid "Important!"
892
  msgstr "Important!"
893
 
894
+ #: ../classes/settings.php:437
895
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
 
 
896
  msgstr ""
897
 
898
+ #: ../classes/settings.php:437
899
  msgid "version 1"
900
  msgstr "version 1"
901
 
902
+ #: ../classes/settings.php:437
903
  msgid "of this plugin."
904
  msgstr "de ce plugin."
905
 
906
+ #: ../classes/settings.php:443
907
  msgid "Changelog for"
908
  msgstr "Nouveautés pour"
909
 
910
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
911
  msgid "Learn more"
912
  msgstr "En savoir plus"
913
 
914
+ #: ../classes/settings.php:468
915
  msgid "Start using Admin Columns"
916
  msgstr "Commencer à utiliser Admin Columns"
917
 
918
+ #: ../classes/settings.php:511
919
  msgid "General Settings"
920
  msgstr "Réglages généraux"
921
 
922
+ #: ../classes/settings.php:512
923
  msgid "Customize your Admin Columns settings."
924
  msgstr "Personnalisez vos réglages Admin Columns."
925
 
926
+ #: ../classes/settings.php:523
927
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
 
928
  msgstr ""
929
 
930
+ #: ../classes/settings.php:530 ../classes/settings.php:660
931
  msgid "Save"
932
  msgstr "Enregistrer"
933
 
934
+ #: ../classes/settings.php:570
935
  msgid "Restore Settings"
936
  msgstr "Rétablir les réglages"
937
 
938
+ #: ../classes/settings.php:571
939
  msgid "This will delete all column settings and restore the default settings."
940
+ msgstr "Cette opération va supprimer tous les paramètres de colonnes et restaure tous les paramètres par défaut."
 
 
941
 
942
+ #: ../classes/settings.php:577
943
  msgid "Restore default settings"
944
  msgstr "Restaurer les paramètres par défaut"
945
 
946
+ #: ../classes/settings.php:577
947
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
948
+ msgstr "Attention! Tous les données des colonnes d'administration seront supprimées. Cela n'est pas irréversible. \\'OK\\' supprimer, \\'Annuler\\' arrêter"
 
 
 
 
949
 
950
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
951
  msgid "Settings"
952
  msgstr "Réglages"
953
 
954
+ #: ../classes/settings.php:600
955
  msgid "Add-ons"
956
  msgstr "Modules"
957
 
958
+ #: ../classes/settings.php:625
959
  msgid "Posttypes"
960
  msgstr "Type d'article"
961
 
962
+ #: ../classes/settings.php:626
963
  msgid "Others"
964
  msgstr "Autres"
965
 
966
+ #: ../classes/settings.php:627
967
  msgid "Taxonomies"
968
  msgstr "Taxonomie"
969
 
970
+ #: ../classes/settings.php:646
971
  #, php-format
972
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
 
 
973
  msgstr ""
974
 
975
+ #: ../classes/settings.php:656
976
  msgid "Store settings"
977
  msgstr "Enregistrer les réglages"
978
 
979
+ #: ../classes/settings.php:660
980
  msgid "Update"
981
  msgstr "Mettre à jour"
982
 
983
+ #: ../classes/settings.php:664
984
  #, php-format
985
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
 
 
986
  msgstr ""
987
 
988
+ #: ../classes/settings.php:665
989
  msgid "columns"
990
  msgstr "colonnes"
991
 
992
+ #: ../classes/settings.php:684
993
  msgid "Get Admin Columns Pro"
994
  msgstr ""
995
 
996
+ #: ../classes/settings.php:688
997
  msgid "Add Sorting"
998
  msgstr "Ajouter le tri"
999
 
1000
+ #: ../classes/settings.php:689
1001
  msgid "Add Filtering"
1002
  msgstr "Ajouter le filtrage"
1003
 
1004
+ #: ../classes/settings.php:690
1005
  msgid "Add Import/Export"
1006
  msgstr "Ajouter l'import/export"
1007
 
1008
+ #: ../classes/settings.php:691
1009
  msgid "Add Direct Editing"
1010
  msgstr "Ajouter la modification directe"
1011
 
1012
+ #: ../classes/settings.php:694
1013
  #, php-format
1014
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1015
  msgstr ""
1016
 
1017
+ #: ../classes/settings.php:725
1018
+ msgid "Are you happy with Admin Columns?"
1019
+ msgstr ""
1020
+
1021
+ #: ../classes/settings.php:733
1022
+ msgid "What's wrong? Need help? Let us know!"
1023
+ msgstr ""
1024
+
1025
+ #: ../classes/settings.php:734
1026
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1027
+ msgstr ""
1028
+
1029
  #: ../classes/settings.php:742
1030
+ msgid "Docs"
1031
+ msgstr ""
1032
+
1033
+ #: ../classes/settings.php:747
1034
+ msgid "Forums"
1035
+ msgstr ""
1036
+
1037
+ #: ../classes/settings.php:756
1038
+ msgid "Woohoo! We're glad to hear that!"
1039
+ msgstr ""
1040
+
1041
+ #: ../classes/settings.php:757
1042
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1043
+ msgstr ""
1044
+
1045
+ #: ../classes/settings.php:761
1046
+ msgid "Rate"
1047
+ msgstr ""
1048
+
1049
+ #: ../classes/settings.php:772
1050
+ msgid "Tweet"
1051
+ msgstr ""
1052
+
1053
+ #: ../classes/settings.php:782
1054
+ msgid "Buy Pro"
1055
+ msgstr ""
1056
+
1057
+ #: ../classes/settings.php:794
1058
  msgid "Support"
1059
  msgstr "Aide"
1060
 
1061
+ #: ../classes/settings.php:797
1062
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1063
  msgstr ""
1064
 
1065
+ #: ../classes/settings.php:800
1066
  #, php-format
1067
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
 
 
1068
  msgstr ""
1069
 
1070
+ #: ../classes/settings.php:829
1071
  msgid "Drag and drop to reorder"
1072
  msgstr "Vous pouvez modifier l'ordre."
1073
 
1074
+ #: ../classes/settings.php:832
1075
  msgid "Add Column"
1076
  msgstr "Ajouter une colonne."
1077
 
1078
+ #: ../classes/settings.php:908
1079
  msgid "Active"
1080
  msgstr "Actif"
1081
 
1082
+ #: ../classes/settings.php:909
1083
  msgid "Deactivate"
1084
  msgstr "Désactiver"
1085
 
1086
+ #: ../classes/settings.php:916
1087
  msgid "Installed"
1088
  msgstr "Installé"
1089
 
1090
+ #: ../classes/settings.php:917
1091
  msgid "Activate"
1092
  msgstr "Activer"
1093
 
1094
+ #: ../classes/settings.php:931
1095
  msgid "Download & Install"
1096
  msgstr "Télécharger & Installer"
1097
 
1098
+ #: ../classes/settings.php:936
1099
  msgid "Get this add-on"
1100
  msgstr "Obtenir ce module"
1101
 
1102
+ #: ../classes/storage_model.php:213
1103
  msgid "settings succesfully restored."
1104
  msgstr "les paramètres ont été restaurés avec succès."
1105
 
1106
+ #: ../classes/storage_model.php:229
1107
  msgid "No columns settings available."
1108
  msgstr "Aucun paramètre de colonne disponible."
1109
 
1110
+ #: ../classes/storage_model.php:250
1111
  #, php-format
1112
  msgid "You are trying to store the same settings for %s."
1113
  msgstr "Vous essayez de conserver les mêmes paramètres pour %s."
1114
 
1115
+ #: ../classes/storage_model.php:254
1116
  #, php-format
1117
  msgid "Settings for %s updated succesfully."
1118
  msgstr "Les paramètres pour %s correctement mis à jour."
1129
  msgid "Users"
1130
  msgstr "Utilisateurs"
1131
 
1132
+ #: ../classes/upgrade.php:62
1133
+ msgid ""
1134
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of <strong>Admin Columns Pro</strong> <a href=\"http://www.admincolumns.com/pro-addon-information/\" "
1135
+ "target=\"_blank\">is available</a>, which features a bunch of cool new features, including Direct Inline Editing!"
1136
+ msgstr ""
1137
+
1138
+ #: ../classes/upgrade.php:95
1139
  msgid "Upgrade"
1140
  msgstr "Mettre à jour"
1141
 
1142
+ #: ../classes/upgrade.php:136
1143
  msgid "requires a database upgrade"
1144
  msgstr "nécessite une mise à jour de la base de données"
1145
 
1146
+ #: ../classes/upgrade.php:139
1147
  msgid "why?"
1148
  msgstr "pourquoi?"
1149
 
1150
+ #: ../classes/upgrade.php:140
1151
  msgid "Please"
1152
  msgstr "Veuillez"
1153
 
1154
+ #: ../classes/upgrade.php:141
1155
  msgid "backup your database"
1156
  msgstr "sauvegarder votre base de données"
1157
 
1158
+ #: ../classes/upgrade.php:142
1159
  msgid "then click"
1160
  msgstr "puis cliquer"
1161
 
1162
+ #: ../classes/upgrade.php:351
1163
  msgid "Migrating Column Settings"
1164
  msgstr "Migration des paramètres de colonne"
1165
 
1166
+ #: ../classes/upgrade.php:387
1167
  msgid "No Upgrade Required"
1168
  msgstr "Aucune mise à jour n'est nécessaire."
1169
 
1170
+ #: ../classes/upgrade.php:388
1171
  msgid "Return to welcome screen."
1172
  msgstr "Retour à l'écran d'accueil."
1173
 
1174
+ #: ../classes/upgrade.php:406
1175
  msgid "Upgrade Complete!"
1176
  msgstr "Mise à jour terminée!"
1177
 
1178
+ #: ../classes/upgrade.php:406
1179
  msgid "Return to settings."
1180
  msgstr "Retour aux réglages."
1181
 
1182
+ #: ../classes/upgrade.php:407
1183
  msgid "Error"
1184
  msgstr "Erreur"
1185
 
1186
+ #: ../classes/upgrade.php:408
1187
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1188
+ msgstr "Désoler. Quelque chose ne c'est pas bien déroulé durant la mise à jour. Veuillez reporter cela au support du forum."
 
 
 
 
1189
 
1190
+ #: ../codepress-admin-columns.php:390
1191
  msgid "Edit columns"
1192
  msgstr "Éditer les colonnes"
languages/cpac-hu_HU.mo CHANGED
Binary file
languages/cpac-hu_HU.po CHANGED
@@ -5,344 +5,334 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-08-28 12:17+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
- "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/"
12
- "admin-columns/language/hu_HU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: hu_HU\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: Poedit 1.6.8\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../classes/addons.php:117
26
  msgid "Third party plugin integration"
27
  msgstr ""
28
 
29
- #: ../classes/addons.php:142
30
  msgid "Advanced Custom Fields"
31
  msgstr ""
32
 
33
- #: ../classes/addons.php:143
34
- msgid ""
35
- "Display and edit Advanced Custom Fields fields in the posts overview in "
36
- "seconds!"
 
 
 
 
 
 
37
  msgstr ""
38
 
39
- #: ../classes/column.php:481
40
  msgid "Thumbnail"
41
  msgstr "Bélyegkép"
42
 
43
- #: ../classes/column.php:482
44
  msgid "Medium"
45
  msgstr "Közepes"
46
 
47
- #: ../classes/column.php:483
48
  msgid "Large"
49
  msgstr "Nagy"
50
 
51
- #: ../classes/column.php:484
52
  msgid "Full"
53
  msgstr "Teljes méretű"
54
 
55
- #: ../classes/column.php:751
56
  msgid "Date Format"
57
  msgstr "Dátumformátum"
58
 
59
- #: ../classes/column.php:752
60
  msgid "This will determine how the date will be displayed."
61
  msgstr "Meghatározza, hogy fog a dátum megjelenni."
62
 
63
- #: ../classes/column.php:758
64
  msgid "Example:"
65
  msgstr "Például:"
66
 
67
- #: ../classes/column.php:760
68
  #, php-format
69
- msgid ""
70
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
71
- "date format here</a>."
72
- msgstr ""
73
- "Hagyd üresen a WordPress dátumformátumának használatához, vagy változtasd "
74
- "meg saját formátumra <a href=\"%s\">ide kattintva</a>."
75
 
76
- #: ../classes/column.php:761
77
  msgid "Documentation on date and time formatting."
78
  msgstr "Dokumentáció a dátum- és időformátumokhoz."
79
 
80
- #: ../classes/column.php:775
81
  msgid "Excerpt length"
82
  msgstr "Kivonat hossza"
83
 
84
- #: ../classes/column.php:776
85
  msgid "Number of words"
86
  msgstr "Szavak száma"
87
 
88
- #: ../classes/column.php:794
89
  msgid "Preview size"
90
  msgstr "Előnézet mérete"
91
 
92
- #: ../classes/column.php:811 ../classes/storage_model.php:505
93
  msgid "Custom"
94
  msgstr "Egyedi"
95
 
96
- #: ../classes/column.php:814
97
  msgid "width"
98
  msgstr "szélesség"
99
 
100
- #: ../classes/column.php:817
101
  msgid "height"
102
  msgstr "magasság"
103
 
104
- #: ../classes/column.php:831
105
  msgid "Before"
106
  msgstr "Előtte"
107
 
108
- #: ../classes/column.php:831
109
  msgid "This text will appear before the custom field value."
110
  msgstr "Ez a szöveg fog megjelenni az egyedi mező értéke előtt."
111
 
112
- #: ../classes/column.php:837
113
  msgid "After"
114
  msgstr "Utána"
115
 
116
- #: ../classes/column.php:837
117
  msgid "This text will appear after the custom field value."
118
  msgstr "Ez a szöveg fog megjelenni az egyedi mező értéke után."
119
 
120
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
121
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
122
- #: ../classes/column/user/actions.php:66
123
  msgid "Edit"
124
  msgstr "Szerkesztés"
125
 
126
- #: ../classes/column.php:927 ../classes/column.php:1005
127
- #: ../classes/column/user/actions.php:74
128
  msgid "Remove"
129
  msgstr "Eltávolítás"
130
 
131
- #: ../classes/column.php:945
132
  msgid "Type"
133
  msgstr "Típus"
134
 
135
- #: ../classes/column.php:945
136
  msgid "Choose a column type."
137
  msgstr "Válassz egy oszloptípust."
138
 
139
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
140
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
141
- #: ../classes/column/post/ID.php:12
142
  msgid "ID"
143
  msgstr "ID"
144
 
145
- #: ../classes/column.php:955
146
  msgid "Label"
147
  msgstr "Címke"
148
 
149
- #: ../classes/column.php:955
150
  msgid "This is the name which will appear as the column header."
151
  msgstr "Ez a név fog megjelenni az oszlop fejlécében."
152
 
153
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
154
  msgid "Width"
155
  msgstr "Szélesség"
156
 
157
- #: ../classes/column.php:964 ../classes/column.php:965
158
  msgid "default"
159
  msgstr "alapértelmezett"
160
 
161
- #: ../classes/column/acf-placeholder.php:16
162
  msgid "ACF Field"
163
  msgstr ""
164
 
165
  #: ../classes/column/acf-placeholder.php:32
166
- msgid "This feature is only available in Admin Columns Pro - Developer."
167
  msgstr ""
168
 
169
  #: ../classes/column/acf-placeholder.php:35
170
  #, php-format
171
- msgid ""
172
- "If you have a developer licence please download & install your ACF add-on "
173
- "from the <a href='%s'>add-ons tab</a>."
174
  msgstr ""
175
 
176
  #: ../classes/column/acf-placeholder.php:38
177
- msgid ""
178
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
179
- "integeration, allowing you to easily display and edit ACF fields from within "
180
- "your posts overview."
181
  msgstr ""
182
 
183
- #: ../classes/column/acf-placeholder.php:40
184
  msgid "Find out more"
185
  msgstr ""
186
 
187
- #: ../classes/column/comment/actions.php:14
188
- #: ../classes/column/link/actions.php:14
189
- #: ../classes/column/media/actions.php:14
190
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
191
  msgid "Actions"
192
  msgstr "Műveletek"
193
 
194
- #: ../classes/column/comment/actions.php:73
195
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  msgid "Unapprove"
197
  msgstr "Jóváhagyás visszavonása"
198
 
199
- #: ../classes/column/comment/actions.php:75
200
- #: ../classes/column/comment/actions.php:77
201
  msgid "Approve"
202
  msgstr "Jóváhagyás"
203
 
204
- #: ../classes/column/comment/actions.php:86
205
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
206
  msgid "Restore"
207
  msgstr "Visszaállítás"
208
 
209
- #: ../classes/column/comment/actions.php:90
210
- #: ../classes/column/post/actions.php:66
211
  msgid "Delete Permanently"
212
  msgstr "Végleges törlés"
213
 
214
- #: ../classes/column/comment/actions.php:97
215
- #: ../classes/column/post/actions.php:58
216
  msgid "Quick&nbsp;Edit"
217
  msgstr "gyors&nbsp;szerkesztés"
218
 
219
- #: ../classes/column/comment/actions.php:98
220
  msgid "Reply"
221
  msgstr "Válasz"
222
 
223
- #: ../classes/column/comment/agent.php:12
224
  msgid "Agent"
225
  msgstr "Ügynök"
226
 
227
- #: ../classes/column/comment/approved.php:12
228
- #: ../classes/column/post/comment-count.php:31
229
  msgid "Approved"
230
  msgstr "Jóváhagyva"
231
 
232
- #: ../classes/column/comment/author-avatar.php:12
233
  msgid "Avatar"
234
  msgstr "Avatar"
235
 
236
- #: ../classes/column/comment/author-email.php:12
237
  msgid "Author email"
238
  msgstr "Szerző email-je"
239
 
240
- #: ../classes/column/comment/author-ip.php:12
241
  msgid "Author IP"
242
  msgstr "Szerző IP-je"
243
 
244
- #: ../classes/column/comment/author-url.php:12
245
  msgid "Author url"
246
  msgstr "Szerző URL-je"
247
 
248
- #: ../classes/column/comment/author.php:12
249
  msgid "Author"
250
  msgstr "Szerző"
251
 
252
- #: ../classes/column/comment/date-gmt.php:12
253
  msgid "Date GMT"
254
  msgstr "GMT dátum"
255
 
256
- #: ../classes/column/comment/date-gmt.php:25
257
- #: ../classes/column/comment/date.php:25
258
  #, php-format
259
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
260
  msgstr "Beküldve: <a href=\"%1$s\">%2$s, %3$s</a>"
261
 
262
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
263
- #: ../classes/settings.php:300
264
  msgid "Date"
265
  msgstr "Dátum"
266
 
267
- #: ../classes/column/comment/excerpt.php:13
268
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
269
- #: ../classes/settings.php:297
270
  msgid "Excerpt"
271
  msgstr "Kivonat"
272
 
273
- #: ../classes/column/comment/reply-to.php:12
274
  msgid "In Reply To"
275
  msgstr "Válaszolva erre:"
276
 
277
- #: ../classes/column/comment/word-count.php:12
278
- #: ../classes/column/post/word-count.php:12
279
  msgid "Word count"
280
  msgstr "Szavak száma"
281
 
282
- #: ../classes/column/custom-field.php:16
283
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
284
  msgid "Custom Field"
285
  msgstr "Egyedi mező"
286
 
287
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
288
- #: ../classes/storage_model.php:504
289
  msgid "Default"
290
  msgstr "Alapértelmezett"
291
 
292
- #: ../classes/column/custom-field.php:66
293
  msgid "Checkmark (true/false)"
294
  msgstr "Pipa (igaz/hamis)"
295
 
296
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
297
  msgid "Color"
298
  msgstr "Szín"
299
 
300
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
301
  msgid "Counter"
302
  msgstr "Számláló"
303
 
304
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
305
- #: ../classes/settings.php:296
306
  msgid "Image"
307
  msgstr "Kép"
308
 
309
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
310
  msgid "Media Library"
311
  msgstr "Médiatár"
312
 
313
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
314
  msgid "Multiple Values"
315
  msgstr "Többszörös érték"
316
 
317
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
318
  msgid "Numeric"
319
  msgstr "Numerikus"
320
 
321
- #: ../classes/column/custom-field.php:75
322
  msgid "Post Title (Post ID's)"
323
  msgstr "Bejegyzés címe (bejegyzés ID)"
324
 
325
- #: ../classes/column/custom-field.php:76
326
  msgid "Username (User ID's)"
327
  msgstr "Felhasználónév (Felhasználó ID)"
328
 
329
- #: ../classes/column/custom-field.php:384
330
  msgid "Select your custom field."
331
  msgstr "Válassz egyedi mezőt."
332
 
333
- #: ../classes/column/custom-field.php:394
334
  msgid "No custom fields available."
335
  msgstr "Nincsenek egyedi mezők."
336
 
337
- #: ../classes/column/custom-field.php:401
338
  msgid "Field Type"
339
  msgstr "Mező típusa"
340
 
341
- #: ../classes/column/custom-field.php:401
342
  msgid "This will determine how the value will be displayed."
343
  msgstr "Meghatározza, hogy fog az érték megjelenni."
344
 
345
- #: ../classes/column/link/actions.php:46
346
  #, php-format
347
  msgid ""
348
  "You are about to delete this link '%s'\n"
@@ -351,840 +341,777 @@ msgstr ""
351
  "Biztosan törlöd ezt a hivatkozást: '%s'?\n"
352
  "'Mégse' a megállításhoz, 'OK' a törléshez."
353
 
354
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
355
  msgid "Delete"
356
  msgstr "Törlés"
357
 
358
- #: ../classes/column/link/description.php:12
359
- #: ../classes/column/media/description.php:12
360
- #: ../classes/column/user/description.php:14
361
  msgid "Description"
362
  msgstr "Leírás"
363
 
364
- #: ../classes/column/link/length.php:12
365
  msgid "Length"
366
  msgstr "Hossz"
367
 
368
- #: ../classes/column/link/notes.php:13
369
  msgid "Notes"
370
  msgstr "Megjegyzések"
371
 
372
- #: ../classes/column/link/owner.php:12
373
  msgid "Owner"
374
  msgstr "Tulajdonos"
375
 
376
- #: ../classes/column/link/rss.php:12
377
  msgid "Rss"
378
  msgstr "RSS"
379
 
380
- #: ../classes/column/link/target.php:12
381
  msgid "Target"
382
  msgstr "Cél"
383
 
384
- #: ../classes/column/media/alternate-text.php:12
385
  msgid "Alt"
386
  msgstr "Alt"
387
 
388
- #: ../classes/column/media/available-sizes.php:14
389
  msgid "Available Sizes"
390
  msgstr "Elérhető méretek"
391
 
392
- #: ../classes/column/media/available-sizes.php:37
393
  msgid "full size"
394
  msgstr "teljes méret"
395
 
396
- #: ../classes/column/media/caption.php:12
397
- #: ../classes/column/media/exif-data.php:36
398
  msgid "Caption"
399
  msgstr "Kép felirata"
400
 
401
- #: ../classes/column/media/dimensions.php:12
402
  msgid "Dimensions"
403
  msgstr "Kép kiterjedése"
404
 
405
- #: ../classes/column/media/exif-data.php:12
406
  msgid "EXIF data"
407
  msgstr "EXIF adato"
408
 
409
- #: ../classes/column/media/exif-data.php:33
410
  msgid "Aperture"
411
  msgstr "Rekesz"
412
 
413
- #: ../classes/column/media/exif-data.php:34
414
  msgid "Credit"
415
  msgstr "Érdem"
416
 
417
- #: ../classes/column/media/exif-data.php:35
418
  msgid "Camera"
419
  msgstr "Fényképezőgép"
420
 
421
- #: ../classes/column/media/exif-data.php:37
422
  msgid "Timestamp"
423
  msgstr "Időbélyeg"
424
 
425
- #: ../classes/column/media/exif-data.php:38
426
  msgid "Copyright EXIF"
427
  msgstr "EXIF szerzői jog"
428
 
429
- #: ../classes/column/media/exif-data.php:39
430
  msgid "Focal Length"
431
  msgstr "Fókusztávolság"
432
 
433
- #: ../classes/column/media/exif-data.php:40
434
  msgid "ISO"
435
  msgstr "ISO"
436
 
437
- #: ../classes/column/media/exif-data.php:41
438
  msgid "Shutter Speed"
439
  msgstr "Zársebesség"
440
 
441
- #: ../classes/column/media/exif-data.php:42
442
  msgid "Title"
443
  msgstr "Cím"
444
 
445
- #: ../classes/column/media/file-name.php:12
446
  msgid "File name"
447
  msgstr "Fájlnév"
448
 
449
- #: ../classes/column/media/file-size.php:12
450
  msgid "File size"
451
  msgstr "Fájlméret"
452
 
453
- #: ../classes/column/media/full-path.php:12
454
  msgid "Full path"
455
  msgstr "Teljes útvonal"
456
 
457
- #: ../classes/column/media/height.php:12
458
  msgid "Height"
459
  msgstr "Magasság"
460
 
461
- #: ../classes/column/media/mime-type.php:12
462
  msgid "Mime type"
463
  msgstr "Mime típus"
464
 
465
- #: ../classes/column/post/actions.php:57
466
  msgid "Edit this item"
467
  msgstr "Elem szerkesztése"
468
 
469
- #: ../classes/column/post/actions.php:58
470
  msgid "Edit this item inline"
471
  msgstr "Elem szerkesztése helyben"
472
 
473
- #: ../classes/column/post/actions.php:62
474
  msgid "Restore this item from the Trash"
475
  msgstr "Elem visszaállítása a Kukábó"
476
 
477
- #: ../classes/column/post/actions.php:64
478
  msgid "Move this item to the Trash"
479
  msgstr "Elem törlése a Kukába"
480
 
481
- #: ../classes/column/post/actions.php:64
482
- #: ../classes/column/post/comment-count.php:34
483
- #: ../classes/column/post/status.php:38
484
  msgid "Trash"
485
  msgstr "Kuka"
486
 
487
- #: ../classes/column/post/actions.php:66
488
  msgid "Delete this item permanently"
489
  msgstr "Elem végleges törlése"
490
 
491
- #: ../classes/column/post/actions.php:71
492
  #, php-format
493
  msgid "Preview &#8220;%s&#8221;"
494
  msgstr "Előnézet: &#8220;%s&#8221;"
495
 
496
- #: ../classes/column/post/actions.php:71
497
  msgid "Preview"
498
  msgstr "Előnézet"
499
 
500
- #: ../classes/column/post/actions.php:73
501
  #, php-format
502
  msgid "View &#8220;%s&#8221;"
503
  msgstr "Megtekintés: &#8220;%s&#8221;"
504
 
505
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
506
  msgid "View"
507
  msgstr "Megtekintés"
508
 
509
- #: ../classes/column/post/attachment-count.php:12
510
  msgid "No. of Attachments"
511
  msgstr "Csatolmányok száma"
512
 
513
- #: ../classes/column/post/attachment.php:12
514
  msgid "Attachment"
515
  msgstr "Csatolmány"
516
 
517
- #: ../classes/column/post/author-name.php:12
518
  msgid "Display Author As"
519
  msgstr "Szerző megjelenítése mint"
520
 
521
- #: ../classes/column/post/author-name.php:34
522
  msgid "Display Name"
523
  msgstr "Megjelenő név"
524
 
525
- #: ../classes/column/post/author-name.php:35
526
  msgid "First Name"
527
  msgstr "Utónév"
528
 
529
- #: ../classes/column/post/author-name.php:36
530
  msgid "Last Name"
531
  msgstr "Vezetéknév"
532
 
533
- #: ../classes/column/post/author-name.php:37
534
- #: ../classes/column/user/nickname.php:14
535
  msgid "Nickname"
536
  msgstr "Becenév"
537
 
538
- #: ../classes/column/post/author-name.php:38
539
  msgid "User Login"
540
  msgstr "Felhasználó bejelentkezés"
541
 
542
- #: ../classes/column/post/author-name.php:39
543
  msgid "User Email"
544
  msgstr "Felhasználó email"
545
 
546
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
547
  msgid "User ID"
548
  msgstr "Felhasználó ID "
549
 
550
- #: ../classes/column/post/author-name.php:41
551
  msgid "First and Last Name"
552
  msgstr "Elő- és utónév"
553
 
554
- #: ../classes/column/post/author-name.php:118
555
  msgid "This is the format of the author name."
556
  msgstr "Ez a szerző nevének formátuma"
557
 
558
- #: ../classes/column/post/before-moretag.php:14
559
  msgid "Before More Tag"
560
  msgstr "A \"További\" címke előtti rész"
561
 
562
- #: ../classes/column/post/comment-count.php:14
563
  msgid "Comment count"
564
  msgstr "Hozzászólások száma"
565
 
566
- #: ../classes/column/post/comment-count.php:30
567
  msgid "Total"
568
  msgstr "Összesen"
569
 
570
- #: ../classes/column/post/comment-count.php:32
571
  msgid "Pending"
572
  msgstr "Folyamatban"
573
 
574
- #: ../classes/column/post/comment-count.php:33
575
  msgid "Spam"
576
  msgstr "Levélszemét"
577
 
578
- #: ../classes/column/post/comment-count.php:95
579
- #: ../classes/column/post/comment-status.php:14
580
  msgid "Comment status"
581
  msgstr "Hozzászólás státusza"
582
 
583
- #: ../classes/column/post/comment-count.php:95
584
  msgid "Select which comment status you like to display."
585
  msgstr "Válasz ki, melyik hozzászólás státuszt szeretnéd megjeleníteni."
586
 
587
- #: ../classes/column/post/featured-image.php:14
588
  msgid "Featured Image"
589
  msgstr "Kiemelt kép"
590
 
591
- #: ../classes/column/post/formats.php:14
592
  msgid "Post Format"
593
  msgstr "Bejegyzés formátum"
594
 
595
- #: ../classes/column/post/modified.php:14
596
  msgid "Last modified"
597
  msgstr "Utoljára módosítva"
598
 
599
- #: ../classes/column/post/order.php:14
600
  msgid "Page Order"
601
  msgstr "Sorrend megváltoztatása"
602
 
603
- #: ../classes/column/post/page-template.php:12
604
  msgid "Page Template"
605
  msgstr "Oldal sablon"
606
 
607
- #: ../classes/column/post/parent.php:12
608
  msgid "Parent"
609
  msgstr "Szülő"
610
 
611
- #: ../classes/column/post/permalink.php:12
 
 
 
 
612
  msgid "Permalink"
613
  msgstr ""
614
 
615
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
 
 
 
 
616
  msgid "Ping status"
617
  msgstr "Ping státusz"
618
 
619
- #: ../classes/column/post/roles.php:14
620
  msgid "Roles"
621
  msgstr "Jogkörök"
622
 
623
- #: ../classes/column/post/slug.php:12
624
  msgid "Slug"
625
  msgstr "Keresőbarát név/slug"
626
 
627
- #: ../classes/column/post/status.php:14
628
  msgid "Status"
629
  msgstr "Státusz"
630
 
631
- #: ../classes/column/post/status.php:32
632
  msgid "Published"
633
  msgstr "Közzétéve"
634
 
635
- #: ../classes/column/post/status.php:33
636
  msgid "Draft"
637
  msgstr "Vázlat"
638
 
639
- #: ../classes/column/post/status.php:34
640
  msgid "Scheduled"
641
  msgstr "Időzítve"
642
 
643
- #: ../classes/column/post/status.php:35
644
  msgid "Private"
645
  msgstr "Magánjellegű"
646
 
647
- #: ../classes/column/post/status.php:36
648
  msgid "Pending Review"
649
  msgstr "Jóváhagyás alatt"
650
 
651
- #: ../classes/column/post/status.php:37
652
  msgid "Auto Draft"
653
  msgstr ""
654
 
655
- #: ../classes/column/post/sticky.php:14
656
  msgid "Sticky"
657
  msgstr "Ragadós"
658
 
659
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
660
  msgid "Taxonomy"
661
  msgstr "Taxonómia"
662
 
663
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
664
  msgid "Comment Count"
665
  msgstr "Hozzászólások száma"
666
 
667
- #: ../classes/column/user/first-name.php:14
668
  msgid "First name"
669
  msgstr "Utónév"
670
 
671
- #: ../classes/column/user/last-name.php:14
672
  msgid "Last name"
673
  msgstr "Vezetéknév"
674
 
675
- #: ../classes/column/user/post-count.php:14
676
  msgid "Post Count"
677
  msgstr "Bejegyzések száma"
678
 
679
- #: ../classes/column/user/post-count.php:99
680
  msgid "Post Type"
681
  msgstr "Bejegyzés típus"
682
 
683
- #: ../classes/column/user/registered.php:14
684
  msgid "Registered"
685
  msgstr "Feliratkozott"
686
 
687
- #: ../classes/column/user/url.php:14
688
  msgid "Url"
689
  msgstr "URL"
690
 
691
- #: ../classes/settings.php:97
692
  msgid "Add-on successfully activated."
693
  msgstr ""
694
 
695
- #: ../classes/settings.php:100
696
  msgid "Add-on successfully deactivated."
697
  msgstr ""
698
 
699
- #: ../classes/settings.php:155
700
  msgid "Admin Columns Settings"
701
  msgstr "Admin Columns beállítások"
702
 
703
- #: ../classes/settings.php:155 ../classes/settings.php:619
704
- #: ../classes/upgrade.php:83
705
  msgid "Admin Columns"
706
  msgstr "Admin Columns"
707
 
708
- #: ../classes/settings.php:203
709
  #, php-format
710
  msgid "%s column is already present and can not be duplicated."
711
  msgstr "A %s oszlop már a listában van, és nem szerepelhet egynél többször."
712
 
713
- #: ../classes/settings.php:256
714
  msgid "Default settings succesfully restored."
715
  msgstr "Alapértelmezett beállítások sikeresen visszaállítva."
716
 
717
- #: ../classes/settings.php:273
718
  msgid "Overview"
719
  msgstr "Áttekintés"
720
 
721
- #: ../classes/settings.php:276
722
- msgid ""
723
- "This plugin is for adding and removing additional columns to the "
724
- "administration screens for post(types), pages, media library, comments, "
725
- "links and users. Change the column's label and reorder them."
726
- msgstr ""
727
- "A plugin segítségével további oszlopokat lehet hozzáadni bejegyzések (egyedi "
728
- "bejegyzéstípusok), oldalak, médiatár, hivatkozások és felhasználók "
729
- "adminisztrációs felületekhez."
730
 
731
- #: ../classes/settings.php:279
732
  msgid "Basics"
733
  msgstr "Alapok"
734
 
735
- #: ../classes/settings.php:281
736
  msgid "Change order"
737
  msgstr "Sorrend megváltoztatása"
738
 
739
- #: ../classes/settings.php:282
740
- msgid ""
741
- "By dragging the columns you can change the order which they will appear in."
742
- msgstr ""
743
- "Az oszlopok más helyre húzásával lehet változtatni az oszlopok sorrendjén."
744
 
745
- #: ../classes/settings.php:283
746
  msgid "Change label"
747
  msgstr "Címke megváltoztatása"
748
 
749
- #: ../classes/settings.php:284
750
- msgid ""
751
- "By clicking on the triangle you will see the column options. Here you can "
752
- "change each label of the columns heading."
753
- msgstr ""
754
- "A nyílra kattintva láthatóvá válnak az oszlop beállításai. Itt lehet "
755
- "módosítani az oszlopok fejléceinek neveit."
756
 
757
- #: ../classes/settings.php:285
758
  msgid "Change column width"
759
  msgstr "Oszlopszélesség módosítása"
760
 
761
- #: ../classes/settings.php:286
762
- msgid ""
763
- "By clicking on the triangle you will see the column options. By using the "
764
- "draggable slider you can set the width of the columns in percentages."
765
- msgstr ""
766
- "A nyílra kattintva láthatóvá válnak az oszlop beállításai. Itt lehet "
767
- "módosítani az oszlopok fejléceinek neveit. A csúszka húzásával beállítható "
768
- "az oszlopok százalékos szélessége."
769
 
770
- #: ../classes/settings.php:292
771
  msgid "'Custom Field' column"
772
  msgstr "\"Egyedi mező\" oszlop"
773
 
774
- #: ../classes/settings.php:293
775
- msgid ""
776
- "The custom field colum uses the custom fields from posts and users. There "
777
- "are 10 types which you can set."
778
- msgstr ""
779
- "Az egyedi mező oszlop a bejegyzések és felhasználók egyedi mezőit használja. "
780
- "10-féle típust lehet beállítani."
781
 
782
- #: ../classes/settings.php:295
783
- msgid ""
784
- "Value: Can be either a string or array. Arrays will be flattened and values "
785
- "are seperated by a ',' comma."
786
- msgstr ""
787
- "Érték: karakterlánc vagy tömb. A tömbökből egydimenziós tömbök lesznek, az "
788
- "értékek vesszővel lesznek elválasztva \",\"."
789
 
790
- #: ../classes/settings.php:296
791
- msgid ""
792
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
793
- "comma )."
794
- msgstr ""
795
- "Érték: kép URL vagy Csatolmány ID-t fog tartalmazni, vesszővel elválasztva "
796
- "(\",\")"
797
 
798
- #: ../classes/settings.php:297
799
  msgid "Value: This will show the first 20 words of the Post content."
800
  msgstr "Érték: az első 20 szót fogja tartalmazni a Bejegyzés tartalmából."
801
 
802
- #: ../classes/settings.php:298
803
- msgid ""
804
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
805
  msgstr "Érték: tömb. A többdimenziós tömbökből egydimenziósak lesznek."
806
 
807
- #: ../classes/settings.php:299
808
- msgid ""
809
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
810
- "for sorting, so you can sort your posts on numeric (custom field) values."
811
- msgstr ""
812
- "Érték: csak egész számok.<br/>Ha rendelkezésre áll a \"Rendezés\" "
813
- "kiegészítő, ez az érték fog a rendezés alapjául szolgálni, tehát a "
814
- "bejegyzéseket numerikus (egyedi mező) értékek alapján lehet rendezni. "
815
 
816
- #: ../classes/settings.php:300
817
  #, php-format
818
- msgid ""
819
- "Value: Can be unix time stamp or a date format as described in the <a "
820
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
821
- "href='%s'>general settings</a> page."
822
- msgstr ""
823
- "Érték: unix időpecsét vagy a <a href='%s'>Codex</a>-ben leírt dátumformátum. "
824
- "A visszaadott dátum értékét az <a href='%s'>általános beállítások</a> "
825
- "oldalon lehet beállítani."
826
 
827
- #: ../classes/settings.php:301
828
  msgid "Post Titles"
829
  msgstr "Bejegyzések címei"
830
 
831
- #: ../classes/settings.php:301
832
  msgid "Value: can be one or more Post ID's (seperated by ',')."
833
  msgstr "Érték: egy vagy több bejegyzés ID-ja (vesszővel elválasztva \",\")."
834
 
835
- #: ../classes/settings.php:302
836
  msgid "Usernames"
837
  msgstr "Felhasználónevek"
838
 
839
- #: ../classes/settings.php:302
840
  msgid "Value: can be one or more User ID's (seperated by ',')."
841
  msgstr "Érték: egy vagy több felhasználó ID-ja (vesszővel elválasztva \",\")."
842
 
843
- #: ../classes/settings.php:303
844
  msgid "Checkmark"
845
  msgstr "Pipa"
846
 
847
- #: ../classes/settings.php:303
848
  msgid "Value: should be a 1 (one) or 0 (zero)."
849
  msgstr "Érték: 1 (egy) vagy 0 (nulla)."
850
 
851
- #: ../classes/settings.php:304
852
  msgid "Value: hex value color, such as #808080."
853
  msgstr "Érték: hex színkód, pl. #808080."
854
 
855
- #: ../classes/settings.php:305
856
- msgid ""
857
- "Value: Can be either a string or array. This will display a count of the "
858
- "number of times the meta key is used by the item."
859
- msgstr ""
860
- "Érték: karakterlánc vagy tömb. Megjeleníti, hogy az elem hányszor használja "
861
- "a meta kulcsot."
862
 
863
- #: ../classes/settings.php:399
864
  msgid "Welcome to Admin Columns"
865
  msgstr "Üdvözöl az Admin Columns"
866
 
867
- #: ../classes/settings.php:402
868
  msgid "Thank you for updating to the latest version!"
869
  msgstr "Köszönjük, hogy frissítetted a legújabb verzióra!"
870
 
871
- #: ../classes/settings.php:403
872
- msgid ""
873
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
874
- "like it."
875
- msgstr ""
876
- "Az Admin Columns még fejlettebb és élvezetesebb, mint valaha. Reméljük "
877
- "tetszeni fog."
878
 
879
- #: ../classes/settings.php:408
880
  msgid "What’s New"
881
  msgstr "Újdonságok"
882
 
883
- #: ../classes/settings.php:409
884
  msgid "Changelog"
885
  msgstr "Változtatások listája"
886
 
887
- #: ../classes/settings.php:414
888
- msgid "Addons"
889
- msgstr "Kiegészítők"
890
-
891
- #: ../classes/settings.php:416
892
- msgid ""
893
- "Addons are now activated by downloading and installing individual plugins. "
894
- "Although these plugins will not be hosted on the wordpress.org repository, "
895
- "each Add-on will continue to receive updates in the usual way."
896
- msgstr ""
897
- "A kiegészítőket mostantól egyedileg kell letölteni és telepíteni "
898
- "bővítményekként. Habár ezek a bővítmények nem a wordpress.org oldalon "
899
- "vannak, mindegyik kiegészítő a szokásos módon frissíthető."
900
-
901
- #: ../classes/settings.php:419
902
- msgid ""
903
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
904
- msgstr ""
905
- "A weboldal használja a Sortorder kiegészítőt. A kiegészítőt le kell tölteni."
906
-
907
- #: ../classes/settings.php:422
908
- msgid "Addons are seperate plugins which need to be downloaded."
909
- msgstr "A kiegészítők különálló bővítmények, amelyeket le kell tölteni."
910
-
911
- #: ../classes/settings.php:422
912
- msgid "Download your Addons"
913
- msgstr "Kiegészítőid letöltése"
914
-
915
- #: ../classes/settings.php:428
916
- msgid "This website does not use add-ons"
917
- msgstr "A weboldal nem használ kiegészítőket"
918
-
919
- #: ../classes/settings.php:428
920
- msgid "See our website for Admin Columns Pro."
921
- msgstr ""
922
-
923
- #: ../classes/settings.php:435
924
  msgid "Important"
925
  msgstr "Fontos"
926
 
927
- #: ../classes/settings.php:437
928
  msgid "Database Changes"
929
  msgstr "Adatbázis változtatások"
930
 
931
- #: ../classes/settings.php:438
932
- msgid ""
933
- "The database has been changed between versions 1 and 2. But we made sure you "
934
- "can still roll back to version 1x without any issues."
935
- msgstr ""
936
- "Az adatbázis változott az 1-es és a 2-es verzió között. A lefelé történő "
937
- "frissítés 1-es verziója probléma nélkül lehetséges."
938
 
939
- #: ../classes/settings.php:441
940
  msgid "Make sure you backup your database and then click"
941
  msgstr "Bizonyosodj meg róla, hogy van adatbázis mentésed, majd kattints"
942
 
943
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
944
  msgid "Upgrade Database"
945
  msgstr "Adatbázis frissítése"
946
 
947
- #: ../classes/settings.php:444
948
  msgid "Potential Issues"
949
  msgstr "Lehetséges problémák"
950
 
951
- #: ../classes/settings.php:445
952
- msgid ""
953
- "Do to the sizable refactoring the code, surounding Addons and action/"
954
- "filters, your website may not operate correctly. It is important that you "
955
- "read the full"
956
- msgstr ""
957
- "A kód refraktorálása után, beleértve a kiegészítőket és filtereket, "
958
- "előfordulhat, hogy a weboldal nem fog megfelelően működni. Fontos, hogy "
959
- "olvasd el a teljes"
960
 
961
- #: ../classes/settings.php:445
962
  msgid "Migrating from v1 to v2"
963
  msgstr "Frissítés v1-ről v2-re"
964
 
965
- #: ../classes/settings.php:445
966
  msgid "guide to view the full list of changes."
967
  msgstr "leírást a változtatások teljes listájáért."
968
 
969
- #: ../classes/settings.php:445
970
  #, php-format
971
- msgid ""
972
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
973
- "can fix it in the next release."
974
- msgstr ""
975
- "Ha hibát találsz, kérlek <a href=\"%s\">jelezd őket felénk</a>, hogy "
976
- "javíthassuk a következő verzióban."
977
 
978
- #: ../classes/settings.php:448
979
  msgid "Important!"
980
  msgstr "Fontos!"
981
 
982
- #: ../classes/settings.php:448
983
- msgid ""
984
- "If you updated the Admin Columns plugin without prior knowledge of such "
985
- "changes, Please roll back to the latest"
986
- msgstr ""
987
- "Ha frissítetted az Admin Columns bővítményt az ilyen jellegű változtatások "
988
- "hatásának előzetes tudta nélkül, kérjük állítsd vissza a korábbi"
989
 
990
- #: ../classes/settings.php:448
991
  msgid "version 1"
992
  msgstr "verzió 1"
993
 
994
- #: ../classes/settings.php:448
995
  msgid "of this plugin."
996
  msgstr "a bővítménynek."
997
 
998
- #: ../classes/settings.php:454
999
  msgid "Changelog for"
1000
  msgstr "Változtatások listája"
1001
 
1002
- #: ../classes/settings.php:469
1003
  msgid "Learn more"
1004
  msgstr "Bővebb információ"
1005
 
1006
- #: ../classes/settings.php:479
1007
  msgid "Start using Admin Columns"
1008
  msgstr "Admin Columns használatának megkezdése"
1009
 
1010
- #: ../classes/settings.php:522
1011
  msgid "General Settings"
1012
  msgstr "Általános beállítások"
1013
 
1014
- #: ../classes/settings.php:523
1015
  msgid "Customize your Admin Columns settings."
1016
  msgstr "Az Admin Columns beállítások módosítása"
1017
 
1018
- #: ../classes/settings.php:546
1019
- msgid ""
1020
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1021
  msgstr ""
1022
- "\"Oszlopok szerkesztése\" gomb megjelenítése az adminisztrációs felületen. "
1023
- "Alapértelmezés: <code>kikapcsolva</code>."
1024
 
1025
- #: ../classes/settings.php:553 ../classes/settings.php:682
1026
  msgid "Save"
1027
  msgstr "Mentés"
1028
 
1029
- #: ../classes/settings.php:593
1030
  msgid "Restore Settings"
1031
  msgstr "Beállítások visszaállítása"
1032
 
1033
- #: ../classes/settings.php:594
1034
  msgid "This will delete all column settings and restore the default settings."
1035
- msgstr ""
1036
- "Törli minden oszlop beállítást és visszaállítja az alapértelmezett "
1037
- "beállításokat."
1038
 
1039
- #: ../classes/settings.php:600
1040
  msgid "Restore default settings"
1041
  msgstr "Alapértelmezett beállítások visszaállítása"
1042
 
1043
- #: ../classes/settings.php:600
1044
- msgid ""
1045
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1046
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1047
- msgstr ""
1048
- "Figyelem! Minden mentett admin oszlop adat törlésre kerül. A művelet nem "
1049
- "visszavonható. \\'OK\\': törlés, \\'Mégse\\': megállítás"
1050
 
1051
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1052
  msgid "Settings"
1053
  msgstr "Beállítások"
1054
 
1055
- #: ../classes/settings.php:621
1056
  msgid "Add-ons"
1057
  msgstr ""
1058
 
1059
- #: ../classes/settings.php:647
1060
  msgid "Posttypes"
1061
  msgstr ""
1062
 
1063
- #: ../classes/settings.php:648
1064
  msgid "Others"
1065
  msgstr ""
1066
 
1067
- #: ../classes/settings.php:649
1068
  msgid "Taxonomies"
1069
  msgstr ""
1070
 
1071
- #: ../classes/settings.php:668
1072
  #, php-format
1073
- msgid ""
1074
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1075
- "be edited in the admin panel."
1076
  msgstr ""
1077
 
1078
- #: ../classes/settings.php:678
1079
  msgid "Store settings"
1080
  msgstr "Beállítások tárolása"
1081
 
1082
- #: ../classes/settings.php:682
1083
  msgid "Update"
1084
  msgstr "Frissítés"
1085
 
1086
- #: ../classes/settings.php:686
1087
  #, php-format
1088
- msgid ""
1089
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1090
- "\\' to delete, \\'Cancel\\' to stop"
1091
- msgstr ""
1092
- "Figyelem! A %s oszlopok adatai törölve lesznek. A művelet nem visszavonható. "
1093
- "\\'OK\\': törlés, \\Mégse\\': megállítás"
1094
 
1095
- #: ../classes/settings.php:687
1096
  msgid "columns"
1097
  msgstr "oszlopok"
1098
 
1099
- #: ../classes/settings.php:701
1100
  msgid "Get Admin Columns Pro"
1101
  msgstr ""
1102
 
1103
- #: ../classes/settings.php:705
1104
  msgid "Add Sorting"
1105
  msgstr "Rendezés hozzáadása"
1106
 
1107
- #: ../classes/settings.php:706
1108
  msgid "Add Filtering"
1109
  msgstr "Szűrés hozzáadása"
1110
 
1111
- #: ../classes/settings.php:707
1112
  msgid "Add Import/Export"
1113
  msgstr "Import/export hozzáadása"
1114
 
1115
- #: ../classes/settings.php:708
1116
  msgid "Add Direct Editing"
1117
  msgstr ""
1118
 
1119
- #: ../classes/settings.php:711
1120
  #, php-format
1121
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1122
  msgstr ""
1123
 
 
 
 
 
 
 
 
 
 
 
 
 
1124
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1125
  msgid "Support"
1126
  msgstr "Támogatás"
1127
 
1128
- #: ../classes/settings.php:745
1129
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1130
- msgstr ""
1131
- "Tekintsd meg a <strong>Súgó</strong> részt a képernyő jobb felső sarkában."
1132
 
1133
- #: ../classes/settings.php:748
1134
  #, php-format
1135
- msgid ""
1136
- "For full documentation, bug reports, feature suggestions and other tips <a "
1137
- "href='%s'>visit the Admin Columns website</a>"
1138
- msgstr ""
1139
- "A teljes dokumentációhoz, problémák jelentéséhez, új javaslatok beküldéséhez "
1140
- "és egyéb tippekért <a href='%s'>keresd fel az Admin Columns weboldalát</a>"
1141
 
1142
- #: ../classes/settings.php:777
1143
  msgid "Drag and drop to reorder"
1144
  msgstr "Húzd az elemeket más helyre a sorrend megváltoztatásához"
1145
 
1146
- #: ../classes/settings.php:780
1147
  msgid "Add Column"
1148
  msgstr "Oszlop hozzáadása"
1149
 
1150
- #: ../classes/settings.php:853
1151
  msgid "Active"
1152
  msgstr ""
1153
 
1154
- #: ../classes/settings.php:854
1155
  msgid "Deactivate"
1156
  msgstr ""
1157
 
1158
- #: ../classes/settings.php:861
1159
  msgid "Installed"
1160
  msgstr ""
1161
 
1162
- #: ../classes/settings.php:862
1163
  msgid "Activate"
1164
  msgstr ""
1165
 
1166
- #: ../classes/settings.php:876
1167
  msgid "Download & Install"
1168
  msgstr ""
1169
 
1170
- #: ../classes/settings.php:881
1171
  msgid "Get this add-on"
1172
  msgstr ""
1173
 
1174
- #: ../classes/storage_model.php:207
1175
  msgid "settings succesfully restored."
1176
  msgstr "Beállítások sikeresen visszaállítva."
1177
 
1178
- #: ../classes/storage_model.php:222
1179
  msgid "No columns settings available."
1180
  msgstr "Nincs elérhető oszlopbeállítás."
1181
 
1182
- #: ../classes/storage_model.php:243
1183
  #, php-format
1184
  msgid "You are trying to store the same settings for %s."
1185
  msgstr "Ugyanazokat a beállításokat próbálod menteni a %s-nél."
1186
 
1187
- #: ../classes/storage_model.php:247
1188
  #, php-format
1189
  msgid "Settings for %s updated succesfully."
1190
  msgstr "A %s oszlop beállításai sikeresen frissítve."
@@ -1201,61 +1128,64 @@ msgstr "Hivatkozások"
1201
  msgid "Users"
1202
  msgstr "Felhasználók"
1203
 
1204
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
1205
  msgid "Upgrade"
1206
  msgstr "Frissítés"
1207
 
1208
- #: ../classes/upgrade.php:84
1209
  msgid "requires a database upgrade"
1210
  msgstr "adatbázis frissítést igényel"
1211
 
1212
- #: ../classes/upgrade.php:87
1213
  msgid "why?"
1214
  msgstr "miért?"
1215
 
1216
- #: ../classes/upgrade.php:88
1217
  msgid "Please"
1218
  msgstr "Kérlek"
1219
 
1220
- #: ../classes/upgrade.php:89
1221
  msgid "backup your database"
1222
  msgstr "készíts biztonsági mentést az adatbázisról"
1223
 
1224
- #: ../classes/upgrade.php:90
1225
  msgid "then click"
1226
  msgstr "majd kattints az"
1227
 
1228
- #: ../classes/upgrade.php:298
1229
  msgid "Migrating Column Settings"
1230
  msgstr "Oszlopbeállítások migrálása"
1231
 
1232
- #: ../classes/upgrade.php:334
1233
  msgid "No Upgrade Required"
1234
  msgstr "Nincs szükség frissítésre"
1235
 
1236
- #: ../classes/upgrade.php:335
1237
  msgid "Return to welcome screen."
1238
  msgstr "Vissza a nyitóoldalra"
1239
 
1240
- #: ../classes/upgrade.php:353
1241
  msgid "Upgrade Complete!"
1242
  msgstr "Frissítés kész!"
1243
 
1244
- #: ../classes/upgrade.php:353
1245
  msgid "Return to settings."
1246
  msgstr "Vissza a beállításokhoz."
1247
 
1248
- #: ../classes/upgrade.php:354
1249
  msgid "Error"
1250
  msgstr "Hiba"
1251
 
1252
- #: ../classes/upgrade.php:355
1253
- msgid ""
1254
- "Sorry. Something went wrong during the upgrade process. Please report this "
1255
- "on the support forum."
1256
- msgstr ""
1257
- "Sajnáljuk. Hiba történt a frissítés során. Kérjük jelezd a támogatói fórumon."
1258
 
1259
- #: ../codepress-admin-columns.php:439
1260
  msgid "Edit columns"
1261
  msgstr "Oszlopok szerkesztése"
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
9
+ "PO-Revision-Date: 2014-12-10 17:24+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/admin-columns/language/hu_HU/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: hu_HU\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.7.1\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
24
+ #: ../classes/addons.php:110
25
  msgid "Third party plugin integration"
26
  msgstr ""
27
 
28
+ #: ../classes/addons.php:135
29
  msgid "Advanced Custom Fields"
30
  msgstr ""
31
 
32
+ #: ../classes/addons.php:136
33
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
34
+ msgstr ""
35
+
36
+ #: ../classes/addons.php:141
37
+ msgid "WooCommerce"
38
+ msgstr ""
39
+
40
+ #: ../classes/addons.php:142
41
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
42
  msgstr ""
43
 
44
+ #: ../classes/column.php:500
45
  msgid "Thumbnail"
46
  msgstr "Bélyegkép"
47
 
48
+ #: ../classes/column.php:501
49
  msgid "Medium"
50
  msgstr "Közepes"
51
 
52
+ #: ../classes/column.php:502
53
  msgid "Large"
54
  msgstr "Nagy"
55
 
56
+ #: ../classes/column.php:503
57
  msgid "Full"
58
  msgstr "Teljes méretű"
59
 
60
+ #: ../classes/column.php:863
61
  msgid "Date Format"
62
  msgstr "Dátumformátum"
63
 
64
+ #: ../classes/column.php:864
65
  msgid "This will determine how the date will be displayed."
66
  msgstr "Meghatározza, hogy fog a dátum megjelenni."
67
 
68
+ #: ../classes/column.php:870
69
  msgid "Example:"
70
  msgstr "Például:"
71
 
72
+ #: ../classes/column.php:872
73
  #, php-format
74
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
75
+ msgstr "Hagyd üresen a WordPress dátumformátumának használatához, vagy változtasd meg saját formátumra <a href=\"%s\">ide kattintva</a>."
 
 
 
 
76
 
77
+ #: ../classes/column.php:873
78
  msgid "Documentation on date and time formatting."
79
  msgstr "Dokumentáció a dátum- és időformátumokhoz."
80
 
81
+ #: ../classes/column.php:887
82
  msgid "Excerpt length"
83
  msgstr "Kivonat hossza"
84
 
85
+ #: ../classes/column.php:888
86
  msgid "Number of words"
87
  msgstr "Szavak száma"
88
 
89
+ #: ../classes/column.php:906
90
  msgid "Preview size"
91
  msgstr "Előnézet mérete"
92
 
93
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
94
  msgid "Custom"
95
  msgstr "Egyedi"
96
 
97
+ #: ../classes/column.php:926
98
  msgid "width"
99
  msgstr "szélesség"
100
 
101
+ #: ../classes/column.php:929
102
  msgid "height"
103
  msgstr "magasság"
104
 
105
+ #: ../classes/column.php:943
106
  msgid "Before"
107
  msgstr "Előtte"
108
 
109
+ #: ../classes/column.php:943
110
  msgid "This text will appear before the custom field value."
111
  msgstr "Ez a szöveg fog megjelenni az egyedi mező értéke előtt."
112
 
113
+ #: ../classes/column.php:949
114
  msgid "After"
115
  msgstr "Utána"
116
 
117
+ #: ../classes/column.php:949
118
  msgid "This text will appear after the custom field value."
119
  msgstr "Ez a szöveg fog megjelenni az egyedi mező értéke után."
120
 
121
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
 
 
122
  msgid "Edit"
123
  msgstr "Szerkesztés"
124
 
125
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
126
  msgid "Remove"
127
  msgstr "Eltávolítás"
128
 
129
+ #: ../classes/column.php:1062
130
  msgid "Type"
131
  msgstr "Típus"
132
 
133
+ #: ../classes/column.php:1062
134
  msgid "Choose a column type."
135
  msgstr "Válassz egy oszloptípust."
136
 
137
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
138
  msgid "ID"
139
  msgstr "ID"
140
 
141
+ #: ../classes/column.php:1072
142
  msgid "Label"
143
  msgstr "Címke"
144
 
145
+ #: ../classes/column.php:1072
146
  msgid "This is the name which will appear as the column header."
147
  msgstr "Ez a név fog megjelenni az oszlop fejlécében."
148
 
149
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
150
  msgid "Width"
151
  msgstr "Szélesség"
152
 
153
+ #: ../classes/column.php:1081 ../classes/column.php:1082
154
  msgid "default"
155
  msgstr "alapértelmezett"
156
 
157
+ #: ../classes/column/acf-placeholder.php:19
158
  msgid "ACF Field"
159
  msgstr ""
160
 
161
  #: ../classes/column/acf-placeholder.php:32
162
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
163
  msgstr ""
164
 
165
  #: ../classes/column/acf-placeholder.php:35
166
  #, php-format
167
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
 
 
168
  msgstr ""
169
 
170
  #: ../classes/column/acf-placeholder.php:38
171
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
 
 
 
172
  msgstr ""
173
 
174
+ #: ../classes/column/acf-placeholder.php:44
175
  msgid "Find out more"
176
  msgstr ""
177
 
178
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20 ../classes/column/user/actions.php:19
 
 
 
179
  msgid "Actions"
180
  msgstr "Műveletek"
181
 
182
+ #: ../classes/column/actions.php:87
183
+ msgid "Use icons?"
184
+ msgstr ""
185
+
186
+ #: ../classes/column/actions.php:87
187
+ msgid "Use icons instead of text for displaying the actions."
188
+ msgstr ""
189
+
190
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
191
+ msgid "Yes"
192
+ msgstr ""
193
+
194
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
195
+ msgid "No"
196
+ msgstr ""
197
+
198
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
199
  msgid "Unapprove"
200
  msgstr "Jóváhagyás visszavonása"
201
 
202
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
203
  msgid "Approve"
204
  msgstr "Jóváhagyás"
205
 
206
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
207
  msgid "Restore"
208
  msgstr "Visszaállítás"
209
 
210
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
211
  msgid "Delete Permanently"
212
  msgstr "Végleges törlés"
213
 
214
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
215
  msgid "Quick&nbsp;Edit"
216
  msgstr "gyors&nbsp;szerkesztés"
217
 
218
+ #: ../classes/column/comment/actions.php:101
219
  msgid "Reply"
220
  msgstr "Válasz"
221
 
222
+ #: ../classes/column/comment/agent.php:19
223
  msgid "Agent"
224
  msgstr "Ügynök"
225
 
226
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
227
  msgid "Approved"
228
  msgstr "Jóváhagyva"
229
 
230
+ #: ../classes/column/comment/author-avatar.php:19
231
  msgid "Avatar"
232
  msgstr "Avatar"
233
 
234
+ #: ../classes/column/comment/author-email.php:19
235
  msgid "Author email"
236
  msgstr "Szerző email-je"
237
 
238
+ #: ../classes/column/comment/author-ip.php:19
239
  msgid "Author IP"
240
  msgstr "Szerző IP-je"
241
 
242
+ #: ../classes/column/comment/author-url.php:19
243
  msgid "Author url"
244
  msgstr "Szerző URL-je"
245
 
246
+ #: ../classes/column/comment/author.php:19
247
  msgid "Author"
248
  msgstr "Szerző"
249
 
250
+ #: ../classes/column/comment/date-gmt.php:19
251
  msgid "Date GMT"
252
  msgstr "GMT dátum"
253
 
254
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
255
  #, php-format
256
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
257
  msgstr "Beküldve: <a href=\"%1$s\">%2$s, %3$s</a>"
258
 
259
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
260
  msgid "Date"
261
  msgstr "Dátum"
262
 
263
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
264
  msgid "Excerpt"
265
  msgstr "Kivonat"
266
 
267
+ #: ../classes/column/comment/reply-to.php:19
268
  msgid "In Reply To"
269
  msgstr "Válaszolva erre:"
270
 
271
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
272
  msgid "Word count"
273
  msgstr "Szavak száma"
274
 
275
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
276
  msgid "Custom Field"
277
  msgstr "Egyedi mező"
278
 
279
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
280
  msgid "Default"
281
  msgstr "Alapértelmezett"
282
 
283
+ #: ../classes/column/custom-field.php:95
284
  msgid "Checkmark (true/false)"
285
  msgstr "Pipa (igaz/hamis)"
286
 
287
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
288
  msgid "Color"
289
  msgstr "Szín"
290
 
291
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
292
  msgid "Counter"
293
  msgstr "Számláló"
294
 
295
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
296
  msgid "Image"
297
  msgstr "Kép"
298
 
299
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
300
  msgid "Media Library"
301
  msgstr "Médiatár"
302
 
303
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
304
  msgid "Multiple Values"
305
  msgstr "Többszörös érték"
306
 
307
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
308
  msgid "Numeric"
309
  msgstr "Numerikus"
310
 
311
+ #: ../classes/column/custom-field.php:104
312
  msgid "Post Title (Post ID's)"
313
  msgstr "Bejegyzés címe (bejegyzés ID)"
314
 
315
+ #: ../classes/column/custom-field.php:105
316
  msgid "Username (User ID's)"
317
  msgstr "Felhasználónév (Felhasználó ID)"
318
 
319
+ #: ../classes/column/custom-field.php:356
320
  msgid "Select your custom field."
321
  msgstr "Válassz egyedi mezőt."
322
 
323
+ #: ../classes/column/custom-field.php:366
324
  msgid "No custom fields available."
325
  msgstr "Nincsenek egyedi mezők."
326
 
327
+ #: ../classes/column/custom-field.php:373
328
  msgid "Field Type"
329
  msgstr "Mező típusa"
330
 
331
+ #: ../classes/column/custom-field.php:373
332
  msgid "This will determine how the value will be displayed."
333
  msgstr "Meghatározza, hogy fog az érték megjelenni."
334
 
335
+ #: ../classes/column/link/actions.php:49
336
  #, php-format
337
  msgid ""
338
  "You are about to delete this link '%s'\n"
341
  "Biztosan törlöd ezt a hivatkozást: '%s'?\n"
342
  "'Mégse' a megállításhoz, 'OK' a törléshez."
343
 
344
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
345
  msgid "Delete"
346
  msgstr "Törlés"
347
 
348
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
349
  msgid "Description"
350
  msgstr "Leírás"
351
 
352
+ #: ../classes/column/link/length.php:19
353
  msgid "Length"
354
  msgstr "Hossz"
355
 
356
+ #: ../classes/column/link/notes.php:19
357
  msgid "Notes"
358
  msgstr "Megjegyzések"
359
 
360
+ #: ../classes/column/link/owner.php:19
361
  msgid "Owner"
362
  msgstr "Tulajdonos"
363
 
364
+ #: ../classes/column/link/rss.php:19
365
  msgid "Rss"
366
  msgstr "RSS"
367
 
368
+ #: ../classes/column/link/target.php:19
369
  msgid "Target"
370
  msgstr "Cél"
371
 
372
+ #: ../classes/column/media/alternate-text.php:19
373
  msgid "Alt"
374
  msgstr "Alt"
375
 
376
+ #: ../classes/column/media/available-sizes.php:20
377
  msgid "Available Sizes"
378
  msgstr "Elérhető méretek"
379
 
380
+ #: ../classes/column/media/available-sizes.php:40
381
  msgid "full size"
382
  msgstr "teljes méret"
383
 
384
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
385
  msgid "Caption"
386
  msgstr "Kép felirata"
387
 
388
+ #: ../classes/column/media/dimensions.php:19
389
  msgid "Dimensions"
390
  msgstr "Kép kiterjedése"
391
 
392
+ #: ../classes/column/media/exif-data.php:19
393
  msgid "EXIF data"
394
  msgstr "EXIF adato"
395
 
396
+ #: ../classes/column/media/exif-data.php:38
397
  msgid "Aperture"
398
  msgstr "Rekesz"
399
 
400
+ #: ../classes/column/media/exif-data.php:39
401
  msgid "Credit"
402
  msgstr "Érdem"
403
 
404
+ #: ../classes/column/media/exif-data.php:40
405
  msgid "Camera"
406
  msgstr "Fényképezőgép"
407
 
408
+ #: ../classes/column/media/exif-data.php:42
409
  msgid "Timestamp"
410
  msgstr "Időbélyeg"
411
 
412
+ #: ../classes/column/media/exif-data.php:43
413
  msgid "Copyright EXIF"
414
  msgstr "EXIF szerzői jog"
415
 
416
+ #: ../classes/column/media/exif-data.php:44
417
  msgid "Focal Length"
418
  msgstr "Fókusztávolság"
419
 
420
+ #: ../classes/column/media/exif-data.php:45
421
  msgid "ISO"
422
  msgstr "ISO"
423
 
424
+ #: ../classes/column/media/exif-data.php:46
425
  msgid "Shutter Speed"
426
  msgstr "Zársebesség"
427
 
428
+ #: ../classes/column/media/exif-data.php:47
429
  msgid "Title"
430
  msgstr "Cím"
431
 
432
+ #: ../classes/column/media/file-name.php:19
433
  msgid "File name"
434
  msgstr "Fájlnév"
435
 
436
+ #: ../classes/column/media/file-size.php:19
437
  msgid "File size"
438
  msgstr "Fájlméret"
439
 
440
+ #: ../classes/column/media/full-path.php:19
441
  msgid "Full path"
442
  msgstr "Teljes útvonal"
443
 
444
+ #: ../classes/column/media/height.php:19
445
  msgid "Height"
446
  msgstr "Magasság"
447
 
448
+ #: ../classes/column/media/mime-type.php:19
449
  msgid "Mime type"
450
  msgstr "Mime típus"
451
 
452
+ #: ../classes/column/post/actions.php:31
453
  msgid "Edit this item"
454
  msgstr "Elem szerkesztése"
455
 
456
+ #: ../classes/column/post/actions.php:34
457
  msgid "Edit this item inline"
458
  msgstr "Elem szerkesztése helyben"
459
 
460
+ #: ../classes/column/post/actions.php:39
461
  msgid "Restore this item from the Trash"
462
  msgstr "Elem visszaállítása a Kukábó"
463
 
464
+ #: ../classes/column/post/actions.php:41
465
  msgid "Move this item to the Trash"
466
  msgstr "Elem törlése a Kukába"
467
 
468
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
469
  msgid "Trash"
470
  msgstr "Kuka"
471
 
472
+ #: ../classes/column/post/actions.php:43
473
  msgid "Delete this item permanently"
474
  msgstr "Elem végleges törlése"
475
 
476
+ #: ../classes/column/post/actions.php:48
477
  #, php-format
478
  msgid "Preview &#8220;%s&#8221;"
479
  msgstr "Előnézet: &#8220;%s&#8221;"
480
 
481
+ #: ../classes/column/post/actions.php:48
482
  msgid "Preview"
483
  msgstr "Előnézet"
484
 
485
+ #: ../classes/column/post/actions.php:50
486
  #, php-format
487
  msgid "View &#8220;%s&#8221;"
488
  msgstr "Megtekintés: &#8220;%s&#8221;"
489
 
490
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
491
  msgid "View"
492
  msgstr "Megtekintés"
493
 
494
+ #: ../classes/column/post/attachment-count.php:19
495
  msgid "No. of Attachments"
496
  msgstr "Csatolmányok száma"
497
 
498
+ #: ../classes/column/post/attachment.php:19
499
  msgid "Attachment"
500
  msgstr "Csatolmány"
501
 
502
+ #: ../classes/column/post/author-name.php:20
503
  msgid "Display Author As"
504
  msgstr "Szerző megjelenítése mint"
505
 
506
+ #: ../classes/column/post/author-name.php:40
507
  msgid "Display Name"
508
  msgstr "Megjelenő név"
509
 
510
+ #: ../classes/column/post/author-name.php:41
511
  msgid "First Name"
512
  msgstr "Utónév"
513
 
514
+ #: ../classes/column/post/author-name.php:42
515
  msgid "Last Name"
516
  msgstr "Vezetéknév"
517
 
518
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
519
  msgid "Nickname"
520
  msgstr "Becenév"
521
 
522
+ #: ../classes/column/post/author-name.php:44
523
  msgid "User Login"
524
  msgstr "Felhasználó bejelentkezés"
525
 
526
+ #: ../classes/column/post/author-name.php:45
527
  msgid "User Email"
528
  msgstr "Felhasználó email"
529
 
530
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
531
  msgid "User ID"
532
  msgstr "Felhasználó ID "
533
 
534
+ #: ../classes/column/post/author-name.php:47
535
  msgid "First and Last Name"
536
  msgstr "Elő- és utónév"
537
 
538
+ #: ../classes/column/post/author-name.php:124
539
  msgid "This is the format of the author name."
540
  msgstr "Ez a szerző nevének formátuma"
541
 
542
+ #: ../classes/column/post/before-moretag.php:19
543
  msgid "Before More Tag"
544
  msgstr "A \"További\" címke előtti rész"
545
 
546
+ #: ../classes/column/post/comment-count.php:20
547
  msgid "Comment count"
548
  msgstr "Hozzászólások száma"
549
 
550
+ #: ../classes/column/post/comment-count.php:34
551
  msgid "Total"
552
  msgstr "Összesen"
553
 
554
+ #: ../classes/column/post/comment-count.php:36
555
  msgid "Pending"
556
  msgstr "Folyamatban"
557
 
558
+ #: ../classes/column/post/comment-count.php:37
559
  msgid "Spam"
560
  msgstr "Levélszemét"
561
 
562
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
563
  msgid "Comment status"
564
  msgstr "Hozzászólás státusza"
565
 
566
+ #: ../classes/column/post/comment-count.php:99
567
  msgid "Select which comment status you like to display."
568
  msgstr "Válasz ki, melyik hozzászólás státuszt szeretnéd megjeleníteni."
569
 
570
+ #: ../classes/column/post/featured-image.php:19
571
  msgid "Featured Image"
572
  msgstr "Kiemelt kép"
573
 
574
+ #: ../classes/column/post/formats.php:19
575
  msgid "Post Format"
576
  msgstr "Bejegyzés formátum"
577
 
578
+ #: ../classes/column/post/modified.php:19
579
  msgid "Last modified"
580
  msgstr "Utoljára módosítva"
581
 
582
+ #: ../classes/column/post/order.php:19
583
  msgid "Page Order"
584
  msgstr "Sorrend megváltoztatása"
585
 
586
+ #: ../classes/column/post/page-template.php:19
587
  msgid "Page Template"
588
  msgstr "Oldal sablon"
589
 
590
+ #: ../classes/column/post/parent.php:19
591
  msgid "Parent"
592
  msgstr "Szülő"
593
 
594
+ #: ../classes/column/post/path.php:19
595
+ msgid "Path"
596
+ msgstr ""
597
+
598
+ #: ../classes/column/post/permalink.php:19
599
  msgid "Permalink"
600
  msgstr ""
601
 
602
+ #: ../classes/column/post/permalink.php:68
603
+ msgid "Link to post"
604
+ msgstr ""
605
+
606
+ #: ../classes/column/post/permalink.php:68
607
+ msgid "This will make the permalink clickable."
608
+ msgstr ""
609
+
610
+ #: ../classes/column/post/ping-status.php:19
611
  msgid "Ping status"
612
  msgstr "Ping státusz"
613
 
614
+ #: ../classes/column/post/roles.php:19
615
  msgid "Roles"
616
  msgstr "Jogkörök"
617
 
618
+ #: ../classes/column/post/slug.php:19
619
  msgid "Slug"
620
  msgstr "Keresőbarát név/slug"
621
 
622
+ #: ../classes/column/post/status.php:19
623
  msgid "Status"
624
  msgstr "Státusz"
625
 
626
+ #: ../classes/column/post/status.php:29
627
  msgid "Published"
628
  msgstr "Közzétéve"
629
 
630
+ #: ../classes/column/post/status.php:30
631
  msgid "Draft"
632
  msgstr "Vázlat"
633
 
634
+ #: ../classes/column/post/status.php:31
635
  msgid "Scheduled"
636
  msgstr "Időzítve"
637
 
638
+ #: ../classes/column/post/status.php:32
639
  msgid "Private"
640
  msgstr "Magánjellegű"
641
 
642
+ #: ../classes/column/post/status.php:33
643
  msgid "Pending Review"
644
  msgstr "Jóváhagyás alatt"
645
 
646
+ #: ../classes/column/post/status.php:34
647
  msgid "Auto Draft"
648
  msgstr ""
649
 
650
+ #: ../classes/column/post/sticky.php:19
651
  msgid "Sticky"
652
  msgstr "Ragadós"
653
 
654
+ #: ../classes/column/post/title-raw.php:19
655
+ msgid "Title without actions"
656
+ msgstr ""
657
+
658
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
659
  msgid "Taxonomy"
660
  msgstr "Taxonómia"
661
 
662
+ #: ../classes/column/used-by-menu.php:20
663
+ msgid "Used by Menu"
664
+ msgstr ""
665
+
666
+ #: ../classes/column/used-by-menu.php:133
667
+ msgid "Link to menu"
668
+ msgstr ""
669
+
670
+ #: ../classes/column/used-by-menu.php:133
671
+ msgid "This will make the title link to the menu."
672
+ msgstr ""
673
+
674
+ #: ../classes/column/user/comment-count.php:19
675
  msgid "Comment Count"
676
  msgstr "Hozzászólások száma"
677
 
678
+ #: ../classes/column/user/first-name.php:19
679
  msgid "First name"
680
  msgstr "Utónév"
681
 
682
+ #: ../classes/column/user/last-name.php:19
683
  msgid "Last name"
684
  msgstr "Vezetéknév"
685
 
686
+ #: ../classes/column/user/post-count.php:19
687
  msgid "Post Count"
688
  msgstr "Bejegyzések száma"
689
 
690
+ #: ../classes/column/user/post-count.php:102
691
  msgid "Post Type"
692
  msgstr "Bejegyzés típus"
693
 
694
+ #: ../classes/column/user/registered.php:19
695
  msgid "Registered"
696
  msgstr "Feliratkozott"
697
 
698
+ #: ../classes/column/user/url.php:19
699
  msgid "Url"
700
  msgstr "URL"
701
 
702
+ #: ../classes/settings.php:111
703
  msgid "Add-on successfully activated."
704
  msgstr ""
705
 
706
+ #: ../classes/settings.php:114
707
  msgid "Add-on successfully deactivated."
708
  msgstr ""
709
 
710
+ #: ../classes/settings.php:169
711
  msgid "Admin Columns Settings"
712
  msgstr "Admin Columns beállítások"
713
 
714
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
715
  msgid "Admin Columns"
716
  msgstr "Admin Columns"
717
 
718
+ #: ../classes/settings.php:217
719
  #, php-format
720
  msgid "%s column is already present and can not be duplicated."
721
  msgstr "A %s oszlop már a listában van, és nem szerepelhet egynél többször."
722
 
723
+ #: ../classes/settings.php:271
724
  msgid "Default settings succesfully restored."
725
  msgstr "Alapértelmezett beállítások sikeresen visszaállítva."
726
 
727
+ #: ../classes/settings.php:288
728
  msgid "Overview"
729
  msgstr "Áttekintés"
730
 
731
+ #: ../classes/settings.php:291
732
+ msgid "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
733
+ msgstr "A plugin segítségével további oszlopokat lehet hozzáadni bejegyzések (egyedi bejegyzéstípusok), oldalak, médiatár, hivatkozások és felhasználók adminisztrációs felületekhez."
 
 
 
 
 
 
734
 
735
+ #: ../classes/settings.php:294
736
  msgid "Basics"
737
  msgstr "Alapok"
738
 
739
+ #: ../classes/settings.php:296
740
  msgid "Change order"
741
  msgstr "Sorrend megváltoztatása"
742
 
743
+ #: ../classes/settings.php:297
744
+ msgid "By dragging the columns you can change the order which they will appear in."
745
+ msgstr "Az oszlopok más helyre húzásával lehet változtatni az oszlopok sorrendjén."
 
 
746
 
747
+ #: ../classes/settings.php:298
748
  msgid "Change label"
749
  msgstr "Címke megváltoztatása"
750
 
751
+ #: ../classes/settings.php:299
752
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
753
+ msgstr "A nyílra kattintva láthatóvá válnak az oszlop beállításai. Itt lehet módosítani az oszlopok fejléceinek neveit."
 
 
 
 
754
 
755
+ #: ../classes/settings.php:300
756
  msgid "Change column width"
757
  msgstr "Oszlopszélesség módosítása"
758
 
759
+ #: ../classes/settings.php:301
760
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
761
+ msgstr "A nyílra kattintva láthatóvá válnak az oszlop beállításai. Itt lehet módosítani az oszlopok fejléceinek neveit. A csúszka húzásával beállítható az oszlopok százalékos szélessége."
 
 
 
 
 
762
 
763
+ #: ../classes/settings.php:307
764
  msgid "'Custom Field' column"
765
  msgstr "\"Egyedi mező\" oszlop"
766
 
767
+ #: ../classes/settings.php:308
768
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
769
+ msgstr "Az egyedi mező oszlop a bejegyzések és felhasználók egyedi mezőit használja. 10-féle típust lehet beállítani."
 
 
 
 
770
 
771
+ #: ../classes/settings.php:310
772
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
773
+ msgstr "Érték: karakterlánc vagy tömb. A tömbökből egydimenziós tömbök lesznek, az értékek vesszővel lesznek elválasztva \",\"."
 
 
 
 
774
 
775
+ #: ../classes/settings.php:311
776
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
777
+ msgstr "Érték: kép URL vagy Csatolmány ID-t fog tartalmazni, vesszővel elválasztva (\",\")"
 
 
 
 
778
 
779
+ #: ../classes/settings.php:312
780
  msgid "Value: This will show the first 20 words of the Post content."
781
  msgstr "Érték: az első 20 szót fogja tartalmazni a Bejegyzés tartalmából."
782
 
783
+ #: ../classes/settings.php:313
784
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
785
  msgstr "Érték: tömb. A többdimenziós tömbökből egydimenziósak lesznek."
786
 
787
+ #: ../classes/settings.php:314
788
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
789
+ msgstr "Érték: csak egész számok.<br/>Ha rendelkezésre áll a \"Rendezés\" kiegészítő, ez az érték fog a rendezés alapjául szolgálni, tehát a bejegyzéseket numerikus (egyedi mező) értékek alapján lehet rendezni. "
 
 
 
 
 
790
 
791
+ #: ../classes/settings.php:315
792
  #, php-format
793
+ msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
794
+ msgstr "Érték: unix időpecsét vagy a <a href='%s'>Codex</a>-ben leírt dátumformátum. A visszaadott dátum értékét az <a href='%s'>általános beállítások</a> oldalon lehet beállítani."
 
 
 
 
 
 
795
 
796
+ #: ../classes/settings.php:316
797
  msgid "Post Titles"
798
  msgstr "Bejegyzések címei"
799
 
800
+ #: ../classes/settings.php:316
801
  msgid "Value: can be one or more Post ID's (seperated by ',')."
802
  msgstr "Érték: egy vagy több bejegyzés ID-ja (vesszővel elválasztva \",\")."
803
 
804
+ #: ../classes/settings.php:317
805
  msgid "Usernames"
806
  msgstr "Felhasználónevek"
807
 
808
+ #: ../classes/settings.php:317
809
  msgid "Value: can be one or more User ID's (seperated by ',')."
810
  msgstr "Érték: egy vagy több felhasználó ID-ja (vesszővel elválasztva \",\")."
811
 
812
+ #: ../classes/settings.php:318
813
  msgid "Checkmark"
814
  msgstr "Pipa"
815
 
816
+ #: ../classes/settings.php:318
817
  msgid "Value: should be a 1 (one) or 0 (zero)."
818
  msgstr "Érték: 1 (egy) vagy 0 (nulla)."
819
 
820
+ #: ../classes/settings.php:319
821
  msgid "Value: hex value color, such as #808080."
822
  msgstr "Érték: hex színkód, pl. #808080."
823
 
824
+ #: ../classes/settings.php:320
825
+ msgid "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."
826
+ msgstr "Érték: karakterlánc vagy tömb. Megjeleníti, hogy az elem hányszor használja a meta kulcsot."
 
 
 
 
827
 
828
+ #: ../classes/settings.php:409
829
  msgid "Welcome to Admin Columns"
830
  msgstr "Üdvözöl az Admin Columns"
831
 
832
+ #: ../classes/settings.php:412
833
  msgid "Thank you for updating to the latest version!"
834
  msgstr "Köszönjük, hogy frissítetted a legújabb verzióra!"
835
 
836
+ #: ../classes/settings.php:413
837
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
838
+ msgstr "Az Admin Columns még fejlettebb és élvezetesebb, mint valaha. Reméljük tetszeni fog."
 
 
 
 
839
 
840
+ #: ../classes/settings.php:418
841
  msgid "What’s New"
842
  msgstr "Újdonságok"
843
 
844
+ #: ../classes/settings.php:419
845
  msgid "Changelog"
846
  msgstr "Változtatások listája"
847
 
848
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
849
  msgid "Important"
850
  msgstr "Fontos"
851
 
852
+ #: ../classes/settings.php:426
853
  msgid "Database Changes"
854
  msgstr "Adatbázis változtatások"
855
 
856
+ #: ../classes/settings.php:427
857
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
858
+ msgstr "Az adatbázis változott az 1-es és a 2-es verzió között. A lefelé történő frissítés 1-es verziója probléma nélkül lehetséges."
 
 
 
 
859
 
860
+ #: ../classes/settings.php:430
861
  msgid "Make sure you backup your database and then click"
862
  msgstr "Bizonyosodj meg róla, hogy van adatbázis mentésed, majd kattints"
863
 
864
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
865
  msgid "Upgrade Database"
866
  msgstr "Adatbázis frissítése"
867
 
868
+ #: ../classes/settings.php:433
869
  msgid "Potential Issues"
870
  msgstr "Lehetséges problémák"
871
 
872
+ #: ../classes/settings.php:434
873
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
874
+ msgstr "A kód refraktorálása után, beleértve a kiegészítőket és filtereket, előfordulhat, hogy a weboldal nem fog megfelelően működni. Fontos, hogy olvasd el a teljes"
 
 
 
 
 
 
875
 
876
+ #: ../classes/settings.php:434
877
  msgid "Migrating from v1 to v2"
878
  msgstr "Frissítés v1-ről v2-re"
879
 
880
+ #: ../classes/settings.php:434
881
  msgid "guide to view the full list of changes."
882
  msgstr "leírást a változtatások teljes listájáért."
883
 
884
+ #: ../classes/settings.php:434
885
  #, php-format
886
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
887
+ msgstr "Ha hibát találsz, kérlek <a href=\"%s\">jelezd őket felénk</a>, hogy javíthassuk a következő verzióban."
 
 
 
 
888
 
889
+ #: ../classes/settings.php:437
890
  msgid "Important!"
891
  msgstr "Fontos!"
892
 
893
+ #: ../classes/settings.php:437
894
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
895
+ msgstr "Ha frissítetted az Admin Columns bővítményt az ilyen jellegű változtatások hatásának előzetes tudta nélkül, kérjük állítsd vissza a korábbi"
 
 
 
 
896
 
897
+ #: ../classes/settings.php:437
898
  msgid "version 1"
899
  msgstr "verzió 1"
900
 
901
+ #: ../classes/settings.php:437
902
  msgid "of this plugin."
903
  msgstr "a bővítménynek."
904
 
905
+ #: ../classes/settings.php:443
906
  msgid "Changelog for"
907
  msgstr "Változtatások listája"
908
 
909
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
910
  msgid "Learn more"
911
  msgstr "Bővebb információ"
912
 
913
+ #: ../classes/settings.php:468
914
  msgid "Start using Admin Columns"
915
  msgstr "Admin Columns használatának megkezdése"
916
 
917
+ #: ../classes/settings.php:511
918
  msgid "General Settings"
919
  msgstr "Általános beállítások"
920
 
921
+ #: ../classes/settings.php:512
922
  msgid "Customize your Admin Columns settings."
923
  msgstr "Az Admin Columns beállítások módosítása"
924
 
925
+ #: ../classes/settings.php:523
926
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
 
927
  msgstr ""
 
 
928
 
929
+ #: ../classes/settings.php:530 ../classes/settings.php:660
930
  msgid "Save"
931
  msgstr "Mentés"
932
 
933
+ #: ../classes/settings.php:570
934
  msgid "Restore Settings"
935
  msgstr "Beállítások visszaállítása"
936
 
937
+ #: ../classes/settings.php:571
938
  msgid "This will delete all column settings and restore the default settings."
939
+ msgstr "Törli minden oszlop beállítást és visszaállítja az alapértelmezett beállításokat."
 
 
940
 
941
+ #: ../classes/settings.php:577
942
  msgid "Restore default settings"
943
  msgstr "Alapértelmezett beállítások visszaállítása"
944
 
945
+ #: ../classes/settings.php:577
946
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
947
+ msgstr "Figyelem! Minden mentett admin oszlop adat törlésre kerül. A művelet nem visszavonható. \\'OK\\': törlés, \\'Mégse\\': megállítás"
 
 
 
 
948
 
949
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
950
  msgid "Settings"
951
  msgstr "Beállítások"
952
 
953
+ #: ../classes/settings.php:600
954
  msgid "Add-ons"
955
  msgstr ""
956
 
957
+ #: ../classes/settings.php:625
958
  msgid "Posttypes"
959
  msgstr ""
960
 
961
+ #: ../classes/settings.php:626
962
  msgid "Others"
963
  msgstr ""
964
 
965
+ #: ../classes/settings.php:627
966
  msgid "Taxonomies"
967
  msgstr ""
968
 
969
+ #: ../classes/settings.php:646
970
  #, php-format
971
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
 
 
972
  msgstr ""
973
 
974
+ #: ../classes/settings.php:656
975
  msgid "Store settings"
976
  msgstr "Beállítások tárolása"
977
 
978
+ #: ../classes/settings.php:660
979
  msgid "Update"
980
  msgstr "Frissítés"
981
 
982
+ #: ../classes/settings.php:664
983
  #, php-format
984
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
985
+ msgstr "Figyelem! A %s oszlopok adatai törölve lesznek. A művelet nem visszavonható. \\'OK\\': törlés, \\Mégse\\': megállítás"
 
 
 
 
986
 
987
+ #: ../classes/settings.php:665
988
  msgid "columns"
989
  msgstr "oszlopok"
990
 
991
+ #: ../classes/settings.php:684
992
  msgid "Get Admin Columns Pro"
993
  msgstr ""
994
 
995
+ #: ../classes/settings.php:688
996
  msgid "Add Sorting"
997
  msgstr "Rendezés hozzáadása"
998
 
999
+ #: ../classes/settings.php:689
1000
  msgid "Add Filtering"
1001
  msgstr "Szűrés hozzáadása"
1002
 
1003
+ #: ../classes/settings.php:690
1004
  msgid "Add Import/Export"
1005
  msgstr "Import/export hozzáadása"
1006
 
1007
+ #: ../classes/settings.php:691
1008
  msgid "Add Direct Editing"
1009
  msgstr ""
1010
 
1011
+ #: ../classes/settings.php:694
1012
  #, php-format
1013
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1014
  msgstr ""
1015
 
1016
+ #: ../classes/settings.php:725
1017
+ msgid "Are you happy with Admin Columns?"
1018
+ msgstr ""
1019
+
1020
+ #: ../classes/settings.php:733
1021
+ msgid "What's wrong? Need help? Let us know!"
1022
+ msgstr ""
1023
+
1024
+ #: ../classes/settings.php:734
1025
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1026
+ msgstr ""
1027
+
1028
  #: ../classes/settings.php:742
1029
+ msgid "Docs"
1030
+ msgstr ""
1031
+
1032
+ #: ../classes/settings.php:747
1033
+ msgid "Forums"
1034
+ msgstr ""
1035
+
1036
+ #: ../classes/settings.php:756
1037
+ msgid "Woohoo! We're glad to hear that!"
1038
+ msgstr ""
1039
+
1040
+ #: ../classes/settings.php:757
1041
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1042
+ msgstr ""
1043
+
1044
+ #: ../classes/settings.php:761
1045
+ msgid "Rate"
1046
+ msgstr ""
1047
+
1048
+ #: ../classes/settings.php:772
1049
+ msgid "Tweet"
1050
+ msgstr ""
1051
+
1052
+ #: ../classes/settings.php:782
1053
+ msgid "Buy Pro"
1054
+ msgstr ""
1055
+
1056
+ #: ../classes/settings.php:794
1057
  msgid "Support"
1058
  msgstr "Támogatás"
1059
 
1060
+ #: ../classes/settings.php:797
1061
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1062
+ msgstr "Tekintsd meg a <strong>Súgó</strong> részt a képernyő jobb felső sarkában."
 
1063
 
1064
+ #: ../classes/settings.php:800
1065
  #, php-format
1066
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1067
+ msgstr "A teljes dokumentációhoz, problémák jelentéséhez, új javaslatok beküldéséhez és egyéb tippekért <a href='%s'>keresd fel az Admin Columns weboldalát</a>"
 
 
 
 
1068
 
1069
+ #: ../classes/settings.php:829
1070
  msgid "Drag and drop to reorder"
1071
  msgstr "Húzd az elemeket más helyre a sorrend megváltoztatásához"
1072
 
1073
+ #: ../classes/settings.php:832
1074
  msgid "Add Column"
1075
  msgstr "Oszlop hozzáadása"
1076
 
1077
+ #: ../classes/settings.php:908
1078
  msgid "Active"
1079
  msgstr ""
1080
 
1081
+ #: ../classes/settings.php:909
1082
  msgid "Deactivate"
1083
  msgstr ""
1084
 
1085
+ #: ../classes/settings.php:916
1086
  msgid "Installed"
1087
  msgstr ""
1088
 
1089
+ #: ../classes/settings.php:917
1090
  msgid "Activate"
1091
  msgstr ""
1092
 
1093
+ #: ../classes/settings.php:931
1094
  msgid "Download & Install"
1095
  msgstr ""
1096
 
1097
+ #: ../classes/settings.php:936
1098
  msgid "Get this add-on"
1099
  msgstr ""
1100
 
1101
+ #: ../classes/storage_model.php:213
1102
  msgid "settings succesfully restored."
1103
  msgstr "Beállítások sikeresen visszaállítva."
1104
 
1105
+ #: ../classes/storage_model.php:229
1106
  msgid "No columns settings available."
1107
  msgstr "Nincs elérhető oszlopbeállítás."
1108
 
1109
+ #: ../classes/storage_model.php:250
1110
  #, php-format
1111
  msgid "You are trying to store the same settings for %s."
1112
  msgstr "Ugyanazokat a beállításokat próbálod menteni a %s-nél."
1113
 
1114
+ #: ../classes/storage_model.php:254
1115
  #, php-format
1116
  msgid "Settings for %s updated succesfully."
1117
  msgstr "A %s oszlop beállításai sikeresen frissítve."
1128
  msgid "Users"
1129
  msgstr "Felhasználók"
1130
 
1131
+ #: ../classes/upgrade.php:62
1132
+ msgid ""
1133
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of <strong>Admin Columns Pro</strong> <a "
1134
+ "href=\"http://www.admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new features, including Direct Inline Editing!"
1135
+ msgstr ""
1136
+
1137
+ #: ../classes/upgrade.php:95
1138
  msgid "Upgrade"
1139
  msgstr "Frissítés"
1140
 
1141
+ #: ../classes/upgrade.php:136
1142
  msgid "requires a database upgrade"
1143
  msgstr "adatbázis frissítést igényel"
1144
 
1145
+ #: ../classes/upgrade.php:139
1146
  msgid "why?"
1147
  msgstr "miért?"
1148
 
1149
+ #: ../classes/upgrade.php:140
1150
  msgid "Please"
1151
  msgstr "Kérlek"
1152
 
1153
+ #: ../classes/upgrade.php:141
1154
  msgid "backup your database"
1155
  msgstr "készíts biztonsági mentést az adatbázisról"
1156
 
1157
+ #: ../classes/upgrade.php:142
1158
  msgid "then click"
1159
  msgstr "majd kattints az"
1160
 
1161
+ #: ../classes/upgrade.php:351
1162
  msgid "Migrating Column Settings"
1163
  msgstr "Oszlopbeállítások migrálása"
1164
 
1165
+ #: ../classes/upgrade.php:387
1166
  msgid "No Upgrade Required"
1167
  msgstr "Nincs szükség frissítésre"
1168
 
1169
+ #: ../classes/upgrade.php:388
1170
  msgid "Return to welcome screen."
1171
  msgstr "Vissza a nyitóoldalra"
1172
 
1173
+ #: ../classes/upgrade.php:406
1174
  msgid "Upgrade Complete!"
1175
  msgstr "Frissítés kész!"
1176
 
1177
+ #: ../classes/upgrade.php:406
1178
  msgid "Return to settings."
1179
  msgstr "Vissza a beállításokhoz."
1180
 
1181
+ #: ../classes/upgrade.php:407
1182
  msgid "Error"
1183
  msgstr "Hiba"
1184
 
1185
+ #: ../classes/upgrade.php:408
1186
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1187
+ msgstr "Sajnáljuk. Hiba történt a frissítés során. Kérjük jelezd a támogatói fórumon."
 
 
 
1188
 
1189
+ #: ../codepress-admin-columns.php:390
1190
  msgid "Edit columns"
1191
  msgstr "Oszlopok szerkesztése"
languages/cpac-it_IT.mo ADDED
Binary file
languages/cpac-it_IT.po ADDED
@@ -0,0 +1,547 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # francesco <francesco.tosi@gmail.com>, 2014
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: Admin Columns Pro\n"
7
+ "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-12-06 11:16+0100\n"
9
+ "PO-Revision-Date: 2014-12-06 23:37+0100\n"
10
+ "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/admin-columns-pro/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.7\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
+ "X-Poedit-SearchPath-0: ..\n"
22
+ "X-Poedit-SearchPath-1: .\n"
23
+ "X-Poedit-SearchPathExcluded-0: ../codepress-admin-columns\n"
24
+
25
+ #: ../admin-columns-pro.php:95 ../cac-addon-pro.php:147 ../classes/licence-manager-settings.php:326
26
+ msgid "Settings"
27
+ msgstr "Impostazioni"
28
+
29
+ #: ../classes/api.php:239
30
+ msgid "Empty response from API."
31
+ msgstr "Mancata risposta dalle API."
32
+
33
+ #: ../classes/export-import/classes/export_import.php:43 ../classes/export-import/classes/export_import.php:333
34
+ msgid "Export field is empty. Please select your types from the left column."
35
+ msgstr "Il campo di esportazione è vuoto. Seleziona le impostazioni per Tipologia dalla colonna di sinistra."
36
+
37
+ #: ../classes/export-import/classes/export_import.php:72
38
+ msgid "Export/Import"
39
+ msgstr "Esporta/Importa"
40
+
41
+ #: ../classes/export-import/classes/export_import.php:89
42
+ msgid "Results"
43
+ msgstr "Risultati"
44
+
45
+ #: ../classes/export-import/classes/export_import.php:90 ../classes/export-import/classes/export_import.php:183
46
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:98
47
+ msgid "Instructions"
48
+ msgstr "Istruzioni"
49
+
50
+ #: ../classes/export-import/classes/export_import.php:92
51
+ msgid "Using the PHP export"
52
+ msgstr "Uso dell'esportazione in PHP"
53
+
54
+ #: ../classes/export-import/classes/export_import.php:94 ../classes/export-import/classes/export_import.php:169
55
+ msgid "Copy the generated PHP code in the right column"
56
+ msgstr "Copia il codice PHP generatosi nella colonna qui a destra "
57
+
58
+ #: ../classes/export-import/classes/export_import.php:95 ../classes/export-import/classes/export_import.php:170
59
+ msgid "Insert the code in your themes functions.php or in your plugin (on the init action)"
60
+ msgstr "Includi il codice nel file functions.php del tuo tema o nel tuo plugin (nella init action)"
61
+
62
+ #: ../classes/export-import/classes/export_import.php:96 ../classes/export-import/classes/export_import.php:171
63
+ msgid "Your columns settings are now loaded from your PHP code instead of from your column settings!"
64
+ msgstr "Le impostazioni personalizzate delle colonne vengono ora caricate dal tuo PHP invece che dalle impostazioni del plugin."
65
+
66
+ #: ../classes/export-import/classes/export_import.php:109
67
+ msgid "Columns"
68
+ msgstr "Colonne"
69
+
70
+ #: ../classes/export-import/classes/export_import.php:110
71
+ msgid "Select the columns to be exported."
72
+ msgstr "Seleziona le colonne da esportare"
73
+
74
+ #: ../classes/export-import/classes/export_import.php:121
75
+ msgid "General"
76
+ msgstr "Generali"
77
+
78
+ #: ../classes/export-import/classes/export_import.php:122
79
+ msgid "Posts"
80
+ msgstr "Posts"
81
+
82
+ #: ../classes/export-import/classes/export_import.php:133
83
+ msgid "select all"
84
+ msgstr "seleziona tutto"
85
+
86
+ #: ../classes/export-import/classes/export_import.php:135
87
+ msgid "Export PHP"
88
+ msgstr "Esporta PHP"
89
+
90
+ #: ../classes/export-import/classes/export_import.php:136 ../classes/export-import/classes/export_import.php:151
91
+ msgid "Export to text"
92
+ msgstr "Esporta file .txt"
93
+
94
+ #: ../classes/export-import/classes/export_import.php:140
95
+ msgid "No stored column settings are found."
96
+ msgstr "Non sono state trovate impostazioni salvate per le Colonne"
97
+
98
+ #: ../classes/export-import/classes/export_import.php:152
99
+ msgid "Admin Columns will export to a format compatible with the Admin Columns import functionality."
100
+ msgstr "Admin Columns esporterà in un formato compatibile con la funzione di importazione di Admin Columns"
101
+
102
+ #: ../classes/export-import/classes/export_import.php:154 ../classes/export-import/classes/export_import.php:167
103
+ msgid "Select the columns you which to export from the list in the left column"
104
+ msgstr "Seleziona le colonne che vuoi esportare dalla lista nella colonna di sinistra"
105
+
106
+ #: ../classes/export-import/classes/export_import.php:155
107
+ msgid "Click the &quot;Export to text&quot; button"
108
+ msgstr "Premi il pulsante &quot;Esporta file .txt&quot;"
109
+
110
+ #: ../classes/export-import/classes/export_import.php:156
111
+ msgid "Save the .txt-file when prompted"
112
+ msgstr "Salva il file .txt quando richiesto dal browser"
113
+
114
+ #: ../classes/export-import/classes/export_import.php:157
115
+ msgid "Go to the Admin Columns import/export page in your other installation"
116
+ msgstr "Vai alla pagina Esporta/Importa della tua altra istallazione di Admin Columns"
117
+
118
+ #: ../classes/export-import/classes/export_import.php:158
119
+ msgid "Select the export .txt-file"
120
+ msgstr "Seleziona il file .txt esportato"
121
+
122
+ #: ../classes/export-import/classes/export_import.php:159
123
+ msgid "Click the &quot;Start import&quot; button"
124
+ msgstr "Premi il pulsante &quot;Inizia importazione&quot;"
125
+
126
+ #: ../classes/export-import/classes/export_import.php:160
127
+ msgid "Poof!"
128
+ msgstr "Puf!"
129
+
130
+ #: ../classes/export-import/classes/export_import.php:164
131
+ msgid "Export to PHP"
132
+ msgstr "Esporta in PHP"
133
+
134
+ #: ../classes/export-import/classes/export_import.php:165
135
+ msgid "Admin Columns will export PHP code you can directly insert in your plugin or theme."
136
+ msgstr "Admin Columns esporterà del codice PHP che potrai inserire direttamente nel tuo tema o plugin."
137
+
138
+ #: ../classes/export-import/classes/export_import.php:168
139
+ msgid "Click the &quot;Export to PHP&quot; button"
140
+ msgstr "Premi il pulsante &quot;Esporta in PHP&quot;"
141
+
142
+ #: ../classes/export-import/classes/export_import.php:181
143
+ msgid "Import"
144
+ msgstr "Importa"
145
+
146
+ #: ../classes/export-import/classes/export_import.php:182
147
+ msgid "Copy and paste your import settings here."
148
+ msgstr "Copia e incolla le tue impostazioni di importazione qui."
149
+
150
+ #: ../classes/export-import/classes/export_import.php:185
151
+ msgid "Import Columns Types"
152
+ msgstr "Importa le Tipologie di Colonne"
153
+
154
+ #: ../classes/export-import/classes/export_import.php:187
155
+ msgid "Choose a Admin Columns Export file to upload."
156
+ msgstr "Scegli un file di esportazione di Admin Columns da caricare."
157
+
158
+ #: ../classes/export-import/classes/export_import.php:188
159
+ msgid "Click upload file and import."
160
+ msgstr "Premi il bottone &quot;Carica e importa&quot;"
161
+
162
+ #: ../classes/export-import/classes/export_import.php:189
163
+ msgid "That's it! You imported settings are now active."
164
+ msgstr "Fatto! Le impostazioni importate adesso sono attive."
165
+
166
+ #: ../classes/export-import/classes/export_import.php:198
167
+ msgid "Upload file and import"
168
+ msgstr "Carica e importa"
169
+
170
+ #: ../classes/export-import/classes/export_import.php:366 ../classes/export-import/classes/export_import.php:368
171
+ msgid "Sorry, there has been an error."
172
+ msgstr "Ops, c'è stato un errore."
173
+
174
+ #: ../classes/export-import/classes/export_import.php:368
175
+ #, php-format
176
+ msgid "The export file could not be found at <code>%s</code>. It is likely that this was caused by a permissions problem."
177
+ msgstr "Il file di esportazione non è stato trovato in <code>%s</code>. Probabilmente si tratta di un problema di permessi."
178
+
179
+ #: ../classes/export-import/classes/export_import.php:386
180
+ msgid "Import failed. File does not contain Admin Column settings."
181
+ msgstr "Importazione fallita. Il file non contiene impostazioni di Admin Column."
182
+
183
+ #: ../classes/export-import/classes/export_import.php:395
184
+ #, php-format
185
+ msgid "Screen %s does not exist."
186
+ msgstr "La schermata %s non esiste."
187
+
188
+ #: ../classes/filtering/classes/model.php:103
189
+ #, php-format
190
+ msgid "All %s"
191
+ msgstr "Tutti %s"
192
+
193
+ #: ../classes/filtering/classes/model.php:109
194
+ msgid "Empty"
195
+ msgstr "Vuoto"
196
+
197
+ #: ../classes/filtering/classes/model.php:110
198
+ msgid "Not empty"
199
+ msgstr "Non vuoto"
200
+
201
+ #: ../classes/filtering/classes/posts.php:383
202
+ msgid "Not sticky"
203
+ msgstr "Non sticky"
204
+
205
+ #: ../classes/filtering/classes/posts.php:384
206
+ msgid "Sticky"
207
+ msgstr "Sticky"
208
+
209
+ #: ../classes/filtering/classes/posts.php:551
210
+ msgid "False"
211
+ msgstr ""
212
+
213
+ #: ../classes/filtering/classes/posts.php:552
214
+ msgid "True"
215
+ msgstr ""
216
+
217
+ #: ../classes/filtering/filtering.php:93
218
+ msgid "Enable filtering?"
219
+ msgstr "Abilitare filtra?"
220
+
221
+ #: ../classes/filtering/filtering.php:93
222
+ msgid "This will make the column support filtering."
223
+ msgstr "Questo renderà possibile filtrare i valori della colonna."
224
+
225
+ #: ../classes/filtering/filtering.php:97 ../classes/inline-edit/cac-addon-inline-edit.php:288 ../classes/sortable/sortable.php:123
226
+ msgid "Yes"
227
+ msgstr "Si"
228
+
229
+ #: ../classes/filtering/filtering.php:101 ../classes/inline-edit/cac-addon-inline-edit.php:292 ../classes/sortable/sortable.php:127
230
+ msgid "No"
231
+ msgstr "No"
232
+
233
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:96
234
+ msgid "Enable inline editing for Custom Fields. Default is <code>off</code>"
235
+ msgstr ""
236
+
237
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:101
238
+ msgid "Notice"
239
+ msgstr ""
240
+
241
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:103
242
+ msgid "Inline edit will display all the raw values in an editable text field."
243
+ msgstr ""
244
+
245
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:106
246
+ msgid "Except for Checkmark, Media Library, Post Title and Username."
247
+ msgstr ""
248
+
249
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:109
250
+ #, php-format
251
+ msgid "Please read <a href=\"%s\">our documentation</a> if you plan to use these fields."
252
+ msgstr ""
253
+
254
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:181
255
+ msgid "Select author"
256
+ msgstr "Seleziona autore"
257
+
258
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:182
259
+ msgid "Edit"
260
+ msgstr "Modifica"
261
+
262
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:183
263
+ msgid "Redo"
264
+ msgstr "Ripristina"
265
+
266
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:184
267
+ msgid "Undo"
268
+ msgstr "Annulla"
269
+
270
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:185
271
+ msgid "Delete"
272
+ msgstr "Cancella"
273
+
274
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:186
275
+ msgid "Download"
276
+ msgstr "Scarica"
277
+
278
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:188
279
+ msgid "This field is required."
280
+ msgstr "Campo obbligatorio."
281
+
282
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:189
283
+ msgid "Please enter a valid float value."
284
+ msgstr "Inserisci un valore decimale valido."
285
+
286
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:190
287
+ msgid "Please enter valid float values."
288
+ msgstr "Inserisci dei valori decimali validi."
289
+
290
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:192
291
+ msgid "Inline Edit"
292
+ msgstr ""
293
+
294
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:284
295
+ msgid "Enable editing?"
296
+ msgstr "Abilita modifica?"
297
+
298
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:284
299
+ msgid "This will make the column support inline editing."
300
+ msgstr "Questo renderà possibile la modifica inline delle colonne."
301
+
302
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:322
303
+ msgid "Date save format"
304
+ msgstr "Formato di salvataggio della data."
305
+
306
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:323
307
+ msgid "Fill in the date format as it is stored. This is used to accurately determine the date."
308
+ msgstr "Inserisci la data secondo il formato in cui è salvata. Questo serve per determinare la data in modo esatto."
309
+
310
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:332
311
+ msgid "Fill in a date save format"
312
+ msgstr "Inserisci il formato per salvare una data."
313
+
314
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:334
315
+ #, php-format
316
+ msgid "Defaults to: %s."
317
+ msgstr "Default per: %s."
318
+
319
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:335
320
+ msgid "See all available formats"
321
+ msgstr "Guarda tutti i formati disponibili"
322
+
323
+ #: ../classes/inline-edit/cac-addon-inline-edit.php:368
324
+ #, php-format
325
+ msgid "The Inline Edit add-on is enabled but not effective. It requires %s in order to work."
326
+ msgstr "L'add-on per la modifica inline è abilitata ma non effettiva. Richiede %s per funzionare."
327
+
328
+ #: ../classes/inline-edit/classes/model.php:242
329
+ msgid "Invalid request."
330
+ msgstr "Richiesta non valida."
331
+
332
+ #: ../classes/inline-edit/classes/model.php:248 ../classes/inline-edit/classes/model.php:728
333
+ msgid "Invalid column."
334
+ msgstr "Colonna non valida."
335
+
336
+ #: ../classes/inline-edit/classes/model.php:561
337
+ msgid "None"
338
+ msgstr "Nessun."
339
+
340
+ #: ../classes/inline-edit/classes/model.php:566
341
+ msgid "- Select -"
342
+ msgstr "- Seleziona -"
343
+
344
+ #: ../classes/inline-edit/classes/model.php:707
345
+ msgid "Required fields missing."
346
+ msgstr "Campi richiesti mancanti."
347
+
348
+ #: ../classes/inline-edit/classes/model.php:712
349
+ msgid "Invalid item ID."
350
+ msgstr "ID oggetto non valido."
351
+
352
+ #: ../classes/inline-edit/classes/post.php:127
353
+ msgid "Default Template"
354
+ msgstr "Default Template"
355
+
356
+ #: ../classes/inline-edit/classes/post.php:235
357
+ msgid "Excerpt automatically generated from content."
358
+ msgstr "Riassunto generato automaticamente dal contenuto."
359
+
360
+ #: ../classes/inline-edit/classes/post.php:329
361
+ msgid "Do not allow"
362
+ msgstr "Non permettere"
363
+
364
+ #: ../classes/inline-edit/classes/post.php:330
365
+ msgid "Allow, but notify customer"
366
+ msgstr "Permetti, ma avverti l'utente."
367
+
368
+ #: ../classes/inline-edit/classes/post.php:331
369
+ msgid "Allow"
370
+ msgstr "Permetti"
371
+
372
+ #: ../classes/inline-edit/classes/post.php:523
373
+ msgid ", "
374
+ msgstr ","
375
+
376
+ #: ../classes/inline-edit/classes/post.php:563
377
+ msgid "Unpublished"
378
+ msgstr "Non pubblicato"
379
+
380
+ #: ../classes/inline-edit/classes/post.php:566
381
+ msgid "Y/m/d g:i:s A"
382
+ msgstr "Y/m/d g:i:s A"
383
+
384
+ #: ../classes/inline-edit/classes/post.php:573
385
+ #, php-format
386
+ msgid "%s ago"
387
+ msgstr "%s fa"
388
+
389
+ #: ../classes/inline-edit/classes/post.php:575
390
+ msgid "Y/m/d"
391
+ msgstr "Y/m/d"
392
+
393
+ #: ../classes/inline-edit/classes/post.php:585
394
+ msgid "Published"
395
+ msgstr "Pubblicato"
396
+
397
+ #: ../classes/inline-edit/classes/post.php:588
398
+ msgid "Missed schedule"
399
+ msgstr "Programmazione mancata"
400
+
401
+ #: ../classes/inline-edit/classes/post.php:590
402
+ msgid "Scheduled"
403
+ msgstr "Programmato"
404
+
405
+ #: ../classes/inline-edit/classes/post.php:592
406
+ msgid "Last Modified"
407
+ msgstr "Ultima modifica"
408
+
409
+ #: ../classes/inline-edit/classes/post.php:816
410
+ msgid "The SKU must be unique."
411
+ msgstr "SKU deve essere unico."
412
+
413
+ #: ../classes/licence-manager-settings.php:85
414
+ #, php-format
415
+ msgid "Licence not active. Enter your licence key under the <a href='%s'>Settings tab</a>."
416
+ msgstr "Licenza non attiva. Immetti la tua licence key nella <a href='%s'>tab Impostazioni</a>"
417
+
418
+ #: ../classes/licence-manager-settings.php:169
419
+ msgid "Empty licence."
420
+ msgstr "Licenza vuota."
421
+
422
+ #: ../classes/licence-manager-settings.php:176 ../classes/licence-manager-settings.php:182
423
+ #: ../classes/licence-manager-settings.php:192 ../classes/licence-manager-settings.php:198
424
+ msgid "Wrong response from API."
425
+ msgstr "Risposta negativa dall'API."
426
+
427
+ #: ../classes/licence-manager-settings.php:230
428
+ msgid "Updates"
429
+ msgstr ""
430
+
431
+ #: ../classes/licence-manager-settings.php:231 ../classes/licence-manager-settings.php:282
432
+ msgid "Enter your licence code to receive automatic updates."
433
+ msgstr "Immetti il tuo licence code per ricevere gli aggiornamenti automatici."
434
+
435
+ #: ../classes/licence-manager-settings.php:271
436
+ msgid "Automatic updates are enabled."
437
+ msgstr "Gli aggiornamenti automatici sono abilitati."
438
+
439
+ #: ../classes/licence-manager-settings.php:272
440
+ msgid "Deactivate licence"
441
+ msgstr "Disattiva licenza"
442
+
443
+ #: ../classes/licence-manager-settings.php:279
444
+ msgid "Enter your licence code"
445
+ msgstr "Immetti il tuo licence code"
446
+
447
+ #: ../classes/licence-manager-settings.php:280
448
+ msgid "Update licence"
449
+ msgstr "Aggiorna licenza"
450
+
451
+ #: ../classes/licence-manager-settings.php:283
452
+ #, php-format
453
+ msgid "You can find your license key on your %s."
454
+ msgstr "Puoi trovare le tue licence key nel tuo %s."
455
+
456
+ #: ../classes/licence-manager-settings.php:283
457
+ msgid "account page"
458
+ msgstr "pagina profilo"
459
+
460
+ #: ../classes/licence-manager-settings.php:294
461
+ msgid ""
462
+ "Could not connect to admincolumns.com — You will not receive update notifications or be able to activate your license until this is "
463
+ "fixed. This issue is often caused by an improperly configured SSL server (https). We recommend fixing the SSL configuration on your "
464
+ "server, but if you need a quick fix you can:"
465
+ msgstr ""
466
+
467
+ #: ../classes/licence-manager-settings.php:299
468
+ msgid "Disable SSL"
469
+ msgstr ""
470
+
471
+ #: ../classes/licence-manager-settings.php:302
472
+ msgid "Enable SSL"
473
+ msgstr ""
474
+
475
+ #: ../classes/licence-manager-settings.php:322
476
+ msgid "To finish activating Admin Columns Pro, please "
477
+ msgstr "Per completare l'attivazione di Admin Columns Pro, "
478
+
479
+ #: ../classes/licence-manager-settings.php:324
480
+ msgid "To update, "
481
+ msgstr "Per aggiornare,"
482
+
483
+ #: ../classes/licence-manager-settings.php:326
484
+ #, php-format
485
+ msgid ""
486
+ "go to %s and enter your licence key. If you don't have a licence key, you may <a href=\"%s\" target=\"_blank\">purchase one</a>."
487
+ msgstr "vai a %s e immetti la tua licence key. Se non hai una licence key, puoi <a href=\"%s\" target=\"_blank\">acquistarne una</a>."
488
+
489
+ #: ../classes/licence-manager-settings.php:361
490
+ #, php-format
491
+ msgid "To enable updates for this product, please <a href='%s'>activate your license</a>."
492
+ msgstr "Per abilitare gli aggiornamenti per questo prodotto <a href='%s'>attiva la tua licenza</a>."
493
+
494
+ #: ../classes/sortable/classes/model.php:82
495
+ #, php-format
496
+ msgid " by %s"
497
+ msgstr "da %s"
498
+
499
+ #: ../classes/sortable/classes/model.php:86
500
+ msgid "Reset sorting preference"
501
+ msgstr "Reimposta le preferenze di ordinamento"
502
+
503
+ #: ../classes/sortable/classes/model.php:119
504
+ msgid "Reset sorting"
505
+ msgstr "Reimposta ordinamento"
506
+
507
+ #: ../classes/sortable/classes/model.php:169
508
+ msgid "sorting preference succesfully reset."
509
+ msgstr "Impostazioni di orndinamento reimpostate con succcesso."
510
+
511
+ #: ../classes/sortable/sortable.php:56
512
+ msgid "Show all results when sorting. Default is <code>off</code>."
513
+ msgstr "Mostra tutti i risultati durante l'ordinamento. Il valore di default è <code>off</a>."
514
+
515
+ #: ../classes/sortable/sortable.php:68
516
+ msgid "Sortable add-on"
517
+ msgstr "Add-on per l'ordinamento"
518
+
519
+ #: ../classes/sortable/sortable.php:119
520
+ msgid "Enable sorting?"
521
+ msgstr "Abilitare l'ordinamento?"
522
+
523
+ #: ../classes/sortable/sortable.php:119
524
+ msgid "This will make the column support sorting."
525
+ msgstr "Questo renderà le colonne abilitate all'ordinamento."
526
+
527
+ #: ../classes/sortable/sortable.php:147
528
+ msgid "sort"
529
+ msgstr "ordina"
530
+
531
+ #: ../classes/taxonomy/column/ID.php:14
532
+ msgid "ID"
533
+ msgstr "ID"
534
+
535
+ #: ../classes/taxonomy/column/excerpt.php:15
536
+ msgid "Excerpt"
537
+ msgstr "Excerpt"
538
+
539
+ #: ../classes/inline-edit/library/moment/moment.min.2.4.0.js:6
540
+ msgid "Weeks"
541
+ msgstr ""
542
+
543
+ #~ msgid "Pro add-on"
544
+ #~ msgstr "Get Admin Columns Pro"
545
+
546
+ #~ msgid "Add-ons updates"
547
+ #~ msgstr "Add-ons"
languages/cpac-ja.mo CHANGED
Binary file
languages/cpac-ja.po CHANGED
@@ -5,346 +5,337 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-08-28 12:17+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
- "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/admin-"
12
- "columns/language/ja_JP/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: ja_JP\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
- "X-Generator: Poedit 1.6.8\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../classes/addons.php:117
26
  msgid "Third party plugin integration"
27
  msgstr ""
28
 
29
- #: ../classes/addons.php:142
30
  msgid "Advanced Custom Fields"
31
  msgstr ""
32
 
33
- #: ../classes/addons.php:143
34
- msgid ""
35
- "Display and edit Advanced Custom Fields fields in the posts overview in "
36
- "seconds!"
 
 
 
 
 
 
37
  msgstr ""
38
 
39
- #: ../classes/column.php:481
40
  msgid "Thumbnail"
41
  msgstr "サムネイル"
42
 
43
- #: ../classes/column.php:482
44
  msgid "Medium"
45
  msgstr "メディア"
46
 
47
- #: ../classes/column.php:483
48
  msgid "Large"
49
  msgstr "大"
50
 
51
- #: ../classes/column.php:484
52
  msgid "Full"
53
  msgstr "フルサイズ"
54
 
55
- #: ../classes/column.php:751
56
  msgid "Date Format"
57
  msgstr "データフォーマット"
58
 
59
- #: ../classes/column.php:752
60
  msgid "This will determine how the date will be displayed."
61
  msgstr "日付の表示方法を設定する。"
62
 
63
- #: ../classes/column.php:758
64
  msgid "Example:"
65
  msgstr "例:"
66
 
67
- #: ../classes/column.php:760
68
  #, php-format
69
- msgid ""
70
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
71
- "date format here</a>."
72
- msgstr ""
73
- "設定>一般 <a href=\"%s\">日付フォーマット</a>を利用する場合は空白にしてくだ"
74
- "さい。"
75
 
76
- #: ../classes/column.php:761
77
  msgid "Documentation on date and time formatting."
78
  msgstr "日付と時刻のフォーマット"
79
 
80
- #: ../classes/column.php:775
81
  msgid "Excerpt length"
82
  msgstr "抜粋の長さ"
83
 
84
- #: ../classes/column.php:776
85
  msgid "Number of words"
86
  msgstr "文字数"
87
 
88
- #: ../classes/column.php:794
89
  msgid "Preview size"
90
  msgstr "プレビューサイズ"
91
 
92
- #: ../classes/column.php:811 ../classes/storage_model.php:505
93
  msgid "Custom"
94
  msgstr "カスタム"
95
 
96
- #: ../classes/column.php:814
97
  msgid "width"
98
  msgstr "幅"
99
 
100
- #: ../classes/column.php:817
101
  msgid "height"
102
  msgstr "高さ"
103
 
104
- #: ../classes/column.php:831
105
  msgid "Before"
106
  msgstr "表示の前"
107
 
108
- #: ../classes/column.php:831
109
  msgid "This text will appear before the custom field value."
110
- msgstr ""
111
- "このテキストはカスタムフィールドの値の前に表示されます。(HTMLタグ含む)"
112
 
113
- #: ../classes/column.php:837
114
  msgid "After"
115
  msgstr "表示の後"
116
 
117
- #: ../classes/column.php:837
118
  msgid "This text will appear after the custom field value."
119
- msgstr ""
120
- "このテキストはカスタムフィールドの値の後に表示されます。(HTMLタグ含む)"
121
 
122
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
123
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
124
- #: ../classes/column/user/actions.php:66
125
  msgid "Edit"
126
  msgstr "編集"
127
 
128
- #: ../classes/column.php:927 ../classes/column.php:1005
129
- #: ../classes/column/user/actions.php:74
130
  msgid "Remove"
131
  msgstr "削除"
132
 
133
- #: ../classes/column.php:945
134
  msgid "Type"
135
  msgstr "タイプ"
136
 
137
- #: ../classes/column.php:945
138
  msgid "Choose a column type."
139
  msgstr "列に表示するタイプを設定します。"
140
 
141
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
142
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
143
- #: ../classes/column/post/ID.php:12
144
  msgid "ID"
145
  msgstr "ID"
146
 
147
- #: ../classes/column.php:955
148
  msgid "Label"
149
  msgstr "ラベル"
150
 
151
- #: ../classes/column.php:955
152
  msgid "This is the name which will appear as the column header."
153
  msgstr "列に表示される名前"
154
 
155
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
156
  msgid "Width"
157
  msgstr "表示幅"
158
 
159
- #: ../classes/column.php:964 ../classes/column.php:965
160
  msgid "default"
161
  msgstr "初期値"
162
 
163
- #: ../classes/column/acf-placeholder.php:16
164
  msgid "ACF Field"
165
  msgstr ""
166
 
167
  #: ../classes/column/acf-placeholder.php:32
168
- msgid "This feature is only available in Admin Columns Pro - Developer."
169
  msgstr ""
170
 
171
  #: ../classes/column/acf-placeholder.php:35
172
  #, php-format
173
- msgid ""
174
- "If you have a developer licence please download & install your ACF add-on "
175
- "from the <a href='%s'>add-ons tab</a>."
176
  msgstr ""
177
 
178
  #: ../classes/column/acf-placeholder.php:38
179
  msgid ""
180
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
181
- "integeration, allowing you to easily display and edit ACF fields from within "
182
- "your posts overview."
183
  msgstr ""
184
 
185
- #: ../classes/column/acf-placeholder.php:40
186
  msgid "Find out more"
187
  msgstr ""
188
 
189
- #: ../classes/column/comment/actions.php:14
190
- #: ../classes/column/link/actions.php:14
191
- #: ../classes/column/media/actions.php:14
192
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
193
  msgid "Actions"
194
  msgstr "アクション"
195
 
196
- #: ../classes/column/comment/actions.php:73
197
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  msgid "Unapprove"
199
  msgstr "承認しない"
200
 
201
- #: ../classes/column/comment/actions.php:75
202
- #: ../classes/column/comment/actions.php:77
203
  msgid "Approve"
204
  msgstr "承認する"
205
 
206
- #: ../classes/column/comment/actions.php:86
207
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
208
  msgid "Restore"
209
  msgstr "初期状態に戻す"
210
 
211
- #: ../classes/column/comment/actions.php:90
212
- #: ../classes/column/post/actions.php:66
213
  msgid "Delete Permanently"
214
  msgstr "完全に削除する"
215
 
216
- #: ../classes/column/comment/actions.php:97
217
- #: ../classes/column/post/actions.php:58
218
  msgid "Quick&nbsp;Edit"
219
  msgstr "クイック編集"
220
 
221
- #: ../classes/column/comment/actions.php:98
222
  msgid "Reply"
223
  msgstr "リプライ"
224
 
225
- #: ../classes/column/comment/agent.php:12
226
  msgid "Agent"
227
  msgstr "エージェント"
228
 
229
- #: ../classes/column/comment/approved.php:12
230
- #: ../classes/column/post/comment-count.php:31
231
  msgid "Approved"
232
  msgstr "承認された"
233
 
234
- #: ../classes/column/comment/author-avatar.php:12
235
  msgid "Avatar"
236
  msgstr "アバター"
237
 
238
- #: ../classes/column/comment/author-email.php:12
239
  msgid "Author email"
240
  msgstr "投稿者メール"
241
 
242
- #: ../classes/column/comment/author-ip.php:12
243
  msgid "Author IP"
244
  msgstr "投稿者IP"
245
 
246
- #: ../classes/column/comment/author-url.php:12
247
  msgid "Author url"
248
  msgstr "投稿者URL"
249
 
250
- #: ../classes/column/comment/author.php:12
251
  msgid "Author"
252
  msgstr "投稿者"
253
 
254
- #: ../classes/column/comment/date-gmt.php:12
255
  msgid "Date GMT"
256
  msgstr "日時(GMT)"
257
 
258
- #: ../classes/column/comment/date-gmt.php:25
259
- #: ../classes/column/comment/date.php:25
260
  #, php-format
261
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
262
  msgstr "送信する <a href=\"%1$s\">%2$s at %3$s</a> "
263
 
264
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
265
- #: ../classes/settings.php:300
266
  msgid "Date"
267
  msgstr "日付"
268
 
269
- #: ../classes/column/comment/excerpt.php:13
270
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
271
- #: ../classes/settings.php:297
272
  msgid "Excerpt"
273
  msgstr "エキスポート"
274
 
275
- #: ../classes/column/comment/reply-to.php:12
276
  msgid "In Reply To"
277
  msgstr "返信先"
278
 
279
- #: ../classes/column/comment/word-count.php:12
280
- #: ../classes/column/post/word-count.php:12
281
  msgid "Word count"
282
  msgstr "文字数"
283
 
284
- #: ../classes/column/custom-field.php:16
285
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
286
  msgid "Custom Field"
287
  msgstr "カスタムフィールド"
288
 
289
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
290
- #: ../classes/storage_model.php:504
291
  msgid "Default"
292
  msgstr "デフォルト"
293
 
294
- #: ../classes/column/custom-field.php:66
295
  msgid "Checkmark (true/false)"
296
  msgstr "チェックマーク(true/false)"
297
 
298
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
299
  msgid "Color"
300
  msgstr "色"
301
 
302
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
303
  msgid "Counter"
304
  msgstr "カウンター"
305
 
306
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
307
- #: ../classes/settings.php:296
308
  msgid "Image"
309
  msgstr "画像"
310
 
311
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
312
  msgid "Media Library"
313
  msgstr "メディアライブラリー"
314
 
315
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
316
  msgid "Multiple Values"
317
  msgstr "複数の値"
318
 
319
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
320
  msgid "Numeric"
321
  msgstr "数値"
322
 
323
- #: ../classes/column/custom-field.php:75
324
  msgid "Post Title (Post ID's)"
325
  msgstr "タイトル(Post ID's)"
326
 
327
- #: ../classes/column/custom-field.php:76
328
  msgid "Username (User ID's)"
329
  msgstr "ユーザー名(User ID's)"
330
 
331
- #: ../classes/column/custom-field.php:384
332
  msgid "Select your custom field."
333
  msgstr "カスタムフィールドを選択"
334
 
335
- #: ../classes/column/custom-field.php:394
336
  msgid "No custom fields available."
337
  msgstr "カスタムフィールドがありません"
338
 
339
- #: ../classes/column/custom-field.php:401
340
  msgid "Field Type"
341
  msgstr "フィールドタイプ"
342
 
343
- #: ../classes/column/custom-field.php:401
344
  msgid "This will determine how the value will be displayed."
345
  msgstr "表示される方法を設定します"
346
 
347
- #: ../classes/column/link/actions.php:46
348
  #, php-format
349
  msgid ""
350
  "You are about to delete this link '%s'\n"
@@ -353,832 +344,794 @@ msgstr ""
353
  "このリンクを削除しようとしています '%s'\n"
354
  "'Cancel' は中止します, 'OK' は削除します。 "
355
 
356
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
357
  msgid "Delete"
358
  msgstr "削除"
359
 
360
- #: ../classes/column/link/description.php:12
361
- #: ../classes/column/media/description.php:12
362
- #: ../classes/column/user/description.php:14
363
  msgid "Description"
364
  msgstr "説明"
365
 
366
- #: ../classes/column/link/length.php:12
367
  msgid "Length"
368
  msgstr "長さ"
369
 
370
- #: ../classes/column/link/notes.php:13
371
  msgid "Notes"
372
  msgstr "注釈"
373
 
374
- #: ../classes/column/link/owner.php:12
375
  msgid "Owner"
376
  msgstr "オーナー"
377
 
378
- #: ../classes/column/link/rss.php:12
379
  msgid "Rss"
380
  msgstr "Rss"
381
 
382
- #: ../classes/column/link/target.php:12
383
  msgid "Target"
384
  msgstr "ターゲット"
385
 
386
- #: ../classes/column/media/alternate-text.php:12
387
  msgid "Alt"
388
  msgstr "代替テキスト"
389
 
390
- #: ../classes/column/media/available-sizes.php:14
391
  msgid "Available Sizes"
392
  msgstr "利用できるサイズ"
393
 
394
- #: ../classes/column/media/available-sizes.php:37
395
  msgid "full size"
396
  msgstr "フルサイズ"
397
 
398
- #: ../classes/column/media/caption.php:12
399
- #: ../classes/column/media/exif-data.php:36
400
  msgid "Caption"
401
  msgstr "キャプション"
402
 
403
- #: ../classes/column/media/dimensions.php:12
404
  msgid "Dimensions"
405
  msgstr "大きさ"
406
 
407
- #: ../classes/column/media/exif-data.php:12
408
  msgid "EXIF data"
409
  msgstr "EXIFデータ"
410
 
411
- #: ../classes/column/media/exif-data.php:33
412
  msgid "Aperture"
413
  msgstr "絞り(Aperture)"
414
 
415
- #: ../classes/column/media/exif-data.php:34
416
  msgid "Credit"
417
  msgstr "クレジット"
418
 
419
- #: ../classes/column/media/exif-data.php:35
420
  msgid "Camera"
421
  msgstr "カメラ"
422
 
423
- #: ../classes/column/media/exif-data.php:37
424
  msgid "Timestamp"
425
  msgstr "タイムスタンプ"
426
 
427
- #: ../classes/column/media/exif-data.php:38
428
  msgid "Copyright EXIF"
429
  msgstr "EXIF著作権 "
430
 
431
- #: ../classes/column/media/exif-data.php:39
432
  msgid "Focal Length"
433
  msgstr "焦点距離(Focal Length)"
434
 
435
- #: ../classes/column/media/exif-data.php:40
436
  msgid "ISO"
437
  msgstr "感度(ISO)"
438
 
439
- #: ../classes/column/media/exif-data.php:41
440
  msgid "Shutter Speed"
441
  msgstr "シャッタースピード"
442
 
443
- #: ../classes/column/media/exif-data.php:42
444
  msgid "Title"
445
  msgstr "タイトル"
446
 
447
- #: ../classes/column/media/file-name.php:12
448
  msgid "File name"
449
  msgstr "ファイル名"
450
 
451
- #: ../classes/column/media/file-size.php:12
452
  msgid "File size"
453
  msgstr "ファイルサイズ"
454
 
455
- #: ../classes/column/media/full-path.php:12
456
  msgid "Full path"
457
  msgstr "フルパス"
458
 
459
- #: ../classes/column/media/height.php:12
460
  msgid "Height"
461
  msgstr "高さ"
462
 
463
- #: ../classes/column/media/mime-type.php:12
464
  msgid "Mime type"
465
  msgstr "Mimeタイプ"
466
 
467
- #: ../classes/column/post/actions.php:57
468
  msgid "Edit this item"
469
  msgstr "項目を編集"
470
 
471
- #: ../classes/column/post/actions.php:58
472
  msgid "Edit this item inline"
473
  msgstr "この項目をインラインで編集する。"
474
 
475
- #: ../classes/column/post/actions.php:62
476
  msgid "Restore this item from the Trash"
477
  msgstr "この項目をゴミ箱から復元する。"
478
 
479
- #: ../classes/column/post/actions.php:64
480
  msgid "Move this item to the Trash"
481
  msgstr "この項目をゴミ箱へ移動"
482
 
483
- #: ../classes/column/post/actions.php:64
484
- #: ../classes/column/post/comment-count.php:34
485
- #: ../classes/column/post/status.php:38
486
  msgid "Trash"
487
  msgstr "ゴミ箱"
488
 
489
- #: ../classes/column/post/actions.php:66
490
  msgid "Delete this item permanently"
491
  msgstr "この項目を完全に削除"
492
 
493
- #: ../classes/column/post/actions.php:71
494
  #, php-format
495
  msgid "Preview &#8220;%s&#8221;"
496
  msgstr "プレビュー &#8220;%s&#8221; "
497
 
498
- #: ../classes/column/post/actions.php:71
499
  msgid "Preview"
500
  msgstr "プレビュー"
501
 
502
- #: ../classes/column/post/actions.php:73
503
  #, php-format
504
  msgid "View &#8220;%s&#8221;"
505
  msgstr "表示 &#8220;%s&#8221; "
506
 
507
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
508
  msgid "View"
509
  msgstr "表示"
510
 
511
- #: ../classes/column/post/attachment-count.php:12
512
  msgid "No. of Attachments"
513
  msgstr "アタッチメント(ファイル等)ID"
514
 
515
- #: ../classes/column/post/attachment.php:12
516
  msgid "Attachment"
517
  msgstr "アタッチメント(ファイル等)"
518
 
519
- #: ../classes/column/post/author-name.php:12
520
  msgid "Display Author As"
521
  msgstr "投稿者名"
522
 
523
- #: ../classes/column/post/author-name.php:34
524
  msgid "Display Name"
525
  msgstr "表示名"
526
 
527
- #: ../classes/column/post/author-name.php:35
528
  msgid "First Name"
529
  msgstr "姓"
530
 
531
- #: ../classes/column/post/author-name.php:36
532
  msgid "Last Name"
533
  msgstr "名"
534
 
535
- #: ../classes/column/post/author-name.php:37
536
- #: ../classes/column/user/nickname.php:14
537
  msgid "Nickname"
538
  msgstr "ニックネーム"
539
 
540
- #: ../classes/column/post/author-name.php:38
541
  msgid "User Login"
542
  msgstr "ユーザーログイン名"
543
 
544
- #: ../classes/column/post/author-name.php:39
545
  msgid "User Email"
546
  msgstr "ユーザーメール"
547
 
548
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
549
  msgid "User ID"
550
  msgstr "ユーザーID"
551
 
552
- #: ../classes/column/post/author-name.php:41
553
  msgid "First and Last Name"
554
  msgstr "姓名"
555
 
556
- #: ../classes/column/post/author-name.php:118
557
  msgid "This is the format of the author name."
558
  msgstr "投稿者の表示方法"
559
 
560
- #: ../classes/column/post/before-moretag.php:14
561
  msgid "Before More Tag"
562
  msgstr "タグの前に"
563
 
564
- #: ../classes/column/post/comment-count.php:14
565
  msgid "Comment count"
566
  msgstr "コメント数"
567
 
568
- #: ../classes/column/post/comment-count.php:30
569
  msgid "Total"
570
  msgstr "トータル"
571
 
572
- #: ../classes/column/post/comment-count.php:32
573
  msgid "Pending"
574
  msgstr "ペンディング"
575
 
576
- #: ../classes/column/post/comment-count.php:33
577
  msgid "Spam"
578
  msgstr "スパム"
579
 
580
- #: ../classes/column/post/comment-count.php:95
581
- #: ../classes/column/post/comment-status.php:14
582
  msgid "Comment status"
583
  msgstr "コメントステータス"
584
 
585
- #: ../classes/column/post/comment-count.php:95
586
  msgid "Select which comment status you like to display."
587
  msgstr "表示させたいコメントステータスを選択します。"
588
 
589
- #: ../classes/column/post/featured-image.php:14
590
  msgid "Featured Image"
591
  msgstr "注目画像"
592
 
593
- #: ../classes/column/post/formats.php:14
594
  msgid "Post Format"
595
  msgstr "ポストフォーマット"
596
 
597
- #: ../classes/column/post/modified.php:14
598
  msgid "Last modified"
599
  msgstr "最終更新"
600
 
601
- #: ../classes/column/post/order.php:14
602
  msgid "Page Order"
603
  msgstr "ページオーダー"
604
 
605
- #: ../classes/column/post/page-template.php:12
606
  msgid "Page Template"
607
  msgstr "ページテンプレート"
608
 
609
- #: ../classes/column/post/parent.php:12
610
  msgid "Parent"
611
  msgstr "パーマメント"
612
 
613
- #: ../classes/column/post/permalink.php:12
 
 
 
 
614
  msgid "Permalink"
615
  msgstr ""
616
 
617
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
 
 
 
 
618
  msgid "Ping status"
619
  msgstr "Pingステータス"
620
 
621
- #: ../classes/column/post/roles.php:14
622
  msgid "Roles"
623
  msgstr "権限"
624
 
625
- #: ../classes/column/post/slug.php:12
626
  msgid "Slug"
627
  msgstr "スラッグ"
628
 
629
- #: ../classes/column/post/status.php:14
630
  msgid "Status"
631
  msgstr "ステータス"
632
 
633
- #: ../classes/column/post/status.php:32
634
  msgid "Published"
635
  msgstr "公開"
636
 
637
- #: ../classes/column/post/status.php:33
638
  msgid "Draft"
639
  msgstr "下書き"
640
 
641
- #: ../classes/column/post/status.php:34
642
  msgid "Scheduled"
643
  msgstr "予定の"
644
 
645
- #: ../classes/column/post/status.php:35
646
  msgid "Private"
647
  msgstr "プライベート"
648
 
649
- #: ../classes/column/post/status.php:36
650
  msgid "Pending Review"
651
  msgstr "レビュー待ち"
652
 
653
- #: ../classes/column/post/status.php:37
654
  msgid "Auto Draft"
655
  msgstr ""
656
 
657
- #: ../classes/column/post/sticky.php:14
658
  msgid "Sticky"
659
  msgstr "先頭に固定表示"
660
 
661
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
662
  msgid "Taxonomy"
663
  msgstr "タクソノミー"
664
 
665
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
666
  msgid "Comment Count"
667
  msgstr "コメント数"
668
 
669
- #: ../classes/column/user/first-name.php:14
670
  msgid "First name"
671
  msgstr "名"
672
 
673
- #: ../classes/column/user/last-name.php:14
674
  msgid "Last name"
675
  msgstr "姓"
676
 
677
- #: ../classes/column/user/post-count.php:14
678
  msgid "Post Count"
679
  msgstr "コメント"
680
 
681
- #: ../classes/column/user/post-count.php:99
682
  msgid "Post Type"
683
  msgstr "投稿タイプ"
684
 
685
- #: ../classes/column/user/registered.php:14
686
  msgid "Registered"
687
  msgstr "登録された"
688
 
689
- #: ../classes/column/user/url.php:14
690
  msgid "Url"
691
  msgstr "URL"
692
 
693
- #: ../classes/settings.php:97
694
  msgid "Add-on successfully activated."
695
  msgstr ""
696
 
697
- #: ../classes/settings.php:100
698
  msgid "Add-on successfully deactivated."
699
  msgstr ""
700
 
701
- #: ../classes/settings.php:155
702
  msgid "Admin Columns Settings"
703
  msgstr "Admin Columns 設定"
704
 
705
- #: ../classes/settings.php:155 ../classes/settings.php:619
706
- #: ../classes/upgrade.php:83
707
  msgid "Admin Columns"
708
  msgstr "Admin Columns"
709
 
710
- #: ../classes/settings.php:203
711
  #, php-format
712
  msgid "%s column is already present and can not be duplicated."
713
  msgstr "%s 列はすでに存在します。複製することができません "
714
 
715
- #: ../classes/settings.php:256
716
  msgid "Default settings succesfully restored."
717
  msgstr "初期設定を復元しました。"
718
 
719
- #: ../classes/settings.php:273
720
  msgid "Overview"
721
  msgstr "概要"
722
 
723
- #: ../classes/settings.php:276
724
  msgid ""
725
- "This plugin is for adding and removing additional columns to the "
726
- "administration screens for post(types), pages, media library, comments, "
727
- "links and users. Change the column's label and reorder them."
728
  msgstr ""
729
- "このプラグインは管理画面に表示される列の追加・削除や並び変えを可能にしま"
730
- "す。\n"
731
- "投稿・メディアページ・コメント・リンク・ユーザー・カスタム投稿(post type)に対"
732
- "応し\n"
733
  "PRO版ではソート・フィルタリングも可能になります。"
734
 
735
- #: ../classes/settings.php:279
736
  msgid "Basics"
737
  msgstr "基本"
738
 
739
- #: ../classes/settings.php:281
740
  msgid "Change order"
741
  msgstr "並びを変更"
742
 
743
- #: ../classes/settings.php:282
744
- msgid ""
745
- "By dragging the columns you can change the order which they will appear in."
746
  msgstr "列幅をドラッグして表示される場所を変更することが可能です。"
747
 
748
- #: ../classes/settings.php:283
749
  msgid "Change label"
750
  msgstr "ラベルの変更"
751
 
752
- #: ../classes/settings.php:284
753
- msgid ""
754
- "By clicking on the triangle you will see the column options. Here you can "
755
- "change each label of the columns heading."
756
  msgstr ""
757
  "列の表示オプションを表示します。\n"
758
  "見出しや列のラベルを変更できます。"
759
 
760
- #: ../classes/settings.php:285
761
  msgid "Change column width"
762
  msgstr "列幅を変更"
763
 
764
- #: ../classes/settings.php:286
765
- msgid ""
766
- "By clicking on the triangle you will see the column options. By using the "
767
- "draggable slider you can set the width of the columns in percentages."
768
- msgstr ""
769
- "三角形をクリックすると、列のオプションが表示されます。ドラッグ可能なスライ"
770
- "ダーを使用することで、パーセンテージで列の幅を設定することができます。"
771
 
772
- #: ../classes/settings.php:292
773
  msgid "'Custom Field' column"
774
  msgstr "カスタムフィールド幅"
775
 
776
- #: ../classes/settings.php:293
777
- msgid ""
778
- "The custom field colum uses the custom fields from posts and users. There "
779
- "are 10 types which you can set."
780
  msgstr "カスタムフィールドには設定可能な10種類のタイプあります"
781
 
782
- #: ../classes/settings.php:295
783
- msgid ""
784
- "Value: Can be either a string or array. Arrays will be flattened and values "
785
- "are seperated by a ',' comma."
786
  msgstr "値:文字列または配列になります。配列は、区切ります。"
787
 
788
- #: ../classes/settings.php:296
789
- msgid ""
790
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
791
- "comma )."
792
- msgstr ""
793
- "値:画像URLやファイルIDを含んでいる必要があります。(複数の場合は\"、”で区"
794
- "切ってください)"
795
 
796
- #: ../classes/settings.php:297
797
  msgid "Value: This will show the first 20 words of the Post content."
798
  msgstr "値:投稿内容の最初の20文字が表示されます。"
799
 
800
- #: ../classes/settings.php:298
801
- msgid ""
802
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
803
  msgstr "値:配列でなければいけません。(配列をフラット化します)"
804
 
805
- #: ../classes/settings.php:299
806
- msgid ""
807
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
808
- "for sorting, so you can sort your posts on numeric (custom field) values."
809
- msgstr ""
810
- "値:整数だけ<br/>サポートします。ソートアドオンが有効な場合(カスタムフィール"
811
- "ド)記事を並び変えることができます。"
812
 
813
- #: ../classes/settings.php:300
814
  #, php-format
815
  msgid ""
816
- "Value: Can be unix time stamp or a date format as described in the <a "
817
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
818
- "href='%s'>general settings</a> page."
819
- msgstr ""
820
- "値:<a href='%s'>Codex</a>の説明であるようにunixタイムスタンプや日付形式を指"
821
- "定できます。設定>一般<a href='%s'>日付のフォーマット</a>設定を利用できます。"
822
 
823
- #: ../classes/settings.php:301
824
  msgid "Post Titles"
825
  msgstr "投稿タイトル"
826
 
827
- #: ../classes/settings.php:301
828
  msgid "Value: can be one or more Post ID's (seperated by ',')."
829
  msgstr "値:複数の場合は、ポストIDを(、)で区切ってください。"
830
 
831
- #: ../classes/settings.php:302
832
  msgid "Usernames"
833
  msgstr "ユーザー名"
834
 
835
- #: ../classes/settings.php:302
836
  msgid "Value: can be one or more User ID's (seperated by ',')."
837
  msgstr "値;複数のユーザーの場合は(、)で区切ってください。"
838
 
839
- #: ../classes/settings.php:303
840
  msgid "Checkmark"
841
  msgstr "チェックマーク"
842
 
843
- #: ../classes/settings.php:303
844
  msgid "Value: should be a 1 (one) or 0 (zero)."
845
  msgstr "値:1(one)または0(zero)"
846
 
847
- #: ../classes/settings.php:304
848
  msgid "Value: hex value color, such as #808080."
849
  msgstr "値:HEXカラーコード #808080など"
850
 
851
- #: ../classes/settings.php:305
852
- msgid ""
853
- "Value: Can be either a string or array. This will display a count of the "
854
- "number of times the meta key is used by the item."
855
  msgstr "値:文字列または配列。meta_keyの場合は回数を表示します"
856
 
857
- #: ../classes/settings.php:399
858
  msgid "Welcome to Admin Columns"
859
  msgstr "ようこそ Admin Columns"
860
 
861
- #: ../classes/settings.php:402
862
  msgid "Thank you for updating to the latest version!"
863
  msgstr "最新のバージョンに更新して頂きありがとうございます。"
864
 
865
- #: ../classes/settings.php:403
866
- msgid ""
867
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
868
- "like it."
869
  msgstr ""
870
  "Admin Columns は洗練された管理画面を提供します。\n"
871
  "私たちは、あなたやあなたのユーザーが喜ぶことを願っています。"
872
 
873
- #: ../classes/settings.php:408
874
  msgid "What’s New"
875
  msgstr "最新"
876
 
877
- #: ../classes/settings.php:409
878
  msgid "Changelog"
879
  msgstr "変更履歴"
880
 
881
- #: ../classes/settings.php:414
882
- msgid "Addons"
883
- msgstr "アドオン"
884
-
885
- #: ../classes/settings.php:416
886
- msgid ""
887
- "Addons are now activated by downloading and installing individual plugins. "
888
- "Although these plugins will not be hosted on the wordpress.org repository, "
889
- "each Add-on will continue to receive updates in the usual way."
890
- msgstr ""
891
- "アドオンは現在、個々のプラグインをダウンロードし、インストールすることで有効"
892
- "になります。これらのプラグインはwordpress.orgリポジトリ上でホストされることは"
893
- "ありませんが、各アドオン通常の方法でアップデートを受信していきます。"
894
-
895
- #: ../classes/settings.php:419
896
- msgid ""
897
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
898
- msgstr ""
899
- "このサイトはソートアドインを使用しています。このアドインをダウンロードする必"
900
- "要があります。"
901
-
902
- #: ../classes/settings.php:422
903
- msgid "Addons are seperate plugins which need to be downloaded."
904
- msgstr "アドオンをダウンロードする必要がある別のプラグインです。"
905
-
906
- #: ../classes/settings.php:422
907
- msgid "Download your Addons"
908
- msgstr "アドインをダウンロードする"
909
-
910
- #: ../classes/settings.php:428
911
- msgid "This website does not use add-ons"
912
- msgstr "このサイトはプロ版を使用していません。"
913
-
914
- #: ../classes/settings.php:428
915
- msgid "See our website for Admin Columns Pro."
916
- msgstr ""
917
-
918
- #: ../classes/settings.php:435
919
  msgid "Important"
920
  msgstr "インポート"
921
 
922
- #: ../classes/settings.php:437
923
  msgid "Database Changes"
924
  msgstr "データベースの変更"
925
 
926
- #: ../classes/settings.php:438
927
- msgid ""
928
- "The database has been changed between versions 1 and 2. But we made sure you "
929
- "can still roll back to version 1x without any issues."
930
- msgstr ""
931
- "データベースには、バージョン1と2で変更されました。しかし、我々は、何の問題も"
932
- "なく戻ってバージョン1Xにロールバックすることができことを確認しています。"
933
 
934
- #: ../classes/settings.php:441
935
  msgid "Make sure you backup your database and then click"
936
  msgstr "クリックしてデータバースのバックアップを作る"
937
 
938
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
939
  msgid "Upgrade Database"
940
  msgstr "データベースをアップデート"
941
 
942
- #: ../classes/settings.php:444
943
  msgid "Potential Issues"
944
  msgstr "潜在的な問題"
945
 
946
- #: ../classes/settings.php:445
947
- msgid ""
948
- "Do to the sizable refactoring the code, surounding Addons and action/"
949
- "filters, your website may not operate correctly. It is important that you "
950
- "read the full"
951
- msgstr ""
952
- "Do to the sizable refactoring the code, surounding Addons and action/"
953
- "filters, your website may not operate correctly. It is important that you "
954
- "read the full "
955
 
956
- #: ../classes/settings.php:445
957
  msgid "Migrating from v1 to v2"
958
  msgstr "Ver1からVer2への移行"
959
 
960
- #: ../classes/settings.php:445
961
  msgid "guide to view the full list of changes."
962
  msgstr "変更点の詳細案内"
963
 
964
- #: ../classes/settings.php:445
965
  #, php-format
966
- msgid ""
967
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
968
- "can fix it in the next release."
969
- msgstr ""
970
- "バグを発見した場合は<a href=\"%s\">バグレポート</a>で報告してください。次回リ"
971
- "リースで修正致します。 "
972
 
973
- #: ../classes/settings.php:448
974
  msgid "Important!"
975
  msgstr "大切な事"
976
 
977
- #: ../classes/settings.php:448
978
- msgid ""
979
- "If you updated the Admin Columns plugin without prior knowledge of such "
980
- "changes, Please roll back to the latest"
981
- msgstr ""
982
- "プラグイン管理の列を更新した場合、最新のものにロールバックしてください。"
983
 
984
- #: ../classes/settings.php:448
985
  msgid "version 1"
986
  msgstr "version 1 "
987
 
988
- #: ../classes/settings.php:448
989
  msgid "of this plugin."
990
  msgstr "このプラグイン"
991
 
992
- #: ../classes/settings.php:454
993
  msgid "Changelog for"
994
  msgstr "変更履歴の"
995
 
996
- #: ../classes/settings.php:469
997
  msgid "Learn more"
998
  msgstr "詳細はこちら"
999
 
1000
- #: ../classes/settings.php:479
1001
  msgid "Start using Admin Columns"
1002
  msgstr "Admin Columnsをはじめましょう"
1003
 
1004
- #: ../classes/settings.php:522
1005
  msgid "General Settings"
1006
  msgstr "一般設定"
1007
 
1008
- #: ../classes/settings.php:523
1009
  msgid "Customize your Admin Columns settings."
1010
  msgstr ""
1011
  "管理画面の列表示を<br/>\n"
1012
  "カスタマイズします。"
1013
 
1014
- #: ../classes/settings.php:546
1015
- msgid ""
1016
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1017
  msgstr ""
1018
- "管理者画面に”列編集”ボタンを表示します。初期設定は<code>off</code>です。 "
1019
 
1020
- #: ../classes/settings.php:553 ../classes/settings.php:682
1021
  msgid "Save"
1022
  msgstr "保存"
1023
 
1024
- #: ../classes/settings.php:593
1025
  msgid "Restore Settings"
1026
  msgstr "設定の復元"
1027
 
1028
- #: ../classes/settings.php:594
1029
  msgid "This will delete all column settings and restore the default settings."
1030
  msgstr ""
1031
  "追加された全ての列を削除し、<br/>\n"
1032
  "デフォルト設定に戻します。"
1033
 
1034
- #: ../classes/settings.php:600
1035
  msgid "Restore default settings"
1036
  msgstr "デフォルト設定に戻します。"
1037
 
1038
- #: ../classes/settings.php:600
1039
- msgid ""
1040
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1041
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1042
- msgstr ""
1043
- "注意! 保存された、すべての列表示が削除されます。元に戻すことはできません。 "
1044
- "\\'OK\\' で削除します \\'Cancel\\'で中止します。 "
1045
 
1046
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1047
  msgid "Settings"
1048
  msgstr "設定"
1049
 
1050
- #: ../classes/settings.php:621
1051
  msgid "Add-ons"
1052
  msgstr ""
1053
 
1054
- #: ../classes/settings.php:647
1055
  msgid "Posttypes"
1056
  msgstr ""
1057
 
1058
- #: ../classes/settings.php:648
1059
  msgid "Others"
1060
  msgstr ""
1061
 
1062
- #: ../classes/settings.php:649
1063
  msgid "Taxonomies"
1064
  msgstr ""
1065
 
1066
- #: ../classes/settings.php:668
1067
  #, php-format
1068
- msgid ""
1069
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1070
- "be edited in the admin panel."
1071
  msgstr ""
1072
 
1073
- #: ../classes/settings.php:678
1074
  msgid "Store settings"
1075
  msgstr "設定を保存"
1076
 
1077
- #: ../classes/settings.php:682
1078
  msgid "Update"
1079
  msgstr "アップデート"
1080
 
1081
- #: ../classes/settings.php:686
1082
  #, php-format
1083
- msgid ""
1084
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1085
- "\\' to delete, \\'Cancel\\' to stop"
1086
- msgstr ""
1087
- "注意!  あなたが設定した %s 列は削除されWP初期値に戻ります。削除すると元に戻"
1088
- "すことはできません. \\'OK\\' で削除 \\'Cancel\\' でキャンセル "
1089
 
1090
- #: ../classes/settings.php:687
1091
  msgid "columns"
1092
  msgstr "-列"
1093
 
1094
- #: ../classes/settings.php:701
1095
  msgid "Get Admin Columns Pro"
1096
  msgstr ""
1097
 
1098
- #: ../classes/settings.php:705
1099
  msgid "Add Sorting"
1100
  msgstr "ソートを追加"
1101
 
1102
- #: ../classes/settings.php:706
1103
  msgid "Add Filtering"
1104
  msgstr "フィルターを追加"
1105
 
1106
- #: ../classes/settings.php:707
1107
  msgid "Add Import/Export"
1108
  msgstr "設定のインポート・エキスポートを追加"
1109
 
1110
- #: ../classes/settings.php:708
1111
  msgid "Add Direct Editing"
1112
  msgstr ""
1113
 
1114
- #: ../classes/settings.php:711
1115
  #, php-format
1116
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1117
  msgstr ""
1118
 
 
 
 
 
 
 
 
 
 
 
 
 
1119
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1120
  msgid "Support"
1121
  msgstr "サポート"
1122
 
1123
- #: ../classes/settings.php:745
1124
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1125
  msgstr "画面右上の<strong>Help</strong>を確認してください。"
1126
 
1127
- #: ../classes/settings.php:748
1128
  #, php-format
1129
- msgid ""
1130
- "For full documentation, bug reports, feature suggestions and other tips <a "
1131
- "href='%s'>visit the Admin Columns website</a>"
1132
  msgstr ""
1133
  "ドキュメント・バグレポート・機能の提案などは<br/>\n"
1134
  " <a href='%s'> Admin Columns website</a>を訪れてください。"
1135
 
1136
- #: ../classes/settings.php:777
1137
  msgid "Drag and drop to reorder"
1138
  msgstr "ドロップ&ドラッグで表示順序を変更できます"
1139
 
1140
- #: ../classes/settings.php:780
1141
  msgid "Add Column"
1142
  msgstr "列の追加"
1143
 
1144
- #: ../classes/settings.php:853
1145
  msgid "Active"
1146
  msgstr ""
1147
 
1148
- #: ../classes/settings.php:854
1149
  msgid "Deactivate"
1150
  msgstr ""
1151
 
1152
- #: ../classes/settings.php:861
1153
  msgid "Installed"
1154
  msgstr ""
1155
 
1156
- #: ../classes/settings.php:862
1157
  msgid "Activate"
1158
  msgstr ""
1159
 
1160
- #: ../classes/settings.php:876
1161
  msgid "Download & Install"
1162
  msgstr ""
1163
 
1164
- #: ../classes/settings.php:881
1165
  msgid "Get this add-on"
1166
  msgstr ""
1167
 
1168
- #: ../classes/storage_model.php:207
1169
  msgid "settings succesfully restored."
1170
  msgstr "設定を復元しました。"
1171
 
1172
- #: ../classes/storage_model.php:222
1173
  msgid "No columns settings available."
1174
  msgstr "設定された列はありません"
1175
 
1176
- #: ../classes/storage_model.php:243
1177
  #, php-format
1178
  msgid "You are trying to store the same settings for %s."
1179
  msgstr "%sはすでに設定済みです "
1180
 
1181
- #: ../classes/storage_model.php:247
1182
  #, php-format
1183
  msgid "Settings for %s updated succesfully."
1184
  msgstr "設定 %s は正常にアップデートしました。"
@@ -1195,62 +1148,65 @@ msgstr "リンク"
1195
  msgid "Users"
1196
  msgstr "ユーザー"
1197
 
1198
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
 
1199
  msgid "Upgrade"
1200
  msgstr "アップグレード"
1201
 
1202
- #: ../classes/upgrade.php:84
1203
  msgid "requires a database upgrade"
1204
  msgstr "データベースの更新(アップグレード)が必要です。"
1205
 
1206
- #: ../classes/upgrade.php:87
1207
  msgid "why?"
1208
  msgstr "なぜ?"
1209
 
1210
- #: ../classes/upgrade.php:88
1211
  msgid "Please"
1212
  msgstr "どうぞ"
1213
 
1214
- #: ../classes/upgrade.php:89
1215
  msgid "backup your database"
1216
  msgstr "データベースのバックアップ"
1217
 
1218
- #: ../classes/upgrade.php:90
1219
  msgid "then click"
1220
  msgstr "クリックする"
1221
 
1222
- #: ../classes/upgrade.php:298
1223
  msgid "Migrating Column Settings"
1224
  msgstr "移行列の設定"
1225
 
1226
- #: ../classes/upgrade.php:334
1227
  msgid "No Upgrade Required"
1228
  msgstr "アップグレード不可"
1229
 
1230
- #: ../classes/upgrade.php:335
1231
  msgid "Return to welcome screen."
1232
  msgstr "「ようこそ」の画面へ戻ります"
1233
 
1234
- #: ../classes/upgrade.php:353
1235
  msgid "Upgrade Complete!"
1236
  msgstr "更新完了"
1237
 
1238
- #: ../classes/upgrade.php:353
1239
  msgid "Return to settings."
1240
  msgstr "設定へ戻る"
1241
 
1242
- #: ../classes/upgrade.php:354
1243
  msgid "Error"
1244
  msgstr "エラー"
1245
 
1246
- #: ../classes/upgrade.php:355
1247
- msgid ""
1248
- "Sorry. Something went wrong during the upgrade process. Please report this "
1249
- "on the support forum."
1250
- msgstr ""
1251
- "申し訳ありません。アップグレードプロセス中にエラーが発生しました。サポート"
1252
- "フォーラムへ報告してください。"
1253
 
1254
- #: ../codepress-admin-columns.php:439
1255
  msgid "Edit columns"
1256
  msgstr "列の編集"
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
9
+ "PO-Revision-Date: 2014-12-10 17:24+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/admin-columns/language/ja_JP/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: ja_JP\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
+ "X-Generator: Poedit 1.7.1\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
24
+ #: ../classes/addons.php:110
25
  msgid "Third party plugin integration"
26
  msgstr ""
27
 
28
+ #: ../classes/addons.php:135
29
  msgid "Advanced Custom Fields"
30
  msgstr ""
31
 
32
+ #: ../classes/addons.php:136
33
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
34
+ msgstr ""
35
+
36
+ #: ../classes/addons.php:141
37
+ msgid "WooCommerce"
38
+ msgstr ""
39
+
40
+ #: ../classes/addons.php:142
41
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
42
  msgstr ""
43
 
44
+ #: ../classes/column.php:500
45
  msgid "Thumbnail"
46
  msgstr "サムネイル"
47
 
48
+ #: ../classes/column.php:501
49
  msgid "Medium"
50
  msgstr "メディア"
51
 
52
+ #: ../classes/column.php:502
53
  msgid "Large"
54
  msgstr "大"
55
 
56
+ #: ../classes/column.php:503
57
  msgid "Full"
58
  msgstr "フルサイズ"
59
 
60
+ #: ../classes/column.php:863
61
  msgid "Date Format"
62
  msgstr "データフォーマット"
63
 
64
+ #: ../classes/column.php:864
65
  msgid "This will determine how the date will be displayed."
66
  msgstr "日付の表示方法を設定する。"
67
 
68
+ #: ../classes/column.php:870
69
  msgid "Example:"
70
  msgstr "例:"
71
 
72
+ #: ../classes/column.php:872
73
  #, php-format
74
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
75
+ msgstr "設定>一般 <a href=\"%s\">日付フォーマット</a>を利用する場合は空白にしてください。"
 
 
 
 
76
 
77
+ #: ../classes/column.php:873
78
  msgid "Documentation on date and time formatting."
79
  msgstr "日付と時刻のフォーマット"
80
 
81
+ #: ../classes/column.php:887
82
  msgid "Excerpt length"
83
  msgstr "抜粋の長さ"
84
 
85
+ #: ../classes/column.php:888
86
  msgid "Number of words"
87
  msgstr "文字数"
88
 
89
+ #: ../classes/column.php:906
90
  msgid "Preview size"
91
  msgstr "プレビューサイズ"
92
 
93
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
94
  msgid "Custom"
95
  msgstr "カスタム"
96
 
97
+ #: ../classes/column.php:926
98
  msgid "width"
99
  msgstr "幅"
100
 
101
+ #: ../classes/column.php:929
102
  msgid "height"
103
  msgstr "高さ"
104
 
105
+ #: ../classes/column.php:943
106
  msgid "Before"
107
  msgstr "表示の前"
108
 
109
+ #: ../classes/column.php:943
110
  msgid "This text will appear before the custom field value."
111
+ msgstr "このテキストはカスタムフィールドの値の前に表示されます。(HTMLタグ含む)"
 
112
 
113
+ #: ../classes/column.php:949
114
  msgid "After"
115
  msgstr "表示の後"
116
 
117
+ #: ../classes/column.php:949
118
  msgid "This text will appear after the custom field value."
119
+ msgstr "このテキストはカスタムフィールドの値の後に表示されます。(HTMLタグ含む)"
 
120
 
121
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31
122
+ #: ../classes/column/user/actions.php:69
 
123
  msgid "Edit"
124
  msgstr "編集"
125
 
126
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
127
  msgid "Remove"
128
  msgstr "削除"
129
 
130
+ #: ../classes/column.php:1062
131
  msgid "Type"
132
  msgstr "タイプ"
133
 
134
+ #: ../classes/column.php:1062
135
  msgid "Choose a column type."
136
  msgstr "列に表示するタイプを設定します。"
137
 
138
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
139
  msgid "ID"
140
  msgstr "ID"
141
 
142
+ #: ../classes/column.php:1072
143
  msgid "Label"
144
  msgstr "ラベル"
145
 
146
+ #: ../classes/column.php:1072
147
  msgid "This is the name which will appear as the column header."
148
  msgstr "列に表示される名前"
149
 
150
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
151
  msgid "Width"
152
  msgstr "表示幅"
153
 
154
+ #: ../classes/column.php:1081 ../classes/column.php:1082
155
  msgid "default"
156
  msgstr "初期値"
157
 
158
+ #: ../classes/column/acf-placeholder.php:19
159
  msgid "ACF Field"
160
  msgstr ""
161
 
162
  #: ../classes/column/acf-placeholder.php:32
163
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
164
  msgstr ""
165
 
166
  #: ../classes/column/acf-placeholder.php:35
167
  #, php-format
168
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
 
 
169
  msgstr ""
170
 
171
  #: ../classes/column/acf-placeholder.php:38
172
  msgid ""
173
+ "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
 
 
174
  msgstr ""
175
 
176
+ #: ../classes/column/acf-placeholder.php:44
177
  msgid "Find out more"
178
  msgstr ""
179
 
180
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20
181
+ #: ../classes/column/user/actions.php:19
 
 
182
  msgid "Actions"
183
  msgstr "アクション"
184
 
185
+ #: ../classes/column/actions.php:87
186
+ msgid "Use icons?"
187
+ msgstr ""
188
+
189
+ #: ../classes/column/actions.php:87
190
+ msgid "Use icons instead of text for displaying the actions."
191
+ msgstr ""
192
+
193
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
194
+ msgid "Yes"
195
+ msgstr ""
196
+
197
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
198
+ msgid "No"
199
+ msgstr ""
200
+
201
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
202
  msgid "Unapprove"
203
  msgstr "承認しない"
204
 
205
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
206
  msgid "Approve"
207
  msgstr "承認する"
208
 
209
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
210
  msgid "Restore"
211
  msgstr "初期状態に戻す"
212
 
213
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
214
  msgid "Delete Permanently"
215
  msgstr "完全に削除する"
216
 
217
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
218
  msgid "Quick&nbsp;Edit"
219
  msgstr "クイック編集"
220
 
221
+ #: ../classes/column/comment/actions.php:101
222
  msgid "Reply"
223
  msgstr "リプライ"
224
 
225
+ #: ../classes/column/comment/agent.php:19
226
  msgid "Agent"
227
  msgstr "エージェント"
228
 
229
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
230
  msgid "Approved"
231
  msgstr "承認された"
232
 
233
+ #: ../classes/column/comment/author-avatar.php:19
234
  msgid "Avatar"
235
  msgstr "アバター"
236
 
237
+ #: ../classes/column/comment/author-email.php:19
238
  msgid "Author email"
239
  msgstr "投稿者メール"
240
 
241
+ #: ../classes/column/comment/author-ip.php:19
242
  msgid "Author IP"
243
  msgstr "投稿者IP"
244
 
245
+ #: ../classes/column/comment/author-url.php:19
246
  msgid "Author url"
247
  msgstr "投稿者URL"
248
 
249
+ #: ../classes/column/comment/author.php:19
250
  msgid "Author"
251
  msgstr "投稿者"
252
 
253
+ #: ../classes/column/comment/date-gmt.php:19
254
  msgid "Date GMT"
255
  msgstr "日時(GMT)"
256
 
257
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
258
  #, php-format
259
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
260
  msgstr "送信する <a href=\"%1$s\">%2$s at %3$s</a> "
261
 
262
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
263
  msgid "Date"
264
  msgstr "日付"
265
 
266
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
267
  msgid "Excerpt"
268
  msgstr "エキスポート"
269
 
270
+ #: ../classes/column/comment/reply-to.php:19
271
  msgid "In Reply To"
272
  msgstr "返信先"
273
 
274
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
275
  msgid "Word count"
276
  msgstr "文字数"
277
 
278
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
279
  msgid "Custom Field"
280
  msgstr "カスタムフィールド"
281
 
282
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
283
  msgid "Default"
284
  msgstr "デフォルト"
285
 
286
+ #: ../classes/column/custom-field.php:95
287
  msgid "Checkmark (true/false)"
288
  msgstr "チェックマーク(true/false)"
289
 
290
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
291
  msgid "Color"
292
  msgstr "色"
293
 
294
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
295
  msgid "Counter"
296
  msgstr "カウンター"
297
 
298
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
299
  msgid "Image"
300
  msgstr "画像"
301
 
302
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
303
  msgid "Media Library"
304
  msgstr "メディアライブラリー"
305
 
306
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
307
  msgid "Multiple Values"
308
  msgstr "複数の値"
309
 
310
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
311
  msgid "Numeric"
312
  msgstr "数値"
313
 
314
+ #: ../classes/column/custom-field.php:104
315
  msgid "Post Title (Post ID's)"
316
  msgstr "タイトル(Post ID's)"
317
 
318
+ #: ../classes/column/custom-field.php:105
319
  msgid "Username (User ID's)"
320
  msgstr "ユーザー名(User ID's)"
321
 
322
+ #: ../classes/column/custom-field.php:356
323
  msgid "Select your custom field."
324
  msgstr "カスタムフィールドを選択"
325
 
326
+ #: ../classes/column/custom-field.php:366
327
  msgid "No custom fields available."
328
  msgstr "カスタムフィールドがありません"
329
 
330
+ #: ../classes/column/custom-field.php:373
331
  msgid "Field Type"
332
  msgstr "フィールドタイプ"
333
 
334
+ #: ../classes/column/custom-field.php:373
335
  msgid "This will determine how the value will be displayed."
336
  msgstr "表示される方法を設定します"
337
 
338
+ #: ../classes/column/link/actions.php:49
339
  #, php-format
340
  msgid ""
341
  "You are about to delete this link '%s'\n"
344
  "このリンクを削除しようとしています '%s'\n"
345
  "'Cancel' は中止します, 'OK' は削除します。 "
346
 
347
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
348
  msgid "Delete"
349
  msgstr "削除"
350
 
351
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
352
  msgid "Description"
353
  msgstr "説明"
354
 
355
+ #: ../classes/column/link/length.php:19
356
  msgid "Length"
357
  msgstr "長さ"
358
 
359
+ #: ../classes/column/link/notes.php:19
360
  msgid "Notes"
361
  msgstr "注釈"
362
 
363
+ #: ../classes/column/link/owner.php:19
364
  msgid "Owner"
365
  msgstr "オーナー"
366
 
367
+ #: ../classes/column/link/rss.php:19
368
  msgid "Rss"
369
  msgstr "Rss"
370
 
371
+ #: ../classes/column/link/target.php:19
372
  msgid "Target"
373
  msgstr "ターゲット"
374
 
375
+ #: ../classes/column/media/alternate-text.php:19
376
  msgid "Alt"
377
  msgstr "代替テキスト"
378
 
379
+ #: ../classes/column/media/available-sizes.php:20
380
  msgid "Available Sizes"
381
  msgstr "利用できるサイズ"
382
 
383
+ #: ../classes/column/media/available-sizes.php:40
384
  msgid "full size"
385
  msgstr "フルサイズ"
386
 
387
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
388
  msgid "Caption"
389
  msgstr "キャプション"
390
 
391
+ #: ../classes/column/media/dimensions.php:19
392
  msgid "Dimensions"
393
  msgstr "大きさ"
394
 
395
+ #: ../classes/column/media/exif-data.php:19
396
  msgid "EXIF data"
397
  msgstr "EXIFデータ"
398
 
399
+ #: ../classes/column/media/exif-data.php:38
400
  msgid "Aperture"
401
  msgstr "絞り(Aperture)"
402
 
403
+ #: ../classes/column/media/exif-data.php:39
404
  msgid "Credit"
405
  msgstr "クレジット"
406
 
407
+ #: ../classes/column/media/exif-data.php:40
408
  msgid "Camera"
409
  msgstr "カメラ"
410
 
411
+ #: ../classes/column/media/exif-data.php:42
412
  msgid "Timestamp"
413
  msgstr "タイムスタンプ"
414
 
415
+ #: ../classes/column/media/exif-data.php:43
416
  msgid "Copyright EXIF"
417
  msgstr "EXIF著作権 "
418
 
419
+ #: ../classes/column/media/exif-data.php:44
420
  msgid "Focal Length"
421
  msgstr "焦点距離(Focal Length)"
422
 
423
+ #: ../classes/column/media/exif-data.php:45
424
  msgid "ISO"
425
  msgstr "感度(ISO)"
426
 
427
+ #: ../classes/column/media/exif-data.php:46
428
  msgid "Shutter Speed"
429
  msgstr "シャッタースピード"
430
 
431
+ #: ../classes/column/media/exif-data.php:47
432
  msgid "Title"
433
  msgstr "タイトル"
434
 
435
+ #: ../classes/column/media/file-name.php:19
436
  msgid "File name"
437
  msgstr "ファイル名"
438
 
439
+ #: ../classes/column/media/file-size.php:19
440
  msgid "File size"
441
  msgstr "ファイルサイズ"
442
 
443
+ #: ../classes/column/media/full-path.php:19
444
  msgid "Full path"
445
  msgstr "フルパス"
446
 
447
+ #: ../classes/column/media/height.php:19
448
  msgid "Height"
449
  msgstr "高さ"
450
 
451
+ #: ../classes/column/media/mime-type.php:19
452
  msgid "Mime type"
453
  msgstr "Mimeタイプ"
454
 
455
+ #: ../classes/column/post/actions.php:31
456
  msgid "Edit this item"
457
  msgstr "項目を編集"
458
 
459
+ #: ../classes/column/post/actions.php:34
460
  msgid "Edit this item inline"
461
  msgstr "この項目をインラインで編集する。"
462
 
463
+ #: ../classes/column/post/actions.php:39
464
  msgid "Restore this item from the Trash"
465
  msgstr "この項目をゴミ箱から復元する。"
466
 
467
+ #: ../classes/column/post/actions.php:41
468
  msgid "Move this item to the Trash"
469
  msgstr "この項目をゴミ箱へ移動"
470
 
471
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
472
  msgid "Trash"
473
  msgstr "ゴミ箱"
474
 
475
+ #: ../classes/column/post/actions.php:43
476
  msgid "Delete this item permanently"
477
  msgstr "この項目を完全に削除"
478
 
479
+ #: ../classes/column/post/actions.php:48
480
  #, php-format
481
  msgid "Preview &#8220;%s&#8221;"
482
  msgstr "プレビュー &#8220;%s&#8221; "
483
 
484
+ #: ../classes/column/post/actions.php:48
485
  msgid "Preview"
486
  msgstr "プレビュー"
487
 
488
+ #: ../classes/column/post/actions.php:50
489
  #, php-format
490
  msgid "View &#8220;%s&#8221;"
491
  msgstr "表示 &#8220;%s&#8221; "
492
 
493
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
494
  msgid "View"
495
  msgstr "表示"
496
 
497
+ #: ../classes/column/post/attachment-count.php:19
498
  msgid "No. of Attachments"
499
  msgstr "アタッチメント(ファイル等)ID"
500
 
501
+ #: ../classes/column/post/attachment.php:19
502
  msgid "Attachment"
503
  msgstr "アタッチメント(ファイル等)"
504
 
505
+ #: ../classes/column/post/author-name.php:20
506
  msgid "Display Author As"
507
  msgstr "投稿者名"
508
 
509
+ #: ../classes/column/post/author-name.php:40
510
  msgid "Display Name"
511
  msgstr "表示名"
512
 
513
+ #: ../classes/column/post/author-name.php:41
514
  msgid "First Name"
515
  msgstr "姓"
516
 
517
+ #: ../classes/column/post/author-name.php:42
518
  msgid "Last Name"
519
  msgstr "名"
520
 
521
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
522
  msgid "Nickname"
523
  msgstr "ニックネーム"
524
 
525
+ #: ../classes/column/post/author-name.php:44
526
  msgid "User Login"
527
  msgstr "ユーザーログイン名"
528
 
529
+ #: ../classes/column/post/author-name.php:45
530
  msgid "User Email"
531
  msgstr "ユーザーメール"
532
 
533
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
534
  msgid "User ID"
535
  msgstr "ユーザーID"
536
 
537
+ #: ../classes/column/post/author-name.php:47
538
  msgid "First and Last Name"
539
  msgstr "姓名"
540
 
541
+ #: ../classes/column/post/author-name.php:124
542
  msgid "This is the format of the author name."
543
  msgstr "投稿者の表示方法"
544
 
545
+ #: ../classes/column/post/before-moretag.php:19
546
  msgid "Before More Tag"
547
  msgstr "タグの前に"
548
 
549
+ #: ../classes/column/post/comment-count.php:20
550
  msgid "Comment count"
551
  msgstr "コメント数"
552
 
553
+ #: ../classes/column/post/comment-count.php:34
554
  msgid "Total"
555
  msgstr "トータル"
556
 
557
+ #: ../classes/column/post/comment-count.php:36
558
  msgid "Pending"
559
  msgstr "ペンディング"
560
 
561
+ #: ../classes/column/post/comment-count.php:37
562
  msgid "Spam"
563
  msgstr "スパム"
564
 
565
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
566
  msgid "Comment status"
567
  msgstr "コメントステータス"
568
 
569
+ #: ../classes/column/post/comment-count.php:99
570
  msgid "Select which comment status you like to display."
571
  msgstr "表示させたいコメントステータスを選択します。"
572
 
573
+ #: ../classes/column/post/featured-image.php:19
574
  msgid "Featured Image"
575
  msgstr "注目画像"
576
 
577
+ #: ../classes/column/post/formats.php:19
578
  msgid "Post Format"
579
  msgstr "ポストフォーマット"
580
 
581
+ #: ../classes/column/post/modified.php:19
582
  msgid "Last modified"
583
  msgstr "最終更新"
584
 
585
+ #: ../classes/column/post/order.php:19
586
  msgid "Page Order"
587
  msgstr "ページオーダー"
588
 
589
+ #: ../classes/column/post/page-template.php:19
590
  msgid "Page Template"
591
  msgstr "ページテンプレート"
592
 
593
+ #: ../classes/column/post/parent.php:19
594
  msgid "Parent"
595
  msgstr "パーマメント"
596
 
597
+ #: ../classes/column/post/path.php:19
598
+ msgid "Path"
599
+ msgstr ""
600
+
601
+ #: ../classes/column/post/permalink.php:19
602
  msgid "Permalink"
603
  msgstr ""
604
 
605
+ #: ../classes/column/post/permalink.php:68
606
+ msgid "Link to post"
607
+ msgstr ""
608
+
609
+ #: ../classes/column/post/permalink.php:68
610
+ msgid "This will make the permalink clickable."
611
+ msgstr ""
612
+
613
+ #: ../classes/column/post/ping-status.php:19
614
  msgid "Ping status"
615
  msgstr "Pingステータス"
616
 
617
+ #: ../classes/column/post/roles.php:19
618
  msgid "Roles"
619
  msgstr "権限"
620
 
621
+ #: ../classes/column/post/slug.php:19
622
  msgid "Slug"
623
  msgstr "スラッグ"
624
 
625
+ #: ../classes/column/post/status.php:19
626
  msgid "Status"
627
  msgstr "ステータス"
628
 
629
+ #: ../classes/column/post/status.php:29
630
  msgid "Published"
631
  msgstr "公開"
632
 
633
+ #: ../classes/column/post/status.php:30
634
  msgid "Draft"
635
  msgstr "下書き"
636
 
637
+ #: ../classes/column/post/status.php:31
638
  msgid "Scheduled"
639
  msgstr "予定の"
640
 
641
+ #: ../classes/column/post/status.php:32
642
  msgid "Private"
643
  msgstr "プライベート"
644
 
645
+ #: ../classes/column/post/status.php:33
646
  msgid "Pending Review"
647
  msgstr "レビュー待ち"
648
 
649
+ #: ../classes/column/post/status.php:34
650
  msgid "Auto Draft"
651
  msgstr ""
652
 
653
+ #: ../classes/column/post/sticky.php:19
654
  msgid "Sticky"
655
  msgstr "先頭に固定表示"
656
 
657
+ #: ../classes/column/post/title-raw.php:19
658
+ msgid "Title without actions"
659
+ msgstr ""
660
+
661
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
662
  msgid "Taxonomy"
663
  msgstr "タクソノミー"
664
 
665
+ #: ../classes/column/used-by-menu.php:20
666
+ msgid "Used by Menu"
667
+ msgstr ""
668
+
669
+ #: ../classes/column/used-by-menu.php:133
670
+ msgid "Link to menu"
671
+ msgstr ""
672
+
673
+ #: ../classes/column/used-by-menu.php:133
674
+ msgid "This will make the title link to the menu."
675
+ msgstr ""
676
+
677
+ #: ../classes/column/user/comment-count.php:19
678
  msgid "Comment Count"
679
  msgstr "コメント数"
680
 
681
+ #: ../classes/column/user/first-name.php:19
682
  msgid "First name"
683
  msgstr "名"
684
 
685
+ #: ../classes/column/user/last-name.php:19
686
  msgid "Last name"
687
  msgstr "姓"
688
 
689
+ #: ../classes/column/user/post-count.php:19
690
  msgid "Post Count"
691
  msgstr "コメント"
692
 
693
+ #: ../classes/column/user/post-count.php:102
694
  msgid "Post Type"
695
  msgstr "投稿タイプ"
696
 
697
+ #: ../classes/column/user/registered.php:19
698
  msgid "Registered"
699
  msgstr "登録された"
700
 
701
+ #: ../classes/column/user/url.php:19
702
  msgid "Url"
703
  msgstr "URL"
704
 
705
+ #: ../classes/settings.php:111
706
  msgid "Add-on successfully activated."
707
  msgstr ""
708
 
709
+ #: ../classes/settings.php:114
710
  msgid "Add-on successfully deactivated."
711
  msgstr ""
712
 
713
+ #: ../classes/settings.php:169
714
  msgid "Admin Columns Settings"
715
  msgstr "Admin Columns 設定"
716
 
717
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
718
  msgid "Admin Columns"
719
  msgstr "Admin Columns"
720
 
721
+ #: ../classes/settings.php:217
722
  #, php-format
723
  msgid "%s column is already present and can not be duplicated."
724
  msgstr "%s 列はすでに存在します。複製することができません "
725
 
726
+ #: ../classes/settings.php:271
727
  msgid "Default settings succesfully restored."
728
  msgstr "初期設定を復元しました。"
729
 
730
+ #: ../classes/settings.php:288
731
  msgid "Overview"
732
  msgstr "概要"
733
 
734
+ #: ../classes/settings.php:291
735
  msgid ""
736
+ "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change "
737
+ "the column's label and reorder them."
 
738
  msgstr ""
739
+ "このプラグインは管理画面に表示される列の追加・削除や並び変えを可能にします。\n"
740
+ "投稿・メディアページ・コメント・リンク・ユーザー・カスタム投稿(post type)に対応し\n"
 
 
741
  "PRO版ではソート・フィルタリングも可能になります。"
742
 
743
+ #: ../classes/settings.php:294
744
  msgid "Basics"
745
  msgstr "基本"
746
 
747
+ #: ../classes/settings.php:296
748
  msgid "Change order"
749
  msgstr "並びを変更"
750
 
751
+ #: ../classes/settings.php:297
752
+ msgid "By dragging the columns you can change the order which they will appear in."
 
753
  msgstr "列幅をドラッグして表示される場所を変更することが可能です。"
754
 
755
+ #: ../classes/settings.php:298
756
  msgid "Change label"
757
  msgstr "ラベルの変更"
758
 
759
+ #: ../classes/settings.php:299
760
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
 
 
761
  msgstr ""
762
  "列の表示オプションを表示します。\n"
763
  "見出しや列のラベルを変更できます。"
764
 
765
+ #: ../classes/settings.php:300
766
  msgid "Change column width"
767
  msgstr "列幅を変更"
768
 
769
+ #: ../classes/settings.php:301
770
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
771
+ msgstr "三角形をクリックすると、列のオプションが表示されます。ドラッグ可能なスライダーを使用することで、パーセンテージで列の幅を設定することができます。"
 
 
 
 
772
 
773
+ #: ../classes/settings.php:307
774
  msgid "'Custom Field' column"
775
  msgstr "カスタムフィールド幅"
776
 
777
+ #: ../classes/settings.php:308
778
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
 
 
779
  msgstr "カスタムフィールドには設定可能な10種類のタイプあります"
780
 
781
+ #: ../classes/settings.php:310
782
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
 
 
783
  msgstr "値:文字列または配列になります。配列は、区切ります。"
784
 
785
+ #: ../classes/settings.php:311
786
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
787
+ msgstr "値:画像URLやファイルIDを含んでいる必要があります。(複数の場合は\"、”で区切ってください)"
 
 
 
 
788
 
789
+ #: ../classes/settings.php:312
790
  msgid "Value: This will show the first 20 words of the Post content."
791
  msgstr "値:投稿内容の最初の20文字が表示されます。"
792
 
793
+ #: ../classes/settings.php:313
794
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
795
  msgstr "値:配列でなければいけません。(配列をフラット化します)"
796
 
797
+ #: ../classes/settings.php:314
798
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
799
+ msgstr "値:整数だけ<br/>サポートします。ソートアドオンが有効な場合(カスタムフィールド)記事を並び変えることができます。"
 
 
 
 
800
 
801
+ #: ../classes/settings.php:315
802
  #, php-format
803
  msgid ""
804
+ "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general "
805
+ "settings</a> page."
806
+ msgstr "値:<a href='%s'>Codex</a>の説明であるようにunixタイムスタンプや日付形式を指定できます。設定>一般<a href='%s'>日付のフォーマット</a>設定を利用できます。"
 
 
 
807
 
808
+ #: ../classes/settings.php:316
809
  msgid "Post Titles"
810
  msgstr "投稿タイトル"
811
 
812
+ #: ../classes/settings.php:316
813
  msgid "Value: can be one or more Post ID's (seperated by ',')."
814
  msgstr "値:複数の場合は、ポストIDを(、)で区切ってください。"
815
 
816
+ #: ../classes/settings.php:317
817
  msgid "Usernames"
818
  msgstr "ユーザー名"
819
 
820
+ #: ../classes/settings.php:317
821
  msgid "Value: can be one or more User ID's (seperated by ',')."
822
  msgstr "値;複数のユーザーの場合は(、)で区切ってください。"
823
 
824
+ #: ../classes/settings.php:318
825
  msgid "Checkmark"
826
  msgstr "チェックマーク"
827
 
828
+ #: ../classes/settings.php:318
829
  msgid "Value: should be a 1 (one) or 0 (zero)."
830
  msgstr "値:1(one)または0(zero)"
831
 
832
+ #: ../classes/settings.php:319
833
  msgid "Value: hex value color, such as #808080."
834
  msgstr "値:HEXカラーコード #808080など"
835
 
836
+ #: ../classes/settings.php:320
837
+ msgid "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."
 
 
838
  msgstr "値:文字列または配列。meta_keyの場合は回数を表示します"
839
 
840
+ #: ../classes/settings.php:409
841
  msgid "Welcome to Admin Columns"
842
  msgstr "ようこそ Admin Columns"
843
 
844
+ #: ../classes/settings.php:412
845
  msgid "Thank you for updating to the latest version!"
846
  msgstr "最新のバージョンに更新して頂きありがとうございます。"
847
 
848
+ #: ../classes/settings.php:413
849
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
 
 
850
  msgstr ""
851
  "Admin Columns は洗練された管理画面を提供します。\n"
852
  "私たちは、あなたやあなたのユーザーが喜ぶことを願っています。"
853
 
854
+ #: ../classes/settings.php:418
855
  msgid "What’s New"
856
  msgstr "最新"
857
 
858
+ #: ../classes/settings.php:419
859
  msgid "Changelog"
860
  msgstr "変更履歴"
861
 
862
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
863
  msgid "Important"
864
  msgstr "インポート"
865
 
866
+ #: ../classes/settings.php:426
867
  msgid "Database Changes"
868
  msgstr "データベースの変更"
869
 
870
+ #: ../classes/settings.php:427
871
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
872
+ msgstr "データベースには、バージョン12で変更されました。しかし、我々は、何の問題もなく戻ってバージョン1Xにロールバックすることができことを確認しています。"
 
 
 
 
873
 
874
+ #: ../classes/settings.php:430
875
  msgid "Make sure you backup your database and then click"
876
  msgstr "クリックしてデータバースのバックアップを作る"
877
 
878
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
879
  msgid "Upgrade Database"
880
  msgstr "データベースをアップデート"
881
 
882
+ #: ../classes/settings.php:433
883
  msgid "Potential Issues"
884
  msgstr "潜在的な問題"
885
 
886
+ #: ../classes/settings.php:434
887
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
888
+ msgstr "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full "
 
 
 
 
 
 
889
 
890
+ #: ../classes/settings.php:434
891
  msgid "Migrating from v1 to v2"
892
  msgstr "Ver1からVer2への移行"
893
 
894
+ #: ../classes/settings.php:434
895
  msgid "guide to view the full list of changes."
896
  msgstr "変更点の詳細案内"
897
 
898
+ #: ../classes/settings.php:434
899
  #, php-format
900
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
901
+ msgstr "バグを発見した場合は<a href=\"%s\">バグレポート</a>で報告してください。次回リリースで修正致します。 "
 
 
 
 
902
 
903
+ #: ../classes/settings.php:437
904
  msgid "Important!"
905
  msgstr "大切な事"
906
 
907
+ #: ../classes/settings.php:437
908
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
909
+ msgstr "プラグイン管理の列を更新した場合、最新のものにロールバックしてください。"
 
 
 
910
 
911
+ #: ../classes/settings.php:437
912
  msgid "version 1"
913
  msgstr "version 1 "
914
 
915
+ #: ../classes/settings.php:437
916
  msgid "of this plugin."
917
  msgstr "このプラグイン"
918
 
919
+ #: ../classes/settings.php:443
920
  msgid "Changelog for"
921
  msgstr "変更履歴の"
922
 
923
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
924
  msgid "Learn more"
925
  msgstr "詳細はこちら"
926
 
927
+ #: ../classes/settings.php:468
928
  msgid "Start using Admin Columns"
929
  msgstr "Admin Columnsをはじめましょう"
930
 
931
+ #: ../classes/settings.php:511
932
  msgid "General Settings"
933
  msgstr "一般設定"
934
 
935
+ #: ../classes/settings.php:512
936
  msgid "Customize your Admin Columns settings."
937
  msgstr ""
938
  "管理画面の列表示を<br/>\n"
939
  "カスタマイズします。"
940
 
941
+ #: ../classes/settings.php:523
942
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
 
943
  msgstr ""
 
944
 
945
+ #: ../classes/settings.php:530 ../classes/settings.php:660
946
  msgid "Save"
947
  msgstr "保存"
948
 
949
+ #: ../classes/settings.php:570
950
  msgid "Restore Settings"
951
  msgstr "設定の復元"
952
 
953
+ #: ../classes/settings.php:571
954
  msgid "This will delete all column settings and restore the default settings."
955
  msgstr ""
956
  "追加された全ての列を削除し、<br/>\n"
957
  "デフォルト設定に戻します。"
958
 
959
+ #: ../classes/settings.php:577
960
  msgid "Restore default settings"
961
  msgstr "デフォルト設定に戻します。"
962
 
963
+ #: ../classes/settings.php:577
964
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
965
+ msgstr "注意! 保存された、すべての列表示が削除されます。元に戻すことはできません。 \\'OK\\' で削除します \\'Cancel\\'で中止します。 "
 
 
 
 
966
 
967
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
968
  msgid "Settings"
969
  msgstr "設定"
970
 
971
+ #: ../classes/settings.php:600
972
  msgid "Add-ons"
973
  msgstr ""
974
 
975
+ #: ../classes/settings.php:625
976
  msgid "Posttypes"
977
  msgstr ""
978
 
979
+ #: ../classes/settings.php:626
980
  msgid "Others"
981
  msgstr ""
982
 
983
+ #: ../classes/settings.php:627
984
  msgid "Taxonomies"
985
  msgstr ""
986
 
987
+ #: ../classes/settings.php:646
988
  #, php-format
989
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
 
 
990
  msgstr ""
991
 
992
+ #: ../classes/settings.php:656
993
  msgid "Store settings"
994
  msgstr "設定を保存"
995
 
996
+ #: ../classes/settings.php:660
997
  msgid "Update"
998
  msgstr "アップデート"
999
 
1000
+ #: ../classes/settings.php:664
1001
  #, php-format
1002
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1003
+ msgstr "注意!  あなたが設定した %s 列は削除されWP初期値に戻ります。削除すると元に戻すことはできません. \\'OK\\' で削除 \\'Cancel\\' でキャンセル "
 
 
 
 
1004
 
1005
+ #: ../classes/settings.php:665
1006
  msgid "columns"
1007
  msgstr "-列"
1008
 
1009
+ #: ../classes/settings.php:684
1010
  msgid "Get Admin Columns Pro"
1011
  msgstr ""
1012
 
1013
+ #: ../classes/settings.php:688
1014
  msgid "Add Sorting"
1015
  msgstr "ソートを追加"
1016
 
1017
+ #: ../classes/settings.php:689
1018
  msgid "Add Filtering"
1019
  msgstr "フィルターを追加"
1020
 
1021
+ #: ../classes/settings.php:690
1022
  msgid "Add Import/Export"
1023
  msgstr "設定のインポート・エキスポートを追加"
1024
 
1025
+ #: ../classes/settings.php:691
1026
  msgid "Add Direct Editing"
1027
  msgstr ""
1028
 
1029
+ #: ../classes/settings.php:694
1030
  #, php-format
1031
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1032
  msgstr ""
1033
 
1034
+ #: ../classes/settings.php:725
1035
+ msgid "Are you happy with Admin Columns?"
1036
+ msgstr ""
1037
+
1038
+ #: ../classes/settings.php:733
1039
+ msgid "What's wrong? Need help? Let us know!"
1040
+ msgstr ""
1041
+
1042
+ #: ../classes/settings.php:734
1043
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1044
+ msgstr ""
1045
+
1046
  #: ../classes/settings.php:742
1047
+ msgid "Docs"
1048
+ msgstr ""
1049
+
1050
+ #: ../classes/settings.php:747
1051
+ msgid "Forums"
1052
+ msgstr ""
1053
+
1054
+ #: ../classes/settings.php:756
1055
+ msgid "Woohoo! We're glad to hear that!"
1056
+ msgstr ""
1057
+
1058
+ #: ../classes/settings.php:757
1059
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1060
+ msgstr ""
1061
+
1062
+ #: ../classes/settings.php:761
1063
+ msgid "Rate"
1064
+ msgstr ""
1065
+
1066
+ #: ../classes/settings.php:772
1067
+ msgid "Tweet"
1068
+ msgstr ""
1069
+
1070
+ #: ../classes/settings.php:782
1071
+ msgid "Buy Pro"
1072
+ msgstr ""
1073
+
1074
+ #: ../classes/settings.php:794
1075
  msgid "Support"
1076
  msgstr "サポート"
1077
 
1078
+ #: ../classes/settings.php:797
1079
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1080
  msgstr "画面右上の<strong>Help</strong>を確認してください。"
1081
 
1082
+ #: ../classes/settings.php:800
1083
  #, php-format
1084
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
 
 
1085
  msgstr ""
1086
  "ドキュメント・バグレポート・機能の提案などは<br/>\n"
1087
  " <a href='%s'> Admin Columns website</a>を訪れてください。"
1088
 
1089
+ #: ../classes/settings.php:829
1090
  msgid "Drag and drop to reorder"
1091
  msgstr "ドロップ&ドラッグで表示順序を変更できます"
1092
 
1093
+ #: ../classes/settings.php:832
1094
  msgid "Add Column"
1095
  msgstr "列の追加"
1096
 
1097
+ #: ../classes/settings.php:908
1098
  msgid "Active"
1099
  msgstr ""
1100
 
1101
+ #: ../classes/settings.php:909
1102
  msgid "Deactivate"
1103
  msgstr ""
1104
 
1105
+ #: ../classes/settings.php:916
1106
  msgid "Installed"
1107
  msgstr ""
1108
 
1109
+ #: ../classes/settings.php:917
1110
  msgid "Activate"
1111
  msgstr ""
1112
 
1113
+ #: ../classes/settings.php:931
1114
  msgid "Download & Install"
1115
  msgstr ""
1116
 
1117
+ #: ../classes/settings.php:936
1118
  msgid "Get this add-on"
1119
  msgstr ""
1120
 
1121
+ #: ../classes/storage_model.php:213
1122
  msgid "settings succesfully restored."
1123
  msgstr "設定を復元しました。"
1124
 
1125
+ #: ../classes/storage_model.php:229
1126
  msgid "No columns settings available."
1127
  msgstr "設定された列はありません"
1128
 
1129
+ #: ../classes/storage_model.php:250
1130
  #, php-format
1131
  msgid "You are trying to store the same settings for %s."
1132
  msgstr "%sはすでに設定済みです "
1133
 
1134
+ #: ../classes/storage_model.php:254
1135
  #, php-format
1136
  msgid "Settings for %s updated succesfully."
1137
  msgstr "設定 %s は正常にアップデートしました。"
1148
  msgid "Users"
1149
  msgstr "ユーザー"
1150
 
1151
+ #: ../classes/upgrade.php:62
1152
+ msgid ""
1153
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free "
1154
+ "license of <strong>Admin Columns Pro</strong> <a href=\"http://www.admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a "
1155
+ "bunch of cool new features, including Direct Inline Editing!"
1156
+ msgstr ""
1157
+
1158
+ #: ../classes/upgrade.php:95
1159
  msgid "Upgrade"
1160
  msgstr "アップグレード"
1161
 
1162
+ #: ../classes/upgrade.php:136
1163
  msgid "requires a database upgrade"
1164
  msgstr "データベースの更新(アップグレード)が必要です。"
1165
 
1166
+ #: ../classes/upgrade.php:139
1167
  msgid "why?"
1168
  msgstr "なぜ?"
1169
 
1170
+ #: ../classes/upgrade.php:140
1171
  msgid "Please"
1172
  msgstr "どうぞ"
1173
 
1174
+ #: ../classes/upgrade.php:141
1175
  msgid "backup your database"
1176
  msgstr "データベースのバックアップ"
1177
 
1178
+ #: ../classes/upgrade.php:142
1179
  msgid "then click"
1180
  msgstr "クリックする"
1181
 
1182
+ #: ../classes/upgrade.php:351
1183
  msgid "Migrating Column Settings"
1184
  msgstr "移行列の設定"
1185
 
1186
+ #: ../classes/upgrade.php:387
1187
  msgid "No Upgrade Required"
1188
  msgstr "アップグレード不可"
1189
 
1190
+ #: ../classes/upgrade.php:388
1191
  msgid "Return to welcome screen."
1192
  msgstr "「ようこそ」の画面へ戻ります"
1193
 
1194
+ #: ../classes/upgrade.php:406
1195
  msgid "Upgrade Complete!"
1196
  msgstr "更新完了"
1197
 
1198
+ #: ../classes/upgrade.php:406
1199
  msgid "Return to settings."
1200
  msgstr "設定へ戻る"
1201
 
1202
+ #: ../classes/upgrade.php:407
1203
  msgid "Error"
1204
  msgstr "エラー"
1205
 
1206
+ #: ../classes/upgrade.php:408
1207
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1208
+ msgstr "申し訳ありません。アップグレードプロセス中にエラーが発生しました。サポートフォーラムへ報告してください。"
 
 
 
 
1209
 
1210
+ #: ../codepress-admin-columns.php:390
1211
  msgid "Edit columns"
1212
  msgstr "列の編集"
languages/cpac-nl_NL.mo CHANGED
Binary file
languages/cpac-nl_NL.po CHANGED
@@ -1,1158 +1,1118 @@
1
  #
2
  # Translators:
 
3
  # Tobias Schutter <info@codepress.nl>, 2013-2014
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-08-28 12:17+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
- "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/"
12
- "admin-columns/language/nl_NL/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: nl_NL\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: Poedit 1.6.8\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../classes/addons.php:117
26
  msgid "Third party plugin integration"
27
  msgstr "Plugin integratie"
28
 
29
- #: ../classes/addons.php:142
30
  msgid "Advanced Custom Fields"
31
  msgstr "Advanced Custom Fields"
32
 
33
- #: ../classes/addons.php:143
34
- msgid ""
35
- "Display and edit Advanced Custom Fields fields in the posts overview in "
36
- "seconds!"
37
  msgstr "Toon en bewerk Advanced Custom Fields velden in het post overzicht!"
38
 
39
- #: ../classes/column.php:481
 
 
 
 
 
 
 
 
40
  msgid "Thumbnail"
41
  msgstr "Thumbnail"
42
 
43
- #: ../classes/column.php:482
44
  msgid "Medium"
45
  msgstr "Gemiddeld"
46
 
47
- #: ../classes/column.php:483
48
  msgid "Large"
49
  msgstr "Groot"
50
 
51
- #: ../classes/column.php:484
52
  msgid "Full"
53
  msgstr "Volledig"
54
 
55
- #: ../classes/column.php:751
56
  msgid "Date Format"
57
  msgstr "Datumnotatie"
58
 
59
- #: ../classes/column.php:752
60
  msgid "This will determine how the date will be displayed."
61
  msgstr "Dit bepaald hoe de datum wordt weergegeven."
62
 
63
- #: ../classes/column.php:758
64
  msgid "Example:"
65
  msgstr "Voorbeeld:"
66
 
67
- #: ../classes/column.php:760
68
  #, php-format
69
- msgid ""
70
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
71
- "date format here</a>."
72
- msgstr ""
73
- "Laat leeg voor WordPress datumformaat, verander je <a href=\"%s\">standaard "
74
- "datumformaat </a>."
75
 
76
- #: ../classes/column.php:761
77
  msgid "Documentation on date and time formatting."
78
  msgstr "Documentatie over datum en tijd opmaak."
79
 
80
- #: ../classes/column.php:775
81
  msgid "Excerpt length"
82
  msgstr "Samenvatting lengte"
83
 
84
- #: ../classes/column.php:776
85
  msgid "Number of words"
86
  msgstr "Aantal woorden"
87
 
88
- #: ../classes/column.php:794
89
  msgid "Preview size"
90
  msgstr "Voorbeeldformaat"
91
 
92
- #: ../classes/column.php:811 ../classes/storage_model.php:505
93
  msgid "Custom"
94
  msgstr "Aangepast"
95
 
96
- #: ../classes/column.php:814
97
  msgid "width"
98
  msgstr "breedte"
99
 
100
- #: ../classes/column.php:817
101
  msgid "height"
102
  msgstr "hoogte"
103
 
104
- #: ../classes/column.php:831
105
  msgid "Before"
106
  msgstr "Voor"
107
 
108
- #: ../classes/column.php:831
109
  msgid "This text will appear before the custom field value."
110
  msgstr "Deze tekst wordt getoond voor de custom field waarde."
111
 
112
- #: ../classes/column.php:837
113
  msgid "After"
114
  msgstr "Na"
115
 
116
- #: ../classes/column.php:837
117
  msgid "This text will appear after the custom field value."
118
  msgstr "Deze tekst wordt getoond na de custom field waarde."
119
 
120
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
121
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
122
- #: ../classes/column/user/actions.php:66
123
  msgid "Edit"
124
  msgstr "Bewerken"
125
 
126
- #: ../classes/column.php:927 ../classes/column.php:1005
127
- #: ../classes/column/user/actions.php:74
128
  msgid "Remove"
129
  msgstr "Verwijderen"
130
 
131
- #: ../classes/column.php:945
132
  msgid "Type"
133
  msgstr "Type"
134
 
135
- #: ../classes/column.php:945
136
  msgid "Choose a column type."
137
  msgstr "Kies een kolom type."
138
 
139
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
140
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
141
- #: ../classes/column/post/ID.php:12
142
  msgid "ID"
143
  msgstr "ID"
144
 
145
- #: ../classes/column.php:955
146
  msgid "Label"
147
  msgstr "Label"
148
 
149
- #: ../classes/column.php:955
150
  msgid "This is the name which will appear as the column header."
151
  msgstr "Deze naam zal verschijnen als kolom kop."
152
 
153
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
154
  msgid "Width"
155
  msgstr "Breedte"
156
 
157
- #: ../classes/column.php:964 ../classes/column.php:965
158
  msgid "default"
159
  msgstr "standaard"
160
 
161
- #: ../classes/column/acf-placeholder.php:16
162
  msgid "ACF Field"
163
  msgstr "ACF Veld"
164
 
165
  #: ../classes/column/acf-placeholder.php:32
166
- msgid "This feature is only available in Admin Columns Pro - Developer."
167
- msgstr ""
168
 
169
  #: ../classes/column/acf-placeholder.php:35
170
  #, php-format
171
- msgid ""
172
- "If you have a developer licence please download & install your ACF add-on "
173
- "from the <a href='%s'>add-ons tab</a>."
174
- msgstr ""
175
 
176
  #: ../classes/column/acf-placeholder.php:38
177
- msgid ""
178
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
179
- "integeration, allowing you to easily display and edit ACF fields from within "
180
- "your posts overview."
181
- msgstr ""
182
 
183
- #: ../classes/column/acf-placeholder.php:40
184
  msgid "Find out more"
185
  msgstr "Meer weten"
186
 
187
- #: ../classes/column/comment/actions.php:14
188
- #: ../classes/column/link/actions.php:14
189
- #: ../classes/column/media/actions.php:14
190
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
191
  msgid "Actions"
192
  msgstr "Acties"
193
 
194
- #: ../classes/column/comment/actions.php:73
195
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  msgid "Unapprove"
197
  msgstr "Afgekeurd"
198
 
199
- #: ../classes/column/comment/actions.php:75
200
- #: ../classes/column/comment/actions.php:77
201
  msgid "Approve"
202
  msgstr "Goedgekeurd"
203
 
204
- #: ../classes/column/comment/actions.php:86
205
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
206
  msgid "Restore"
207
  msgstr "Herstellen"
208
 
209
- #: ../classes/column/comment/actions.php:90
210
- #: ../classes/column/post/actions.php:66
211
  msgid "Delete Permanently"
212
  msgstr "Permanent verwijderen"
213
 
214
- #: ../classes/column/comment/actions.php:97
215
- #: ../classes/column/post/actions.php:58
216
  msgid "Quick&nbsp;Edit"
217
  msgstr "Snel&nbsp;Bewerken"
218
 
219
- #: ../classes/column/comment/actions.php:98
220
  msgid "Reply"
221
  msgstr "Beantwoorden"
222
 
223
- #: ../classes/column/comment/agent.php:12
224
  msgid "Agent"
225
  msgstr "Agent"
226
 
227
- #: ../classes/column/comment/approved.php:12
228
- #: ../classes/column/post/comment-count.php:31
229
  msgid "Approved"
230
  msgstr "Goedgekeurd"
231
 
232
- #: ../classes/column/comment/author-avatar.php:12
233
  msgid "Avatar"
234
  msgstr "Avatar"
235
 
236
- #: ../classes/column/comment/author-email.php:12
237
  msgid "Author email"
238
  msgstr "Auteurs email"
239
 
240
- #: ../classes/column/comment/author-ip.php:12
241
  msgid "Author IP"
242
  msgstr "Auteur IP"
243
 
244
- #: ../classes/column/comment/author-url.php:12
245
  msgid "Author url"
246
  msgstr "Auteurs url"
247
 
248
- #: ../classes/column/comment/author.php:12
249
  msgid "Author"
250
  msgstr "Auteur"
251
 
252
- #: ../classes/column/comment/date-gmt.php:12
253
  msgid "Date GMT"
254
  msgstr "Datum GMT"
255
 
256
- #: ../classes/column/comment/date-gmt.php:25
257
- #: ../classes/column/comment/date.php:25
258
  #, php-format
259
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
260
  msgstr "Verstuurd op <a href=\"%1$s\">%2$s op %3$s</a>"
261
 
262
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
263
- #: ../classes/settings.php:300
264
  msgid "Date"
265
  msgstr "Datum"
266
 
267
- #: ../classes/column/comment/excerpt.php:13
268
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
269
- #: ../classes/settings.php:297
270
  msgid "Excerpt"
271
  msgstr "Samenvatting"
272
 
273
- #: ../classes/column/comment/reply-to.php:12
274
  msgid "In Reply To"
275
  msgstr "Antwoord op"
276
 
277
- #: ../classes/column/comment/word-count.php:12
278
- #: ../classes/column/post/word-count.php:12
279
  msgid "Word count"
280
  msgstr "Aantal woorden"
281
 
282
- #: ../classes/column/custom-field.php:16
283
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
284
  msgid "Custom Field"
285
  msgstr "Custom veld"
286
 
287
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
288
- #: ../classes/storage_model.php:504
289
  msgid "Default"
290
  msgstr "Standaard"
291
 
292
- #: ../classes/column/custom-field.php:66
293
  msgid "Checkmark (true/false)"
294
  msgstr "Vinkje (true/false)"
295
 
296
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
297
  msgid "Color"
298
  msgstr "Kleur"
299
 
300
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
301
  msgid "Counter"
302
  msgstr "Teller"
303
 
304
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
305
- #: ../classes/settings.php:296
306
  msgid "Image"
307
  msgstr "Afbeelding"
308
 
309
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
310
  msgid "Media Library"
311
  msgstr "Mediabibliotheek"
312
 
313
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
314
  msgid "Multiple Values"
315
  msgstr "Meerdere waarden"
316
 
317
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
318
  msgid "Numeric"
319
  msgstr "Numerieke"
320
 
321
- #: ../classes/column/custom-field.php:75
322
  msgid "Post Title (Post ID's)"
323
  msgstr "Post Titel (Post ID's)"
324
 
325
- #: ../classes/column/custom-field.php:76
326
  msgid "Username (User ID's)"
327
  msgstr "Gebruikersnaam ( Gebruiker ID's )"
328
 
329
- #: ../classes/column/custom-field.php:384
330
  msgid "Select your custom field."
331
  msgstr "Selecteer uw custom field."
332
 
333
- #: ../classes/column/custom-field.php:394
334
  msgid "No custom fields available."
335
  msgstr "Geen custom fields beschikbaar."
336
 
337
- #: ../classes/column/custom-field.php:401
338
  msgid "Field Type"
339
  msgstr "Veld type"
340
 
341
- #: ../classes/column/custom-field.php:401
342
  msgid "This will determine how the value will be displayed."
343
  msgstr "Dit bepaald hoe de waarde wordt weer gegeven,"
344
 
345
- #: ../classes/column/link/actions.php:46
346
  #, php-format
347
  msgid ""
348
  "You are about to delete this link '%s'\n"
349
  " 'Cancel' to stop, 'OK' to delete."
350
  msgstr ""
 
 
351
 
352
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
353
  msgid "Delete"
354
  msgstr "Verwijder"
355
 
356
- #: ../classes/column/link/description.php:12
357
- #: ../classes/column/media/description.php:12
358
- #: ../classes/column/user/description.php:14
359
  msgid "Description"
360
  msgstr "Beschrijving"
361
 
362
- #: ../classes/column/link/length.php:12
363
  msgid "Length"
364
  msgstr "Lengte"
365
 
366
- #: ../classes/column/link/notes.php:13
367
  msgid "Notes"
368
  msgstr "Beschrijving"
369
 
370
- #: ../classes/column/link/owner.php:12
371
  msgid "Owner"
372
  msgstr "Eigenaar"
373
 
374
- #: ../classes/column/link/rss.php:12
375
  msgid "Rss"
376
  msgstr "Rss"
377
 
378
- #: ../classes/column/link/target.php:12
379
  msgid "Target"
380
  msgstr "Doel"
381
 
382
- #: ../classes/column/media/alternate-text.php:12
383
  msgid "Alt"
384
  msgstr "Alt"
385
 
386
- #: ../classes/column/media/available-sizes.php:14
387
  msgid "Available Sizes"
388
  msgstr "Beschikbare Afmetingen"
389
 
390
- #: ../classes/column/media/available-sizes.php:37
391
  msgid "full size"
392
  msgstr "Volledige grootte"
393
 
394
- #: ../classes/column/media/caption.php:12
395
- #: ../classes/column/media/exif-data.php:36
396
  msgid "Caption"
397
  msgstr "Onderschrift"
398
 
399
- #: ../classes/column/media/dimensions.php:12
400
  msgid "Dimensions"
401
  msgstr "Afmetingen"
402
 
403
- #: ../classes/column/media/exif-data.php:12
404
  msgid "EXIF data"
405
  msgstr "EXIF data"
406
 
407
- #: ../classes/column/media/exif-data.php:33
408
  msgid "Aperture"
409
  msgstr "Aperture"
410
 
411
- #: ../classes/column/media/exif-data.php:34
412
  msgid "Credit"
413
  msgstr "Credit"
414
 
415
- #: ../classes/column/media/exif-data.php:35
416
  msgid "Camera"
417
  msgstr "Camera"
418
 
419
- #: ../classes/column/media/exif-data.php:37
420
  msgid "Timestamp"
421
  msgstr "Timestamp"
422
 
423
- #: ../classes/column/media/exif-data.php:38
424
  msgid "Copyright EXIF"
425
  msgstr "Copyright EXIF"
426
 
427
- #: ../classes/column/media/exif-data.php:39
428
  msgid "Focal Length"
429
  msgstr "Brandpuntsafstand"
430
 
431
- #: ../classes/column/media/exif-data.php:40
432
  msgid "ISO"
433
  msgstr "ISO"
434
 
435
- #: ../classes/column/media/exif-data.php:41
436
  msgid "Shutter Speed"
437
- msgstr ""
438
 
439
- #: ../classes/column/media/exif-data.php:42
440
  msgid "Title"
441
  msgstr "Titel"
442
 
443
- #: ../classes/column/media/file-name.php:12
444
  msgid "File name"
445
  msgstr "Bestandsnaam"
446
 
447
- #: ../classes/column/media/file-size.php:12
448
  msgid "File size"
449
  msgstr "Bestandsgrootte"
450
 
451
- #: ../classes/column/media/full-path.php:12
452
  msgid "Full path"
453
  msgstr "Volledige pad"
454
 
455
- #: ../classes/column/media/height.php:12
456
  msgid "Height"
457
  msgstr "Hoogte"
458
 
459
- #: ../classes/column/media/mime-type.php:12
460
  msgid "Mime type"
461
  msgstr "Mimi type"
462
 
463
- #: ../classes/column/post/actions.php:57
464
  msgid "Edit this item"
465
  msgstr "Bewerk dit item"
466
 
467
- #: ../classes/column/post/actions.php:58
468
  msgid "Edit this item inline"
469
  msgstr "Bijwerken van dit item"
470
 
471
- #: ../classes/column/post/actions.php:62
472
  msgid "Restore this item from the Trash"
473
  msgstr "Herstel dit item uit de prullenbak"
474
 
475
- #: ../classes/column/post/actions.php:64
476
  msgid "Move this item to the Trash"
477
- msgstr ""
478
 
479
- #: ../classes/column/post/actions.php:64
480
- #: ../classes/column/post/comment-count.php:34
481
- #: ../classes/column/post/status.php:38
482
  msgid "Trash"
483
  msgstr "Prullenbak"
484
 
485
- #: ../classes/column/post/actions.php:66
486
  msgid "Delete this item permanently"
487
  msgstr "Verwijder permanent"
488
 
489
- #: ../classes/column/post/actions.php:71
490
  #, php-format
491
  msgid "Preview &#8220;%s&#8221;"
492
- msgstr ""
493
 
494
- #: ../classes/column/post/actions.php:71
495
  msgid "Preview"
496
  msgstr "Voorbeeld"
497
 
498
- #: ../classes/column/post/actions.php:73
499
  #, php-format
500
  msgid "View &#8220;%s&#8221;"
501
  msgstr "Bekijk &#8220;%s&#8221;"
502
 
503
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
504
  msgid "View"
505
  msgstr "Bekijk"
506
 
507
- #: ../classes/column/post/attachment-count.php:12
508
  msgid "No. of Attachments"
509
  msgstr "Aantal attachments"
510
 
511
- #: ../classes/column/post/attachment.php:12
512
  msgid "Attachment"
513
  msgstr "Bijlage"
514
 
515
- #: ../classes/column/post/author-name.php:12
516
  msgid "Display Author As"
517
  msgstr "Toon auteur als"
518
 
519
- #: ../classes/column/post/author-name.php:34
520
  msgid "Display Name"
521
  msgstr "Schermnaam"
522
 
523
- #: ../classes/column/post/author-name.php:35
524
  msgid "First Name"
525
  msgstr "Voornaam"
526
 
527
- #: ../classes/column/post/author-name.php:36
528
  msgid "Last Name"
529
  msgstr "Achternaam"
530
 
531
- #: ../classes/column/post/author-name.php:37
532
- #: ../classes/column/user/nickname.php:14
533
  msgid "Nickname"
534
  msgstr "Nickname"
535
 
536
- #: ../classes/column/post/author-name.php:38
537
  msgid "User Login"
538
  msgstr "Gebruikers login"
539
 
540
- #: ../classes/column/post/author-name.php:39
541
  msgid "User Email"
542
  msgstr "Gebruiker Email"
543
 
544
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
545
  msgid "User ID"
546
  msgstr "Gebruiker ID"
547
 
548
- #: ../classes/column/post/author-name.php:41
549
  msgid "First and Last Name"
550
  msgstr "Voor- en achternaam"
551
 
552
- #: ../classes/column/post/author-name.php:118
553
  msgid "This is the format of the author name."
554
  msgstr "Dit is het formaat van de auteursnaam"
555
 
556
- #: ../classes/column/post/before-moretag.php:14
557
  msgid "Before More Tag"
558
  msgstr "Voor de meer-tag"
559
 
560
- #: ../classes/column/post/comment-count.php:14
561
  msgid "Comment count"
562
  msgstr "Aantal reacties"
563
 
564
- #: ../classes/column/post/comment-count.php:30
565
  msgid "Total"
566
  msgstr "Totaal"
567
 
568
- #: ../classes/column/post/comment-count.php:32
569
  msgid "Pending"
570
  msgstr "Pending"
571
 
572
- #: ../classes/column/post/comment-count.php:33
573
  msgid "Spam"
574
  msgstr "Spam"
575
 
576
- #: ../classes/column/post/comment-count.php:95
577
- #: ../classes/column/post/comment-status.php:14
578
  msgid "Comment status"
579
  msgstr "Comment status"
580
 
581
- #: ../classes/column/post/comment-count.php:95
582
  msgid "Select which comment status you like to display."
583
- msgstr ""
584
 
585
- #: ../classes/column/post/featured-image.php:14
586
  msgid "Featured Image"
587
  msgstr "Uitgelichte afbeelding"
588
 
589
- #: ../classes/column/post/formats.php:14
590
  msgid "Post Format"
591
  msgstr "Post formaat"
592
 
593
- #: ../classes/column/post/modified.php:14
594
  msgid "Last modified"
595
  msgstr "Laatst gewijzigd"
596
 
597
- #: ../classes/column/post/order.php:14
598
  msgid "Page Order"
599
  msgstr "Pagina Volgorde"
600
 
601
- #: ../classes/column/post/page-template.php:12
602
  msgid "Page Template"
603
  msgstr "Pagina Template"
604
 
605
- #: ../classes/column/post/parent.php:12
606
  msgid "Parent"
607
- msgstr ""
 
 
 
 
608
 
609
- #: ../classes/column/post/permalink.php:12
610
  msgid "Permalink"
611
- msgstr ""
 
 
 
 
612
 
613
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
614
  msgid "Ping status"
615
  msgstr "Ping status"
616
 
617
- #: ../classes/column/post/roles.php:14
618
  msgid "Roles"
619
  msgstr "Rollen"
620
 
621
- #: ../classes/column/post/slug.php:12
622
  msgid "Slug"
623
  msgstr "Slug"
624
 
625
- #: ../classes/column/post/status.php:14
626
  msgid "Status"
627
  msgstr "Status"
628
 
629
- #: ../classes/column/post/status.php:32
630
  msgid "Published"
631
  msgstr "Gepubliceerd"
632
 
633
- #: ../classes/column/post/status.php:33
634
  msgid "Draft"
635
  msgstr "Concept"
636
 
637
- #: ../classes/column/post/status.php:34
638
  msgid "Scheduled"
639
  msgstr "Gepland"
640
 
641
- #: ../classes/column/post/status.php:35
642
  msgid "Private"
643
  msgstr "Priv&#233;"
644
 
645
- #: ../classes/column/post/status.php:36
646
  msgid "Pending Review"
647
  msgstr "Wachtend op review"
648
 
649
- #: ../classes/column/post/status.php:37
650
  msgid "Auto Draft"
651
- msgstr ""
652
 
653
- #: ../classes/column/post/sticky.php:14
654
  msgid "Sticky"
655
  msgstr "Sticky"
656
 
657
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
658
  msgid "Taxonomy"
659
  msgstr "Taxonomy"
660
 
661
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
662
  msgid "Comment Count"
663
- msgstr ""
664
 
665
- #: ../classes/column/user/first-name.php:14
666
  msgid "First name"
667
  msgstr "Voornaam"
668
 
669
- #: ../classes/column/user/last-name.php:14
670
  msgid "Last name"
671
  msgstr "Achternaam"
672
 
673
- #: ../classes/column/user/post-count.php:14
674
  msgid "Post Count"
675
  msgstr "Aantal posts"
676
 
677
- #: ../classes/column/user/post-count.php:99
678
  msgid "Post Type"
679
  msgstr "Post Type"
680
 
681
- #: ../classes/column/user/registered.php:14
682
  msgid "Registered"
683
  msgstr "Registratie"
684
 
685
- #: ../classes/column/user/url.php:14
686
  msgid "Url"
687
  msgstr "Url"
688
 
689
- #: ../classes/settings.php:97
690
  msgid "Add-on successfully activated."
691
- msgstr ""
692
 
693
- #: ../classes/settings.php:100
694
  msgid "Add-on successfully deactivated."
695
- msgstr ""
696
 
697
- #: ../classes/settings.php:155
698
  msgid "Admin Columns Settings"
699
  msgstr "Admin Columns Instellingen"
700
 
701
- #: ../classes/settings.php:155 ../classes/settings.php:619
702
- #: ../classes/upgrade.php:83
703
  msgid "Admin Columns"
704
  msgstr "Admin Columns"
705
 
706
- #: ../classes/settings.php:203
707
  #, php-format
708
  msgid "%s column is already present and can not be duplicated."
709
  msgstr "%s kolom is al in gebruik en kan niet worden gedupliceerd."
710
 
711
- #: ../classes/settings.php:256
712
  msgid "Default settings succesfully restored."
713
  msgstr "Standaard instellingen succesvol hersteld."
714
 
715
- #: ../classes/settings.php:273
716
  msgid "Overview"
717
  msgstr "Overzicht"
718
 
719
- #: ../classes/settings.php:276
720
- msgid ""
721
- "This plugin is for adding and removing additional columns to the "
722
- "administration screens for post(types), pages, media library, comments, "
723
- "links and users. Change the column's label and reorder them."
724
- msgstr ""
725
 
726
- #: ../classes/settings.php:279
727
  msgid "Basics"
728
  msgstr "Basisinfo"
729
 
730
- #: ../classes/settings.php:281
731
  msgid "Change order"
732
  msgstr "Verander volgorde"
733
 
734
- #: ../classes/settings.php:282
735
- msgid ""
736
- "By dragging the columns you can change the order which they will appear in."
737
  msgstr "Door de kolommen te verslepen kan je de volgorde aanpassen."
738
 
739
- #: ../classes/settings.php:283
740
  msgid "Change label"
741
  msgstr "Wijzig label"
742
 
743
- #: ../classes/settings.php:284
744
- msgid ""
745
- "By clicking on the triangle you will see the column options. Here you can "
746
- "change each label of the columns heading."
747
- msgstr ""
748
- "Klik op het kleine driehoekje om de kolom opties te tonen. Hier kan je de "
749
- "kolom label aanpassen."
750
 
751
- #: ../classes/settings.php:285
752
  msgid "Change column width"
753
  msgstr "Verander kolom breedte"
754
 
755
- #: ../classes/settings.php:286
756
- msgid ""
757
- "By clicking on the triangle you will see the column options. By using the "
758
- "draggable slider you can set the width of the columns in percentages."
759
- msgstr ""
760
 
761
- #: ../classes/settings.php:292
762
  msgid "'Custom Field' column"
763
  msgstr "'Custom veld' kolom"
764
 
765
- #: ../classes/settings.php:293
766
- msgid ""
767
- "The custom field colum uses the custom fields from posts and users. There "
768
- "are 10 types which you can set."
769
- msgstr ""
770
- "De 'custom veld' kolom gebruikt custom velden voor berichten en gebruikers. "
771
- "Er zijn 10 typen welke je kan gebruiken."
772
 
773
- #: ../classes/settings.php:295
774
- msgid ""
775
- "Value: Can be either a string or array. Arrays will be flattened and values "
776
- "are seperated by a ',' comma."
777
- msgstr ""
778
- "Waarde: Kan een string of array zijn. Arrays worden plat gemaakt en de "
779
- "waarden gescheiden door een ',' komma."
780
 
781
- #: ../classes/settings.php:296
782
- msgid ""
783
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
784
- "comma )."
785
- msgstr ""
786
- "Waarde: moet een afbeeldings URL of Media ID zijn ( gescheiden door een ',' "
787
- "komma )."
788
 
789
- #: ../classes/settings.php:297
790
  msgid "Value: This will show the first 20 words of the Post content."
791
  msgstr "Waarde: Deze toont de eerste 20 woorden van een bericht."
792
 
793
- #: ../classes/settings.php:298
794
- msgid ""
795
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
796
- msgstr ""
797
 
798
- #: ../classes/settings.php:299
799
- msgid ""
800
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
801
- "for sorting, so you can sort your posts on numeric (custom field) values."
802
- msgstr ""
803
 
804
- #: ../classes/settings.php:300
805
  #, php-format
806
- msgid ""
807
- "Value: Can be unix time stamp or a date format as described in the <a "
808
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
809
- "href='%s'>general settings</a> page."
810
- msgstr ""
811
 
812
- #: ../classes/settings.php:301
813
  msgid "Post Titles"
814
  msgstr "Post titels"
815
 
816
- #: ../classes/settings.php:301
817
  msgid "Value: can be one or more Post ID's (seperated by ',')."
818
  msgstr "Waarde: één of meer Post ID's ( gescheiden door een komma )"
819
 
820
- #: ../classes/settings.php:302
821
  msgid "Usernames"
822
  msgstr "Gebruikersnamen"
823
 
824
- #: ../classes/settings.php:302
825
  msgid "Value: can be one or more User ID's (seperated by ',')."
826
  msgstr "Waarde: één of meer User ID's ( gescheiden door een komma )"
827
 
828
- #: ../classes/settings.php:303
829
  msgid "Checkmark"
830
  msgstr "Checkmark"
831
 
832
- #: ../classes/settings.php:303
833
  msgid "Value: should be a 1 (one) or 0 (zero)."
834
  msgstr "Waarde: moet 1 of 0 zijn."
835
 
836
- #: ../classes/settings.php:304
837
  msgid "Value: hex value color, such as #808080."
838
  msgstr "Waarde: hex waarde kleur, vb: #808080"
839
 
840
- #: ../classes/settings.php:305
841
- msgid ""
842
- "Value: Can be either a string or array. This will display a count of the "
843
- "number of times the meta key is used by the item."
844
- msgstr ""
845
 
846
- #: ../classes/settings.php:399
847
  msgid "Welcome to Admin Columns"
848
  msgstr "Welkom bij Admin Columns"
849
 
850
- #: ../classes/settings.php:402
851
  msgid "Thank you for updating to the latest version!"
852
  msgstr "Bedankt voor het updaten naar de laatste versie!"
853
 
854
- #: ../classes/settings.php:403
855
- msgid ""
856
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
857
- "like it."
858
  msgstr "Admin Columns ziet er nog beter uit dan ooit. Veel plezier ermee."
859
 
860
- #: ../classes/settings.php:408
861
  msgid "What’s New"
862
  msgstr "What is nieuw"
863
 
864
- #: ../classes/settings.php:409
865
  msgid "Changelog"
866
  msgstr "Changelog"
867
 
868
- #: ../classes/settings.php:414
869
- msgid "Addons"
870
- msgstr "Addons"
871
-
872
- #: ../classes/settings.php:416
873
- msgid ""
874
- "Addons are now activated by downloading and installing individual plugins. "
875
- "Although these plugins will not be hosted on the wordpress.org repository, "
876
- "each Add-on will continue to receive updates in the usual way."
877
- msgstr ""
878
- "Addons worden vanaf nu geactiveer door ze te downloaden en te installeren "
879
- "als individuele plugins. Deze plugins zullen niet worden gehost op wordpress."
880
- "org, maar ze blijven wel automatische updates ontvangen zoals gewoonlijk."
881
-
882
- #: ../classes/settings.php:419
883
- msgid ""
884
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
885
- msgstr ""
886
-
887
- #: ../classes/settings.php:422
888
- msgid "Addons are seperate plugins which need to be downloaded."
889
- msgstr "Add-ons zijn aparte plugins die moeten worden gedownload."
890
-
891
- #: ../classes/settings.php:422
892
- msgid "Download your Addons"
893
- msgstr "Download je Addons"
894
-
895
- #: ../classes/settings.php:428
896
- msgid "This website does not use add-ons"
897
- msgstr "Deze website gebruikt geen add-ons"
898
-
899
- #: ../classes/settings.php:428
900
- msgid "See our website for Admin Columns Pro."
901
- msgstr "Bekijk onze website Admin Column Pro"
902
-
903
- #: ../classes/settings.php:435
904
  msgid "Important"
905
  msgstr "Belangrijk"
906
 
907
- #: ../classes/settings.php:437
908
  msgid "Database Changes"
909
  msgstr "Database Aanpassingen"
910
 
911
- #: ../classes/settings.php:438
912
- msgid ""
913
- "The database has been changed between versions 1 and 2. But we made sure you "
914
- "can still roll back to version 1x without any issues."
915
- msgstr ""
916
 
917
- #: ../classes/settings.php:441
918
  msgid "Make sure you backup your database and then click"
919
  msgstr "Backup je database and klik dan"
920
 
921
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
922
  msgid "Upgrade Database"
923
  msgstr "Werk Database bij"
924
 
925
- #: ../classes/settings.php:444
926
  msgid "Potential Issues"
927
  msgstr "Potentiele problemen"
928
 
929
- #: ../classes/settings.php:445
930
- msgid ""
931
- "Do to the sizable refactoring the code, surounding Addons and action/"
932
- "filters, your website may not operate correctly. It is important that you "
933
- "read the full"
934
- msgstr ""
935
 
936
- #: ../classes/settings.php:445
937
  msgid "Migrating from v1 to v2"
938
  msgstr "Migratie van v1 naar v2"
939
 
940
- #: ../classes/settings.php:445
941
  msgid "guide to view the full list of changes."
942
  msgstr "overzicht van alle aanpassingen."
943
 
944
- #: ../classes/settings.php:445
945
  #, php-format
946
- msgid ""
947
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
948
- "can fix it in the next release."
949
- msgstr ""
950
- "Mocht je een bug vinden, <a href=\"%s\">rapporteer deze aan ons</a> zodat we "
951
- "die kunnen herstellen in een volgende versie."
952
 
953
- #: ../classes/settings.php:448
954
  msgid "Important!"
955
  msgstr "Belangrijk!"
956
 
957
- #: ../classes/settings.php:448
958
- msgid ""
959
- "If you updated the Admin Columns plugin without prior knowledge of such "
960
- "changes, Please roll back to the latest"
961
- msgstr ""
962
 
963
- #: ../classes/settings.php:448
964
  msgid "version 1"
965
  msgstr "versie 1"
966
 
967
- #: ../classes/settings.php:448
968
  msgid "of this plugin."
969
  msgstr "van deze plugin."
970
 
971
- #: ../classes/settings.php:454
972
  msgid "Changelog for"
973
  msgstr "Changelog voor"
974
 
975
- #: ../classes/settings.php:469
976
  msgid "Learn more"
977
  msgstr "Leer meer"
978
 
979
- #: ../classes/settings.php:479
980
  msgid "Start using Admin Columns"
981
  msgstr "Start met Admin Columns"
982
 
983
- #: ../classes/settings.php:522
984
  msgid "General Settings"
985
  msgstr "Algemene Instellingen"
986
 
987
- #: ../classes/settings.php:523
988
  msgid "Customize your Admin Columns settings."
989
  msgstr "Pas uw Admin Column instellingen aan."
990
 
991
- #: ../classes/settings.php:546
992
- msgid ""
993
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
994
- msgstr ""
995
- "Toon \"Bewerk Kolommen\" knop op de admin schermen. Standaard waarde is "
996
- "<code>uit</code>."
997
 
998
- #: ../classes/settings.php:553 ../classes/settings.php:682
999
  msgid "Save"
1000
  msgstr "Opslaan"
1001
 
1002
- #: ../classes/settings.php:593
1003
  msgid "Restore Settings"
1004
  msgstr "Herstel Instellingen"
1005
 
1006
- #: ../classes/settings.php:594
1007
  msgid "This will delete all column settings and restore the default settings."
1008
- msgstr ""
1009
- "Hiermee worden alle kolommen instellingen verwijderd en de "
1010
- "standaardinstellingen hersteld."
1011
 
1012
- #: ../classes/settings.php:600
1013
  msgid "Restore default settings"
1014
  msgstr "Herstel standaard instellingen"
1015
 
1016
- #: ../classes/settings.php:600
1017
- msgid ""
1018
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1019
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1020
- msgstr ""
1021
- "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet "
1022
- "worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
1023
 
1024
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1025
  msgid "Settings"
1026
  msgstr "Instellingen"
1027
 
1028
- #: ../classes/settings.php:621
1029
  msgid "Add-ons"
1030
  msgstr "Add-ons"
1031
 
1032
- #: ../classes/settings.php:647
1033
  msgid "Posttypes"
1034
- msgstr ""
1035
 
1036
- #: ../classes/settings.php:648
1037
  msgid "Others"
1038
  msgstr "Overige"
1039
 
1040
- #: ../classes/settings.php:649
1041
  msgid "Taxonomies"
1042
- msgstr ""
1043
 
1044
- #: ../classes/settings.php:668
1045
  #, php-format
1046
- msgid ""
1047
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1048
- "be edited in the admin panel."
1049
- msgstr ""
1050
 
1051
- #: ../classes/settings.php:678
1052
  msgid "Store settings"
1053
  msgstr "Opslaan"
1054
 
1055
- #: ../classes/settings.php:682
1056
  msgid "Update"
1057
  msgstr "Bijwerken"
1058
 
1059
- #: ../classes/settings.php:686
1060
  #, php-format
1061
- msgid ""
1062
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1063
- "\\' to delete, \\'Cancel\\' to stop"
1064
- msgstr ""
1065
 
1066
- #: ../classes/settings.php:687
1067
  msgid "columns"
1068
  msgstr "kolommen"
1069
 
1070
- #: ../classes/settings.php:701
1071
  msgid "Get Admin Columns Pro"
1072
- msgstr ""
1073
 
1074
- #: ../classes/settings.php:705
1075
  msgid "Add Sorting"
1076
  msgstr "Voeg sorting toe"
1077
 
1078
- #: ../classes/settings.php:706
1079
  msgid "Add Filtering"
1080
  msgstr "Voeg filtering toe"
1081
 
1082
- #: ../classes/settings.php:707
1083
  msgid "Add Import/Export"
1084
  msgstr "Voeg import/export toe"
1085
 
1086
- #: ../classes/settings.php:708
1087
  msgid "Add Direct Editing"
1088
  msgstr "Toevoegen Direct Bewerken"
1089
 
1090
- #: ../classes/settings.php:711
1091
  #, php-format
1092
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1093
  msgstr "Bekijk <a href=\"%s\">Admin Columns Pro</a> voor meer details!"
1094
 
 
 
 
 
 
 
 
 
 
 
 
 
1095
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1096
  msgid "Support"
1097
  msgstr "Hulp nodig?"
1098
 
1099
- #: ../classes/settings.php:745
1100
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1101
- msgstr ""
1102
 
1103
- #: ../classes/settings.php:748
1104
  #, php-format
1105
- msgid ""
1106
- "For full documentation, bug reports, feature suggestions and other tips <a "
1107
- "href='%s'>visit the Admin Columns website</a>"
1108
- msgstr ""
1109
 
1110
- #: ../classes/settings.php:777
1111
  msgid "Drag and drop to reorder"
1112
  msgstr "Sleep om te herordenen"
1113
 
1114
- #: ../classes/settings.php:780
1115
  msgid "Add Column"
1116
  msgstr "Voeg Kolom toe"
1117
 
1118
- #: ../classes/settings.php:853
1119
  msgid "Active"
1120
  msgstr "Activeer"
1121
 
1122
- #: ../classes/settings.php:854
1123
  msgid "Deactivate"
1124
  msgstr "Deactiveer"
1125
 
1126
- #: ../classes/settings.php:861
1127
  msgid "Installed"
1128
  msgstr "Geinstalleerd"
1129
 
1130
- #: ../classes/settings.php:862
1131
  msgid "Activate"
1132
  msgstr "Activeer"
1133
 
1134
- #: ../classes/settings.php:876
1135
  msgid "Download & Install"
1136
  msgstr "Download & Installeer"
1137
 
1138
- #: ../classes/settings.php:881
1139
  msgid "Get this add-on"
1140
  msgstr "Ga naar deze add-on"
1141
 
1142
- #: ../classes/storage_model.php:207
1143
  msgid "settings succesfully restored."
1144
  msgstr "instellingen succesvol hersteld."
1145
 
1146
- #: ../classes/storage_model.php:222
1147
  msgid "No columns settings available."
1148
  msgstr "Geen kolom instellingen beschikbaar."
1149
 
1150
- #: ../classes/storage_model.php:243
1151
  #, php-format
1152
  msgid "You are trying to store the same settings for %s."
1153
  msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
1154
 
1155
- #: ../classes/storage_model.php:247
1156
  #, php-format
1157
  msgid "Settings for %s updated succesfully."
1158
  msgstr "Instellingen voor %s succesvol bijgewerkt."
@@ -1169,60 +1129,64 @@ msgstr "Links"
1169
  msgid "Users"
1170
  msgstr "Gebruikers"
1171
 
1172
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
1173
  msgid "Upgrade"
1174
  msgstr "Upgrade"
1175
 
1176
- #: ../classes/upgrade.php:84
1177
  msgid "requires a database upgrade"
1178
  msgstr "verreist een database upgrade"
1179
 
1180
- #: ../classes/upgrade.php:87
1181
  msgid "why?"
1182
  msgstr "waarom?"
1183
 
1184
- #: ../classes/upgrade.php:88
1185
  msgid "Please"
1186
  msgstr "Alstublieft"
1187
 
1188
- #: ../classes/upgrade.php:89
1189
  msgid "backup your database"
1190
  msgstr "backup van uw database"
1191
 
1192
- #: ../classes/upgrade.php:90
1193
  msgid "then click"
1194
  msgstr "daarna klik"
1195
 
1196
- #: ../classes/upgrade.php:298
1197
  msgid "Migrating Column Settings"
1198
  msgstr "Migreer Kolom Instellingen"
1199
 
1200
- #: ../classes/upgrade.php:334
1201
  msgid "No Upgrade Required"
1202
  msgstr "Geen upgrade verreist"
1203
 
1204
- #: ../classes/upgrade.php:335
1205
  msgid "Return to welcome screen."
1206
  msgstr "Ga terug naar het welkomst scherm."
1207
 
1208
- #: ../classes/upgrade.php:353
1209
  msgid "Upgrade Complete!"
1210
  msgstr "Upgrade voltooid!"
1211
 
1212
- #: ../classes/upgrade.php:353
1213
  msgid "Return to settings."
1214
  msgstr "Herstel standaard instellingen"
1215
 
1216
- #: ../classes/upgrade.php:354
1217
  msgid "Error"
1218
  msgstr "Fout"
1219
 
1220
- #: ../classes/upgrade.php:355
1221
- msgid ""
1222
- "Sorry. Something went wrong during the upgrade process. Please report this "
1223
- "on the support forum."
1224
- msgstr ""
1225
 
1226
- #: ../codepress-admin-columns.php:439
1227
  msgid "Edit columns"
1228
  msgstr "Wijzig kolommen"
1
  #
2
  # Translators:
3
+ # Axel Vanderhaeghen <axel@eco13.eu>, 2014
4
  # Tobias Schutter <info@codepress.nl>, 2013-2014
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
10
+ "PO-Revision-Date: 2014-12-10 17:24+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
+ "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/admin-columns/language/nl_NL/)\n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: nl_NL\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: Poedit 1.7.1\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
+ #: ../classes/addons.php:110
26
  msgid "Third party plugin integration"
27
  msgstr "Plugin integratie"
28
 
29
+ #: ../classes/addons.php:135
30
  msgid "Advanced Custom Fields"
31
  msgstr "Advanced Custom Fields"
32
 
33
+ #: ../classes/addons.php:136
34
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
 
 
35
  msgstr "Toon en bewerk Advanced Custom Fields velden in het post overzicht!"
36
 
37
+ #: ../classes/addons.php:141
38
+ msgid "WooCommerce"
39
+ msgstr "WooCommerce"
40
+
41
+ #: ../classes/addons.php:142
42
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
43
+ msgstr "Verbeter de producten, orders en coupons overzichten met de nieuwe kolommen en inline editing."
44
+
45
+ #: ../classes/column.php:500
46
  msgid "Thumbnail"
47
  msgstr "Thumbnail"
48
 
49
+ #: ../classes/column.php:501
50
  msgid "Medium"
51
  msgstr "Gemiddeld"
52
 
53
+ #: ../classes/column.php:502
54
  msgid "Large"
55
  msgstr "Groot"
56
 
57
+ #: ../classes/column.php:503
58
  msgid "Full"
59
  msgstr "Volledig"
60
 
61
+ #: ../classes/column.php:863
62
  msgid "Date Format"
63
  msgstr "Datumnotatie"
64
 
65
+ #: ../classes/column.php:864
66
  msgid "This will determine how the date will be displayed."
67
  msgstr "Dit bepaald hoe de datum wordt weergegeven."
68
 
69
+ #: ../classes/column.php:870
70
  msgid "Example:"
71
  msgstr "Voorbeeld:"
72
 
73
+ #: ../classes/column.php:872
74
  #, php-format
75
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
76
+ msgstr "Laat leeg voor WordPress datumformaat, verander je <a href=\"%s\">standaard datumformaat </a>."
 
 
 
 
77
 
78
+ #: ../classes/column.php:873
79
  msgid "Documentation on date and time formatting."
80
  msgstr "Documentatie over datum en tijd opmaak."
81
 
82
+ #: ../classes/column.php:887
83
  msgid "Excerpt length"
84
  msgstr "Samenvatting lengte"
85
 
86
+ #: ../classes/column.php:888
87
  msgid "Number of words"
88
  msgstr "Aantal woorden"
89
 
90
+ #: ../classes/column.php:906
91
  msgid "Preview size"
92
  msgstr "Voorbeeldformaat"
93
 
94
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
95
  msgid "Custom"
96
  msgstr "Aangepast"
97
 
98
+ #: ../classes/column.php:926
99
  msgid "width"
100
  msgstr "breedte"
101
 
102
+ #: ../classes/column.php:929
103
  msgid "height"
104
  msgstr "hoogte"
105
 
106
+ #: ../classes/column.php:943
107
  msgid "Before"
108
  msgstr "Voor"
109
 
110
+ #: ../classes/column.php:943
111
  msgid "This text will appear before the custom field value."
112
  msgstr "Deze tekst wordt getoond voor de custom field waarde."
113
 
114
+ #: ../classes/column.php:949
115
  msgid "After"
116
  msgstr "Na"
117
 
118
+ #: ../classes/column.php:949
119
  msgid "This text will appear after the custom field value."
120
  msgstr "Deze tekst wordt getoond na de custom field waarde."
121
 
122
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
 
 
123
  msgid "Edit"
124
  msgstr "Bewerken"
125
 
126
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
127
  msgid "Remove"
128
  msgstr "Verwijderen"
129
 
130
+ #: ../classes/column.php:1062
131
  msgid "Type"
132
  msgstr "Type"
133
 
134
+ #: ../classes/column.php:1062
135
  msgid "Choose a column type."
136
  msgstr "Kies een kolom type."
137
 
138
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
139
  msgid "ID"
140
  msgstr "ID"
141
 
142
+ #: ../classes/column.php:1072
143
  msgid "Label"
144
  msgstr "Label"
145
 
146
+ #: ../classes/column.php:1072
147
  msgid "This is the name which will appear as the column header."
148
  msgstr "Deze naam zal verschijnen als kolom kop."
149
 
150
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
151
  msgid "Width"
152
  msgstr "Breedte"
153
 
154
+ #: ../classes/column.php:1081 ../classes/column.php:1082
155
  msgid "default"
156
  msgstr "standaard"
157
 
158
+ #: ../classes/column/acf-placeholder.php:19
159
  msgid "ACF Field"
160
  msgstr "ACF Veld"
161
 
162
  #: ../classes/column/acf-placeholder.php:32
163
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
164
+ msgstr "Deze feature is alleen beschikbaar in Admin Columns Pro - Business of Developer."
165
 
166
  #: ../classes/column/acf-placeholder.php:35
167
  #, php-format
168
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
169
+ msgstr "Heb je een developer licence, download & installeer dan je ACF add-on via de <a href='%s'>add-ons tab</a>."
 
 
170
 
171
  #: ../classes/column/acf-placeholder.php:38
172
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
173
+ msgstr "Admin Columns Pro - Developer biedt volledige integratie van Geavanceerde Aangepaste Velden. Je kunt ze vlot weergeven en aanpassen in je berichtenoverzicht."
 
 
 
174
 
175
+ #: ../classes/column/acf-placeholder.php:44
176
  msgid "Find out more"
177
  msgstr "Meer weten"
178
 
179
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20 ../classes/column/user/actions.php:19
 
 
 
180
  msgid "Actions"
181
  msgstr "Acties"
182
 
183
+ #: ../classes/column/actions.php:87
184
+ msgid "Use icons?"
185
+ msgstr "Gebruik iconen?"
186
+
187
+ #: ../classes/column/actions.php:87
188
+ msgid "Use icons instead of text for displaying the actions."
189
+ msgstr "Gebruik iconen in plaats van tekst om actions te tonen."
190
+
191
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
192
+ msgid "Yes"
193
+ msgstr "Ja"
194
+
195
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
196
+ msgid "No"
197
+ msgstr "Nee"
198
+
199
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
200
  msgid "Unapprove"
201
  msgstr "Afgekeurd"
202
 
203
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
204
  msgid "Approve"
205
  msgstr "Goedgekeurd"
206
 
207
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
208
  msgid "Restore"
209
  msgstr "Herstellen"
210
 
211
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
212
  msgid "Delete Permanently"
213
  msgstr "Permanent verwijderen"
214
 
215
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
216
  msgid "Quick&nbsp;Edit"
217
  msgstr "Snel&nbsp;Bewerken"
218
 
219
+ #: ../classes/column/comment/actions.php:101
220
  msgid "Reply"
221
  msgstr "Beantwoorden"
222
 
223
+ #: ../classes/column/comment/agent.php:19
224
  msgid "Agent"
225
  msgstr "Agent"
226
 
227
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
228
  msgid "Approved"
229
  msgstr "Goedgekeurd"
230
 
231
+ #: ../classes/column/comment/author-avatar.php:19
232
  msgid "Avatar"
233
  msgstr "Avatar"
234
 
235
+ #: ../classes/column/comment/author-email.php:19
236
  msgid "Author email"
237
  msgstr "Auteurs email"
238
 
239
+ #: ../classes/column/comment/author-ip.php:19
240
  msgid "Author IP"
241
  msgstr "Auteur IP"
242
 
243
+ #: ../classes/column/comment/author-url.php:19
244
  msgid "Author url"
245
  msgstr "Auteurs url"
246
 
247
+ #: ../classes/column/comment/author.php:19
248
  msgid "Author"
249
  msgstr "Auteur"
250
 
251
+ #: ../classes/column/comment/date-gmt.php:19
252
  msgid "Date GMT"
253
  msgstr "Datum GMT"
254
 
255
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
256
  #, php-format
257
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
258
  msgstr "Verstuurd op <a href=\"%1$s\">%2$s op %3$s</a>"
259
 
260
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
261
  msgid "Date"
262
  msgstr "Datum"
263
 
264
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
265
  msgid "Excerpt"
266
  msgstr "Samenvatting"
267
 
268
+ #: ../classes/column/comment/reply-to.php:19
269
  msgid "In Reply To"
270
  msgstr "Antwoord op"
271
 
272
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
273
  msgid "Word count"
274
  msgstr "Aantal woorden"
275
 
276
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
277
  msgid "Custom Field"
278
  msgstr "Custom veld"
279
 
280
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
281
  msgid "Default"
282
  msgstr "Standaard"
283
 
284
+ #: ../classes/column/custom-field.php:95
285
  msgid "Checkmark (true/false)"
286
  msgstr "Vinkje (true/false)"
287
 
288
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
289
  msgid "Color"
290
  msgstr "Kleur"
291
 
292
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
293
  msgid "Counter"
294
  msgstr "Teller"
295
 
296
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
297
  msgid "Image"
298
  msgstr "Afbeelding"
299
 
300
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
301
  msgid "Media Library"
302
  msgstr "Mediabibliotheek"
303
 
304
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
305
  msgid "Multiple Values"
306
  msgstr "Meerdere waarden"
307
 
308
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
309
  msgid "Numeric"
310
  msgstr "Numerieke"
311
 
312
+ #: ../classes/column/custom-field.php:104
313
  msgid "Post Title (Post ID's)"
314
  msgstr "Post Titel (Post ID's)"
315
 
316
+ #: ../classes/column/custom-field.php:105
317
  msgid "Username (User ID's)"
318
  msgstr "Gebruikersnaam ( Gebruiker ID's )"
319
 
320
+ #: ../classes/column/custom-field.php:356
321
  msgid "Select your custom field."
322
  msgstr "Selecteer uw custom field."
323
 
324
+ #: ../classes/column/custom-field.php:366
325
  msgid "No custom fields available."
326
  msgstr "Geen custom fields beschikbaar."
327
 
328
+ #: ../classes/column/custom-field.php:373
329
  msgid "Field Type"
330
  msgstr "Veld type"
331
 
332
+ #: ../classes/column/custom-field.php:373
333
  msgid "This will determine how the value will be displayed."
334
  msgstr "Dit bepaald hoe de waarde wordt weer gegeven,"
335
 
336
+ #: ../classes/column/link/actions.php:49
337
  #, php-format
338
  msgid ""
339
  "You are about to delete this link '%s'\n"
340
  " 'Cancel' to stop, 'OK' to delete."
341
  msgstr ""
342
+ "Je staat op het punt om deze link te wissen: '%s'\n"
343
+ "Klik 'Cancel' om te annuleren, of 'OK' om te bevestigen."
344
 
345
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
346
  msgid "Delete"
347
  msgstr "Verwijder"
348
 
349
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
350
  msgid "Description"
351
  msgstr "Beschrijving"
352
 
353
+ #: ../classes/column/link/length.php:19
354
  msgid "Length"
355
  msgstr "Lengte"
356
 
357
+ #: ../classes/column/link/notes.php:19
358
  msgid "Notes"
359
  msgstr "Beschrijving"
360
 
361
+ #: ../classes/column/link/owner.php:19
362
  msgid "Owner"
363
  msgstr "Eigenaar"
364
 
365
+ #: ../classes/column/link/rss.php:19
366
  msgid "Rss"
367
  msgstr "Rss"
368
 
369
+ #: ../classes/column/link/target.php:19
370
  msgid "Target"
371
  msgstr "Doel"
372
 
373
+ #: ../classes/column/media/alternate-text.php:19
374
  msgid "Alt"
375
  msgstr "Alt"
376
 
377
+ #: ../classes/column/media/available-sizes.php:20
378
  msgid "Available Sizes"
379
  msgstr "Beschikbare Afmetingen"
380
 
381
+ #: ../classes/column/media/available-sizes.php:40
382
  msgid "full size"
383
  msgstr "Volledige grootte"
384
 
385
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
386
  msgid "Caption"
387
  msgstr "Onderschrift"
388
 
389
+ #: ../classes/column/media/dimensions.php:19
390
  msgid "Dimensions"
391
  msgstr "Afmetingen"
392
 
393
+ #: ../classes/column/media/exif-data.php:19
394
  msgid "EXIF data"
395
  msgstr "EXIF data"
396
 
397
+ #: ../classes/column/media/exif-data.php:38
398
  msgid "Aperture"
399
  msgstr "Aperture"
400
 
401
+ #: ../classes/column/media/exif-data.php:39
402
  msgid "Credit"
403
  msgstr "Credit"
404
 
405
+ #: ../classes/column/media/exif-data.php:40
406
  msgid "Camera"
407
  msgstr "Camera"
408
 
409
+ #: ../classes/column/media/exif-data.php:42
410
  msgid "Timestamp"
411
  msgstr "Timestamp"
412
 
413
+ #: ../classes/column/media/exif-data.php:43
414
  msgid "Copyright EXIF"
415
  msgstr "Copyright EXIF"
416
 
417
+ #: ../classes/column/media/exif-data.php:44
418
  msgid "Focal Length"
419
  msgstr "Brandpuntsafstand"
420
 
421
+ #: ../classes/column/media/exif-data.php:45
422
  msgid "ISO"
423
  msgstr "ISO"
424
 
425
+ #: ../classes/column/media/exif-data.php:46
426
  msgid "Shutter Speed"
427
+ msgstr "Sluitertijd"
428
 
429
+ #: ../classes/column/media/exif-data.php:47
430
  msgid "Title"
431
  msgstr "Titel"
432
 
433
+ #: ../classes/column/media/file-name.php:19
434
  msgid "File name"
435
  msgstr "Bestandsnaam"
436
 
437
+ #: ../classes/column/media/file-size.php:19
438
  msgid "File size"
439
  msgstr "Bestandsgrootte"
440
 
441
+ #: ../classes/column/media/full-path.php:19
442
  msgid "Full path"
443
  msgstr "Volledige pad"
444
 
445
+ #: ../classes/column/media/height.php:19
446
  msgid "Height"
447
  msgstr "Hoogte"
448
 
449
+ #: ../classes/column/media/mime-type.php:19
450
  msgid "Mime type"
451
  msgstr "Mimi type"
452
 
453
+ #: ../classes/column/post/actions.php:31
454
  msgid "Edit this item"
455
  msgstr "Bewerk dit item"
456
 
457
+ #: ../classes/column/post/actions.php:34
458
  msgid "Edit this item inline"
459
  msgstr "Bijwerken van dit item"
460
 
461
+ #: ../classes/column/post/actions.php:39
462
  msgid "Restore this item from the Trash"
463
  msgstr "Herstel dit item uit de prullenbak"
464
 
465
+ #: ../classes/column/post/actions.php:41
466
  msgid "Move this item to the Trash"
467
+ msgstr "Verplaats dit item naar de prullenbak"
468
 
469
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
470
  msgid "Trash"
471
  msgstr "Prullenbak"
472
 
473
+ #: ../classes/column/post/actions.php:43
474
  msgid "Delete this item permanently"
475
  msgstr "Verwijder permanent"
476
 
477
+ #: ../classes/column/post/actions.php:48
478
  #, php-format
479
  msgid "Preview &#8220;%s&#8221;"
480
+ msgstr "Voorvertoning &#8220;%s&#8221;"
481
 
482
+ #: ../classes/column/post/actions.php:48
483
  msgid "Preview"
484
  msgstr "Voorbeeld"
485
 
486
+ #: ../classes/column/post/actions.php:50
487
  #, php-format
488
  msgid "View &#8220;%s&#8221;"
489
  msgstr "Bekijk &#8220;%s&#8221;"
490
 
491
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
492
  msgid "View"
493
  msgstr "Bekijk"
494
 
495
+ #: ../classes/column/post/attachment-count.php:19
496
  msgid "No. of Attachments"
497
  msgstr "Aantal attachments"
498
 
499
+ #: ../classes/column/post/attachment.php:19
500
  msgid "Attachment"
501
  msgstr "Bijlage"
502
 
503
+ #: ../classes/column/post/author-name.php:20
504
  msgid "Display Author As"
505
  msgstr "Toon auteur als"
506
 
507
+ #: ../classes/column/post/author-name.php:40
508
  msgid "Display Name"
509
  msgstr "Schermnaam"
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
  msgid "First Name"
513
  msgstr "Voornaam"
514
 
515
+ #: ../classes/column/post/author-name.php:42
516
  msgid "Last Name"
517
  msgstr "Achternaam"
518
 
519
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
520
  msgid "Nickname"
521
  msgstr "Nickname"
522
 
523
+ #: ../classes/column/post/author-name.php:44
524
  msgid "User Login"
525
  msgstr "Gebruikers login"
526
 
527
+ #: ../classes/column/post/author-name.php:45
528
  msgid "User Email"
529
  msgstr "Gebruiker Email"
530
 
531
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
532
  msgid "User ID"
533
  msgstr "Gebruiker ID"
534
 
535
+ #: ../classes/column/post/author-name.php:47
536
  msgid "First and Last Name"
537
  msgstr "Voor- en achternaam"
538
 
539
+ #: ../classes/column/post/author-name.php:124
540
  msgid "This is the format of the author name."
541
  msgstr "Dit is het formaat van de auteursnaam"
542
 
543
+ #: ../classes/column/post/before-moretag.php:19
544
  msgid "Before More Tag"
545
  msgstr "Voor de meer-tag"
546
 
547
+ #: ../classes/column/post/comment-count.php:20
548
  msgid "Comment count"
549
  msgstr "Aantal reacties"
550
 
551
+ #: ../classes/column/post/comment-count.php:34
552
  msgid "Total"
553
  msgstr "Totaal"
554
 
555
+ #: ../classes/column/post/comment-count.php:36
556
  msgid "Pending"
557
  msgstr "Pending"
558
 
559
+ #: ../classes/column/post/comment-count.php:37
560
  msgid "Spam"
561
  msgstr "Spam"
562
 
563
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
564
  msgid "Comment status"
565
  msgstr "Comment status"
566
 
567
+ #: ../classes/column/post/comment-count.php:99
568
  msgid "Select which comment status you like to display."
569
+ msgstr "Selecteer welke reactie status die je wil weergeven."
570
 
571
+ #: ../classes/column/post/featured-image.php:19
572
  msgid "Featured Image"
573
  msgstr "Uitgelichte afbeelding"
574
 
575
+ #: ../classes/column/post/formats.php:19
576
  msgid "Post Format"
577
  msgstr "Post formaat"
578
 
579
+ #: ../classes/column/post/modified.php:19
580
  msgid "Last modified"
581
  msgstr "Laatst gewijzigd"
582
 
583
+ #: ../classes/column/post/order.php:19
584
  msgid "Page Order"
585
  msgstr "Pagina Volgorde"
586
 
587
+ #: ../classes/column/post/page-template.php:19
588
  msgid "Page Template"
589
  msgstr "Pagina Template"
590
 
591
+ #: ../classes/column/post/parent.php:19
592
  msgid "Parent"
593
+ msgstr "Bovenliggende "
594
+
595
+ #: ../classes/column/post/path.php:19
596
+ msgid "Path"
597
+ msgstr "Pad"
598
 
599
+ #: ../classes/column/post/permalink.php:19
600
  msgid "Permalink"
601
+ msgstr "Permalink"
602
+
603
+ #: ../classes/column/post/permalink.php:68
604
+ msgid "Link to post"
605
+ msgstr "Link naar bericht"
606
 
607
+ #: ../classes/column/post/permalink.php:68
608
+ msgid "This will make the permalink clickable."
609
+ msgstr "Dit maakt de permalink klikbaar."
610
+
611
+ #: ../classes/column/post/ping-status.php:19
612
  msgid "Ping status"
613
  msgstr "Ping status"
614
 
615
+ #: ../classes/column/post/roles.php:19
616
  msgid "Roles"
617
  msgstr "Rollen"
618
 
619
+ #: ../classes/column/post/slug.php:19
620
  msgid "Slug"
621
  msgstr "Slug"
622
 
623
+ #: ../classes/column/post/status.php:19
624
  msgid "Status"
625
  msgstr "Status"
626
 
627
+ #: ../classes/column/post/status.php:29
628
  msgid "Published"
629
  msgstr "Gepubliceerd"
630
 
631
+ #: ../classes/column/post/status.php:30
632
  msgid "Draft"
633
  msgstr "Concept"
634
 
635
+ #: ../classes/column/post/status.php:31
636
  msgid "Scheduled"
637
  msgstr "Gepland"
638
 
639
+ #: ../classes/column/post/status.php:32
640
  msgid "Private"
641
  msgstr "Priv&#233;"
642
 
643
+ #: ../classes/column/post/status.php:33
644
  msgid "Pending Review"
645
  msgstr "Wachtend op review"
646
 
647
+ #: ../classes/column/post/status.php:34
648
  msgid "Auto Draft"
649
+ msgstr "Auto Draft"
650
 
651
+ #: ../classes/column/post/sticky.php:19
652
  msgid "Sticky"
653
  msgstr "Sticky"
654
 
655
+ #: ../classes/column/post/title-raw.php:19
656
+ msgid "Title without actions"
657
+ msgstr "Titel zonder acties"
658
+
659
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
660
  msgid "Taxonomy"
661
  msgstr "Taxonomy"
662
 
663
+ #: ../classes/column/used-by-menu.php:20
664
+ msgid "Used by Menu"
665
+ msgstr "Ingebruik door menu"
666
+
667
+ #: ../classes/column/used-by-menu.php:133
668
+ msgid "Link to menu"
669
+ msgstr "Link naar menu"
670
+
671
+ #: ../classes/column/used-by-menu.php:133
672
+ msgid "This will make the title link to the menu."
673
+ msgstr "Dit linkt de titel naar het menu"
674
+
675
+ #: ../classes/column/user/comment-count.php:19
676
  msgid "Comment Count"
677
+ msgstr "Aantal reacties"
678
 
679
+ #: ../classes/column/user/first-name.php:19
680
  msgid "First name"
681
  msgstr "Voornaam"
682
 
683
+ #: ../classes/column/user/last-name.php:19
684
  msgid "Last name"
685
  msgstr "Achternaam"
686
 
687
+ #: ../classes/column/user/post-count.php:19
688
  msgid "Post Count"
689
  msgstr "Aantal posts"
690
 
691
+ #: ../classes/column/user/post-count.php:102
692
  msgid "Post Type"
693
  msgstr "Post Type"
694
 
695
+ #: ../classes/column/user/registered.php:19
696
  msgid "Registered"
697
  msgstr "Registratie"
698
 
699
+ #: ../classes/column/user/url.php:19
700
  msgid "Url"
701
  msgstr "Url"
702
 
703
+ #: ../classes/settings.php:111
704
  msgid "Add-on successfully activated."
705
+ msgstr "Add-on werd succesvol geactiveerd."
706
 
707
+ #: ../classes/settings.php:114
708
  msgid "Add-on successfully deactivated."
709
+ msgstr "Add-on werd succesvol gedesactiveerd."
710
 
711
+ #: ../classes/settings.php:169
712
  msgid "Admin Columns Settings"
713
  msgstr "Admin Columns Instellingen"
714
 
715
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
716
  msgid "Admin Columns"
717
  msgstr "Admin Columns"
718
 
719
+ #: ../classes/settings.php:217
720
  #, php-format
721
  msgid "%s column is already present and can not be duplicated."
722
  msgstr "%s kolom is al in gebruik en kan niet worden gedupliceerd."
723
 
724
+ #: ../classes/settings.php:271
725
  msgid "Default settings succesfully restored."
726
  msgstr "Standaard instellingen succesvol hersteld."
727
 
728
+ #: ../classes/settings.php:288
729
  msgid "Overview"
730
  msgstr "Overzicht"
731
 
732
+ #: ../classes/settings.php:291
733
+ msgid "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
734
+ msgstr "Met deze plugin kun je bijkomende kolommen toevoegen en verwijderen van uit de administratieschermen van van berichten(types), pagina's, mediabibliotheken, reacties, links and gebruikers. Wijzig en herschik de kolomlabels."
 
 
 
735
 
736
+ #: ../classes/settings.php:294
737
  msgid "Basics"
738
  msgstr "Basisinfo"
739
 
740
+ #: ../classes/settings.php:296
741
  msgid "Change order"
742
  msgstr "Verander volgorde"
743
 
744
+ #: ../classes/settings.php:297
745
+ msgid "By dragging the columns you can change the order which they will appear in."
 
746
  msgstr "Door de kolommen te verslepen kan je de volgorde aanpassen."
747
 
748
+ #: ../classes/settings.php:298
749
  msgid "Change label"
750
  msgstr "Wijzig label"
751
 
752
+ #: ../classes/settings.php:299
753
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
754
+ msgstr "Klik op het kleine driehoekje om de kolom opties te tonen. Hier kan je de kolom label aanpassen."
 
 
 
 
755
 
756
+ #: ../classes/settings.php:300
757
  msgid "Change column width"
758
  msgstr "Verander kolom breedte"
759
 
760
+ #: ../classes/settings.php:301
761
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
762
+ msgstr "Klik je op de driehoek, dan krijg je de kolomopties te zien. En met de versleepbare slider kun je de breedte van kolommen bepalen, uitgedrukt in percentages."
 
 
763
 
764
+ #: ../classes/settings.php:307
765
  msgid "'Custom Field' column"
766
  msgstr "'Custom veld' kolom"
767
 
768
+ #: ../classes/settings.php:308
769
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
770
+ msgstr "De 'custom veld' kolom gebruikt custom velden voor berichten en gebruikers. Er zijn 10 typen welke je kan gebruiken."
 
 
 
 
771
 
772
+ #: ../classes/settings.php:310
773
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
774
+ msgstr "Waarde: Kan een string of array zijn. Arrays worden plat gemaakt en de waarden gescheiden door een ',' komma."
 
 
 
 
775
 
776
+ #: ../classes/settings.php:311
777
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
778
+ msgstr "Waarde: moet een afbeeldings URL of Media ID zijn ( gescheiden door een ',' komma )."
 
 
 
 
779
 
780
+ #: ../classes/settings.php:312
781
  msgid "Value: This will show the first 20 words of the Post content."
782
  msgstr "Waarde: Deze toont de eerste 20 woorden van een bericht."
783
 
784
+ #: ../classes/settings.php:313
785
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
786
+ msgstr "Waarde: moet een reeks zijn. Dit zal elke (multi-dimensionale) reeks afvlakken."
 
787
 
788
+ #: ../classes/settings.php:314
789
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
790
+ msgstr "Waarde: Enkel reeksen.<br/>Als je de 'sorteer-addon' hebt, zal die gebruikt worden voor het sorteren, zodat u uw berichten kunt sorteren volgens de numerieke waarden (van aangepaste velden)."
 
 
791
 
792
+ #: ../classes/settings.php:315
793
  #, php-format
794
+ msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
795
+ msgstr "Waarde: Kan een unix tijdstempel zijn, of een datumnotatie, zoals beschreven in de <a href='%s'>Codex</a>. Je kunt de uitgestuurde datumnotatie wijzigen in de pagina met <a href='%s'>algemene instellingen</a>."
 
 
 
796
 
797
+ #: ../classes/settings.php:316
798
  msgid "Post Titles"
799
  msgstr "Post titels"
800
 
801
+ #: ../classes/settings.php:316
802
  msgid "Value: can be one or more Post ID's (seperated by ',')."
803
  msgstr "Waarde: één of meer Post ID's ( gescheiden door een komma )"
804
 
805
+ #: ../classes/settings.php:317
806
  msgid "Usernames"
807
  msgstr "Gebruikersnamen"
808
 
809
+ #: ../classes/settings.php:317
810
  msgid "Value: can be one or more User ID's (seperated by ',')."
811
  msgstr "Waarde: één of meer User ID's ( gescheiden door een komma )"
812
 
813
+ #: ../classes/settings.php:318
814
  msgid "Checkmark"
815
  msgstr "Checkmark"
816
 
817
+ #: ../classes/settings.php:318
818
  msgid "Value: should be a 1 (one) or 0 (zero)."
819
  msgstr "Waarde: moet 1 of 0 zijn."
820
 
821
+ #: ../classes/settings.php:319
822
  msgid "Value: hex value color, such as #808080."
823
  msgstr "Waarde: hex waarde kleur, vb: #808080"
824
 
825
+ #: ../classes/settings.php:320
826
+ msgid "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."
827
+ msgstr "Waarde: Kan een string of een array zijn. Dit zal een teller weergeven met het aantal keren dat een metatoets door het item werd gebruikt."
 
 
828
 
829
+ #: ../classes/settings.php:409
830
  msgid "Welcome to Admin Columns"
831
  msgstr "Welkom bij Admin Columns"
832
 
833
+ #: ../classes/settings.php:412
834
  msgid "Thank you for updating to the latest version!"
835
  msgstr "Bedankt voor het updaten naar de laatste versie!"
836
 
837
+ #: ../classes/settings.php:413
838
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
 
 
839
  msgstr "Admin Columns ziet er nog beter uit dan ooit. Veel plezier ermee."
840
 
841
+ #: ../classes/settings.php:418
842
  msgid "What’s New"
843
  msgstr "What is nieuw"
844
 
845
+ #: ../classes/settings.php:419
846
  msgid "Changelog"
847
  msgstr "Changelog"
848
 
849
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
850
  msgid "Important"
851
  msgstr "Belangrijk"
852
 
853
+ #: ../classes/settings.php:426
854
  msgid "Database Changes"
855
  msgstr "Database Aanpassingen"
856
 
857
+ #: ../classes/settings.php:427
858
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
859
+ msgstr "De database werd gewijzigd tussen versies 1 en 2. Maar we hebben ervoor gezorgd dat je nog zonder probleem naar versie 1x kunt terugschakelen."
 
 
860
 
861
+ #: ../classes/settings.php:430
862
  msgid "Make sure you backup your database and then click"
863
  msgstr "Backup je database and klik dan"
864
 
865
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
866
  msgid "Upgrade Database"
867
  msgstr "Werk Database bij"
868
 
869
+ #: ../classes/settings.php:433
870
  msgid "Potential Issues"
871
  msgstr "Potentiele problemen"
872
 
873
+ #: ../classes/settings.php:434
874
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
875
+ msgstr "Omwille van de omvangrijke herstructurering van de code, van verwante Addons en en van acties/fliters, i het mogelijk dat je website niet langer correct functioneert. Het is belangrijk dat je de volledige documentatie doorneemt"
 
 
 
876
 
877
+ #: ../classes/settings.php:434
878
  msgid "Migrating from v1 to v2"
879
  msgstr "Migratie van v1 naar v2"
880
 
881
+ #: ../classes/settings.php:434
882
  msgid "guide to view the full list of changes."
883
  msgstr "overzicht van alle aanpassingen."
884
 
885
+ #: ../classes/settings.php:434
886
  #, php-format
887
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
888
+ msgstr "Mocht je een bug vinden, <a href=\"%s\">rapporteer deze aan ons</a> zodat we die kunnen herstellen in een volgende versie."
 
 
 
 
889
 
890
+ #: ../classes/settings.php:437
891
  msgid "Important!"
892
  msgstr "Belangrijk!"
893
 
894
+ #: ../classes/settings.php:437
895
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
896
+ msgstr "Als je de Admin Columns plugin hebt geupdate zonder voorafgaande kennis van zo'n wijzigingen, gelieve dan terug te schakelen naar de laatste"
 
 
897
 
898
+ #: ../classes/settings.php:437
899
  msgid "version 1"
900
  msgstr "versie 1"
901
 
902
+ #: ../classes/settings.php:437
903
  msgid "of this plugin."
904
  msgstr "van deze plugin."
905
 
906
+ #: ../classes/settings.php:443
907
  msgid "Changelog for"
908
  msgstr "Changelog voor"
909
 
910
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
911
  msgid "Learn more"
912
  msgstr "Leer meer"
913
 
914
+ #: ../classes/settings.php:468
915
  msgid "Start using Admin Columns"
916
  msgstr "Start met Admin Columns"
917
 
918
+ #: ../classes/settings.php:511
919
  msgid "General Settings"
920
  msgstr "Algemene Instellingen"
921
 
922
+ #: ../classes/settings.php:512
923
  msgid "Customize your Admin Columns settings."
924
  msgstr "Pas uw Admin Column instellingen aan."
925
 
926
+ #: ../classes/settings.php:523
927
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
928
+ msgstr "Toon \"Bewerk Kolom\" knop op de het admin scherm. Standaard is <code>aan</code>."
 
 
 
929
 
930
+ #: ../classes/settings.php:530 ../classes/settings.php:660
931
  msgid "Save"
932
  msgstr "Opslaan"
933
 
934
+ #: ../classes/settings.php:570
935
  msgid "Restore Settings"
936
  msgstr "Herstel Instellingen"
937
 
938
+ #: ../classes/settings.php:571
939
  msgid "This will delete all column settings and restore the default settings."
940
+ msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinstellingen hersteld."
 
 
941
 
942
+ #: ../classes/settings.php:577
943
  msgid "Restore default settings"
944
  msgstr "Herstel standaard instellingen"
945
 
946
+ #: ../classes/settings.php:577
947
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
948
+ msgstr "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
 
 
 
 
949
 
950
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
951
  msgid "Settings"
952
  msgstr "Instellingen"
953
 
954
+ #: ../classes/settings.php:600
955
  msgid "Add-ons"
956
  msgstr "Add-ons"
957
 
958
+ #: ../classes/settings.php:625
959
  msgid "Posttypes"
960
+ msgstr "Berichttentypes"
961
 
962
+ #: ../classes/settings.php:626
963
  msgid "Others"
964
  msgstr "Overige"
965
 
966
+ #: ../classes/settings.php:627
967
  msgid "Taxonomies"
968
+ msgstr "Taxonomieën"
969
 
970
+ #: ../classes/settings.php:646
971
  #, php-format
972
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
973
+ msgstr "De kolommen voor <strong>%s</strong> worden opgezet via PHP. Daardoor kunnen ze niet bewerkt worden in het adminpaneel."
 
 
974
 
975
+ #: ../classes/settings.php:656
976
  msgid "Store settings"
977
  msgstr "Opslaan"
978
 
979
+ #: ../classes/settings.php:660
980
  msgid "Update"
981
  msgstr "Bijwerken"
982
 
983
+ #: ../classes/settings.php:664
984
  #, php-format
985
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
986
+ msgstr "Opgelet! De data uit de %s-kolom wordt gewist. Dit kan niet ongedaan gemaakt worden. Klik \\'OK\\' om te wissen, klik \\'Cancel\\' om te annuleren"
 
 
987
 
988
+ #: ../classes/settings.php:665
989
  msgid "columns"
990
  msgstr "kolommen"
991
 
992
+ #: ../classes/settings.php:684
993
  msgid "Get Admin Columns Pro"
994
+ msgstr "Bestel Admin Columns Pro"
995
 
996
+ #: ../classes/settings.php:688
997
  msgid "Add Sorting"
998
  msgstr "Voeg sorting toe"
999
 
1000
+ #: ../classes/settings.php:689
1001
  msgid "Add Filtering"
1002
  msgstr "Voeg filtering toe"
1003
 
1004
+ #: ../classes/settings.php:690
1005
  msgid "Add Import/Export"
1006
  msgstr "Voeg import/export toe"
1007
 
1008
+ #: ../classes/settings.php:691
1009
  msgid "Add Direct Editing"
1010
  msgstr "Toevoegen Direct Bewerken"
1011
 
1012
+ #: ../classes/settings.php:694
1013
  #, php-format
1014
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1015
  msgstr "Bekijk <a href=\"%s\">Admin Columns Pro</a> voor meer details!"
1016
 
1017
+ #: ../classes/settings.php:725
1018
+ msgid "Are you happy with Admin Columns?"
1019
+ msgstr "Ben je blij met Admin Columns?"
1020
+
1021
+ #: ../classes/settings.php:733
1022
+ msgid "What's wrong? Need help? Let us know!"
1023
+ msgstr "Wat is er aan de hand? Hulp nodig? Vertel het ons!"
1024
+
1025
+ #: ../classes/settings.php:734
1026
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1027
+ msgstr "Bekijk onze uitgebreide documentatie, of je kunt een support ticket openen op WordPress.org!"
1028
+
1029
  #: ../classes/settings.php:742
1030
+ msgid "Docs"
1031
+ msgstr "Documenten"
1032
+
1033
+ #: ../classes/settings.php:747
1034
+ msgid "Forums"
1035
+ msgstr "Forums"
1036
+
1037
+ #: ../classes/settings.php:756
1038
+ msgid "Woohoo! We're glad to hear that!"
1039
+ msgstr "Woohoo! We zijn blij dat te horen!"
1040
+
1041
+ #: ../classes/settings.php:757
1042
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1043
+ msgstr "We zouden het fanatastisch vinden als je eeb beoordeling zou kunnen achterlaten op WordPress.org of een tweet over Admin Columns!"
1044
+
1045
+ #: ../classes/settings.php:761
1046
+ msgid "Rate"
1047
+ msgstr "Beoordeel"
1048
+
1049
+ #: ../classes/settings.php:772
1050
+ msgid "Tweet"
1051
+ msgstr "Tweet"
1052
+
1053
+ #: ../classes/settings.php:782
1054
+ msgid "Buy Pro"
1055
+ msgstr "Koop Pro"
1056
+
1057
+ #: ../classes/settings.php:794
1058
  msgid "Support"
1059
  msgstr "Hulp nodig?"
1060
 
1061
+ #: ../classes/settings.php:797
1062
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1063
+ msgstr "Bekijk de sectie <strong>Help</strong> in het scherm rechtsboven."
1064
 
1065
+ #: ../classes/settings.php:800
1066
  #, php-format
1067
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1068
+ msgstr "Voor de volledige documentatie, bug reports, suggesties en tips <a href='%s'>bezoek de Admin Columns website</a>"
 
 
1069
 
1070
+ #: ../classes/settings.php:829
1071
  msgid "Drag and drop to reorder"
1072
  msgstr "Sleep om te herordenen"
1073
 
1074
+ #: ../classes/settings.php:832
1075
  msgid "Add Column"
1076
  msgstr "Voeg Kolom toe"
1077
 
1078
+ #: ../classes/settings.php:908
1079
  msgid "Active"
1080
  msgstr "Activeer"
1081
 
1082
+ #: ../classes/settings.php:909
1083
  msgid "Deactivate"
1084
  msgstr "Deactiveer"
1085
 
1086
+ #: ../classes/settings.php:916
1087
  msgid "Installed"
1088
  msgstr "Geinstalleerd"
1089
 
1090
+ #: ../classes/settings.php:917
1091
  msgid "Activate"
1092
  msgstr "Activeer"
1093
 
1094
+ #: ../classes/settings.php:931
1095
  msgid "Download & Install"
1096
  msgstr "Download & Installeer"
1097
 
1098
+ #: ../classes/settings.php:936
1099
  msgid "Get this add-on"
1100
  msgstr "Ga naar deze add-on"
1101
 
1102
+ #: ../classes/storage_model.php:213
1103
  msgid "settings succesfully restored."
1104
  msgstr "instellingen succesvol hersteld."
1105
 
1106
+ #: ../classes/storage_model.php:229
1107
  msgid "No columns settings available."
1108
  msgstr "Geen kolom instellingen beschikbaar."
1109
 
1110
+ #: ../classes/storage_model.php:250
1111
  #, php-format
1112
  msgid "You are trying to store the same settings for %s."
1113
  msgstr "U probeerd dezelfde instellingen op te slaan voor %s."
1114
 
1115
+ #: ../classes/storage_model.php:254
1116
  #, php-format
1117
  msgid "Settings for %s updated succesfully."
1118
  msgstr "Instellingen voor %s succesvol bijgewerkt."
1129
  msgid "Users"
1130
  msgstr "Gebruikers"
1131
 
1132
+ #: ../classes/upgrade.php:62
1133
+ msgid ""
1134
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of <strong>Admin Columns Pro</strong> <a href=\"http://www."
1135
+ "admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new features, including Direct Inline Editing!"
1136
+ msgstr ""
1137
+
1138
+ #: ../classes/upgrade.php:95
1139
  msgid "Upgrade"
1140
  msgstr "Upgrade"
1141
 
1142
+ #: ../classes/upgrade.php:136
1143
  msgid "requires a database upgrade"
1144
  msgstr "verreist een database upgrade"
1145
 
1146
+ #: ../classes/upgrade.php:139
1147
  msgid "why?"
1148
  msgstr "waarom?"
1149
 
1150
+ #: ../classes/upgrade.php:140
1151
  msgid "Please"
1152
  msgstr "Alstublieft"
1153
 
1154
+ #: ../classes/upgrade.php:141
1155
  msgid "backup your database"
1156
  msgstr "backup van uw database"
1157
 
1158
+ #: ../classes/upgrade.php:142
1159
  msgid "then click"
1160
  msgstr "daarna klik"
1161
 
1162
+ #: ../classes/upgrade.php:351
1163
  msgid "Migrating Column Settings"
1164
  msgstr "Migreer Kolom Instellingen"
1165
 
1166
+ #: ../classes/upgrade.php:387
1167
  msgid "No Upgrade Required"
1168
  msgstr "Geen upgrade verreist"
1169
 
1170
+ #: ../classes/upgrade.php:388
1171
  msgid "Return to welcome screen."
1172
  msgstr "Ga terug naar het welkomst scherm."
1173
 
1174
+ #: ../classes/upgrade.php:406
1175
  msgid "Upgrade Complete!"
1176
  msgstr "Upgrade voltooid!"
1177
 
1178
+ #: ../classes/upgrade.php:406
1179
  msgid "Return to settings."
1180
  msgstr "Herstel standaard instellingen"
1181
 
1182
+ #: ../classes/upgrade.php:407
1183
  msgid "Error"
1184
  msgstr "Fout"
1185
 
1186
+ #: ../classes/upgrade.php:408
1187
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1188
+ msgstr "Excuseert. Er liep iets fout tijdens bij het upgraden. Gelieve dit te melden in het support forum."
 
 
1189
 
1190
+ #: ../codepress-admin-columns.php:390
1191
  msgid "Edit columns"
1192
  msgstr "Wijzig kolommen"
languages/cpac-pl_PL.mo CHANGED
Binary file
languages/cpac-pl_PL.po CHANGED
@@ -5,345 +5,335 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-08-28 12:17+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
- "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/admin-"
12
- "columns/language/pl_PL/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: pl_PL\n"
17
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
- "|| n%100>=20) ? 1 : 2);\n"
19
- "X-Generator: Poedit 1.6.8\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
- #: ../classes/addons.php:117
27
  msgid "Third party plugin integration"
28
  msgstr ""
29
 
30
- #: ../classes/addons.php:142
31
  msgid "Advanced Custom Fields"
32
  msgstr ""
33
 
34
- #: ../classes/addons.php:143
35
- msgid ""
36
- "Display and edit Advanced Custom Fields fields in the posts overview in "
37
- "seconds!"
 
 
 
 
 
 
38
  msgstr ""
39
 
40
- #: ../classes/column.php:481
41
  msgid "Thumbnail"
42
  msgstr "Miniatura"
43
 
44
- #: ../classes/column.php:482
45
  msgid "Medium"
46
  msgstr "Średni"
47
 
48
- #: ../classes/column.php:483
49
  msgid "Large"
50
  msgstr "Duży"
51
 
52
- #: ../classes/column.php:484
53
  msgid "Full"
54
  msgstr "Pełny"
55
 
56
- #: ../classes/column.php:751
57
  msgid "Date Format"
58
  msgstr "Format daty"
59
 
60
- #: ../classes/column.php:752
61
  msgid "This will determine how the date will be displayed."
62
  msgstr "Określi to sposób wyświetlania daty."
63
 
64
- #: ../classes/column.php:758
65
  msgid "Example:"
66
  msgstr "Przykład:"
67
 
68
- #: ../classes/column.php:760
69
  #, php-format
70
- msgid ""
71
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
72
- "date format here</a>."
73
- msgstr ""
74
- "Pozostaw puste aby używać formatu daty WordPressa, lub zmień <a href=\"%s"
75
- "\">domyślny format daty</a>."
76
 
77
- #: ../classes/column.php:761
78
  msgid "Documentation on date and time formatting."
79
  msgstr "Dokumentacja dotycząca formatowania daty i godziny."
80
 
81
- #: ../classes/column.php:775
82
  msgid "Excerpt length"
83
  msgstr "Długość wypisu"
84
 
85
- #: ../classes/column.php:776
86
  msgid "Number of words"
87
  msgstr "Liczba słów"
88
 
89
- #: ../classes/column.php:794
90
  msgid "Preview size"
91
  msgstr "Wielkość podglądu"
92
 
93
- #: ../classes/column.php:811 ../classes/storage_model.php:505
94
  msgid "Custom"
95
  msgstr "Włąsne"
96
 
97
- #: ../classes/column.php:814
98
  msgid "width"
99
  msgstr "szerokość"
100
 
101
- #: ../classes/column.php:817
102
  msgid "height"
103
  msgstr "wysokość"
104
 
105
- #: ../classes/column.php:831
106
  msgid "Before"
107
  msgstr "Przed"
108
 
109
- #: ../classes/column.php:831
110
  msgid "This text will appear before the custom field value."
111
  msgstr "Ten tekst pojawi się przed wartością własnego pola."
112
 
113
- #: ../classes/column.php:837
114
  msgid "After"
115
  msgstr "Po"
116
 
117
- #: ../classes/column.php:837
118
  msgid "This text will appear after the custom field value."
119
  msgstr "Ten tekst pojawi się po wartości własnego pola."
120
 
121
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
122
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
123
- #: ../classes/column/user/actions.php:66
124
  msgid "Edit"
125
  msgstr "Edytuj"
126
 
127
- #: ../classes/column.php:927 ../classes/column.php:1005
128
- #: ../classes/column/user/actions.php:74
129
  msgid "Remove"
130
  msgstr "Usuń"
131
 
132
- #: ../classes/column.php:945
133
  msgid "Type"
134
  msgstr "Typ"
135
 
136
- #: ../classes/column.php:945
137
  msgid "Choose a column type."
138
  msgstr "Wybierz typ kolumny."
139
 
140
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
141
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
142
- #: ../classes/column/post/ID.php:12
143
  msgid "ID"
144
  msgstr "ID"
145
 
146
- #: ../classes/column.php:955
147
  msgid "Label"
148
  msgstr "Etykieta"
149
 
150
- #: ../classes/column.php:955
151
  msgid "This is the name which will appear as the column header."
152
  msgstr "Nazwa, któa będzie wyświetlana w nagłówku kolumny."
153
 
154
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
155
  msgid "Width"
156
  msgstr "Szerokość"
157
 
158
- #: ../classes/column.php:964 ../classes/column.php:965
159
  msgid "default"
160
  msgstr "domyśłny"
161
 
162
- #: ../classes/column/acf-placeholder.php:16
163
  msgid "ACF Field"
164
  msgstr ""
165
 
166
  #: ../classes/column/acf-placeholder.php:32
167
- msgid "This feature is only available in Admin Columns Pro - Developer."
168
  msgstr ""
169
 
170
  #: ../classes/column/acf-placeholder.php:35
171
  #, php-format
172
- msgid ""
173
- "If you have a developer licence please download & install your ACF add-on "
174
- "from the <a href='%s'>add-ons tab</a>."
175
  msgstr ""
176
 
177
  #: ../classes/column/acf-placeholder.php:38
178
- msgid ""
179
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
180
- "integeration, allowing you to easily display and edit ACF fields from within "
181
- "your posts overview."
182
  msgstr ""
183
 
184
- #: ../classes/column/acf-placeholder.php:40
185
  msgid "Find out more"
186
  msgstr ""
187
 
188
- #: ../classes/column/comment/actions.php:14
189
- #: ../classes/column/link/actions.php:14
190
- #: ../classes/column/media/actions.php:14
191
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
192
  msgid "Actions"
193
  msgstr "Działania"
194
 
195
- #: ../classes/column/comment/actions.php:73
196
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
197
  msgid "Unapprove"
198
  msgstr "Odrzuć"
199
 
200
- #: ../classes/column/comment/actions.php:75
201
- #: ../classes/column/comment/actions.php:77
202
  msgid "Approve"
203
  msgstr "Zatwierdź"
204
 
205
- #: ../classes/column/comment/actions.php:86
206
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
207
  msgid "Restore"
208
  msgstr "Przywróć"
209
 
210
- #: ../classes/column/comment/actions.php:90
211
- #: ../classes/column/post/actions.php:66
212
  msgid "Delete Permanently"
213
  msgstr "Usuń na zawsze"
214
 
215
- #: ../classes/column/comment/actions.php:97
216
- #: ../classes/column/post/actions.php:58
217
  msgid "Quick&nbsp;Edit"
218
  msgstr "Szybka&nbsp;edycja"
219
 
220
- #: ../classes/column/comment/actions.php:98
221
  msgid "Reply"
222
  msgstr "Odpowiedź"
223
 
224
- #: ../classes/column/comment/agent.php:12
225
  msgid "Agent"
226
  msgstr "Przeglądarka"
227
 
228
- #: ../classes/column/comment/approved.php:12
229
- #: ../classes/column/post/comment-count.php:31
230
  msgid "Approved"
231
  msgstr "Zatwierdzony"
232
 
233
- #: ../classes/column/comment/author-avatar.php:12
234
  msgid "Avatar"
235
  msgstr "Avatar"
236
 
237
- #: ../classes/column/comment/author-email.php:12
238
  msgid "Author email"
239
  msgstr "Email Autora"
240
 
241
- #: ../classes/column/comment/author-ip.php:12
242
  msgid "Author IP"
243
  msgstr "IP Autora"
244
 
245
- #: ../classes/column/comment/author-url.php:12
246
  msgid "Author url"
247
  msgstr "URL Autora"
248
 
249
- #: ../classes/column/comment/author.php:12
250
  msgid "Author"
251
  msgstr "Autor"
252
 
253
- #: ../classes/column/comment/date-gmt.php:12
254
  msgid "Date GMT"
255
  msgstr "Data GMT"
256
 
257
- #: ../classes/column/comment/date-gmt.php:25
258
- #: ../classes/column/comment/date.php:25
259
  #, php-format
260
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
261
  msgstr "Opublikowany dnia <a href=\"%1$s\">%2$s o godz. %3$s</a>"
262
 
263
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
264
- #: ../classes/settings.php:300
265
  msgid "Date"
266
  msgstr "Data"
267
 
268
- #: ../classes/column/comment/excerpt.php:13
269
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
270
- #: ../classes/settings.php:297
271
  msgid "Excerpt"
272
  msgstr "Wypis"
273
 
274
- #: ../classes/column/comment/reply-to.php:12
275
  msgid "In Reply To"
276
  msgstr "W odpowiedzi na"
277
 
278
- #: ../classes/column/comment/word-count.php:12
279
- #: ../classes/column/post/word-count.php:12
280
  msgid "Word count"
281
  msgstr "Liczba słów"
282
 
283
- #: ../classes/column/custom-field.php:16
284
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
285
  msgid "Custom Field"
286
  msgstr "Własne pole"
287
 
288
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
289
- #: ../classes/storage_model.php:504
290
  msgid "Default"
291
  msgstr "Domyślny"
292
 
293
- #: ../classes/column/custom-field.php:66
294
  msgid "Checkmark (true/false)"
295
  msgstr "Znak (prawda/fałsz)"
296
 
297
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
298
  msgid "Color"
299
  msgstr "Kolor"
300
 
301
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
302
  msgid "Counter"
303
  msgstr ""
304
 
305
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
306
- #: ../classes/settings.php:296
307
  msgid "Image"
308
  msgstr "Obrazek"
309
 
310
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
311
  msgid "Media Library"
312
  msgstr "Biblioteka mediów"
313
 
314
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
315
  msgid "Multiple Values"
316
  msgstr "Wielokrotne wartości"
317
 
318
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
319
  msgid "Numeric"
320
  msgstr "Numeryczny"
321
 
322
- #: ../classes/column/custom-field.php:75
323
  msgid "Post Title (Post ID's)"
324
  msgstr "Tytył wpisu (ID wpisu)"
325
 
326
- #: ../classes/column/custom-field.php:76
327
  msgid "Username (User ID's)"
328
  msgstr "Użytkownik (ID użytkownika)"
329
 
330
- #: ../classes/column/custom-field.php:384
331
  msgid "Select your custom field."
332
  msgstr "Wybierz własne pole."
333
 
334
- #: ../classes/column/custom-field.php:394
335
  msgid "No custom fields available."
336
  msgstr "Brak dostępnych własnych pól."
337
 
338
- #: ../classes/column/custom-field.php:401
339
  msgid "Field Type"
340
  msgstr "Rodzaj pola"
341
 
342
- #: ../classes/column/custom-field.php:401
343
  msgid "This will determine how the value will be displayed."
344
  msgstr "Określi to sposób wyświetlania wartości."
345
 
346
- #: ../classes/column/link/actions.php:46
347
  #, php-format
348
  msgid ""
349
  "You are about to delete this link '%s'\n"
@@ -352,841 +342,779 @@ msgstr ""
352
  "Zamierzasz usunąć ten link link '%s'\n"
353
  " 'Cancel' to stop, 'OK' to delete."
354
 
355
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
356
  msgid "Delete"
357
  msgstr "Usuń"
358
 
359
- #: ../classes/column/link/description.php:12
360
- #: ../classes/column/media/description.php:12
361
- #: ../classes/column/user/description.php:14
362
  msgid "Description"
363
  msgstr "Opis"
364
 
365
- #: ../classes/column/link/length.php:12
366
  msgid "Length"
367
  msgstr "Długość"
368
 
369
- #: ../classes/column/link/notes.php:13
370
  msgid "Notes"
371
  msgstr "Notatki"
372
 
373
- #: ../classes/column/link/owner.php:12
374
  msgid "Owner"
375
  msgstr "Właściciel"
376
 
377
- #: ../classes/column/link/rss.php:12
378
  msgid "Rss"
379
  msgstr "Rss"
380
 
381
- #: ../classes/column/link/target.php:12
382
  msgid "Target"
383
  msgstr "Cel"
384
 
385
- #: ../classes/column/media/alternate-text.php:12
386
  msgid "Alt"
387
  msgstr "Tekst alternatywny"
388
 
389
- #: ../classes/column/media/available-sizes.php:14
390
  msgid "Available Sizes"
391
  msgstr "Dostępne rozmiary"
392
 
393
- #: ../classes/column/media/available-sizes.php:37
394
  msgid "full size"
395
  msgstr "pełny rozmiar"
396
 
397
- #: ../classes/column/media/caption.php:12
398
- #: ../classes/column/media/exif-data.php:36
399
  msgid "Caption"
400
  msgstr "Tytuł"
401
 
402
- #: ../classes/column/media/dimensions.php:12
403
  msgid "Dimensions"
404
  msgstr "Wymiary"
405
 
406
- #: ../classes/column/media/exif-data.php:12
407
  msgid "EXIF data"
408
  msgstr "Dane EXIF"
409
 
410
- #: ../classes/column/media/exif-data.php:33
411
  msgid "Aperture"
412
  msgstr "Przysłona"
413
 
414
- #: ../classes/column/media/exif-data.php:34
415
  msgid "Credit"
416
  msgstr "Autor"
417
 
418
- #: ../classes/column/media/exif-data.php:35
419
  msgid "Camera"
420
  msgstr "Aparat"
421
 
422
- #: ../classes/column/media/exif-data.php:37
423
  msgid "Timestamp"
424
  msgstr "Data"
425
 
426
- #: ../classes/column/media/exif-data.php:38
427
  msgid "Copyright EXIF"
428
  msgstr "Prawa autorskie EXIF"
429
 
430
- #: ../classes/column/media/exif-data.php:39
431
  msgid "Focal Length"
432
  msgstr "Ogniskowa"
433
 
434
- #: ../classes/column/media/exif-data.php:40
435
  msgid "ISO"
436
  msgstr "ISO"
437
 
438
- #: ../classes/column/media/exif-data.php:41
439
  msgid "Shutter Speed"
440
  msgstr "Szybkość migawki"
441
 
442
- #: ../classes/column/media/exif-data.php:42
443
  msgid "Title"
444
  msgstr "Tytuł"
445
 
446
- #: ../classes/column/media/file-name.php:12
447
  msgid "File name"
448
  msgstr "Nazwa pliku"
449
 
450
- #: ../classes/column/media/file-size.php:12
451
  msgid "File size"
452
  msgstr "Wielkość pliku"
453
 
454
- #: ../classes/column/media/full-path.php:12
455
  msgid "Full path"
456
  msgstr "Pełna ścieżka"
457
 
458
- #: ../classes/column/media/height.php:12
459
  msgid "Height"
460
  msgstr "Wysokość"
461
 
462
- #: ../classes/column/media/mime-type.php:12
463
  msgid "Mime type"
464
  msgstr "Typ pliku"
465
 
466
- #: ../classes/column/post/actions.php:57
467
  msgid "Edit this item"
468
  msgstr "Edytuj element"
469
 
470
- #: ../classes/column/post/actions.php:58
471
  msgid "Edit this item inline"
472
  msgstr "Edytuj element"
473
 
474
- #: ../classes/column/post/actions.php:62
475
  msgid "Restore this item from the Trash"
476
  msgstr "Przywróć ten element z kosza"
477
 
478
- #: ../classes/column/post/actions.php:64
479
  msgid "Move this item to the Trash"
480
  msgstr "Przenieś ten element do kosza"
481
 
482
- #: ../classes/column/post/actions.php:64
483
- #: ../classes/column/post/comment-count.php:34
484
- #: ../classes/column/post/status.php:38
485
  msgid "Trash"
486
  msgstr "Kosz"
487
 
488
- #: ../classes/column/post/actions.php:66
489
  msgid "Delete this item permanently"
490
  msgstr "Usuń ten element na zawsze"
491
 
492
- #: ../classes/column/post/actions.php:71
493
  #, php-format
494
  msgid "Preview &#8220;%s&#8221;"
495
  msgstr "Podejrzyj &#8220;%s&#8221;"
496
 
497
- #: ../classes/column/post/actions.php:71
498
  msgid "Preview"
499
  msgstr "Podejrzyj"
500
 
501
- #: ../classes/column/post/actions.php:73
502
  #, php-format
503
  msgid "View &#8220;%s&#8221;"
504
  msgstr "Zobacz &#8220;%s&#8221;"
505
 
506
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
507
  msgid "View"
508
  msgstr "Zobacz"
509
 
510
- #: ../classes/column/post/attachment-count.php:12
511
  msgid "No. of Attachments"
512
  msgstr "Liczba załączników"
513
 
514
- #: ../classes/column/post/attachment.php:12
515
  msgid "Attachment"
516
  msgstr "Załącznik"
517
 
518
- #: ../classes/column/post/author-name.php:12
519
  msgid "Display Author As"
520
  msgstr "Wyświetla autora jako"
521
 
522
- #: ../classes/column/post/author-name.php:34
523
  msgid "Display Name"
524
  msgstr "Pseudonim"
525
 
526
- #: ../classes/column/post/author-name.php:35
527
  msgid "First Name"
528
  msgstr "Imię"
529
 
530
- #: ../classes/column/post/author-name.php:36
531
  msgid "Last Name"
532
  msgstr "Nazwisko"
533
 
534
- #: ../classes/column/post/author-name.php:37
535
- #: ../classes/column/user/nickname.php:14
536
  msgid "Nickname"
537
  msgstr "Pseudonim"
538
 
539
- #: ../classes/column/post/author-name.php:38
540
  msgid "User Login"
541
  msgstr "Login użytkownika"
542
 
543
- #: ../classes/column/post/author-name.php:39
544
  msgid "User Email"
545
  msgstr "Email użytkownika"
546
 
547
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
548
  msgid "User ID"
549
  msgstr "ID użytkownika"
550
 
551
- #: ../classes/column/post/author-name.php:41
552
  msgid "First and Last Name"
553
  msgstr "Imię i nazwisko"
554
 
555
- #: ../classes/column/post/author-name.php:118
556
  msgid "This is the format of the author name."
557
  msgstr "To jest format autora"
558
 
559
- #: ../classes/column/post/before-moretag.php:14
560
  msgid "Before More Tag"
561
  msgstr "Przed tagiem Czytaj dalej"
562
 
563
- #: ../classes/column/post/comment-count.php:14
564
  msgid "Comment count"
565
  msgstr "Liczba komentarzy"
566
 
567
- #: ../classes/column/post/comment-count.php:30
568
  msgid "Total"
569
  msgstr "Ogółem"
570
 
571
- #: ../classes/column/post/comment-count.php:32
572
  msgid "Pending"
573
  msgstr "Oczekujący"
574
 
575
- #: ../classes/column/post/comment-count.php:33
576
  msgid "Spam"
577
  msgstr "Spam"
578
 
579
- #: ../classes/column/post/comment-count.php:95
580
- #: ../classes/column/post/comment-status.php:14
581
  msgid "Comment status"
582
  msgstr "Status komentarza"
583
 
584
- #: ../classes/column/post/comment-count.php:95
585
  msgid "Select which comment status you like to display."
586
  msgstr "Wybierz, które statusy komentarzy chcesz wyświetlać."
587
 
588
- #: ../classes/column/post/featured-image.php:14
589
  msgid "Featured Image"
590
  msgstr "Ikona wpisu"
591
 
592
- #: ../classes/column/post/formats.php:14
593
  msgid "Post Format"
594
  msgstr "Format wpisu"
595
 
596
- #: ../classes/column/post/modified.php:14
597
  msgid "Last modified"
598
  msgstr "Ostatnia modyfikacja"
599
 
600
- #: ../classes/column/post/order.php:14
601
  msgid "Page Order"
602
  msgstr "Kolejność stron"
603
 
604
- #: ../classes/column/post/page-template.php:12
605
  msgid "Page Template"
606
  msgstr "Szablon strony"
607
 
608
- #: ../classes/column/post/parent.php:12
609
  msgid "Parent"
610
  msgstr "Rodzic"
611
 
612
- #: ../classes/column/post/permalink.php:12
 
 
 
 
613
  msgid "Permalink"
614
  msgstr ""
615
 
616
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
 
 
 
 
617
  msgid "Ping status"
618
  msgstr "Status ping"
619
 
620
- #: ../classes/column/post/roles.php:14
621
  msgid "Roles"
622
  msgstr "Role"
623
 
624
- #: ../classes/column/post/slug.php:12
625
  msgid "Slug"
626
  msgstr "Bezpośredni odnośnik"
627
 
628
- #: ../classes/column/post/status.php:14
629
  msgid "Status"
630
  msgstr "Status"
631
 
632
- #: ../classes/column/post/status.php:32
633
  msgid "Published"
634
  msgstr "Opublikowany"
635
 
636
- #: ../classes/column/post/status.php:33
637
  msgid "Draft"
638
  msgstr "Szkic"
639
 
640
- #: ../classes/column/post/status.php:34
641
  msgid "Scheduled"
642
  msgstr "Zaplanowany"
643
 
644
- #: ../classes/column/post/status.php:35
645
  msgid "Private"
646
  msgstr "Prywatny"
647
 
648
- #: ../classes/column/post/status.php:36
649
  msgid "Pending Review"
650
  msgstr "Oczekujący na przegląd"
651
 
652
- #: ../classes/column/post/status.php:37
653
  msgid "Auto Draft"
654
  msgstr ""
655
 
656
- #: ../classes/column/post/sticky.php:14
657
  msgid "Sticky"
658
  msgstr "Przyklejone"
659
 
660
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
661
  msgid "Taxonomy"
662
  msgstr "Taksonomia"
663
 
664
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
665
  msgid "Comment Count"
666
  msgstr "Liczba komentarzy"
667
 
668
- #: ../classes/column/user/first-name.php:14
669
  msgid "First name"
670
  msgstr "Imię"
671
 
672
- #: ../classes/column/user/last-name.php:14
673
  msgid "Last name"
674
  msgstr "Nazwisko"
675
 
676
- #: ../classes/column/user/post-count.php:14
677
  msgid "Post Count"
678
  msgstr "Liczba wpisów"
679
 
680
- #: ../classes/column/user/post-count.php:99
681
  msgid "Post Type"
682
  msgstr "Typ wpisu"
683
 
684
- #: ../classes/column/user/registered.php:14
685
  msgid "Registered"
686
  msgstr "Zarejestrowany"
687
 
688
- #: ../classes/column/user/url.php:14
689
  msgid "Url"
690
  msgstr "Adres URL"
691
 
692
- #: ../classes/settings.php:97
693
  msgid "Add-on successfully activated."
694
  msgstr ""
695
 
696
- #: ../classes/settings.php:100
697
  msgid "Add-on successfully deactivated."
698
  msgstr ""
699
 
700
- #: ../classes/settings.php:155
701
  msgid "Admin Columns Settings"
702
  msgstr "Ustawienia edytora kolumn"
703
 
704
- #: ../classes/settings.php:155 ../classes/settings.php:619
705
- #: ../classes/upgrade.php:83
706
  msgid "Admin Columns"
707
  msgstr "Edytor kolumn"
708
 
709
- #: ../classes/settings.php:203
710
  #, php-format
711
  msgid "%s column is already present and can not be duplicated."
712
  msgstr "Kolumna %s jest już obecna i nie może być zduplikowana."
713
 
714
- #: ../classes/settings.php:256
715
  msgid "Default settings succesfully restored."
716
  msgstr "Domyślne ustawienia zostały przywrócone."
717
 
718
- #: ../classes/settings.php:273
719
  msgid "Overview"
720
  msgstr "Przegląd"
721
 
722
- #: ../classes/settings.php:276
723
  msgid ""
724
- "This plugin is for adding and removing additional columns to the "
725
- "administration screens for post(types), pages, media library, comments, "
726
- "links and users. Change the column's label and reorder them."
727
- msgstr ""
728
- "Ta wtyczka dodaje lub usuwa dodatkowe kolumny na ekranach edycji wpisów, "
729
- "stron, biblioteki mediów, komentarzy, linków i użytkowników. Pozwala zmienić "
730
- "nazwy kolumn i ich kolejność."
731
 
732
- #: ../classes/settings.php:279
733
  msgid "Basics"
734
  msgstr "Podstawy"
735
 
736
- #: ../classes/settings.php:281
737
  msgid "Change order"
738
  msgstr "Zmień kolejność"
739
 
740
- #: ../classes/settings.php:282
741
- msgid ""
742
- "By dragging the columns you can change the order which they will appear in."
743
- msgstr ""
744
- "Przeciągając kolumny możesz zmienić kolejność w której będą wyświetlane."
745
 
746
- #: ../classes/settings.php:283
747
  msgid "Change label"
748
  msgstr "Zmień etykietę"
749
 
750
- #: ../classes/settings.php:284
751
- msgid ""
752
- "By clicking on the triangle you will see the column options. Here you can "
753
- "change each label of the columns heading."
754
- msgstr ""
755
- "Klikając w trójkąt zobaczysz opcje kolumn. Możesz tu zmienić nazwy każdej z "
756
- "nich."
757
 
758
- #: ../classes/settings.php:285
759
  msgid "Change column width"
760
  msgstr "Zmień szerokość kolumn"
761
 
762
- #: ../classes/settings.php:286
763
- msgid ""
764
- "By clicking on the triangle you will see the column options. By using the "
765
- "draggable slider you can set the width of the columns in percentages."
766
- msgstr ""
767
- "Klikając w trójkąt zobaczysz ustawienia kolumn. Używając przeciągania w "
768
- "slajderze możesz ustawić w procentach szerokość kolumn."
769
 
770
- #: ../classes/settings.php:292
771
  msgid "'Custom Field' column"
772
  msgstr "Kolumna 'Własne pole'"
773
 
774
- #: ../classes/settings.php:293
775
- msgid ""
776
- "The custom field colum uses the custom fields from posts and users. There "
777
- "are 10 types which you can set."
778
- msgstr ""
779
- "Kolumna własnego pola używa własnych pól z wpisów i użytkowników. Możesz "
780
- "wybrać 1 z 10 typów."
781
 
782
- #: ../classes/settings.php:295
783
- msgid ""
784
- "Value: Can be either a string or array. Arrays will be flattened and values "
785
- "are seperated by a ',' comma."
786
- msgstr ""
787
- "Wartość: Może to być tekst bądź tablica. Tablice zostaną spłąszczone a "
788
- "warości oddzielone przecinkami."
789
 
790
- #: ../classes/settings.php:296
791
- msgid ""
792
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
793
- "comma )."
794
- msgstr ""
795
- "Wartość: Powinna zawierać adres URL obrazka lub ID załącznika (oddzielone "
796
- "przecinkami)."
797
 
798
- #: ../classes/settings.php:297
799
  msgid "Value: This will show the first 20 words of the Post content."
800
  msgstr "Wartość: Wyświetli pierwsze 20 słów z treści wpisu."
801
 
802
- #: ../classes/settings.php:298
803
- msgid ""
804
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
805
- msgstr ""
806
- "Wartość: Powinna być tablicą. Tablice wielopoziomowe zostaną spłaszczone."
807
 
808
- #: ../classes/settings.php:299
809
- msgid ""
810
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
811
- "for sorting, so you can sort your posts on numeric (custom field) values."
812
- msgstr ""
813
- "Wartość: Tylko liczby.<br />Jeśli masz dodatek sortowania, zostanie to "
814
- "zastosowane, aby umożliwić sortowanie wpisów wg liczb (z wartości własnych "
815
- "pól)."
816
 
817
- #: ../classes/settings.php:300
818
  #, php-format
819
- msgid ""
820
- "Value: Can be unix time stamp or a date format as described in the <a "
821
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
822
- "href='%s'>general settings</a> page."
823
- msgstr ""
824
- "Wartość: Może być stemplem czasu lub datą w formacie określonym w <a "
825
- "href='%s'>Kodeksie</a>. Możesz zmienić wyświetlani daty na stronie <a "
826
- "href='%s'>Ustawień głównych</a>."
827
 
828
- #: ../classes/settings.php:301
829
  msgid "Post Titles"
830
  msgstr "Tytyły wpisu"
831
 
832
- #: ../classes/settings.php:301
833
  msgid "Value: can be one or more Post ID's (seperated by ',')."
834
- msgstr ""
835
- "Wartość: Może to być jeden lub więcej ID wpisów (oddzielone przecinkami)."
836
 
837
- #: ../classes/settings.php:302
838
  msgid "Usernames"
839
  msgstr "Nazwy użytkowników"
840
 
841
- #: ../classes/settings.php:302
842
  msgid "Value: can be one or more User ID's (seperated by ',')."
843
- msgstr ""
844
- "Wartość: Może to być jeden lub więcej ID użytkowników (oddzielone "
845
- "przecinkami)."
846
 
847
- #: ../classes/settings.php:303
848
  msgid "Checkmark"
849
  msgstr "Znak tak/nie"
850
 
851
- #: ../classes/settings.php:303
852
  msgid "Value: should be a 1 (one) or 0 (zero)."
853
  msgstr "Wartość: Powinno to być 1 lub 0."
854
 
855
- #: ../classes/settings.php:304
856
  msgid "Value: hex value color, such as #808080."
857
  msgstr "Wartość: Kolor w HEX, np. #808080."
858
 
859
- #: ../classes/settings.php:305
860
- msgid ""
861
- "Value: Can be either a string or array. This will display a count of the "
862
- "number of times the meta key is used by the item."
863
  msgstr ""
864
 
865
- #: ../classes/settings.php:399
866
  msgid "Welcome to Admin Columns"
867
  msgstr "Witaj w Edytorze kolumn"
868
 
869
- #: ../classes/settings.php:402
870
  msgid "Thank you for updating to the latest version!"
871
  msgstr "Dziękujemy za aktualizację do najnowszej wersji!"
872
 
873
- #: ../classes/settings.php:403
874
- msgid ""
875
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
876
- "like it."
877
- msgstr ""
878
- "Edytor kolumn jest bardziej dopracowany niż kiedykolwiek wcześniej. Mamy "
879
- "nadzięję że Ci się spodoba."
880
 
881
- #: ../classes/settings.php:408
882
  msgid "What’s New"
883
  msgstr "Co nowego"
884
 
885
- #: ../classes/settings.php:409
886
  msgid "Changelog"
887
  msgstr "Dziennik zmian"
888
 
889
- #: ../classes/settings.php:414
890
- msgid "Addons"
891
- msgstr "Dodatki"
892
-
893
- #: ../classes/settings.php:416
894
- msgid ""
895
- "Addons are now activated by downloading and installing individual plugins. "
896
- "Although these plugins will not be hosted on the wordpress.org repository, "
897
- "each Add-on will continue to receive updates in the usual way."
898
- msgstr ""
899
- "Dodatki są aktywowane poprzez wczytanie i instalację oddzielnych wtyczek. "
900
- "Chociaż niektóre wtyczki nie będą utrzymywane w repozytorium wordpress.org, "
901
- "każdy z dodatków będzie mógł być automatycznie aktualizowany."
902
-
903
- #: ../classes/settings.php:419
904
- msgid ""
905
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
906
- msgstr "Ta strona korzysta z dodatku sortowania. Musisz go pobrać."
907
-
908
- #: ../classes/settings.php:422
909
- msgid "Addons are seperate plugins which need to be downloaded."
910
- msgstr "Dodatki są oddzielnymi wtyczkami, które muszą być pobrane."
911
-
912
- #: ../classes/settings.php:422
913
- msgid "Download your Addons"
914
- msgstr "Pobierz swoje dodatki"
915
-
916
- #: ../classes/settings.php:428
917
- msgid "This website does not use add-ons"
918
- msgstr "Ta strona nie korzysta z dodatków"
919
-
920
- #: ../classes/settings.php:428
921
- msgid "See our website for Admin Columns Pro."
922
- msgstr ""
923
-
924
- #: ../classes/settings.php:435
925
  msgid "Important"
926
  msgstr "Ważne"
927
 
928
- #: ../classes/settings.php:437
929
  msgid "Database Changes"
930
  msgstr "Zmiany w bazie danych"
931
 
932
- #: ../classes/settings.php:438
933
- msgid ""
934
- "The database has been changed between versions 1 and 2. But we made sure you "
935
- "can still roll back to version 1x without any issues."
936
- msgstr ""
937
- "Baza danych zmieniła się między wersjami 1 i 2. Ale wciąż możesz powrócić do "
938
- "wersji 1 bez żadnych problemów."
939
 
940
- #: ../classes/settings.php:441
941
  msgid "Make sure you backup your database and then click"
942
  msgstr "Upewnij się że zrobiłeś kopię zapasową bazy danych a następnie kliknij"
943
 
944
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
945
  msgid "Upgrade Database"
946
  msgstr "Aktualizuj bazę danych"
947
 
948
- #: ../classes/settings.php:444
949
  msgid "Potential Issues"
950
  msgstr "Potencjalne problemy"
951
 
952
- #: ../classes/settings.php:445
953
- msgid ""
954
- "Do to the sizable refactoring the code, surounding Addons and action/"
955
- "filters, your website may not operate correctly. It is important that you "
956
- "read the full"
957
- msgstr ""
958
- "Z powodu znacznych modyfikacji w kodzie, związanymi z dodatkami, filtrami i "
959
- "akcjami, Twoja strona może nie działać poprawnie. Pamiętaj, aby przeczytać "
960
- "pełną"
961
 
962
- #: ../classes/settings.php:445
963
  msgid "Migrating from v1 to v2"
964
  msgstr "Migracja z wersji 1 do 2"
965
 
966
- #: ../classes/settings.php:445
967
  msgid "guide to view the full list of changes."
968
  msgstr "dokumentację i zapoznać się z listą zmian."
969
 
970
- #: ../classes/settings.php:445
971
  #, php-format
972
- msgid ""
973
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
974
- "can fix it in the next release."
975
- msgstr ""
976
- "Jeśli znajdziesz błąd <a href=\"%s\">zgłoś go</a> abyśmy mogli naprawić go w "
977
- "kolejnej wersji."
978
 
979
- #: ../classes/settings.php:448
980
  msgid "Important!"
981
  msgstr "Ważne!"
982
 
983
- #: ../classes/settings.php:448
984
- msgid ""
985
- "If you updated the Admin Columns plugin without prior knowledge of such "
986
- "changes, Please roll back to the latest"
987
- msgstr ""
988
- "Jeżli zaktualizowałeś Edytor kolumn bez świadomości tych zmian, możesz "
989
- "powrócić do poprzedniej"
990
 
991
- #: ../classes/settings.php:448
992
  msgid "version 1"
993
  msgstr "wersja 1"
994
 
995
- #: ../classes/settings.php:448
996
  msgid "of this plugin."
997
  msgstr "tej wtyczki."
998
 
999
- #: ../classes/settings.php:454
1000
  msgid "Changelog for"
1001
  msgstr "Dziennik zmian dla"
1002
 
1003
- #: ../classes/settings.php:469
1004
  msgid "Learn more"
1005
  msgstr "Dowiedz się więcej"
1006
 
1007
- #: ../classes/settings.php:479
1008
  msgid "Start using Admin Columns"
1009
  msgstr "Zacznij korzystać z Edytora kolumn"
1010
 
1011
- #: ../classes/settings.php:522
1012
  msgid "General Settings"
1013
  msgstr "Ustawienia ogólne"
1014
 
1015
- #: ../classes/settings.php:523
1016
  msgid "Customize your Admin Columns settings."
1017
  msgstr "Zmodyfikuj ustawienia Edytora kolumn."
1018
 
1019
- #: ../classes/settings.php:546
1020
- msgid ""
1021
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1022
  msgstr ""
1023
- "Wyświetl przycisk \"Edytuj kolumny\" na ekranie edycji. Domyślnie jest "
1024
- "<code>wyłączone</code>."
1025
 
1026
- #: ../classes/settings.php:553 ../classes/settings.php:682
1027
  msgid "Save"
1028
  msgstr "Zapisz"
1029
 
1030
- #: ../classes/settings.php:593
1031
  msgid "Restore Settings"
1032
  msgstr "Przywróć ustawienia"
1033
 
1034
- #: ../classes/settings.php:594
1035
  msgid "This will delete all column settings and restore the default settings."
1036
- msgstr ""
1037
- "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień "
1038
- "domyślnych."
1039
 
1040
- #: ../classes/settings.php:600
1041
  msgid "Restore default settings"
1042
  msgstr "Przywróć ustawienia domyślne"
1043
 
1044
- #: ../classes/settings.php:600
1045
- msgid ""
1046
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1047
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1048
- msgstr ""
1049
- "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji "
1050
- "nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby "
1051
- "przerwać."
1052
 
1053
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1054
  msgid "Settings"
1055
  msgstr "Ustawienia"
1056
 
1057
- #: ../classes/settings.php:621
1058
  msgid "Add-ons"
1059
  msgstr ""
1060
 
1061
- #: ../classes/settings.php:647
1062
  msgid "Posttypes"
1063
  msgstr ""
1064
 
1065
- #: ../classes/settings.php:648
1066
  msgid "Others"
1067
  msgstr ""
1068
 
1069
- #: ../classes/settings.php:649
1070
  msgid "Taxonomies"
1071
  msgstr ""
1072
 
1073
- #: ../classes/settings.php:668
1074
  #, php-format
1075
- msgid ""
1076
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1077
- "be edited in the admin panel."
1078
  msgstr ""
1079
 
1080
- #: ../classes/settings.php:678
1081
  msgid "Store settings"
1082
  msgstr "Zapisz ustawienia"
1083
 
1084
- #: ../classes/settings.php:682
1085
  msgid "Update"
1086
  msgstr "Aktualizuj"
1087
 
1088
- #: ../classes/settings.php:686
1089
  #, php-format
1090
- msgid ""
1091
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1092
- "\\' to delete, \\'Cancel\\' to stop"
1093
- msgstr ""
1094
- "Uwaga! Ustawienia %s kolumn zostaną usunięte. Tej operacji nie można "
1095
- "przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
1096
 
1097
- #: ../classes/settings.php:687
1098
  msgid "columns"
1099
  msgstr "kolumny"
1100
 
1101
- #: ../classes/settings.php:701
1102
  msgid "Get Admin Columns Pro"
1103
  msgstr ""
1104
 
1105
- #: ../classes/settings.php:705
1106
  msgid "Add Sorting"
1107
  msgstr "Dodaj sortowanie"
1108
 
1109
- #: ../classes/settings.php:706
1110
  msgid "Add Filtering"
1111
  msgstr "Dodaj filtrowanie"
1112
 
1113
- #: ../classes/settings.php:707
1114
  msgid "Add Import/Export"
1115
  msgstr "Dodaj Import/Export"
1116
 
1117
- #: ../classes/settings.php:708
1118
  msgid "Add Direct Editing"
1119
  msgstr ""
1120
 
1121
- #: ../classes/settings.php:711
1122
  #, php-format
1123
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1124
  msgstr ""
1125
 
 
 
 
 
 
 
 
 
 
 
 
 
1126
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1127
  msgid "Support"
1128
  msgstr "Pomocy"
1129
 
1130
- #: ../classes/settings.php:745
1131
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1132
  msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
1133
 
1134
- #: ../classes/settings.php:748
1135
  #, php-format
1136
- msgid ""
1137
- "For full documentation, bug reports, feature suggestions and other tips <a "
1138
- "href='%s'>visit the Admin Columns website</a>"
1139
- msgstr ""
1140
- "Dostęp do pełnej dokumentacji, raportów błędów, sugestii co do nowych "
1141
- "funkcji i innych podpowiedzi uzyskasz na <a href='%s'>stronie Edytora "
1142
- "kolumn</a>"
1143
 
1144
- #: ../classes/settings.php:777
1145
  msgid "Drag and drop to reorder"
1146
  msgstr "Przeciągnij i opuść aby zmienić kolejność"
1147
 
1148
- #: ../classes/settings.php:780
1149
  msgid "Add Column"
1150
  msgstr "Dodaj kolumnę"
1151
 
1152
- #: ../classes/settings.php:853
1153
  msgid "Active"
1154
  msgstr ""
1155
 
1156
- #: ../classes/settings.php:854
1157
  msgid "Deactivate"
1158
  msgstr ""
1159
 
1160
- #: ../classes/settings.php:861
1161
  msgid "Installed"
1162
  msgstr ""
1163
 
1164
- #: ../classes/settings.php:862
1165
  msgid "Activate"
1166
  msgstr ""
1167
 
1168
- #: ../classes/settings.php:876
1169
  msgid "Download & Install"
1170
  msgstr ""
1171
 
1172
- #: ../classes/settings.php:881
1173
  msgid "Get this add-on"
1174
  msgstr ""
1175
 
1176
- #: ../classes/storage_model.php:207
1177
  msgid "settings succesfully restored."
1178
  msgstr "ustawienia zostały przywrócone."
1179
 
1180
- #: ../classes/storage_model.php:222
1181
  msgid "No columns settings available."
1182
  msgstr "Brak dostępnych ustawień kolumn."
1183
 
1184
- #: ../classes/storage_model.php:243
1185
  #, php-format
1186
  msgid "You are trying to store the same settings for %s."
1187
  msgstr "Próbujesz przywrócić te same ustawienia dla %s."
1188
 
1189
- #: ../classes/storage_model.php:247
1190
  #, php-format
1191
  msgid "Settings for %s updated succesfully."
1192
  msgstr "Ustawienia dla %s zostały zaktualizowane."
@@ -1203,62 +1131,65 @@ msgstr "Linki"
1203
  msgid "Users"
1204
  msgstr "Użytkownicy"
1205
 
1206
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
 
1207
  msgid "Upgrade"
1208
  msgstr "Aktualizuj"
1209
 
1210
- #: ../classes/upgrade.php:84
1211
  msgid "requires a database upgrade"
1212
  msgstr "wymaga aktualizacji bazy danych"
1213
 
1214
- #: ../classes/upgrade.php:87
1215
  msgid "why?"
1216
  msgstr "dlaczego?"
1217
 
1218
- #: ../classes/upgrade.php:88
1219
  msgid "Please"
1220
  msgstr "Proszę"
1221
 
1222
- #: ../classes/upgrade.php:89
1223
  msgid "backup your database"
1224
  msgstr "zrobić kopię zapasową bazy danych"
1225
 
1226
- #: ../classes/upgrade.php:90
1227
  msgid "then click"
1228
  msgstr "a następnie kliknąć"
1229
 
1230
- #: ../classes/upgrade.php:298
1231
  msgid "Migrating Column Settings"
1232
  msgstr "Migracja ustawień kolumn"
1233
 
1234
- #: ../classes/upgrade.php:334
1235
  msgid "No Upgrade Required"
1236
  msgstr "Aktualizacja nie jest wymagana"
1237
 
1238
- #: ../classes/upgrade.php:335
1239
  msgid "Return to welcome screen."
1240
  msgstr "Powróć do ekranu powitalnego"
1241
 
1242
- #: ../classes/upgrade.php:353
1243
  msgid "Upgrade Complete!"
1244
  msgstr "Aktualizacja zakończona"
1245
 
1246
- #: ../classes/upgrade.php:353
1247
  msgid "Return to settings."
1248
  msgstr "Przywróć do ustawień"
1249
 
1250
- #: ../classes/upgrade.php:354
1251
  msgid "Error"
1252
  msgstr "Błąd"
1253
 
1254
- #: ../classes/upgrade.php:355
1255
- msgid ""
1256
- "Sorry. Something went wrong during the upgrade process. Please report this "
1257
- "on the support forum."
1258
- msgstr ""
1259
- "Przykro nam, ale coś poszło źle w trakcie procesu aktualizacji. Napisz o tym "
1260
- "na forum pomocy."
1261
 
1262
- #: ../codepress-admin-columns.php:439
1263
  msgid "Edit columns"
1264
  msgstr "Edytuj kolumny"
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
9
+ "PO-Revision-Date: 2014-12-10 17:24+0100\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.7.1\n"
 
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
24
+ #: ../classes/addons.php:110
25
  msgid "Third party plugin integration"
26
  msgstr ""
27
 
28
+ #: ../classes/addons.php:135
29
  msgid "Advanced Custom Fields"
30
  msgstr ""
31
 
32
+ #: ../classes/addons.php:136
33
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
34
+ msgstr ""
35
+
36
+ #: ../classes/addons.php:141
37
+ msgid "WooCommerce"
38
+ msgstr ""
39
+
40
+ #: ../classes/addons.php:142
41
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
42
  msgstr ""
43
 
44
+ #: ../classes/column.php:500
45
  msgid "Thumbnail"
46
  msgstr "Miniatura"
47
 
48
+ #: ../classes/column.php:501
49
  msgid "Medium"
50
  msgstr "Średni"
51
 
52
+ #: ../classes/column.php:502
53
  msgid "Large"
54
  msgstr "Duży"
55
 
56
+ #: ../classes/column.php:503
57
  msgid "Full"
58
  msgstr "Pełny"
59
 
60
+ #: ../classes/column.php:863
61
  msgid "Date Format"
62
  msgstr "Format daty"
63
 
64
+ #: ../classes/column.php:864
65
  msgid "This will determine how the date will be displayed."
66
  msgstr "Określi to sposób wyświetlania daty."
67
 
68
+ #: ../classes/column.php:870
69
  msgid "Example:"
70
  msgstr "Przykład:"
71
 
72
+ #: ../classes/column.php:872
73
  #, php-format
74
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
75
+ msgstr "Pozostaw puste aby używać formatu daty WordPressa, lub zmień <a href=\"%s\">domyślny format daty</a>."
 
 
 
 
76
 
77
+ #: ../classes/column.php:873
78
  msgid "Documentation on date and time formatting."
79
  msgstr "Dokumentacja dotycząca formatowania daty i godziny."
80
 
81
+ #: ../classes/column.php:887
82
  msgid "Excerpt length"
83
  msgstr "Długość wypisu"
84
 
85
+ #: ../classes/column.php:888
86
  msgid "Number of words"
87
  msgstr "Liczba słów"
88
 
89
+ #: ../classes/column.php:906
90
  msgid "Preview size"
91
  msgstr "Wielkość podglądu"
92
 
93
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
94
  msgid "Custom"
95
  msgstr "Włąsne"
96
 
97
+ #: ../classes/column.php:926
98
  msgid "width"
99
  msgstr "szerokość"
100
 
101
+ #: ../classes/column.php:929
102
  msgid "height"
103
  msgstr "wysokość"
104
 
105
+ #: ../classes/column.php:943
106
  msgid "Before"
107
  msgstr "Przed"
108
 
109
+ #: ../classes/column.php:943
110
  msgid "This text will appear before the custom field value."
111
  msgstr "Ten tekst pojawi się przed wartością własnego pola."
112
 
113
+ #: ../classes/column.php:949
114
  msgid "After"
115
  msgstr "Po"
116
 
117
+ #: ../classes/column.php:949
118
  msgid "This text will appear after the custom field value."
119
  msgstr "Ten tekst pojawi się po wartości własnego pola."
120
 
121
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
 
 
122
  msgid "Edit"
123
  msgstr "Edytuj"
124
 
125
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
126
  msgid "Remove"
127
  msgstr "Usuń"
128
 
129
+ #: ../classes/column.php:1062
130
  msgid "Type"
131
  msgstr "Typ"
132
 
133
+ #: ../classes/column.php:1062
134
  msgid "Choose a column type."
135
  msgstr "Wybierz typ kolumny."
136
 
137
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
138
  msgid "ID"
139
  msgstr "ID"
140
 
141
+ #: ../classes/column.php:1072
142
  msgid "Label"
143
  msgstr "Etykieta"
144
 
145
+ #: ../classes/column.php:1072
146
  msgid "This is the name which will appear as the column header."
147
  msgstr "Nazwa, któa będzie wyświetlana w nagłówku kolumny."
148
 
149
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
150
  msgid "Width"
151
  msgstr "Szerokość"
152
 
153
+ #: ../classes/column.php:1081 ../classes/column.php:1082
154
  msgid "default"
155
  msgstr "domyśłny"
156
 
157
+ #: ../classes/column/acf-placeholder.php:19
158
  msgid "ACF Field"
159
  msgstr ""
160
 
161
  #: ../classes/column/acf-placeholder.php:32
162
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
163
  msgstr ""
164
 
165
  #: ../classes/column/acf-placeholder.php:35
166
  #, php-format
167
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
 
 
168
  msgstr ""
169
 
170
  #: ../classes/column/acf-placeholder.php:38
171
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
 
 
 
172
  msgstr ""
173
 
174
+ #: ../classes/column/acf-placeholder.php:44
175
  msgid "Find out more"
176
  msgstr ""
177
 
178
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20
179
+ #: ../classes/column/user/actions.php:19
 
 
180
  msgid "Actions"
181
  msgstr "Działania"
182
 
183
+ #: ../classes/column/actions.php:87
184
+ msgid "Use icons?"
185
+ msgstr ""
186
+
187
+ #: ../classes/column/actions.php:87
188
+ msgid "Use icons instead of text for displaying the actions."
189
+ msgstr ""
190
+
191
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
192
+ msgid "Yes"
193
+ msgstr ""
194
+
195
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
196
+ msgid "No"
197
+ msgstr ""
198
+
199
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
200
  msgid "Unapprove"
201
  msgstr "Odrzuć"
202
 
203
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
204
  msgid "Approve"
205
  msgstr "Zatwierdź"
206
 
207
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
208
  msgid "Restore"
209
  msgstr "Przywróć"
210
 
211
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
212
  msgid "Delete Permanently"
213
  msgstr "Usuń na zawsze"
214
 
215
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
216
  msgid "Quick&nbsp;Edit"
217
  msgstr "Szybka&nbsp;edycja"
218
 
219
+ #: ../classes/column/comment/actions.php:101
220
  msgid "Reply"
221
  msgstr "Odpowiedź"
222
 
223
+ #: ../classes/column/comment/agent.php:19
224
  msgid "Agent"
225
  msgstr "Przeglądarka"
226
 
227
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
228
  msgid "Approved"
229
  msgstr "Zatwierdzony"
230
 
231
+ #: ../classes/column/comment/author-avatar.php:19
232
  msgid "Avatar"
233
  msgstr "Avatar"
234
 
235
+ #: ../classes/column/comment/author-email.php:19
236
  msgid "Author email"
237
  msgstr "Email Autora"
238
 
239
+ #: ../classes/column/comment/author-ip.php:19
240
  msgid "Author IP"
241
  msgstr "IP Autora"
242
 
243
+ #: ../classes/column/comment/author-url.php:19
244
  msgid "Author url"
245
  msgstr "URL Autora"
246
 
247
+ #: ../classes/column/comment/author.php:19
248
  msgid "Author"
249
  msgstr "Autor"
250
 
251
+ #: ../classes/column/comment/date-gmt.php:19
252
  msgid "Date GMT"
253
  msgstr "Data GMT"
254
 
255
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
256
  #, php-format
257
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
258
  msgstr "Opublikowany dnia <a href=\"%1$s\">%2$s o godz. %3$s</a>"
259
 
260
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
261
  msgid "Date"
262
  msgstr "Data"
263
 
264
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
265
  msgid "Excerpt"
266
  msgstr "Wypis"
267
 
268
+ #: ../classes/column/comment/reply-to.php:19
269
  msgid "In Reply To"
270
  msgstr "W odpowiedzi na"
271
 
272
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
273
  msgid "Word count"
274
  msgstr "Liczba słów"
275
 
276
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
277
  msgid "Custom Field"
278
  msgstr "Własne pole"
279
 
280
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
281
  msgid "Default"
282
  msgstr "Domyślny"
283
 
284
+ #: ../classes/column/custom-field.php:95
285
  msgid "Checkmark (true/false)"
286
  msgstr "Znak (prawda/fałsz)"
287
 
288
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
289
  msgid "Color"
290
  msgstr "Kolor"
291
 
292
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
293
  msgid "Counter"
294
  msgstr ""
295
 
296
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
297
  msgid "Image"
298
  msgstr "Obrazek"
299
 
300
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
301
  msgid "Media Library"
302
  msgstr "Biblioteka mediów"
303
 
304
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
305
  msgid "Multiple Values"
306
  msgstr "Wielokrotne wartości"
307
 
308
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
309
  msgid "Numeric"
310
  msgstr "Numeryczny"
311
 
312
+ #: ../classes/column/custom-field.php:104
313
  msgid "Post Title (Post ID's)"
314
  msgstr "Tytył wpisu (ID wpisu)"
315
 
316
+ #: ../classes/column/custom-field.php:105
317
  msgid "Username (User ID's)"
318
  msgstr "Użytkownik (ID użytkownika)"
319
 
320
+ #: ../classes/column/custom-field.php:356
321
  msgid "Select your custom field."
322
  msgstr "Wybierz własne pole."
323
 
324
+ #: ../classes/column/custom-field.php:366
325
  msgid "No custom fields available."
326
  msgstr "Brak dostępnych własnych pól."
327
 
328
+ #: ../classes/column/custom-field.php:373
329
  msgid "Field Type"
330
  msgstr "Rodzaj pola"
331
 
332
+ #: ../classes/column/custom-field.php:373
333
  msgid "This will determine how the value will be displayed."
334
  msgstr "Określi to sposób wyświetlania wartości."
335
 
336
+ #: ../classes/column/link/actions.php:49
337
  #, php-format
338
  msgid ""
339
  "You are about to delete this link '%s'\n"
342
  "Zamierzasz usunąć ten link link '%s'\n"
343
  " 'Cancel' to stop, 'OK' to delete."
344
 
345
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
346
  msgid "Delete"
347
  msgstr "Usuń"
348
 
349
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
350
  msgid "Description"
351
  msgstr "Opis"
352
 
353
+ #: ../classes/column/link/length.php:19
354
  msgid "Length"
355
  msgstr "Długość"
356
 
357
+ #: ../classes/column/link/notes.php:19
358
  msgid "Notes"
359
  msgstr "Notatki"
360
 
361
+ #: ../classes/column/link/owner.php:19
362
  msgid "Owner"
363
  msgstr "Właściciel"
364
 
365
+ #: ../classes/column/link/rss.php:19
366
  msgid "Rss"
367
  msgstr "Rss"
368
 
369
+ #: ../classes/column/link/target.php:19
370
  msgid "Target"
371
  msgstr "Cel"
372
 
373
+ #: ../classes/column/media/alternate-text.php:19
374
  msgid "Alt"
375
  msgstr "Tekst alternatywny"
376
 
377
+ #: ../classes/column/media/available-sizes.php:20
378
  msgid "Available Sizes"
379
  msgstr "Dostępne rozmiary"
380
 
381
+ #: ../classes/column/media/available-sizes.php:40
382
  msgid "full size"
383
  msgstr "pełny rozmiar"
384
 
385
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
386
  msgid "Caption"
387
  msgstr "Tytuł"
388
 
389
+ #: ../classes/column/media/dimensions.php:19
390
  msgid "Dimensions"
391
  msgstr "Wymiary"
392
 
393
+ #: ../classes/column/media/exif-data.php:19
394
  msgid "EXIF data"
395
  msgstr "Dane EXIF"
396
 
397
+ #: ../classes/column/media/exif-data.php:38
398
  msgid "Aperture"
399
  msgstr "Przysłona"
400
 
401
+ #: ../classes/column/media/exif-data.php:39
402
  msgid "Credit"
403
  msgstr "Autor"
404
 
405
+ #: ../classes/column/media/exif-data.php:40
406
  msgid "Camera"
407
  msgstr "Aparat"
408
 
409
+ #: ../classes/column/media/exif-data.php:42
410
  msgid "Timestamp"
411
  msgstr "Data"
412
 
413
+ #: ../classes/column/media/exif-data.php:43
414
  msgid "Copyright EXIF"
415
  msgstr "Prawa autorskie EXIF"
416
 
417
+ #: ../classes/column/media/exif-data.php:44
418
  msgid "Focal Length"
419
  msgstr "Ogniskowa"
420
 
421
+ #: ../classes/column/media/exif-data.php:45
422
  msgid "ISO"
423
  msgstr "ISO"
424
 
425
+ #: ../classes/column/media/exif-data.php:46
426
  msgid "Shutter Speed"
427
  msgstr "Szybkość migawki"
428
 
429
+ #: ../classes/column/media/exif-data.php:47
430
  msgid "Title"
431
  msgstr "Tytuł"
432
 
433
+ #: ../classes/column/media/file-name.php:19
434
  msgid "File name"
435
  msgstr "Nazwa pliku"
436
 
437
+ #: ../classes/column/media/file-size.php:19
438
  msgid "File size"
439
  msgstr "Wielkość pliku"
440
 
441
+ #: ../classes/column/media/full-path.php:19
442
  msgid "Full path"
443
  msgstr "Pełna ścieżka"
444
 
445
+ #: ../classes/column/media/height.php:19
446
  msgid "Height"
447
  msgstr "Wysokość"
448
 
449
+ #: ../classes/column/media/mime-type.php:19
450
  msgid "Mime type"
451
  msgstr "Typ pliku"
452
 
453
+ #: ../classes/column/post/actions.php:31
454
  msgid "Edit this item"
455
  msgstr "Edytuj element"
456
 
457
+ #: ../classes/column/post/actions.php:34
458
  msgid "Edit this item inline"
459
  msgstr "Edytuj element"
460
 
461
+ #: ../classes/column/post/actions.php:39
462
  msgid "Restore this item from the Trash"
463
  msgstr "Przywróć ten element z kosza"
464
 
465
+ #: ../classes/column/post/actions.php:41
466
  msgid "Move this item to the Trash"
467
  msgstr "Przenieś ten element do kosza"
468
 
469
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
470
  msgid "Trash"
471
  msgstr "Kosz"
472
 
473
+ #: ../classes/column/post/actions.php:43
474
  msgid "Delete this item permanently"
475
  msgstr "Usuń ten element na zawsze"
476
 
477
+ #: ../classes/column/post/actions.php:48
478
  #, php-format
479
  msgid "Preview &#8220;%s&#8221;"
480
  msgstr "Podejrzyj &#8220;%s&#8221;"
481
 
482
+ #: ../classes/column/post/actions.php:48
483
  msgid "Preview"
484
  msgstr "Podejrzyj"
485
 
486
+ #: ../classes/column/post/actions.php:50
487
  #, php-format
488
  msgid "View &#8220;%s&#8221;"
489
  msgstr "Zobacz &#8220;%s&#8221;"
490
 
491
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
492
  msgid "View"
493
  msgstr "Zobacz"
494
 
495
+ #: ../classes/column/post/attachment-count.php:19
496
  msgid "No. of Attachments"
497
  msgstr "Liczba załączników"
498
 
499
+ #: ../classes/column/post/attachment.php:19
500
  msgid "Attachment"
501
  msgstr "Załącznik"
502
 
503
+ #: ../classes/column/post/author-name.php:20
504
  msgid "Display Author As"
505
  msgstr "Wyświetla autora jako"
506
 
507
+ #: ../classes/column/post/author-name.php:40
508
  msgid "Display Name"
509
  msgstr "Pseudonim"
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
  msgid "First Name"
513
  msgstr "Imię"
514
 
515
+ #: ../classes/column/post/author-name.php:42
516
  msgid "Last Name"
517
  msgstr "Nazwisko"
518
 
519
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
520
  msgid "Nickname"
521
  msgstr "Pseudonim"
522
 
523
+ #: ../classes/column/post/author-name.php:44
524
  msgid "User Login"
525
  msgstr "Login użytkownika"
526
 
527
+ #: ../classes/column/post/author-name.php:45
528
  msgid "User Email"
529
  msgstr "Email użytkownika"
530
 
531
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
532
  msgid "User ID"
533
  msgstr "ID użytkownika"
534
 
535
+ #: ../classes/column/post/author-name.php:47
536
  msgid "First and Last Name"
537
  msgstr "Imię i nazwisko"
538
 
539
+ #: ../classes/column/post/author-name.php:124
540
  msgid "This is the format of the author name."
541
  msgstr "To jest format autora"
542
 
543
+ #: ../classes/column/post/before-moretag.php:19
544
  msgid "Before More Tag"
545
  msgstr "Przed tagiem Czytaj dalej"
546
 
547
+ #: ../classes/column/post/comment-count.php:20
548
  msgid "Comment count"
549
  msgstr "Liczba komentarzy"
550
 
551
+ #: ../classes/column/post/comment-count.php:34
552
  msgid "Total"
553
  msgstr "Ogółem"
554
 
555
+ #: ../classes/column/post/comment-count.php:36
556
  msgid "Pending"
557
  msgstr "Oczekujący"
558
 
559
+ #: ../classes/column/post/comment-count.php:37
560
  msgid "Spam"
561
  msgstr "Spam"
562
 
563
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
564
  msgid "Comment status"
565
  msgstr "Status komentarza"
566
 
567
+ #: ../classes/column/post/comment-count.php:99
568
  msgid "Select which comment status you like to display."
569
  msgstr "Wybierz, które statusy komentarzy chcesz wyświetlać."
570
 
571
+ #: ../classes/column/post/featured-image.php:19
572
  msgid "Featured Image"
573
  msgstr "Ikona wpisu"
574
 
575
+ #: ../classes/column/post/formats.php:19
576
  msgid "Post Format"
577
  msgstr "Format wpisu"
578
 
579
+ #: ../classes/column/post/modified.php:19
580
  msgid "Last modified"
581
  msgstr "Ostatnia modyfikacja"
582
 
583
+ #: ../classes/column/post/order.php:19
584
  msgid "Page Order"
585
  msgstr "Kolejność stron"
586
 
587
+ #: ../classes/column/post/page-template.php:19
588
  msgid "Page Template"
589
  msgstr "Szablon strony"
590
 
591
+ #: ../classes/column/post/parent.php:19
592
  msgid "Parent"
593
  msgstr "Rodzic"
594
 
595
+ #: ../classes/column/post/path.php:19
596
+ msgid "Path"
597
+ msgstr ""
598
+
599
+ #: ../classes/column/post/permalink.php:19
600
  msgid "Permalink"
601
  msgstr ""
602
 
603
+ #: ../classes/column/post/permalink.php:68
604
+ msgid "Link to post"
605
+ msgstr ""
606
+
607
+ #: ../classes/column/post/permalink.php:68
608
+ msgid "This will make the permalink clickable."
609
+ msgstr ""
610
+
611
+ #: ../classes/column/post/ping-status.php:19
612
  msgid "Ping status"
613
  msgstr "Status ping"
614
 
615
+ #: ../classes/column/post/roles.php:19
616
  msgid "Roles"
617
  msgstr "Role"
618
 
619
+ #: ../classes/column/post/slug.php:19
620
  msgid "Slug"
621
  msgstr "Bezpośredni odnośnik"
622
 
623
+ #: ../classes/column/post/status.php:19
624
  msgid "Status"
625
  msgstr "Status"
626
 
627
+ #: ../classes/column/post/status.php:29
628
  msgid "Published"
629
  msgstr "Opublikowany"
630
 
631
+ #: ../classes/column/post/status.php:30
632
  msgid "Draft"
633
  msgstr "Szkic"
634
 
635
+ #: ../classes/column/post/status.php:31
636
  msgid "Scheduled"
637
  msgstr "Zaplanowany"
638
 
639
+ #: ../classes/column/post/status.php:32
640
  msgid "Private"
641
  msgstr "Prywatny"
642
 
643
+ #: ../classes/column/post/status.php:33
644
  msgid "Pending Review"
645
  msgstr "Oczekujący na przegląd"
646
 
647
+ #: ../classes/column/post/status.php:34
648
  msgid "Auto Draft"
649
  msgstr ""
650
 
651
+ #: ../classes/column/post/sticky.php:19
652
  msgid "Sticky"
653
  msgstr "Przyklejone"
654
 
655
+ #: ../classes/column/post/title-raw.php:19
656
+ msgid "Title without actions"
657
+ msgstr ""
658
+
659
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
660
  msgid "Taxonomy"
661
  msgstr "Taksonomia"
662
 
663
+ #: ../classes/column/used-by-menu.php:20
664
+ msgid "Used by Menu"
665
+ msgstr ""
666
+
667
+ #: ../classes/column/used-by-menu.php:133
668
+ msgid "Link to menu"
669
+ msgstr ""
670
+
671
+ #: ../classes/column/used-by-menu.php:133
672
+ msgid "This will make the title link to the menu."
673
+ msgstr ""
674
+
675
+ #: ../classes/column/user/comment-count.php:19
676
  msgid "Comment Count"
677
  msgstr "Liczba komentarzy"
678
 
679
+ #: ../classes/column/user/first-name.php:19
680
  msgid "First name"
681
  msgstr "Imię"
682
 
683
+ #: ../classes/column/user/last-name.php:19
684
  msgid "Last name"
685
  msgstr "Nazwisko"
686
 
687
+ #: ../classes/column/user/post-count.php:19
688
  msgid "Post Count"
689
  msgstr "Liczba wpisów"
690
 
691
+ #: ../classes/column/user/post-count.php:102
692
  msgid "Post Type"
693
  msgstr "Typ wpisu"
694
 
695
+ #: ../classes/column/user/registered.php:19
696
  msgid "Registered"
697
  msgstr "Zarejestrowany"
698
 
699
+ #: ../classes/column/user/url.php:19
700
  msgid "Url"
701
  msgstr "Adres URL"
702
 
703
+ #: ../classes/settings.php:111
704
  msgid "Add-on successfully activated."
705
  msgstr ""
706
 
707
+ #: ../classes/settings.php:114
708
  msgid "Add-on successfully deactivated."
709
  msgstr ""
710
 
711
+ #: ../classes/settings.php:169
712
  msgid "Admin Columns Settings"
713
  msgstr "Ustawienia edytora kolumn"
714
 
715
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
716
  msgid "Admin Columns"
717
  msgstr "Edytor kolumn"
718
 
719
+ #: ../classes/settings.php:217
720
  #, php-format
721
  msgid "%s column is already present and can not be duplicated."
722
  msgstr "Kolumna %s jest już obecna i nie może być zduplikowana."
723
 
724
+ #: ../classes/settings.php:271
725
  msgid "Default settings succesfully restored."
726
  msgstr "Domyślne ustawienia zostały przywrócone."
727
 
728
+ #: ../classes/settings.php:288
729
  msgid "Overview"
730
  msgstr "Przegląd"
731
 
732
+ #: ../classes/settings.php:291
733
  msgid ""
734
+ "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and "
735
+ "reorder them."
736
+ 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ść."
 
 
 
 
737
 
738
+ #: ../classes/settings.php:294
739
  msgid "Basics"
740
  msgstr "Podstawy"
741
 
742
+ #: ../classes/settings.php:296
743
  msgid "Change order"
744
  msgstr "Zmień kolejność"
745
 
746
+ #: ../classes/settings.php:297
747
+ msgid "By dragging the columns you can change the order which they will appear in."
748
+ msgstr "Przeciągając kolumny możesz zmienić kolejność w której będą wyświetlane."
 
 
749
 
750
+ #: ../classes/settings.php:298
751
  msgid "Change label"
752
  msgstr "Zmień etykietę"
753
 
754
+ #: ../classes/settings.php:299
755
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
756
+ msgstr "Klikając w trójkąt zobaczysz opcje kolumn. Możesz tu zmienić nazwy każdej z nich."
 
 
 
 
757
 
758
+ #: ../classes/settings.php:300
759
  msgid "Change column width"
760
  msgstr "Zmień szerokość kolumn"
761
 
762
+ #: ../classes/settings.php:301
763
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
764
+ msgstr "Klikając w trójkąt zobaczysz ustawienia kolumn. Używając przeciągania w slajderze możesz ustawić w procentach szerokość kolumn."
 
 
 
 
765
 
766
+ #: ../classes/settings.php:307
767
  msgid "'Custom Field' column"
768
  msgstr "Kolumna 'Własne pole'"
769
 
770
+ #: ../classes/settings.php:308
771
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
772
+ 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."
 
 
 
 
773
 
774
+ #: ../classes/settings.php:310
775
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
776
+ msgstr "Wartość: Może to być tekst bądź tablica. Tablice zostaną spłąszczone a warości oddzielone przecinkami."
 
 
 
 
777
 
778
+ #: ../classes/settings.php:311
779
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
780
+ msgstr "Wartość: Powinna zawierać adres URL obrazka lub ID załącznika (oddzielone przecinkami)."
 
 
 
 
781
 
782
+ #: ../classes/settings.php:312
783
  msgid "Value: This will show the first 20 words of the Post content."
784
  msgstr "Wartość: Wyświetli pierwsze 20 słów z treści wpisu."
785
 
786
+ #: ../classes/settings.php:313
787
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
788
+ msgstr "Wartość: Powinna być tablicą. Tablice wielopoziomowe zostaną spłaszczone."
 
 
789
 
790
+ #: ../classes/settings.php:314
791
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
792
+ 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)."
 
 
 
 
 
793
 
794
+ #: ../classes/settings.php:315
795
  #, php-format
796
+ msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
797
+ 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>."
 
 
 
 
 
 
798
 
799
+ #: ../classes/settings.php:316
800
  msgid "Post Titles"
801
  msgstr "Tytyły wpisu"
802
 
803
+ #: ../classes/settings.php:316
804
  msgid "Value: can be one or more Post ID's (seperated by ',')."
805
+ msgstr "Wartość: Może to być jeden lub więcej ID wpisów (oddzielone przecinkami)."
 
806
 
807
+ #: ../classes/settings.php:317
808
  msgid "Usernames"
809
  msgstr "Nazwy użytkowników"
810
 
811
+ #: ../classes/settings.php:317
812
  msgid "Value: can be one or more User ID's (seperated by ',')."
813
+ msgstr "Wartość: Może to być jeden lub więcej ID użytkowników (oddzielone przecinkami)."
 
 
814
 
815
+ #: ../classes/settings.php:318
816
  msgid "Checkmark"
817
  msgstr "Znak tak/nie"
818
 
819
+ #: ../classes/settings.php:318
820
  msgid "Value: should be a 1 (one) or 0 (zero)."
821
  msgstr "Wartość: Powinno to być 1 lub 0."
822
 
823
+ #: ../classes/settings.php:319
824
  msgid "Value: hex value color, such as #808080."
825
  msgstr "Wartość: Kolor w HEX, np. #808080."
826
 
827
+ #: ../classes/settings.php:320
828
+ msgid "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."
 
 
829
  msgstr ""
830
 
831
+ #: ../classes/settings.php:409
832
  msgid "Welcome to Admin Columns"
833
  msgstr "Witaj w Edytorze kolumn"
834
 
835
+ #: ../classes/settings.php:412
836
  msgid "Thank you for updating to the latest version!"
837
  msgstr "Dziękujemy za aktualizację do najnowszej wersji!"
838
 
839
+ #: ../classes/settings.php:413
840
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
841
+ msgstr "Edytor kolumn jest bardziej dopracowany niż kiedykolwiek wcześniej. Mamy nadzięję że Ci się spodoba."
 
 
 
 
842
 
843
+ #: ../classes/settings.php:418
844
  msgid "What’s New"
845
  msgstr "Co nowego"
846
 
847
+ #: ../classes/settings.php:419
848
  msgid "Changelog"
849
  msgstr "Dziennik zmian"
850
 
851
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
852
  msgid "Important"
853
  msgstr "Ważne"
854
 
855
+ #: ../classes/settings.php:426
856
  msgid "Database Changes"
857
  msgstr "Zmiany w bazie danych"
858
 
859
+ #: ../classes/settings.php:427
860
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
861
+ 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."
 
 
 
 
862
 
863
+ #: ../classes/settings.php:430
864
  msgid "Make sure you backup your database and then click"
865
  msgstr "Upewnij się że zrobiłeś kopię zapasową bazy danych a następnie kliknij"
866
 
867
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
868
  msgid "Upgrade Database"
869
  msgstr "Aktualizuj bazę danych"
870
 
871
+ #: ../classes/settings.php:433
872
  msgid "Potential Issues"
873
  msgstr "Potencjalne problemy"
874
 
875
+ #: ../classes/settings.php:434
876
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
877
+ 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ą"
 
 
 
 
 
 
878
 
879
+ #: ../classes/settings.php:434
880
  msgid "Migrating from v1 to v2"
881
  msgstr "Migracja z wersji 1 do 2"
882
 
883
+ #: ../classes/settings.php:434
884
  msgid "guide to view the full list of changes."
885
  msgstr "dokumentację i zapoznać się z listą zmian."
886
 
887
+ #: ../classes/settings.php:434
888
  #, php-format
889
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
890
+ msgstr "Jeśli znajdziesz błąd <a href=\"%s\">zgłoś go</a> abyśmy mogli naprawić go w kolejnej wersji."
 
 
 
 
891
 
892
+ #: ../classes/settings.php:437
893
  msgid "Important!"
894
  msgstr "Ważne!"
895
 
896
+ #: ../classes/settings.php:437
897
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
898
+ msgstr "Jeżli zaktualizowałeś Edytor kolumn bez świadomości tych zmian, możesz powrócić do poprzedniej"
 
 
 
 
899
 
900
+ #: ../classes/settings.php:437
901
  msgid "version 1"
902
  msgstr "wersja 1"
903
 
904
+ #: ../classes/settings.php:437
905
  msgid "of this plugin."
906
  msgstr "tej wtyczki."
907
 
908
+ #: ../classes/settings.php:443
909
  msgid "Changelog for"
910
  msgstr "Dziennik zmian dla"
911
 
912
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
913
  msgid "Learn more"
914
  msgstr "Dowiedz się więcej"
915
 
916
+ #: ../classes/settings.php:468
917
  msgid "Start using Admin Columns"
918
  msgstr "Zacznij korzystać z Edytora kolumn"
919
 
920
+ #: ../classes/settings.php:511
921
  msgid "General Settings"
922
  msgstr "Ustawienia ogólne"
923
 
924
+ #: ../classes/settings.php:512
925
  msgid "Customize your Admin Columns settings."
926
  msgstr "Zmodyfikuj ustawienia Edytora kolumn."
927
 
928
+ #: ../classes/settings.php:523
929
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
 
930
  msgstr ""
 
 
931
 
932
+ #: ../classes/settings.php:530 ../classes/settings.php:660
933
  msgid "Save"
934
  msgstr "Zapisz"
935
 
936
+ #: ../classes/settings.php:570
937
  msgid "Restore Settings"
938
  msgstr "Przywróć ustawienia"
939
 
940
+ #: ../classes/settings.php:571
941
  msgid "This will delete all column settings and restore the default settings."
942
+ msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień domyślnych."
 
 
943
 
944
+ #: ../classes/settings.php:577
945
  msgid "Restore default settings"
946
  msgstr "Przywróć ustawienia domyślne"
947
 
948
+ #: ../classes/settings.php:577
949
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
950
+ msgstr "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
 
 
 
 
 
951
 
952
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
953
  msgid "Settings"
954
  msgstr "Ustawienia"
955
 
956
+ #: ../classes/settings.php:600
957
  msgid "Add-ons"
958
  msgstr ""
959
 
960
+ #: ../classes/settings.php:625
961
  msgid "Posttypes"
962
  msgstr ""
963
 
964
+ #: ../classes/settings.php:626
965
  msgid "Others"
966
  msgstr ""
967
 
968
+ #: ../classes/settings.php:627
969
  msgid "Taxonomies"
970
  msgstr ""
971
 
972
+ #: ../classes/settings.php:646
973
  #, php-format
974
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
 
 
975
  msgstr ""
976
 
977
+ #: ../classes/settings.php:656
978
  msgid "Store settings"
979
  msgstr "Zapisz ustawienia"
980
 
981
+ #: ../classes/settings.php:660
982
  msgid "Update"
983
  msgstr "Aktualizuj"
984
 
985
+ #: ../classes/settings.php:664
986
  #, php-format
987
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
988
+ msgstr "Uwaga! Ustawienia %s kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
 
 
 
 
989
 
990
+ #: ../classes/settings.php:665
991
  msgid "columns"
992
  msgstr "kolumny"
993
 
994
+ #: ../classes/settings.php:684
995
  msgid "Get Admin Columns Pro"
996
  msgstr ""
997
 
998
+ #: ../classes/settings.php:688
999
  msgid "Add Sorting"
1000
  msgstr "Dodaj sortowanie"
1001
 
1002
+ #: ../classes/settings.php:689
1003
  msgid "Add Filtering"
1004
  msgstr "Dodaj filtrowanie"
1005
 
1006
+ #: ../classes/settings.php:690
1007
  msgid "Add Import/Export"
1008
  msgstr "Dodaj Import/Export"
1009
 
1010
+ #: ../classes/settings.php:691
1011
  msgid "Add Direct Editing"
1012
  msgstr ""
1013
 
1014
+ #: ../classes/settings.php:694
1015
  #, php-format
1016
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1017
  msgstr ""
1018
 
1019
+ #: ../classes/settings.php:725
1020
+ msgid "Are you happy with Admin Columns?"
1021
+ msgstr ""
1022
+
1023
+ #: ../classes/settings.php:733
1024
+ msgid "What's wrong? Need help? Let us know!"
1025
+ msgstr ""
1026
+
1027
+ #: ../classes/settings.php:734
1028
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1029
+ msgstr ""
1030
+
1031
  #: ../classes/settings.php:742
1032
+ msgid "Docs"
1033
+ msgstr ""
1034
+
1035
+ #: ../classes/settings.php:747
1036
+ msgid "Forums"
1037
+ msgstr ""
1038
+
1039
+ #: ../classes/settings.php:756
1040
+ msgid "Woohoo! We're glad to hear that!"
1041
+ msgstr ""
1042
+
1043
+ #: ../classes/settings.php:757
1044
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1045
+ msgstr ""
1046
+
1047
+ #: ../classes/settings.php:761
1048
+ msgid "Rate"
1049
+ msgstr ""
1050
+
1051
+ #: ../classes/settings.php:772
1052
+ msgid "Tweet"
1053
+ msgstr ""
1054
+
1055
+ #: ../classes/settings.php:782
1056
+ msgid "Buy Pro"
1057
+ msgstr ""
1058
+
1059
+ #: ../classes/settings.php:794
1060
  msgid "Support"
1061
  msgstr "Pomocy"
1062
 
1063
+ #: ../classes/settings.php:797
1064
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1065
  msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
1066
 
1067
+ #: ../classes/settings.php:800
1068
  #, php-format
1069
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1070
+ 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>"
 
 
 
 
 
1071
 
1072
+ #: ../classes/settings.php:829
1073
  msgid "Drag and drop to reorder"
1074
  msgstr "Przeciągnij i opuść aby zmienić kolejność"
1075
 
1076
+ #: ../classes/settings.php:832
1077
  msgid "Add Column"
1078
  msgstr "Dodaj kolumnę"
1079
 
1080
+ #: ../classes/settings.php:908
1081
  msgid "Active"
1082
  msgstr ""
1083
 
1084
+ #: ../classes/settings.php:909
1085
  msgid "Deactivate"
1086
  msgstr ""
1087
 
1088
+ #: ../classes/settings.php:916
1089
  msgid "Installed"
1090
  msgstr ""
1091
 
1092
+ #: ../classes/settings.php:917
1093
  msgid "Activate"
1094
  msgstr ""
1095
 
1096
+ #: ../classes/settings.php:931
1097
  msgid "Download & Install"
1098
  msgstr ""
1099
 
1100
+ #: ../classes/settings.php:936
1101
  msgid "Get this add-on"
1102
  msgstr ""
1103
 
1104
+ #: ../classes/storage_model.php:213
1105
  msgid "settings succesfully restored."
1106
  msgstr "ustawienia zostały przywrócone."
1107
 
1108
+ #: ../classes/storage_model.php:229
1109
  msgid "No columns settings available."
1110
  msgstr "Brak dostępnych ustawień kolumn."
1111
 
1112
+ #: ../classes/storage_model.php:250
1113
  #, php-format
1114
  msgid "You are trying to store the same settings for %s."
1115
  msgstr "Próbujesz przywrócić te same ustawienia dla %s."
1116
 
1117
+ #: ../classes/storage_model.php:254
1118
  #, php-format
1119
  msgid "Settings for %s updated succesfully."
1120
  msgstr "Ustawienia dla %s zostały zaktualizowane."
1131
  msgid "Users"
1132
  msgstr "Użytkownicy"
1133
 
1134
+ #: ../classes/upgrade.php:62
1135
+ msgid ""
1136
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of <strong>Admin "
1137
+ "Columns Pro</strong> <a href=\"http://www.admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new features, including Direct "
1138
+ "Inline Editing!"
1139
+ msgstr ""
1140
+
1141
+ #: ../classes/upgrade.php:95
1142
  msgid "Upgrade"
1143
  msgstr "Aktualizuj"
1144
 
1145
+ #: ../classes/upgrade.php:136
1146
  msgid "requires a database upgrade"
1147
  msgstr "wymaga aktualizacji bazy danych"
1148
 
1149
+ #: ../classes/upgrade.php:139
1150
  msgid "why?"
1151
  msgstr "dlaczego?"
1152
 
1153
+ #: ../classes/upgrade.php:140
1154
  msgid "Please"
1155
  msgstr "Proszę"
1156
 
1157
+ #: ../classes/upgrade.php:141
1158
  msgid "backup your database"
1159
  msgstr "zrobić kopię zapasową bazy danych"
1160
 
1161
+ #: ../classes/upgrade.php:142
1162
  msgid "then click"
1163
  msgstr "a następnie kliknąć"
1164
 
1165
+ #: ../classes/upgrade.php:351
1166
  msgid "Migrating Column Settings"
1167
  msgstr "Migracja ustawień kolumn"
1168
 
1169
+ #: ../classes/upgrade.php:387
1170
  msgid "No Upgrade Required"
1171
  msgstr "Aktualizacja nie jest wymagana"
1172
 
1173
+ #: ../classes/upgrade.php:388
1174
  msgid "Return to welcome screen."
1175
  msgstr "Powróć do ekranu powitalnego"
1176
 
1177
+ #: ../classes/upgrade.php:406
1178
  msgid "Upgrade Complete!"
1179
  msgstr "Aktualizacja zakończona"
1180
 
1181
+ #: ../classes/upgrade.php:406
1182
  msgid "Return to settings."
1183
  msgstr "Przywróć do ustawień"
1184
 
1185
+ #: ../classes/upgrade.php:407
1186
  msgid "Error"
1187
  msgstr "Błąd"
1188
 
1189
+ #: ../classes/upgrade.php:408
1190
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1191
+ msgstr "Przykro nam, ale coś poszło źle w trakcie procesu aktualizacji. Napisz o tym na forum pomocy."
 
 
 
 
1192
 
1193
+ #: ../codepress-admin-columns.php:390
1194
  msgid "Edit columns"
1195
  msgstr "Edytuj kolumny"
languages/cpac-pt_BR.mo CHANGED
Binary file
languages/cpac-pt_BR.po CHANGED
@@ -6,350 +6,334 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
10
- "PO-Revision-Date: 2014-08-28 12:17+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
- "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
13
- "admin-columns/language/pt_BR/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: pt_BR\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
- "X-Generator: Poedit 1.6.8\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
- #: ../classes/addons.php:117
27
  msgid "Third party plugin integration"
28
  msgstr "Integração com plug-in de terceiros"
29
 
30
- #: ../classes/addons.php:142
31
  msgid "Advanced Custom Fields"
32
  msgstr "Advanced Custom Fields"
33
 
34
- #: ../classes/addons.php:143
35
- msgid ""
36
- "Display and edit Advanced Custom Fields fields in the posts overview in "
37
- "seconds!"
38
  msgstr "Exibir e editar campos do ACF na tela de posts em segundos!"
39
 
40
- #: ../classes/column.php:481
 
 
 
 
 
 
 
 
41
  msgid "Thumbnail"
42
  msgstr "Miniatura"
43
 
44
- #: ../classes/column.php:482
45
  msgid "Medium"
46
  msgstr "Médio"
47
 
48
- #: ../classes/column.php:483
49
  msgid "Large"
50
  msgstr "Grande"
51
 
52
- #: ../classes/column.php:484
53
  msgid "Full"
54
  msgstr "Original"
55
 
56
- #: ../classes/column.php:751
57
  msgid "Date Format"
58
  msgstr "Formato de Data"
59
 
60
- #: ../classes/column.php:752
61
  msgid "This will determine how the date will be displayed."
62
  msgstr "Determina como a data será mostrada"
63
 
64
- #: ../classes/column.php:758
65
  msgid "Example:"
66
  msgstr "Exemplo"
67
 
68
- #: ../classes/column.php:760
69
  #, php-format
70
- msgid ""
71
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
72
- "date format here</a>."
73
- msgstr ""
74
- "Deixe em branco para o formato padrão do Wordpress, mude o <a href=\"%s"
75
- "\">formato padrão data aqui</a>."
76
 
77
- #: ../classes/column.php:761
78
  msgid "Documentation on date and time formatting."
79
  msgstr "Documentação para formatos de data e hora"
80
 
81
- #: ../classes/column.php:775
82
  msgid "Excerpt length"
83
  msgstr "Tamanho do Resumo"
84
 
85
- #: ../classes/column.php:776
86
  msgid "Number of words"
87
  msgstr "Número de Palavras"
88
 
89
- #: ../classes/column.php:794
90
  msgid "Preview size"
91
  msgstr "Tamanho do preview"
92
 
93
- #: ../classes/column.php:811 ../classes/storage_model.php:505
94
  msgid "Custom"
95
  msgstr "Personalizado"
96
 
97
- #: ../classes/column.php:814
98
  msgid "width"
99
  msgstr "largura"
100
 
101
- #: ../classes/column.php:817
102
  msgid "height"
103
  msgstr "altura"
104
 
105
- #: ../classes/column.php:831
106
  msgid "Before"
107
  msgstr "Antes"
108
 
109
- #: ../classes/column.php:831
110
  msgid "This text will appear before the custom field value."
111
  msgstr "Este texto aparecerá antes do valor do campo personalizado."
112
 
113
- #: ../classes/column.php:837
114
  msgid "After"
115
  msgstr "Depois"
116
 
117
- #: ../classes/column.php:837
118
  msgid "This text will appear after the custom field value."
119
  msgstr "Este texto aparecerá depois do valor do campo personalizado."
120
 
121
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
122
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
123
- #: ../classes/column/user/actions.php:66
124
  msgid "Edit"
125
  msgstr "Editar"
126
 
127
- #: ../classes/column.php:927 ../classes/column.php:1005
128
- #: ../classes/column/user/actions.php:74
129
  msgid "Remove"
130
  msgstr "Remover"
131
 
132
- #: ../classes/column.php:945
133
  msgid "Type"
134
  msgstr "Tipo"
135
 
136
- #: ../classes/column.php:945
137
  msgid "Choose a column type."
138
  msgstr "Escolha um tipo."
139
 
140
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
141
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
142
- #: ../classes/column/post/ID.php:12
143
  msgid "ID"
144
  msgstr "ID"
145
 
146
- #: ../classes/column.php:955
147
  msgid "Label"
148
  msgstr "Titulo"
149
 
150
- #: ../classes/column.php:955
151
  msgid "This is the name which will appear as the column header."
152
  msgstr "Nome que aparecerá no cabeçalho da coluna."
153
 
154
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
155
  msgid "Width"
156
  msgstr "Width"
157
 
158
- #: ../classes/column.php:964 ../classes/column.php:965
159
  msgid "default"
160
  msgstr "padrão"
161
 
162
- #: ../classes/column/acf-placeholder.php:16
163
  msgid "ACF Field"
164
  msgstr "Campo do ACF"
165
 
166
  #: ../classes/column/acf-placeholder.php:32
167
- msgid "This feature is only available in Admin Columns Pro - Developer."
168
  msgstr ""
169
- "Recurso disponível somente na versão Admin de Colunas Pro - Desenvolvedor."
170
 
171
  #: ../classes/column/acf-placeholder.php:35
172
  #, php-format
173
- msgid ""
174
- "If you have a developer licence please download & install your ACF add-on "
175
- "from the <a href='%s'>add-ons tab</a>."
176
- msgstr ""
177
- "Se você tem uma licença de desenvolvedor, por favor faça o download e "
178
- "instale o add-on do ACF a partir da <a href='%s'>aba de add-ons</a>."
179
 
180
  #: ../classes/column/acf-placeholder.php:38
181
- msgid ""
182
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
183
- "integeration, allowing you to easily display and edit ACF fields from within "
184
- "your posts overview."
185
- msgstr ""
186
- "Admin de Colunas Pro - Desenvolvedor oferece uma integração completa com o "
187
- "Advanced Custom Fields, permitindo você facilmente exibir e editar campos do "
188
- "ACF direto da tela principal de posts."
189
 
190
- #: ../classes/column/acf-placeholder.php:40
191
  msgid "Find out more"
192
  msgstr "Saiba mais."
193
 
194
- #: ../classes/column/comment/actions.php:14
195
- #: ../classes/column/link/actions.php:14
196
- #: ../classes/column/media/actions.php:14
197
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
198
  msgid "Actions"
199
  msgstr "Ações"
200
 
201
- #: ../classes/column/comment/actions.php:73
202
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  msgid "Unapprove"
204
  msgstr "Desaprovar"
205
 
206
- #: ../classes/column/comment/actions.php:75
207
- #: ../classes/column/comment/actions.php:77
208
  msgid "Approve"
209
  msgstr "Aprovar"
210
 
211
- #: ../classes/column/comment/actions.php:86
212
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
213
  msgid "Restore"
214
  msgstr "Restaurar"
215
 
216
- #: ../classes/column/comment/actions.php:90
217
- #: ../classes/column/post/actions.php:66
218
  msgid "Delete Permanently"
219
  msgstr "Excluir permanentemente"
220
 
221
- #: ../classes/column/comment/actions.php:97
222
- #: ../classes/column/post/actions.php:58
223
  msgid "Quick&nbsp;Edit"
224
  msgstr "Edição&nbsp;rápida"
225
 
226
- #: ../classes/column/comment/actions.php:98
227
  msgid "Reply"
228
  msgstr "Responder"
229
 
230
- #: ../classes/column/comment/agent.php:12
231
  msgid "Agent"
232
  msgstr "Agente"
233
 
234
- #: ../classes/column/comment/approved.php:12
235
- #: ../classes/column/post/comment-count.php:31
236
  msgid "Approved"
237
  msgstr "Aprovado"
238
 
239
- #: ../classes/column/comment/author-avatar.php:12
240
  msgid "Avatar"
241
  msgstr "Avatar"
242
 
243
- #: ../classes/column/comment/author-email.php:12
244
  msgid "Author email"
245
  msgstr "Email do autor"
246
 
247
- #: ../classes/column/comment/author-ip.php:12
248
  msgid "Author IP"
249
  msgstr "IP do autor"
250
 
251
- #: ../classes/column/comment/author-url.php:12
252
  msgid "Author url"
253
  msgstr "Url do autor"
254
 
255
- #: ../classes/column/comment/author.php:12
256
  msgid "Author"
257
  msgstr "Autor"
258
 
259
- #: ../classes/column/comment/date-gmt.php:12
260
  msgid "Date GMT"
261
  msgstr "Data GMT"
262
 
263
- #: ../classes/column/comment/date-gmt.php:25
264
- #: ../classes/column/comment/date.php:25
265
  #, php-format
266
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
267
  msgstr "Enviado em <a href=\"%1$s\">%2$s às %3$s</a>"
268
 
269
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
270
- #: ../classes/settings.php:300
271
  msgid "Date"
272
  msgstr "Data"
273
 
274
- #: ../classes/column/comment/excerpt.php:13
275
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
276
- #: ../classes/settings.php:297
277
  msgid "Excerpt"
278
  msgstr "Resumo"
279
 
280
- #: ../classes/column/comment/reply-to.php:12
281
  msgid "In Reply To"
282
  msgstr "Em resposta à"
283
 
284
- #: ../classes/column/comment/word-count.php:12
285
- #: ../classes/column/post/word-count.php:12
286
  msgid "Word count"
287
  msgstr "Contador de palavras"
288
 
289
- #: ../classes/column/custom-field.php:16
290
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
291
  msgid "Custom Field"
292
  msgstr "Campo personalizado"
293
 
294
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
295
- #: ../classes/storage_model.php:504
296
  msgid "Default"
297
  msgstr "Padrão"
298
 
299
- #: ../classes/column/custom-field.php:66
300
  msgid "Checkmark (true/false)"
301
  msgstr "Checkmark (true/false)"
302
 
303
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
304
  msgid "Color"
305
  msgstr "Cor"
306
 
307
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
308
  msgid "Counter"
309
  msgstr "Contador"
310
 
311
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
312
- #: ../classes/settings.php:296
313
  msgid "Image"
314
  msgstr "Imagem"
315
 
316
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
317
  msgid "Media Library"
318
  msgstr "Biblioteca de mídia"
319
 
320
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
321
  msgid "Multiple Values"
322
  msgstr "Vários valores"
323
 
324
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
325
  msgid "Numeric"
326
  msgstr "Numerico"
327
 
328
- #: ../classes/column/custom-field.php:75
329
  msgid "Post Title (Post ID's)"
330
  msgstr "Título do Post (Post ID's)"
331
 
332
- #: ../classes/column/custom-field.php:76
333
  msgid "Username (User ID's)"
334
  msgstr "Usuário (User ID's)"
335
 
336
- #: ../classes/column/custom-field.php:384
337
  msgid "Select your custom field."
338
  msgstr "Selecione seu campo personalizado"
339
 
340
- #: ../classes/column/custom-field.php:394
341
  msgid "No custom fields available."
342
  msgstr "Nenhum campo personalizado disponível"
343
 
344
- #: ../classes/column/custom-field.php:401
345
  msgid "Field Type"
346
  msgstr "Tipo de campo"
347
 
348
- #: ../classes/column/custom-field.php:401
349
  msgid "This will determine how the value will be displayed."
350
  msgstr "Isso determinará como o valor será exibido."
351
 
352
- #: ../classes/column/link/actions.php:46
353
  #, php-format
354
  msgid ""
355
  "You are about to delete this link '%s'\n"
@@ -358,845 +342,777 @@ msgstr ""
358
  "Você está prestes a excluir este link '%s'\n"
359
  " 'Cancelar' para interromper, 'OK' para excluir."
360
 
361
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
362
  msgid "Delete"
363
  msgstr "Excluir"
364
 
365
- #: ../classes/column/link/description.php:12
366
- #: ../classes/column/media/description.php:12
367
- #: ../classes/column/user/description.php:14
368
  msgid "Description"
369
  msgstr "Descrição"
370
 
371
- #: ../classes/column/link/length.php:12
372
  msgid "Length"
373
  msgstr "Quantidade"
374
 
375
- #: ../classes/column/link/notes.php:13
376
  msgid "Notes"
377
  msgstr "Notas"
378
 
379
- #: ../classes/column/link/owner.php:12
380
  msgid "Owner"
381
  msgstr "Proprietário"
382
 
383
- #: ../classes/column/link/rss.php:12
384
  msgid "Rss"
385
  msgstr "Rss"
386
 
387
- #: ../classes/column/link/target.php:12
388
  msgid "Target"
389
  msgstr "Alvo"
390
 
391
- #: ../classes/column/media/alternate-text.php:12
392
  msgid "Alt"
393
  msgstr "Alt"
394
 
395
- #: ../classes/column/media/available-sizes.php:14
396
  msgid "Available Sizes"
397
  msgstr "Tamanhos disponíveis"
398
 
399
- #: ../classes/column/media/available-sizes.php:37
400
  msgid "full size"
401
  msgstr "Tamanho completo"
402
 
403
- #: ../classes/column/media/caption.php:12
404
- #: ../classes/column/media/exif-data.php:36
405
  msgid "Caption"
406
  msgstr "Subtítulo"
407
 
408
- #: ../classes/column/media/dimensions.php:12
409
  msgid "Dimensions"
410
  msgstr "Dimensões"
411
 
412
- #: ../classes/column/media/exif-data.php:12
413
  msgid "EXIF data"
414
  msgstr "Dados EXIF"
415
 
416
- #: ../classes/column/media/exif-data.php:33
417
  msgid "Aperture"
418
  msgstr "Abertura"
419
 
420
- #: ../classes/column/media/exif-data.php:34
421
  msgid "Credit"
422
  msgstr "Crédito"
423
 
424
- #: ../classes/column/media/exif-data.php:35
425
  msgid "Camera"
426
  msgstr "Câmera"
427
 
428
- #: ../classes/column/media/exif-data.php:37
429
  msgid "Timestamp"
430
  msgstr "Timestamp"
431
 
432
- #: ../classes/column/media/exif-data.php:38
433
  msgid "Copyright EXIF"
434
  msgstr "EXIF Copyright"
435
 
436
- #: ../classes/column/media/exif-data.php:39
437
  msgid "Focal Length"
438
  msgstr "Distância Focal"
439
 
440
- #: ../classes/column/media/exif-data.php:40
441
  msgid "ISO"
442
  msgstr "ISO"
443
 
444
- #: ../classes/column/media/exif-data.php:41
445
  msgid "Shutter Speed"
446
  msgstr "Velocidade do obturador"
447
 
448
- #: ../classes/column/media/exif-data.php:42
449
  msgid "Title"
450
  msgstr "Título"
451
 
452
- #: ../classes/column/media/file-name.php:12
453
  msgid "File name"
454
  msgstr "Nome do arquivo"
455
 
456
- #: ../classes/column/media/file-size.php:12
457
  msgid "File size"
458
  msgstr "Tamanho do arquivo"
459
 
460
- #: ../classes/column/media/full-path.php:12
461
  msgid "Full path"
462
  msgstr "Caminho completo"
463
 
464
- #: ../classes/column/media/height.php:12
465
  msgid "Height"
466
  msgstr "Altura"
467
 
468
- #: ../classes/column/media/mime-type.php:12
469
  msgid "Mime type"
470
  msgstr "Mime type"
471
 
472
- #: ../classes/column/post/actions.php:57
473
  msgid "Edit this item"
474
  msgstr "Editar este ítem"
475
 
476
- #: ../classes/column/post/actions.php:58
477
  msgid "Edit this item inline"
478
  msgstr "Editar este ítem inline"
479
 
480
- #: ../classes/column/post/actions.php:62
481
  msgid "Restore this item from the Trash"
482
  msgstr "Restaurar este ítem da Lixeira"
483
 
484
- #: ../classes/column/post/actions.php:64
485
  msgid "Move this item to the Trash"
486
  msgstr "Mover este ítem para a Lixeira"
487
 
488
- #: ../classes/column/post/actions.php:64
489
- #: ../classes/column/post/comment-count.php:34
490
- #: ../classes/column/post/status.php:38
491
  msgid "Trash"
492
  msgstr "Lixeira"
493
 
494
- #: ../classes/column/post/actions.php:66
495
  msgid "Delete this item permanently"
496
  msgstr "Excluir este ítem permanentemente"
497
 
498
- #: ../classes/column/post/actions.php:71
499
  #, php-format
500
  msgid "Preview &#8220;%s&#8221;"
501
  msgstr "Preview &#8220;%s&#8221;"
502
 
503
- #: ../classes/column/post/actions.php:71
504
  msgid "Preview"
505
  msgstr "Preview"
506
 
507
- #: ../classes/column/post/actions.php:73
508
  #, php-format
509
  msgid "View &#8220;%s&#8221;"
510
  msgstr "Visualizar &#8220;%s&#8221;"
511
 
512
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
513
  msgid "View"
514
  msgstr "Visualizar"
515
 
516
- #: ../classes/column/post/attachment-count.php:12
517
  msgid "No. of Attachments"
518
  msgstr "No. de Anexos"
519
 
520
- #: ../classes/column/post/attachment.php:12
521
  msgid "Attachment"
522
  msgstr "Anexos"
523
 
524
- #: ../classes/column/post/author-name.php:12
525
  msgid "Display Author As"
526
  msgstr "Exibir Autor Como"
527
 
528
- #: ../classes/column/post/author-name.php:34
529
  msgid "Display Name"
530
  msgstr "Exibir Nome"
531
 
532
- #: ../classes/column/post/author-name.php:35
533
  msgid "First Name"
534
  msgstr "Primeiro Nome"
535
 
536
- #: ../classes/column/post/author-name.php:36
537
  msgid "Last Name"
538
  msgstr "Sobrenome"
539
 
540
- #: ../classes/column/post/author-name.php:37
541
- #: ../classes/column/user/nickname.php:14
542
  msgid "Nickname"
543
  msgstr "Apelido"
544
 
545
- #: ../classes/column/post/author-name.php:38
546
  msgid "User Login"
547
  msgstr "Nome de Usuário"
548
 
549
- #: ../classes/column/post/author-name.php:39
550
  msgid "User Email"
551
  msgstr "Email do Usuário"
552
 
553
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
554
  msgid "User ID"
555
  msgstr "ID do Usuário"
556
 
557
- #: ../classes/column/post/author-name.php:41
558
  msgid "First and Last Name"
559
  msgstr "Nome e Sobrenome"
560
 
561
- #: ../classes/column/post/author-name.php:118
562
  msgid "This is the format of the author name."
563
  msgstr "Este é o formato do nome do autor."
564
 
565
- #: ../classes/column/post/before-moretag.php:14
566
  msgid "Before More Tag"
567
  msgstr "Antes de Mais Tag"
568
 
569
- #: ../classes/column/post/comment-count.php:14
570
  msgid "Comment count"
571
  msgstr "Contagem de Comentário"
572
 
573
- #: ../classes/column/post/comment-count.php:30
574
  msgid "Total"
575
  msgstr "Total"
576
 
577
- #: ../classes/column/post/comment-count.php:32
578
  msgid "Pending"
579
  msgstr "Pendente"
580
 
581
- #: ../classes/column/post/comment-count.php:33
582
  msgid "Spam"
583
  msgstr "Spam"
584
 
585
- #: ../classes/column/post/comment-count.php:95
586
- #: ../classes/column/post/comment-status.php:14
587
  msgid "Comment status"
588
  msgstr "Status do Comentário"
589
 
590
- #: ../classes/column/post/comment-count.php:95
591
  msgid "Select which comment status you like to display."
592
  msgstr "Selecione qual status de comentário para exibição."
593
 
594
- #: ../classes/column/post/featured-image.php:14
595
  msgid "Featured Image"
596
  msgstr "Imagem Destacada"
597
 
598
- #: ../classes/column/post/formats.php:14
599
  msgid "Post Format"
600
  msgstr "Formato do Post"
601
 
602
- #: ../classes/column/post/modified.php:14
603
  msgid "Last modified"
604
  msgstr "Última modificação"
605
 
606
- #: ../classes/column/post/order.php:14
607
  msgid "Page Order"
608
  msgstr "Ordem da Página"
609
 
610
- #: ../classes/column/post/page-template.php:12
611
  msgid "Page Template"
612
  msgstr "Template da Página"
613
 
614
- #: ../classes/column/post/parent.php:12
615
  msgid "Parent"
616
  msgstr "Pai"
617
 
618
- #: ../classes/column/post/permalink.php:12
 
 
 
 
619
  msgid "Permalink"
620
  msgstr "Permalink"
621
 
622
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
 
 
 
 
623
  msgid "Ping status"
624
  msgstr "Ping status"
625
 
626
- #: ../classes/column/post/roles.php:14
627
  msgid "Roles"
628
  msgstr "Regras"
629
 
630
- #: ../classes/column/post/slug.php:12
631
  msgid "Slug"
632
  msgstr "Slug"
633
 
634
- #: ../classes/column/post/status.php:14
635
  msgid "Status"
636
  msgstr "Status"
637
 
638
- #: ../classes/column/post/status.php:32
639
  msgid "Published"
640
  msgstr "Publicado"
641
 
642
- #: ../classes/column/post/status.php:33
643
  msgid "Draft"
644
  msgstr "Rascunho"
645
 
646
- #: ../classes/column/post/status.php:34
647
  msgid "Scheduled"
648
  msgstr "Agendado"
649
 
650
- #: ../classes/column/post/status.php:35
651
  msgid "Private"
652
  msgstr "Privado"
653
 
654
- #: ../classes/column/post/status.php:36
655
  msgid "Pending Review"
656
  msgstr "Aguardando Revisão"
657
 
658
- #: ../classes/column/post/status.php:37
659
  msgid "Auto Draft"
660
  msgstr "Rascunho Automático"
661
 
662
- #: ../classes/column/post/sticky.php:14
663
  msgid "Sticky"
664
  msgstr "Sticky"
665
 
666
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
667
  msgid "Taxonomy"
668
  msgstr "Taxonomia"
669
 
670
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
671
  msgid "Comment Count"
672
  msgstr "Contagem de Comentário"
673
 
674
- #: ../classes/column/user/first-name.php:14
675
  msgid "First name"
676
  msgstr "Primeiro nome"
677
 
678
- #: ../classes/column/user/last-name.php:14
679
  msgid "Last name"
680
  msgstr "Sobrenome"
681
 
682
- #: ../classes/column/user/post-count.php:14
683
  msgid "Post Count"
684
  msgstr "Contador de Post"
685
 
686
- #: ../classes/column/user/post-count.php:99
687
  msgid "Post Type"
688
  msgstr "Tipo de Post"
689
 
690
- #: ../classes/column/user/registered.php:14
691
  msgid "Registered"
692
  msgstr "Registrado"
693
 
694
- #: ../classes/column/user/url.php:14
695
  msgid "Url"
696
  msgstr "Url"
697
 
698
- #: ../classes/settings.php:97
699
  msgid "Add-on successfully activated."
700
  msgstr "Add-on ativado com sucesso."
701
 
702
- #: ../classes/settings.php:100
703
  msgid "Add-on successfully deactivated."
704
  msgstr "Add-on desativado com sucesso"
705
 
706
- #: ../classes/settings.php:155
707
  msgid "Admin Columns Settings"
708
  msgstr "Configurações do Admin de Colunas"
709
 
710
- #: ../classes/settings.php:155 ../classes/settings.php:619
711
- #: ../classes/upgrade.php:83
712
  msgid "Admin Columns"
713
  msgstr "Admin de Colunas"
714
 
715
- #: ../classes/settings.php:203
716
  #, php-format
717
  msgid "%s column is already present and can not be duplicated."
718
  msgstr "%s coluna já está inclusa e não pode ser duplicada."
719
 
720
- #: ../classes/settings.php:256
721
  msgid "Default settings succesfully restored."
722
  msgstr "Configurações padrão restauradas com sucesso."
723
 
724
- #: ../classes/settings.php:273
725
  msgid "Overview"
726
  msgstr "Overview"
727
 
728
- #: ../classes/settings.php:276
729
- msgid ""
730
- "This plugin is for adding and removing additional columns to the "
731
- "administration screens for post(types), pages, media library, comments, "
732
- "links and users. Change the column's label and reorder them."
733
- msgstr ""
734
- "Este plugin serve para adicionar e remover colunas extras nas telas de "
735
- "administração de posts(tipos), páginas, biblioteca de mídia, comentários, "
736
- "links e usuários. Alterar rótulo da coluna e reordená-los."
737
 
738
- #: ../classes/settings.php:279
739
  msgid "Basics"
740
  msgstr "Básicas"
741
 
742
- #: ../classes/settings.php:281
743
  msgid "Change order"
744
  msgstr "Alterar ordem"
745
 
746
- #: ../classes/settings.php:282
747
- msgid ""
748
- "By dragging the columns you can change the order which they will appear in."
749
  msgstr "Arrastando as colunas você pode alterar a ordem em que elas aparecem."
750
 
751
- #: ../classes/settings.php:283
752
  msgid "Change label"
753
  msgstr "Alterar label"
754
 
755
- #: ../classes/settings.php:284
756
- msgid ""
757
- "By clicking on the triangle you will see the column options. Here you can "
758
- "change each label of the columns heading."
759
- msgstr ""
760
- "Clicando no triângulo você verá as opções da coluna. Você pode alterar cada "
761
- "rótulo do cabeçalho das colunas."
762
 
763
- #: ../classes/settings.php:285
764
  msgid "Change column width"
765
  msgstr "Alterar tamanho da coluna"
766
 
767
- #: ../classes/settings.php:286
768
- msgid ""
769
- "By clicking on the triangle you will see the column options. By using the "
770
- "draggable slider you can set the width of the columns in percentages."
771
- msgstr ""
772
- "Clicando no triângulo você verá as opções da coluna. Usando o campo de "
773
- "slider você pode setar a largura da coluna em porcentagem."
774
 
775
- #: ../classes/settings.php:292
776
  msgid "'Custom Field' column"
777
  msgstr "Coluna 'Campo Personalizado'"
778
 
779
- #: ../classes/settings.php:293
780
- msgid ""
781
- "The custom field colum uses the custom fields from posts and users. There "
782
- "are 10 types which you can set."
783
- msgstr ""
784
- "A coluna de campo personalizado usa os campos personalizados dos posts e "
785
- "usuários. Existem 10 tipos que você pode setar."
786
 
787
- #: ../classes/settings.php:295
788
- msgid ""
789
- "Value: Can be either a string or array. Arrays will be flattened and values "
790
- "are seperated by a ',' comma."
791
- msgstr ""
792
- "Valor: Pode ser uma string ou array. Arrays serão 'flattened' e seus valores "
793
- "separados por ',' vírgula."
794
 
795
- #: ../classes/settings.php:296
796
- msgid ""
797
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
798
- "comma )."
799
- msgstr ""
800
- "Valor: deverá conter uma URL da imagem ou IDs dos Anexos ( separados por uma "
801
- "',' vírgula )."
802
 
803
- #: ../classes/settings.php:297
804
  msgid "Value: This will show the first 20 words of the Post content."
805
  msgstr "Valor: Mostrará as primeiras 20 palavras do conteúdo do Post."
806
 
807
- #: ../classes/settings.php:298
808
- msgid ""
809
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
810
- msgstr ""
811
- "Valor: Deverá ser um array. Irá 'flatten' qualquer array "
812
- "( multidimensional )."
813
 
814
- #: ../classes/settings.php:299
815
- msgid ""
816
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
817
- "for sorting, so you can sort your posts on numeric (custom field) values."
818
- msgstr ""
819
- "Valor: Apenas números inteiros.<br/>Se você tem o 'addon de ordenação' isso "
820
- "vai ser usado para classificação, de modo que você possa ordenar seus posts "
821
- "em valores numéricos (campo personalizado)."
822
 
823
- #: ../classes/settings.php:300
824
  #, php-format
825
- msgid ""
826
- "Value: Can be unix time stamp or a date format as described in the <a "
827
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
828
- "href='%s'>general settings</a> page."
829
- msgstr ""
830
- "Valor: Pode ser unix timestamp ou um formato de data como relatado no <a "
831
- "href='%s'>Codex</a>. Você pode mudar o formato de saída da data na página de "
832
- "<a href='%s'>configurações</a>."
833
 
834
- #: ../classes/settings.php:301
835
  msgid "Post Titles"
836
  msgstr "Títulos do Post"
837
 
838
- #: ../classes/settings.php:301
839
  msgid "Value: can be one or more Post ID's (seperated by ',')."
840
  msgstr "Valor: pode ser um ou mais Post ID's (separado por ',')."
841
 
842
- #: ../classes/settings.php:302
843
  msgid "Usernames"
844
  msgstr "Usuários"
845
 
846
- #: ../classes/settings.php:302
847
  msgid "Value: can be one or more User ID's (seperated by ',')."
848
  msgstr "Valor: pode ser um ou mais ID's dos Usuários (separado por ',')."
849
 
850
- #: ../classes/settings.php:303
851
  msgid "Checkmark"
852
  msgstr "Checkmark"
853
 
854
- #: ../classes/settings.php:303
855
  msgid "Value: should be a 1 (one) or 0 (zero)."
856
  msgstr "Valor: deverá ser 1 (um) u 0 (zero)."
857
 
858
- #: ../classes/settings.php:304
859
  msgid "Value: hex value color, such as #808080."
860
  msgstr "Valor: Valor hexadecimal, ex: #808080."
861
 
862
- #: ../classes/settings.php:305
863
- msgid ""
864
- "Value: Can be either a string or array. This will display a count of the "
865
- "number of times the meta key is used by the item."
866
- msgstr ""
867
- "Valor: Pode ser uma string ou array. Exibirá uma contagem do número de vezes "
868
- "que a 'meta_key' é usada pelo item."
869
 
870
- #: ../classes/settings.php:399
871
  msgid "Welcome to Admin Columns"
872
  msgstr "Bem vindo ao Admin de Colunas"
873
 
874
- #: ../classes/settings.php:402
875
  msgid "Thank you for updating to the latest version!"
876
  msgstr "Obrigado por atualizar para a última versão!"
877
 
878
- #: ../classes/settings.php:403
879
- msgid ""
880
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
881
- "like it."
882
- msgstr ""
883
- "Admin de Colunas está mais polido e divertido do que nunca. Esperamos que "
884
- "você goste."
885
 
886
- #: ../classes/settings.php:408
887
  msgid "What’s New"
888
  msgstr "O que há de novo"
889
 
890
- #: ../classes/settings.php:409
891
  msgid "Changelog"
892
  msgstr "Log de Mudanças"
893
 
894
- #: ../classes/settings.php:414
895
- msgid "Addons"
896
- msgstr "Addons"
897
-
898
- #: ../classes/settings.php:416
899
- msgid ""
900
- "Addons are now activated by downloading and installing individual plugins. "
901
- "Although these plugins will not be hosted on the wordpress.org repository, "
902
- "each Add-on will continue to receive updates in the usual way."
903
- msgstr ""
904
- "Complementos são agora ativados por download e instalação individual de "
905
- "plugins. No entanto esses plugins não será hospedados no repositório do "
906
- "wordpress.org, cada complemento continuará a receber atualizações da maneira "
907
- "usual."
908
-
909
- #: ../classes/settings.php:419
910
- msgid ""
911
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
912
- msgstr ""
913
- "Este website usa o Complemento de Ordenação/Classificação que é necessário o "
914
- "download."
915
-
916
- #: ../classes/settings.php:422
917
- msgid "Addons are seperate plugins which need to be downloaded."
918
- msgstr "Complementos são plugins separados que necessitam ser baixados."
919
-
920
- #: ../classes/settings.php:422
921
- msgid "Download your Addons"
922
- msgstr "Baixe seus Complementos"
923
-
924
- #: ../classes/settings.php:428
925
- msgid "This website does not use add-ons"
926
- msgstr "Este website não usa complementos"
927
-
928
- #: ../classes/settings.php:428
929
- msgid "See our website for Admin Columns Pro."
930
- msgstr "Veja o Admin de Colunas Pro em nosso website."
931
-
932
- #: ../classes/settings.php:435
933
  msgid "Important"
934
  msgstr "Importante"
935
 
936
- #: ../classes/settings.php:437
937
  msgid "Database Changes"
938
  msgstr "Alterações no banco de dados"
939
 
940
- #: ../classes/settings.php:438
941
- msgid ""
942
- "The database has been changed between versions 1 and 2. But we made sure you "
943
- "can still roll back to version 1x without any issues."
944
- msgstr ""
945
- "O banco de dados foi alterado entre as versões 1 e 2, mas nós temos certeza "
946
- "que você pode voltar para a versão 1x sem nenhum problema."
947
 
948
- #: ../classes/settings.php:441
949
  msgid "Make sure you backup your database and then click"
950
- msgstr ""
951
- "Verifique se você realizou o backup do banco de dados antes de continuar"
952
 
953
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
954
  msgid "Upgrade Database"
955
  msgstr "Atualização do Banco de Dados"
956
 
957
- #: ../classes/settings.php:444
958
  msgid "Potential Issues"
959
  msgstr "Potenciais Problemas"
960
 
961
- #: ../classes/settings.php:445
962
- msgid ""
963
- "Do to the sizable refactoring the code, surounding Addons and action/"
964
- "filters, your website may not operate correctly. It is important that you "
965
- "read the full"
966
- msgstr ""
967
- "Faça o refatoramento do seu código em torno dos Complementos e ação/filtros, "
968
- "seu website poderá não funcionar corretamente. É importante que você leia "
969
- "por completo"
970
 
971
- #: ../classes/settings.php:445
972
  msgid "Migrating from v1 to v2"
973
  msgstr "Migrando da v1 para v2"
974
 
975
- #: ../classes/settings.php:445
976
  msgid "guide to view the full list of changes."
977
  msgstr "Guia para visualização de todas as alterações."
978
 
979
- #: ../classes/settings.php:445
980
  #, php-format
981
- msgid ""
982
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
983
- "can fix it in the next release."
984
- msgstr ""
985
- "Ao encontrar um bug, por favor <a href=\"%s\">reporte para nós</a> para "
986
- "arrumarmos na próxima versão."
987
 
988
- #: ../classes/settings.php:448
989
  msgid "Important!"
990
  msgstr "Importante!"
991
 
992
- #: ../classes/settings.php:448
993
- msgid ""
994
- "If you updated the Admin Columns plugin without prior knowledge of such "
995
- "changes, Please roll back to the latest"
996
- msgstr ""
997
- "Se você atualizou o plugin Admin de Colunas sem o devido conhecimento das "
998
- "mudanças, por favor volte a última versão"
999
 
1000
- #: ../classes/settings.php:448
1001
  msgid "version 1"
1002
  msgstr "versão 1"
1003
 
1004
- #: ../classes/settings.php:448
1005
  msgid "of this plugin."
1006
  msgstr "deste plugin."
1007
 
1008
- #: ../classes/settings.php:454
1009
  msgid "Changelog for"
1010
  msgstr "Log de alterações para"
1011
 
1012
- #: ../classes/settings.php:469
1013
  msgid "Learn more"
1014
  msgstr "Saiba mais"
1015
 
1016
- #: ../classes/settings.php:479
1017
  msgid "Start using Admin Columns"
1018
  msgstr "Comece a usar o Admin de Colunas"
1019
 
1020
- #: ../classes/settings.php:522
1021
  msgid "General Settings"
1022
  msgstr "Configurações"
1023
 
1024
- #: ../classes/settings.php:523
1025
  msgid "Customize your Admin Columns settings."
1026
  msgstr "Customize as configurações do seu Admin de Colunas."
1027
 
1028
- #: ../classes/settings.php:546
1029
- msgid ""
1030
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1031
  msgstr ""
1032
- "Mostrar botão \"Editar Colunas\" na tela de admin. Padrão é "
1033
- "<code>desativado</code>."
1034
 
1035
- #: ../classes/settings.php:553 ../classes/settings.php:682
1036
  msgid "Save"
1037
  msgstr "Salvar"
1038
 
1039
- #: ../classes/settings.php:593
1040
  msgid "Restore Settings"
1041
  msgstr "Restaurar Configurações"
1042
 
1043
- #: ../classes/settings.php:594
1044
  msgid "This will delete all column settings and restore the default settings."
1045
- msgstr ""
1046
- "Apagará todas as configurações de colunas e restaurar a configuração padrão."
1047
 
1048
- #: ../classes/settings.php:600
1049
  msgid "Restore default settings"
1050
  msgstr "Restaurar configuração padrão"
1051
 
1052
- #: ../classes/settings.php:600
1053
- msgid ""
1054
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1055
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1056
- msgstr ""
1057
- "Atenção! Todos os dados salvos do administrador de colunas serão excluídos. "
1058
- "Isto não poderá ser desfeito. \\'OK\\' para excluir, \\'Cancelar\\' para "
1059
- "interromper"
1060
 
1061
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1062
  msgid "Settings"
1063
  msgstr "Configurações"
1064
 
1065
- #: ../classes/settings.php:621
1066
  msgid "Add-ons"
1067
  msgstr "Complementos"
1068
 
1069
- #: ../classes/settings.php:647
1070
  msgid "Posttypes"
1071
  msgstr "Tipos de Post"
1072
 
1073
- #: ../classes/settings.php:648
1074
  msgid "Others"
1075
  msgstr "Outros"
1076
 
1077
- #: ../classes/settings.php:649
1078
  msgid "Taxonomies"
1079
  msgstr "Taxonomias"
1080
 
1081
- #: ../classes/settings.php:668
1082
  #, php-format
1083
- msgid ""
1084
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1085
- "be edited in the admin panel."
1086
- msgstr ""
1087
- "As colunas para <strong>%s</strong> são setadas via PHP e portanto não podem "
1088
- "ser editadas pelo admin"
1089
 
1090
- #: ../classes/settings.php:678
1091
  msgid "Store settings"
1092
  msgstr "Configurações armazenadas"
1093
 
1094
- #: ../classes/settings.php:682
1095
  msgid "Update"
1096
  msgstr "Atualização"
1097
 
1098
- #: ../classes/settings.php:686
1099
  #, php-format
1100
- msgid ""
1101
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1102
- "\\' to delete, \\'Cancel\\' to stop"
1103
- msgstr ""
1104
- "Atenção! Dados das colunas %s serão excluídos. Isto não poderá ser desfeito. "
1105
- "\\'OK\\' para excluir, \\'Cancelar\\' para interromper"
1106
 
1107
- #: ../classes/settings.php:687
1108
  msgid "columns"
1109
  msgstr "colunas"
1110
 
1111
- #: ../classes/settings.php:701
1112
  msgid "Get Admin Columns Pro"
1113
  msgstr "Obter Admin de Colunas Pro"
1114
 
1115
- #: ../classes/settings.php:705
1116
  msgid "Add Sorting"
1117
  msgstr "Adicionar Classificação"
1118
 
1119
- #: ../classes/settings.php:706
1120
  msgid "Add Filtering"
1121
  msgstr "Adicionar Filtragem"
1122
 
1123
- #: ../classes/settings.php:707
1124
  msgid "Add Import/Export"
1125
  msgstr "Adicionar Importar/Exportar"
1126
 
1127
- #: ../classes/settings.php:708
1128
  msgid "Add Direct Editing"
1129
  msgstr "Adicionar Edição Direta"
1130
 
1131
- #: ../classes/settings.php:711
1132
  #, php-format
1133
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1134
  msgstr "Confira <a href=\"%s\">Admin de Colunas Pro</a> para mais detalhes!"
1135
 
 
 
 
 
 
 
 
 
 
 
 
 
1136
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1137
  msgid "Support"
1138
  msgstr "Suporte"
1139
 
1140
- #: ../classes/settings.php:745
1141
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1142
- msgstr ""
1143
- "Confira a seção de <strong>Ajuda</strong> no canto superior direito da tela."
1144
 
1145
- #: ../classes/settings.php:748
1146
  #, php-format
1147
- msgid ""
1148
- "For full documentation, bug reports, feature suggestions and other tips <a "
1149
- "href='%s'>visit the Admin Columns website</a>"
1150
- msgstr ""
1151
- "Para a documentação completa, reportação de bugs, sugestões de recursos e "
1152
- "outras dicas <a href='%s'>visite o site do Admin de Colunas</a>"
1153
 
1154
- #: ../classes/settings.php:777
1155
  msgid "Drag and drop to reorder"
1156
  msgstr "Arrastar e solte para reordenar"
1157
 
1158
- #: ../classes/settings.php:780
1159
  msgid "Add Column"
1160
  msgstr "Adicionar Coluna"
1161
 
1162
- #: ../classes/settings.php:853
1163
  msgid "Active"
1164
  msgstr "Ativar"
1165
 
1166
- #: ../classes/settings.php:854
1167
  msgid "Deactivate"
1168
  msgstr "Desativar"
1169
 
1170
- #: ../classes/settings.php:861
1171
  msgid "Installed"
1172
  msgstr "Instalado"
1173
 
1174
- #: ../classes/settings.php:862
1175
  msgid "Activate"
1176
  msgstr "Ativado"
1177
 
1178
- #: ../classes/settings.php:876
1179
  msgid "Download & Install"
1180
  msgstr "Baixar & Instalar"
1181
 
1182
- #: ../classes/settings.php:881
1183
  msgid "Get this add-on"
1184
  msgstr "Obter este complemento"
1185
 
1186
- #: ../classes/storage_model.php:207
1187
  msgid "settings succesfully restored."
1188
  msgstr "Configurações foram restauradas com sucesso."
1189
 
1190
- #: ../classes/storage_model.php:222
1191
  msgid "No columns settings available."
1192
  msgstr "Nenhuma configuração de colunas disponível."
1193
 
1194
- #: ../classes/storage_model.php:243
1195
  #, php-format
1196
  msgid "You are trying to store the same settings for %s."
1197
  msgstr "Você está tentando armazenar a mesma configuração para %s."
1198
 
1199
- #: ../classes/storage_model.php:247
1200
  #, php-format
1201
  msgid "Settings for %s updated succesfully."
1202
  msgstr "Configurações para %s atualizadas com sucesso."
@@ -1213,62 +1129,64 @@ msgstr "Links"
1213
  msgid "Users"
1214
  msgstr "Usuários"
1215
 
1216
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
1217
  msgid "Upgrade"
1218
  msgstr "Atualização"
1219
 
1220
- #: ../classes/upgrade.php:84
1221
  msgid "requires a database upgrade"
1222
  msgstr "exige um upgrade no banco de dados"
1223
 
1224
- #: ../classes/upgrade.php:87
1225
  msgid "why?"
1226
  msgstr "Por que?"
1227
 
1228
- #: ../classes/upgrade.php:88
1229
  msgid "Please"
1230
  msgstr "Por favor"
1231
 
1232
- #: ../classes/upgrade.php:89
1233
  msgid "backup your database"
1234
  msgstr "Faça o backup do seu banco de dados"
1235
 
1236
- #: ../classes/upgrade.php:90
1237
  msgid "then click"
1238
  msgstr "e clique"
1239
 
1240
- #: ../classes/upgrade.php:298
1241
  msgid "Migrating Column Settings"
1242
  msgstr "Migrando as Configurações de Coluna"
1243
 
1244
- #: ../classes/upgrade.php:334
1245
  msgid "No Upgrade Required"
1246
  msgstr "Não é necessária a atualização"
1247
 
1248
- #: ../classes/upgrade.php:335
1249
  msgid "Return to welcome screen."
1250
  msgstr "Retornar para a tela de bem-vindo."
1251
 
1252
- #: ../classes/upgrade.php:353
1253
  msgid "Upgrade Complete!"
1254
  msgstr "Atualização Completa!"
1255
 
1256
- #: ../classes/upgrade.php:353
1257
  msgid "Return to settings."
1258
  msgstr "Retornar para configuração"
1259
 
1260
- #: ../classes/upgrade.php:354
1261
  msgid "Error"
1262
  msgstr "Erro"
1263
 
1264
- #: ../classes/upgrade.php:355
1265
- msgid ""
1266
- "Sorry. Something went wrong during the upgrade process. Please report this "
1267
- "on the support forum."
1268
- msgstr ""
1269
- "Desculpe. Alguma coisa aconteceu durante o processo de atualização. Por "
1270
- "favor reporte no fórum de suporte."
1271
 
1272
- #: ../codepress-admin-columns.php:439
1273
  msgid "Edit columns"
1274
  msgstr "Editar Colunas"
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
10
+ "PO-Revision-Date: 2014-12-10 17:24+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
+ "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/admin-columns/language/pt_BR/)\n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: pt_BR\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
+ "X-Generator: Poedit 1.7.1\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
+ #: ../classes/addons.php:110
26
  msgid "Third party plugin integration"
27
  msgstr "Integração com plug-in de terceiros"
28
 
29
+ #: ../classes/addons.php:135
30
  msgid "Advanced Custom Fields"
31
  msgstr "Advanced Custom Fields"
32
 
33
+ #: ../classes/addons.php:136
34
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
 
 
35
  msgstr "Exibir e editar campos do ACF na tela de posts em segundos!"
36
 
37
+ #: ../classes/addons.php:141
38
+ msgid "WooCommerce"
39
+ msgstr ""
40
+
41
+ #: ../classes/addons.php:142
42
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
43
+ msgstr ""
44
+
45
+ #: ../classes/column.php:500
46
  msgid "Thumbnail"
47
  msgstr "Miniatura"
48
 
49
+ #: ../classes/column.php:501
50
  msgid "Medium"
51
  msgstr "Médio"
52
 
53
+ #: ../classes/column.php:502
54
  msgid "Large"
55
  msgstr "Grande"
56
 
57
+ #: ../classes/column.php:503
58
  msgid "Full"
59
  msgstr "Original"
60
 
61
+ #: ../classes/column.php:863
62
  msgid "Date Format"
63
  msgstr "Formato de Data"
64
 
65
+ #: ../classes/column.php:864
66
  msgid "This will determine how the date will be displayed."
67
  msgstr "Determina como a data será mostrada"
68
 
69
+ #: ../classes/column.php:870
70
  msgid "Example:"
71
  msgstr "Exemplo"
72
 
73
+ #: ../classes/column.php:872
74
  #, php-format
75
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
76
+ msgstr "Deixe em branco para o formato padrão do Wordpress, mude o <a href=\"%s\">formato padrão data aqui</a>."
 
 
 
 
77
 
78
+ #: ../classes/column.php:873
79
  msgid "Documentation on date and time formatting."
80
  msgstr "Documentação para formatos de data e hora"
81
 
82
+ #: ../classes/column.php:887
83
  msgid "Excerpt length"
84
  msgstr "Tamanho do Resumo"
85
 
86
+ #: ../classes/column.php:888
87
  msgid "Number of words"
88
  msgstr "Número de Palavras"
89
 
90
+ #: ../classes/column.php:906
91
  msgid "Preview size"
92
  msgstr "Tamanho do preview"
93
 
94
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
95
  msgid "Custom"
96
  msgstr "Personalizado"
97
 
98
+ #: ../classes/column.php:926
99
  msgid "width"
100
  msgstr "largura"
101
 
102
+ #: ../classes/column.php:929
103
  msgid "height"
104
  msgstr "altura"
105
 
106
+ #: ../classes/column.php:943
107
  msgid "Before"
108
  msgstr "Antes"
109
 
110
+ #: ../classes/column.php:943
111
  msgid "This text will appear before the custom field value."
112
  msgstr "Este texto aparecerá antes do valor do campo personalizado."
113
 
114
+ #: ../classes/column.php:949
115
  msgid "After"
116
  msgstr "Depois"
117
 
118
+ #: ../classes/column.php:949
119
  msgid "This text will appear after the custom field value."
120
  msgstr "Este texto aparecerá depois do valor do campo personalizado."
121
 
122
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
 
 
123
  msgid "Edit"
124
  msgstr "Editar"
125
 
126
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
127
  msgid "Remove"
128
  msgstr "Remover"
129
 
130
+ #: ../classes/column.php:1062
131
  msgid "Type"
132
  msgstr "Tipo"
133
 
134
+ #: ../classes/column.php:1062
135
  msgid "Choose a column type."
136
  msgstr "Escolha um tipo."
137
 
138
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
139
  msgid "ID"
140
  msgstr "ID"
141
 
142
+ #: ../classes/column.php:1072
143
  msgid "Label"
144
  msgstr "Titulo"
145
 
146
+ #: ../classes/column.php:1072
147
  msgid "This is the name which will appear as the column header."
148
  msgstr "Nome que aparecerá no cabeçalho da coluna."
149
 
150
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
151
  msgid "Width"
152
  msgstr "Width"
153
 
154
+ #: ../classes/column.php:1081 ../classes/column.php:1082
155
  msgid "default"
156
  msgstr "padrão"
157
 
158
+ #: ../classes/column/acf-placeholder.php:19
159
  msgid "ACF Field"
160
  msgstr "Campo do ACF"
161
 
162
  #: ../classes/column/acf-placeholder.php:32
163
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
164
  msgstr ""
 
165
 
166
  #: ../classes/column/acf-placeholder.php:35
167
  #, php-format
168
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
169
+ msgstr "Se você tem uma licença de desenvolvedor, por favor faça o download e instale o add-on do ACF a partir da <a href='%s'>aba de add-ons</a>."
 
 
 
 
170
 
171
  #: ../classes/column/acf-placeholder.php:38
172
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
173
+ msgstr "Admin de Colunas Pro - Desenvolvedor oferece uma integração completa com o Advanced Custom Fields, permitindo você facilmente exibir e editar campos do ACF direto da tela principal de posts."
 
 
 
 
 
 
174
 
175
+ #: ../classes/column/acf-placeholder.php:44
176
  msgid "Find out more"
177
  msgstr "Saiba mais."
178
 
179
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20 ../classes/column/user/actions.php:19
 
 
 
180
  msgid "Actions"
181
  msgstr "Ações"
182
 
183
+ #: ../classes/column/actions.php:87
184
+ msgid "Use icons?"
185
+ msgstr ""
186
+
187
+ #: ../classes/column/actions.php:87
188
+ msgid "Use icons instead of text for displaying the actions."
189
+ msgstr ""
190
+
191
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
192
+ msgid "Yes"
193
+ msgstr ""
194
+
195
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
196
+ msgid "No"
197
+ msgstr ""
198
+
199
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
200
  msgid "Unapprove"
201
  msgstr "Desaprovar"
202
 
203
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
204
  msgid "Approve"
205
  msgstr "Aprovar"
206
 
207
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
208
  msgid "Restore"
209
  msgstr "Restaurar"
210
 
211
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
212
  msgid "Delete Permanently"
213
  msgstr "Excluir permanentemente"
214
 
215
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
216
  msgid "Quick&nbsp;Edit"
217
  msgstr "Edição&nbsp;rápida"
218
 
219
+ #: ../classes/column/comment/actions.php:101
220
  msgid "Reply"
221
  msgstr "Responder"
222
 
223
+ #: ../classes/column/comment/agent.php:19
224
  msgid "Agent"
225
  msgstr "Agente"
226
 
227
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
228
  msgid "Approved"
229
  msgstr "Aprovado"
230
 
231
+ #: ../classes/column/comment/author-avatar.php:19
232
  msgid "Avatar"
233
  msgstr "Avatar"
234
 
235
+ #: ../classes/column/comment/author-email.php:19
236
  msgid "Author email"
237
  msgstr "Email do autor"
238
 
239
+ #: ../classes/column/comment/author-ip.php:19
240
  msgid "Author IP"
241
  msgstr "IP do autor"
242
 
243
+ #: ../classes/column/comment/author-url.php:19
244
  msgid "Author url"
245
  msgstr "Url do autor"
246
 
247
+ #: ../classes/column/comment/author.php:19
248
  msgid "Author"
249
  msgstr "Autor"
250
 
251
+ #: ../classes/column/comment/date-gmt.php:19
252
  msgid "Date GMT"
253
  msgstr "Data GMT"
254
 
255
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
256
  #, php-format
257
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
258
  msgstr "Enviado em <a href=\"%1$s\">%2$s às %3$s</a>"
259
 
260
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
261
  msgid "Date"
262
  msgstr "Data"
263
 
264
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
265
  msgid "Excerpt"
266
  msgstr "Resumo"
267
 
268
+ #: ../classes/column/comment/reply-to.php:19
269
  msgid "In Reply To"
270
  msgstr "Em resposta à"
271
 
272
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
273
  msgid "Word count"
274
  msgstr "Contador de palavras"
275
 
276
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
277
  msgid "Custom Field"
278
  msgstr "Campo personalizado"
279
 
280
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
281
  msgid "Default"
282
  msgstr "Padrão"
283
 
284
+ #: ../classes/column/custom-field.php:95
285
  msgid "Checkmark (true/false)"
286
  msgstr "Checkmark (true/false)"
287
 
288
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
289
  msgid "Color"
290
  msgstr "Cor"
291
 
292
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
293
  msgid "Counter"
294
  msgstr "Contador"
295
 
296
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
297
  msgid "Image"
298
  msgstr "Imagem"
299
 
300
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
301
  msgid "Media Library"
302
  msgstr "Biblioteca de mídia"
303
 
304
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
305
  msgid "Multiple Values"
306
  msgstr "Vários valores"
307
 
308
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
309
  msgid "Numeric"
310
  msgstr "Numerico"
311
 
312
+ #: ../classes/column/custom-field.php:104
313
  msgid "Post Title (Post ID's)"
314
  msgstr "Título do Post (Post ID's)"
315
 
316
+ #: ../classes/column/custom-field.php:105
317
  msgid "Username (User ID's)"
318
  msgstr "Usuário (User ID's)"
319
 
320
+ #: ../classes/column/custom-field.php:356
321
  msgid "Select your custom field."
322
  msgstr "Selecione seu campo personalizado"
323
 
324
+ #: ../classes/column/custom-field.php:366
325
  msgid "No custom fields available."
326
  msgstr "Nenhum campo personalizado disponível"
327
 
328
+ #: ../classes/column/custom-field.php:373
329
  msgid "Field Type"
330
  msgstr "Tipo de campo"
331
 
332
+ #: ../classes/column/custom-field.php:373
333
  msgid "This will determine how the value will be displayed."
334
  msgstr "Isso determinará como o valor será exibido."
335
 
336
+ #: ../classes/column/link/actions.php:49
337
  #, php-format
338
  msgid ""
339
  "You are about to delete this link '%s'\n"
342
  "Você está prestes a excluir este link '%s'\n"
343
  " 'Cancelar' para interromper, 'OK' para excluir."
344
 
345
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
346
  msgid "Delete"
347
  msgstr "Excluir"
348
 
349
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
350
  msgid "Description"
351
  msgstr "Descrição"
352
 
353
+ #: ../classes/column/link/length.php:19
354
  msgid "Length"
355
  msgstr "Quantidade"
356
 
357
+ #: ../classes/column/link/notes.php:19
358
  msgid "Notes"
359
  msgstr "Notas"
360
 
361
+ #: ../classes/column/link/owner.php:19
362
  msgid "Owner"
363
  msgstr "Proprietário"
364
 
365
+ #: ../classes/column/link/rss.php:19
366
  msgid "Rss"
367
  msgstr "Rss"
368
 
369
+ #: ../classes/column/link/target.php:19
370
  msgid "Target"
371
  msgstr "Alvo"
372
 
373
+ #: ../classes/column/media/alternate-text.php:19
374
  msgid "Alt"
375
  msgstr "Alt"
376
 
377
+ #: ../classes/column/media/available-sizes.php:20
378
  msgid "Available Sizes"
379
  msgstr "Tamanhos disponíveis"
380
 
381
+ #: ../classes/column/media/available-sizes.php:40
382
  msgid "full size"
383
  msgstr "Tamanho completo"
384
 
385
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
386
  msgid "Caption"
387
  msgstr "Subtítulo"
388
 
389
+ #: ../classes/column/media/dimensions.php:19
390
  msgid "Dimensions"
391
  msgstr "Dimensões"
392
 
393
+ #: ../classes/column/media/exif-data.php:19
394
  msgid "EXIF data"
395
  msgstr "Dados EXIF"
396
 
397
+ #: ../classes/column/media/exif-data.php:38
398
  msgid "Aperture"
399
  msgstr "Abertura"
400
 
401
+ #: ../classes/column/media/exif-data.php:39
402
  msgid "Credit"
403
  msgstr "Crédito"
404
 
405
+ #: ../classes/column/media/exif-data.php:40
406
  msgid "Camera"
407
  msgstr "Câmera"
408
 
409
+ #: ../classes/column/media/exif-data.php:42
410
  msgid "Timestamp"
411
  msgstr "Timestamp"
412
 
413
+ #: ../classes/column/media/exif-data.php:43
414
  msgid "Copyright EXIF"
415
  msgstr "EXIF Copyright"
416
 
417
+ #: ../classes/column/media/exif-data.php:44
418
  msgid "Focal Length"
419
  msgstr "Distância Focal"
420
 
421
+ #: ../classes/column/media/exif-data.php:45
422
  msgid "ISO"
423
  msgstr "ISO"
424
 
425
+ #: ../classes/column/media/exif-data.php:46
426
  msgid "Shutter Speed"
427
  msgstr "Velocidade do obturador"
428
 
429
+ #: ../classes/column/media/exif-data.php:47
430
  msgid "Title"
431
  msgstr "Título"
432
 
433
+ #: ../classes/column/media/file-name.php:19
434
  msgid "File name"
435
  msgstr "Nome do arquivo"
436
 
437
+ #: ../classes/column/media/file-size.php:19
438
  msgid "File size"
439
  msgstr "Tamanho do arquivo"
440
 
441
+ #: ../classes/column/media/full-path.php:19
442
  msgid "Full path"
443
  msgstr "Caminho completo"
444
 
445
+ #: ../classes/column/media/height.php:19
446
  msgid "Height"
447
  msgstr "Altura"
448
 
449
+ #: ../classes/column/media/mime-type.php:19
450
  msgid "Mime type"
451
  msgstr "Mime type"
452
 
453
+ #: ../classes/column/post/actions.php:31
454
  msgid "Edit this item"
455
  msgstr "Editar este ítem"
456
 
457
+ #: ../classes/column/post/actions.php:34
458
  msgid "Edit this item inline"
459
  msgstr "Editar este ítem inline"
460
 
461
+ #: ../classes/column/post/actions.php:39
462
  msgid "Restore this item from the Trash"
463
  msgstr "Restaurar este ítem da Lixeira"
464
 
465
+ #: ../classes/column/post/actions.php:41
466
  msgid "Move this item to the Trash"
467
  msgstr "Mover este ítem para a Lixeira"
468
 
469
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
470
  msgid "Trash"
471
  msgstr "Lixeira"
472
 
473
+ #: ../classes/column/post/actions.php:43
474
  msgid "Delete this item permanently"
475
  msgstr "Excluir este ítem permanentemente"
476
 
477
+ #: ../classes/column/post/actions.php:48
478
  #, php-format
479
  msgid "Preview &#8220;%s&#8221;"
480
  msgstr "Preview &#8220;%s&#8221;"
481
 
482
+ #: ../classes/column/post/actions.php:48
483
  msgid "Preview"
484
  msgstr "Preview"
485
 
486
+ #: ../classes/column/post/actions.php:50
487
  #, php-format
488
  msgid "View &#8220;%s&#8221;"
489
  msgstr "Visualizar &#8220;%s&#8221;"
490
 
491
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
492
  msgid "View"
493
  msgstr "Visualizar"
494
 
495
+ #: ../classes/column/post/attachment-count.php:19
496
  msgid "No. of Attachments"
497
  msgstr "No. de Anexos"
498
 
499
+ #: ../classes/column/post/attachment.php:19
500
  msgid "Attachment"
501
  msgstr "Anexos"
502
 
503
+ #: ../classes/column/post/author-name.php:20
504
  msgid "Display Author As"
505
  msgstr "Exibir Autor Como"
506
 
507
+ #: ../classes/column/post/author-name.php:40
508
  msgid "Display Name"
509
  msgstr "Exibir Nome"
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
  msgid "First Name"
513
  msgstr "Primeiro Nome"
514
 
515
+ #: ../classes/column/post/author-name.php:42
516
  msgid "Last Name"
517
  msgstr "Sobrenome"
518
 
519
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
520
  msgid "Nickname"
521
  msgstr "Apelido"
522
 
523
+ #: ../classes/column/post/author-name.php:44
524
  msgid "User Login"
525
  msgstr "Nome de Usuário"
526
 
527
+ #: ../classes/column/post/author-name.php:45
528
  msgid "User Email"
529
  msgstr "Email do Usuário"
530
 
531
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
532
  msgid "User ID"
533
  msgstr "ID do Usuário"
534
 
535
+ #: ../classes/column/post/author-name.php:47
536
  msgid "First and Last Name"
537
  msgstr "Nome e Sobrenome"
538
 
539
+ #: ../classes/column/post/author-name.php:124
540
  msgid "This is the format of the author name."
541
  msgstr "Este é o formato do nome do autor."
542
 
543
+ #: ../classes/column/post/before-moretag.php:19
544
  msgid "Before More Tag"
545
  msgstr "Antes de Mais Tag"
546
 
547
+ #: ../classes/column/post/comment-count.php:20
548
  msgid "Comment count"
549
  msgstr "Contagem de Comentário"
550
 
551
+ #: ../classes/column/post/comment-count.php:34
552
  msgid "Total"
553
  msgstr "Total"
554
 
555
+ #: ../classes/column/post/comment-count.php:36
556
  msgid "Pending"
557
  msgstr "Pendente"
558
 
559
+ #: ../classes/column/post/comment-count.php:37
560
  msgid "Spam"
561
  msgstr "Spam"
562
 
563
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
564
  msgid "Comment status"
565
  msgstr "Status do Comentário"
566
 
567
+ #: ../classes/column/post/comment-count.php:99
568
  msgid "Select which comment status you like to display."
569
  msgstr "Selecione qual status de comentário para exibição."
570
 
571
+ #: ../classes/column/post/featured-image.php:19
572
  msgid "Featured Image"
573
  msgstr "Imagem Destacada"
574
 
575
+ #: ../classes/column/post/formats.php:19
576
  msgid "Post Format"
577
  msgstr "Formato do Post"
578
 
579
+ #: ../classes/column/post/modified.php:19
580
  msgid "Last modified"
581
  msgstr "Última modificação"
582
 
583
+ #: ../classes/column/post/order.php:19
584
  msgid "Page Order"
585
  msgstr "Ordem da Página"
586
 
587
+ #: ../classes/column/post/page-template.php:19
588
  msgid "Page Template"
589
  msgstr "Template da Página"
590
 
591
+ #: ../classes/column/post/parent.php:19
592
  msgid "Parent"
593
  msgstr "Pai"
594
 
595
+ #: ../classes/column/post/path.php:19
596
+ msgid "Path"
597
+ msgstr ""
598
+
599
+ #: ../classes/column/post/permalink.php:19
600
  msgid "Permalink"
601
  msgstr "Permalink"
602
 
603
+ #: ../classes/column/post/permalink.php:68
604
+ msgid "Link to post"
605
+ msgstr ""
606
+
607
+ #: ../classes/column/post/permalink.php:68
608
+ msgid "This will make the permalink clickable."
609
+ msgstr ""
610
+
611
+ #: ../classes/column/post/ping-status.php:19
612
  msgid "Ping status"
613
  msgstr "Ping status"
614
 
615
+ #: ../classes/column/post/roles.php:19
616
  msgid "Roles"
617
  msgstr "Regras"
618
 
619
+ #: ../classes/column/post/slug.php:19
620
  msgid "Slug"
621
  msgstr "Slug"
622
 
623
+ #: ../classes/column/post/status.php:19
624
  msgid "Status"
625
  msgstr "Status"
626
 
627
+ #: ../classes/column/post/status.php:29
628
  msgid "Published"
629
  msgstr "Publicado"
630
 
631
+ #: ../classes/column/post/status.php:30
632
  msgid "Draft"
633
  msgstr "Rascunho"
634
 
635
+ #: ../classes/column/post/status.php:31
636
  msgid "Scheduled"
637
  msgstr "Agendado"
638
 
639
+ #: ../classes/column/post/status.php:32
640
  msgid "Private"
641
  msgstr "Privado"
642
 
643
+ #: ../classes/column/post/status.php:33
644
  msgid "Pending Review"
645
  msgstr "Aguardando Revisão"
646
 
647
+ #: ../classes/column/post/status.php:34
648
  msgid "Auto Draft"
649
  msgstr "Rascunho Automático"
650
 
651
+ #: ../classes/column/post/sticky.php:19
652
  msgid "Sticky"
653
  msgstr "Sticky"
654
 
655
+ #: ../classes/column/post/title-raw.php:19
656
+ msgid "Title without actions"
657
+ msgstr ""
658
+
659
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
660
  msgid "Taxonomy"
661
  msgstr "Taxonomia"
662
 
663
+ #: ../classes/column/used-by-menu.php:20
664
+ msgid "Used by Menu"
665
+ msgstr ""
666
+
667
+ #: ../classes/column/used-by-menu.php:133
668
+ msgid "Link to menu"
669
+ msgstr ""
670
+
671
+ #: ../classes/column/used-by-menu.php:133
672
+ msgid "This will make the title link to the menu."
673
+ msgstr ""
674
+
675
+ #: ../classes/column/user/comment-count.php:19
676
  msgid "Comment Count"
677
  msgstr "Contagem de Comentário"
678
 
679
+ #: ../classes/column/user/first-name.php:19
680
  msgid "First name"
681
  msgstr "Primeiro nome"
682
 
683
+ #: ../classes/column/user/last-name.php:19
684
  msgid "Last name"
685
  msgstr "Sobrenome"
686
 
687
+ #: ../classes/column/user/post-count.php:19
688
  msgid "Post Count"
689
  msgstr "Contador de Post"
690
 
691
+ #: ../classes/column/user/post-count.php:102
692
  msgid "Post Type"
693
  msgstr "Tipo de Post"
694
 
695
+ #: ../classes/column/user/registered.php:19
696
  msgid "Registered"
697
  msgstr "Registrado"
698
 
699
+ #: ../classes/column/user/url.php:19
700
  msgid "Url"
701
  msgstr "Url"
702
 
703
+ #: ../classes/settings.php:111
704
  msgid "Add-on successfully activated."
705
  msgstr "Add-on ativado com sucesso."
706
 
707
+ #: ../classes/settings.php:114
708
  msgid "Add-on successfully deactivated."
709
  msgstr "Add-on desativado com sucesso"
710
 
711
+ #: ../classes/settings.php:169
712
  msgid "Admin Columns Settings"
713
  msgstr "Configurações do Admin de Colunas"
714
 
715
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
716
  msgid "Admin Columns"
717
  msgstr "Admin de Colunas"
718
 
719
+ #: ../classes/settings.php:217
720
  #, php-format
721
  msgid "%s column is already present and can not be duplicated."
722
  msgstr "%s coluna já está inclusa e não pode ser duplicada."
723
 
724
+ #: ../classes/settings.php:271
725
  msgid "Default settings succesfully restored."
726
  msgstr "Configurações padrão restauradas com sucesso."
727
 
728
+ #: ../classes/settings.php:288
729
  msgid "Overview"
730
  msgstr "Overview"
731
 
732
+ #: ../classes/settings.php:291
733
+ msgid "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
734
+ msgstr "Este plugin serve para adicionar e remover colunas extras nas telas de administração de posts(tipos), páginas, biblioteca de mídia, comentários, links e usuários. Alterar rótulo da coluna e reordená-los."
 
 
 
 
 
 
735
 
736
+ #: ../classes/settings.php:294
737
  msgid "Basics"
738
  msgstr "Básicas"
739
 
740
+ #: ../classes/settings.php:296
741
  msgid "Change order"
742
  msgstr "Alterar ordem"
743
 
744
+ #: ../classes/settings.php:297
745
+ msgid "By dragging the columns you can change the order which they will appear in."
 
746
  msgstr "Arrastando as colunas você pode alterar a ordem em que elas aparecem."
747
 
748
+ #: ../classes/settings.php:298
749
  msgid "Change label"
750
  msgstr "Alterar label"
751
 
752
+ #: ../classes/settings.php:299
753
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
754
+ msgstr "Clicando no triângulo você verá as opções da coluna. Você pode alterar cada rótulo do cabeçalho das colunas."
 
 
 
 
755
 
756
+ #: ../classes/settings.php:300
757
  msgid "Change column width"
758
  msgstr "Alterar tamanho da coluna"
759
 
760
+ #: ../classes/settings.php:301
761
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
762
+ msgstr "Clicando no triângulo você verá as opções da coluna. Usando o campo de slider você pode setar a largura da coluna em porcentagem."
 
 
 
 
763
 
764
+ #: ../classes/settings.php:307
765
  msgid "'Custom Field' column"
766
  msgstr "Coluna 'Campo Personalizado'"
767
 
768
+ #: ../classes/settings.php:308
769
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
770
+ msgstr "A coluna de campo personalizado usa os campos personalizados dos posts e usuários. Existem 10 tipos que você pode setar."
 
 
 
 
771
 
772
+ #: ../classes/settings.php:310
773
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
774
+ msgstr "Valor: Pode ser uma string ou array. Arrays serão 'flattened' e seus valores separados por ',' vírgula."
 
 
 
 
775
 
776
+ #: ../classes/settings.php:311
777
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
778
+ msgstr "Valor: deverá conter uma URL da imagem ou IDs dos Anexos ( separados por uma ',' vírgula )."
 
 
 
 
779
 
780
+ #: ../classes/settings.php:312
781
  msgid "Value: This will show the first 20 words of the Post content."
782
  msgstr "Valor: Mostrará as primeiras 20 palavras do conteúdo do Post."
783
 
784
+ #: ../classes/settings.php:313
785
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
786
+ msgstr "Valor: Deverá ser um array. Irá 'flatten' qualquer array ( multidimensional )."
 
 
 
787
 
788
+ #: ../classes/settings.php:314
789
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
790
+ msgstr "Valor: Apenas números inteiros.<br/>Se você tem o 'addon de ordenação' isso vai ser usado para classificação, de modo que você possa ordenar seus posts em valores numéricos (campo personalizado)."
 
 
 
 
 
791
 
792
+ #: ../classes/settings.php:315
793
  #, php-format
794
+ msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
795
+ msgstr "Valor: Pode ser unix timestamp ou um formato de data como relatado no <a href='%s'>Codex</a>. Você pode mudar o formato de saída da data na página de <a href='%s'>configurações</a>."
 
 
 
 
 
 
796
 
797
+ #: ../classes/settings.php:316
798
  msgid "Post Titles"
799
  msgstr "Títulos do Post"
800
 
801
+ #: ../classes/settings.php:316
802
  msgid "Value: can be one or more Post ID's (seperated by ',')."
803
  msgstr "Valor: pode ser um ou mais Post ID's (separado por ',')."
804
 
805
+ #: ../classes/settings.php:317
806
  msgid "Usernames"
807
  msgstr "Usuários"
808
 
809
+ #: ../classes/settings.php:317
810
  msgid "Value: can be one or more User ID's (seperated by ',')."
811
  msgstr "Valor: pode ser um ou mais ID's dos Usuários (separado por ',')."
812
 
813
+ #: ../classes/settings.php:318
814
  msgid "Checkmark"
815
  msgstr "Checkmark"
816
 
817
+ #: ../classes/settings.php:318
818
  msgid "Value: should be a 1 (one) or 0 (zero)."
819
  msgstr "Valor: deverá ser 1 (um) u 0 (zero)."
820
 
821
+ #: ../classes/settings.php:319
822
  msgid "Value: hex value color, such as #808080."
823
  msgstr "Valor: Valor hexadecimal, ex: #808080."
824
 
825
+ #: ../classes/settings.php:320
826
+ msgid "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."
827
+ msgstr "Valor: Pode ser uma string ou array. Exibirá uma contagem do número de vezes que a 'meta_key' é usada pelo item."
 
 
 
 
828
 
829
+ #: ../classes/settings.php:409
830
  msgid "Welcome to Admin Columns"
831
  msgstr "Bem vindo ao Admin de Colunas"
832
 
833
+ #: ../classes/settings.php:412
834
  msgid "Thank you for updating to the latest version!"
835
  msgstr "Obrigado por atualizar para a última versão!"
836
 
837
+ #: ../classes/settings.php:413
838
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
839
+ msgstr "Admin de Colunas está mais polido e divertido do que nunca. Esperamos que você goste."
 
 
 
 
840
 
841
+ #: ../classes/settings.php:418
842
  msgid "What’s New"
843
  msgstr "O que há de novo"
844
 
845
+ #: ../classes/settings.php:419
846
  msgid "Changelog"
847
  msgstr "Log de Mudanças"
848
 
849
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
850
  msgid "Important"
851
  msgstr "Importante"
852
 
853
+ #: ../classes/settings.php:426
854
  msgid "Database Changes"
855
  msgstr "Alterações no banco de dados"
856
 
857
+ #: ../classes/settings.php:427
858
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
859
+ msgstr "O banco de dados foi alterado entre as versões 1 e 2, mas nós temos certeza que você pode voltar para a versão 1x sem nenhum problema."
 
 
 
 
860
 
861
+ #: ../classes/settings.php:430
862
  msgid "Make sure you backup your database and then click"
863
+ msgstr "Verifique se você realizou o backup do banco de dados antes de continuar"
 
864
 
865
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
866
  msgid "Upgrade Database"
867
  msgstr "Atualização do Banco de Dados"
868
 
869
+ #: ../classes/settings.php:433
870
  msgid "Potential Issues"
871
  msgstr "Potenciais Problemas"
872
 
873
+ #: ../classes/settings.php:434
874
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
875
+ msgstr "Faça o refatoramento do seu código em torno dos Complementos e ação/filtros, seu website poderá não funcionar corretamente. É importante que você leia por completo"
 
 
 
 
 
 
876
 
877
+ #: ../classes/settings.php:434
878
  msgid "Migrating from v1 to v2"
879
  msgstr "Migrando da v1 para v2"
880
 
881
+ #: ../classes/settings.php:434
882
  msgid "guide to view the full list of changes."
883
  msgstr "Guia para visualização de todas as alterações."
884
 
885
+ #: ../classes/settings.php:434
886
  #, php-format
887
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
888
+ msgstr "Ao encontrar um bug, por favor <a href=\"%s\">reporte para nós</a> para arrumarmos na próxima versão."
 
 
 
 
889
 
890
+ #: ../classes/settings.php:437
891
  msgid "Important!"
892
  msgstr "Importante!"
893
 
894
+ #: ../classes/settings.php:437
895
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
896
+ msgstr "Se você atualizou o plugin Admin de Colunas sem o devido conhecimento das mudanças, por favor volte a última versão"
 
 
 
 
897
 
898
+ #: ../classes/settings.php:437
899
  msgid "version 1"
900
  msgstr "versão 1"
901
 
902
+ #: ../classes/settings.php:437
903
  msgid "of this plugin."
904
  msgstr "deste plugin."
905
 
906
+ #: ../classes/settings.php:443
907
  msgid "Changelog for"
908
  msgstr "Log de alterações para"
909
 
910
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
911
  msgid "Learn more"
912
  msgstr "Saiba mais"
913
 
914
+ #: ../classes/settings.php:468
915
  msgid "Start using Admin Columns"
916
  msgstr "Comece a usar o Admin de Colunas"
917
 
918
+ #: ../classes/settings.php:511
919
  msgid "General Settings"
920
  msgstr "Configurações"
921
 
922
+ #: ../classes/settings.php:512
923
  msgid "Customize your Admin Columns settings."
924
  msgstr "Customize as configurações do seu Admin de Colunas."
925
 
926
+ #: ../classes/settings.php:523
927
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
 
928
  msgstr ""
 
 
929
 
930
+ #: ../classes/settings.php:530 ../classes/settings.php:660
931
  msgid "Save"
932
  msgstr "Salvar"
933
 
934
+ #: ../classes/settings.php:570
935
  msgid "Restore Settings"
936
  msgstr "Restaurar Configurações"
937
 
938
+ #: ../classes/settings.php:571
939
  msgid "This will delete all column settings and restore the default settings."
940
+ msgstr "Apagará todas as configurações de colunas e restaurar a configuração padrão."
 
941
 
942
+ #: ../classes/settings.php:577
943
  msgid "Restore default settings"
944
  msgstr "Restaurar configuração padrão"
945
 
946
+ #: ../classes/settings.php:577
947
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
948
+ msgstr "Atenção! Todos os dados salvos do administrador de colunas serão excluídos. Isto não poderá ser desfeito. \\'OK\\' para excluir, \\'Cancelar\\' para interromper"
 
 
 
 
 
949
 
950
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
951
  msgid "Settings"
952
  msgstr "Configurações"
953
 
954
+ #: ../classes/settings.php:600
955
  msgid "Add-ons"
956
  msgstr "Complementos"
957
 
958
+ #: ../classes/settings.php:625
959
  msgid "Posttypes"
960
  msgstr "Tipos de Post"
961
 
962
+ #: ../classes/settings.php:626
963
  msgid "Others"
964
  msgstr "Outros"
965
 
966
+ #: ../classes/settings.php:627
967
  msgid "Taxonomies"
968
  msgstr "Taxonomias"
969
 
970
+ #: ../classes/settings.php:646
971
  #, php-format
972
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
973
+ msgstr "As colunas para <strong>%s</strong> são setadas via PHP e portanto não podem ser editadas pelo admin"
 
 
 
 
974
 
975
+ #: ../classes/settings.php:656
976
  msgid "Store settings"
977
  msgstr "Configurações armazenadas"
978
 
979
+ #: ../classes/settings.php:660
980
  msgid "Update"
981
  msgstr "Atualização"
982
 
983
+ #: ../classes/settings.php:664
984
  #, php-format
985
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
986
+ msgstr "Atenção! Dados das colunas %s serão excluídos. Isto não poderá ser desfeito. \\'OK\\' para excluir, \\'Cancelar\\' para interromper"
 
 
 
 
987
 
988
+ #: ../classes/settings.php:665
989
  msgid "columns"
990
  msgstr "colunas"
991
 
992
+ #: ../classes/settings.php:684
993
  msgid "Get Admin Columns Pro"
994
  msgstr "Obter Admin de Colunas Pro"
995
 
996
+ #: ../classes/settings.php:688
997
  msgid "Add Sorting"
998
  msgstr "Adicionar Classificação"
999
 
1000
+ #: ../classes/settings.php:689
1001
  msgid "Add Filtering"
1002
  msgstr "Adicionar Filtragem"
1003
 
1004
+ #: ../classes/settings.php:690
1005
  msgid "Add Import/Export"
1006
  msgstr "Adicionar Importar/Exportar"
1007
 
1008
+ #: ../classes/settings.php:691
1009
  msgid "Add Direct Editing"
1010
  msgstr "Adicionar Edição Direta"
1011
 
1012
+ #: ../classes/settings.php:694
1013
  #, php-format
1014
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1015
  msgstr "Confira <a href=\"%s\">Admin de Colunas Pro</a> para mais detalhes!"
1016
 
1017
+ #: ../classes/settings.php:725
1018
+ msgid "Are you happy with Admin Columns?"
1019
+ msgstr ""
1020
+
1021
+ #: ../classes/settings.php:733
1022
+ msgid "What's wrong? Need help? Let us know!"
1023
+ msgstr ""
1024
+
1025
+ #: ../classes/settings.php:734
1026
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1027
+ msgstr ""
1028
+
1029
  #: ../classes/settings.php:742
1030
+ msgid "Docs"
1031
+ msgstr ""
1032
+
1033
+ #: ../classes/settings.php:747
1034
+ msgid "Forums"
1035
+ msgstr ""
1036
+
1037
+ #: ../classes/settings.php:756
1038
+ msgid "Woohoo! We're glad to hear that!"
1039
+ msgstr ""
1040
+
1041
+ #: ../classes/settings.php:757
1042
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1043
+ msgstr ""
1044
+
1045
+ #: ../classes/settings.php:761
1046
+ msgid "Rate"
1047
+ msgstr ""
1048
+
1049
+ #: ../classes/settings.php:772
1050
+ msgid "Tweet"
1051
+ msgstr ""
1052
+
1053
+ #: ../classes/settings.php:782
1054
+ msgid "Buy Pro"
1055
+ msgstr ""
1056
+
1057
+ #: ../classes/settings.php:794
1058
  msgid "Support"
1059
  msgstr "Suporte"
1060
 
1061
+ #: ../classes/settings.php:797
1062
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1063
+ msgstr "Confira a seção de <strong>Ajuda</strong> no canto superior direito da tela."
 
1064
 
1065
+ #: ../classes/settings.php:800
1066
  #, php-format
1067
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1068
+ msgstr "Para a documentação completa, reportação de bugs, sugestões de recursos e outras dicas <a href='%s'>visite o site do Admin de Colunas</a>"
 
 
 
 
1069
 
1070
+ #: ../classes/settings.php:829
1071
  msgid "Drag and drop to reorder"
1072
  msgstr "Arrastar e solte para reordenar"
1073
 
1074
+ #: ../classes/settings.php:832
1075
  msgid "Add Column"
1076
  msgstr "Adicionar Coluna"
1077
 
1078
+ #: ../classes/settings.php:908
1079
  msgid "Active"
1080
  msgstr "Ativar"
1081
 
1082
+ #: ../classes/settings.php:909
1083
  msgid "Deactivate"
1084
  msgstr "Desativar"
1085
 
1086
+ #: ../classes/settings.php:916
1087
  msgid "Installed"
1088
  msgstr "Instalado"
1089
 
1090
+ #: ../classes/settings.php:917
1091
  msgid "Activate"
1092
  msgstr "Ativado"
1093
 
1094
+ #: ../classes/settings.php:931
1095
  msgid "Download & Install"
1096
  msgstr "Baixar & Instalar"
1097
 
1098
+ #: ../classes/settings.php:936
1099
  msgid "Get this add-on"
1100
  msgstr "Obter este complemento"
1101
 
1102
+ #: ../classes/storage_model.php:213
1103
  msgid "settings succesfully restored."
1104
  msgstr "Configurações foram restauradas com sucesso."
1105
 
1106
+ #: ../classes/storage_model.php:229
1107
  msgid "No columns settings available."
1108
  msgstr "Nenhuma configuração de colunas disponível."
1109
 
1110
+ #: ../classes/storage_model.php:250
1111
  #, php-format
1112
  msgid "You are trying to store the same settings for %s."
1113
  msgstr "Você está tentando armazenar a mesma configuração para %s."
1114
 
1115
+ #: ../classes/storage_model.php:254
1116
  #, php-format
1117
  msgid "Settings for %s updated succesfully."
1118
  msgstr "Configurações para %s atualizadas com sucesso."
1129
  msgid "Users"
1130
  msgstr "Usuários"
1131
 
1132
+ #: ../classes/upgrade.php:62
1133
+ msgid ""
1134
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of <strong>Admin Columns Pro</strong> <a "
1135
+ "href=\"http://www.admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new features, including Direct Inline Editing!"
1136
+ msgstr ""
1137
+
1138
+ #: ../classes/upgrade.php:95
1139
  msgid "Upgrade"
1140
  msgstr "Atualização"
1141
 
1142
+ #: ../classes/upgrade.php:136
1143
  msgid "requires a database upgrade"
1144
  msgstr "exige um upgrade no banco de dados"
1145
 
1146
+ #: ../classes/upgrade.php:139
1147
  msgid "why?"
1148
  msgstr "Por que?"
1149
 
1150
+ #: ../classes/upgrade.php:140
1151
  msgid "Please"
1152
  msgstr "Por favor"
1153
 
1154
+ #: ../classes/upgrade.php:141
1155
  msgid "backup your database"
1156
  msgstr "Faça o backup do seu banco de dados"
1157
 
1158
+ #: ../classes/upgrade.php:142
1159
  msgid "then click"
1160
  msgstr "e clique"
1161
 
1162
+ #: ../classes/upgrade.php:351
1163
  msgid "Migrating Column Settings"
1164
  msgstr "Migrando as Configurações de Coluna"
1165
 
1166
+ #: ../classes/upgrade.php:387
1167
  msgid "No Upgrade Required"
1168
  msgstr "Não é necessária a atualização"
1169
 
1170
+ #: ../classes/upgrade.php:388
1171
  msgid "Return to welcome screen."
1172
  msgstr "Retornar para a tela de bem-vindo."
1173
 
1174
+ #: ../classes/upgrade.php:406
1175
  msgid "Upgrade Complete!"
1176
  msgstr "Atualização Completa!"
1177
 
1178
+ #: ../classes/upgrade.php:406
1179
  msgid "Return to settings."
1180
  msgstr "Retornar para configuração"
1181
 
1182
+ #: ../classes/upgrade.php:407
1183
  msgid "Error"
1184
  msgstr "Erro"
1185
 
1186
+ #: ../classes/upgrade.php:408
1187
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1188
+ msgstr "Desculpe. Alguma coisa aconteceu durante o processo de atualização. Por favor reporte no fórum de suporte."
 
 
 
 
1189
 
1190
+ #: ../codepress-admin-columns.php:390
1191
  msgid "Edit columns"
1192
  msgstr "Editar Colunas"
languages/cpac-ru_RU.mo CHANGED
Binary file
languages/cpac-ru_RU.po CHANGED
@@ -4,352 +4,334 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Admin Columns\n"
6
  "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
8
- "PO-Revision-Date: 2014-06-23 11:48+0100\n"
9
  "Last-Translator: Codepress <info@codepress.nl>\n"
10
- "Language-Team: Russian (http://www.transifex.com/projects/p/admin-columns/"
11
- "language/ru/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: ru\n"
16
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
17
- "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18
- "X-Generator: Poedit 1.6.5\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../classes/addons.php:117
26
  msgid "Third party plugin integration"
27
  msgstr "Интеграция плагина третьей стороной"
28
 
29
- #: ../classes/addons.php:142
30
  msgid "Advanced Custom Fields"
31
  msgstr "Advanced Custom Fields"
32
 
33
- #: ../classes/addons.php:143
34
- msgid ""
35
- "Display and edit Advanced Custom Fields fields in the posts overview in "
36
- "seconds!"
 
 
 
 
 
 
37
  msgstr ""
38
- "Показать и изменить поля Advanced Custom Fields в обзорах записей в "
39
- "считанные секунды!"
40
 
41
- #: ../classes/column.php:481
42
  msgid "Thumbnail"
43
  msgstr "Миниатюра"
44
 
45
- #: ../classes/column.php:482
46
  msgid "Medium"
47
  msgstr "Средний"
48
 
49
- #: ../classes/column.php:483
50
  msgid "Large"
51
  msgstr "Большой"
52
 
53
- #: ../classes/column.php:484
54
  msgid "Full"
55
  msgstr "Полный"
56
 
57
- #: ../classes/column.php:751
58
  msgid "Date Format"
59
  msgstr "Формат даты"
60
 
61
- #: ../classes/column.php:752
62
  msgid "This will determine how the date will be displayed."
63
  msgstr "Это определяет отображение даты."
64
 
65
- #: ../classes/column.php:758
66
  msgid "Example:"
67
  msgstr "Пример:"
68
 
69
- #: ../classes/column.php:760
70
  #, php-format
71
- msgid ""
72
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
73
- "date format here</a>."
74
- msgstr ""
75
- "Оставьте пустым для формата даты WordPress, измените <a href=\"%s\">default "
76
- "date format here</a>."
77
 
78
- #: ../classes/column.php:761
79
  msgid "Documentation on date and time formatting."
80
  msgstr "Документация по форматированию даты и времени."
81
 
82
- #: ../classes/column.php:775
83
  msgid "Excerpt length"
84
  msgstr "Длина отрывка"
85
 
86
- #: ../classes/column.php:776
87
  msgid "Number of words"
88
  msgstr "Количество слов"
89
 
90
- #: ../classes/column.php:794
91
  msgid "Preview size"
92
  msgstr "Размер просмотра"
93
 
94
- #: ../classes/column.php:811 ../classes/storage_model.php:505
95
  msgid "Custom"
96
  msgstr "Пользовательский"
97
 
98
- #: ../classes/column.php:814
99
  msgid "width"
100
  msgstr "ширина"
101
 
102
- #: ../classes/column.php:817
103
  msgid "height"
104
  msgstr "высота"
105
 
106
- #: ../classes/column.php:831
107
  msgid "Before"
108
  msgstr "Перед"
109
 
110
- #: ../classes/column.php:831
111
  msgid "This text will appear before the custom field value."
112
  msgstr "Этот текст появится перед значением настраиваемого поля."
113
 
114
- #: ../classes/column.php:837
115
  msgid "After"
116
  msgstr "После"
117
 
118
- #: ../classes/column.php:837
119
  msgid "This text will appear after the custom field value."
120
  msgstr "Этот текст появится перед значением настраиваемого поля."
121
 
122
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
123
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
124
- #: ../classes/column/user/actions.php:66
125
  msgid "Edit"
126
  msgstr "Редактировать"
127
 
128
- #: ../classes/column.php:927 ../classes/column.php:1005
129
- #: ../classes/column/user/actions.php:74
130
  msgid "Remove"
131
  msgstr "Удалить"
132
 
133
- #: ../classes/column.php:945
134
  msgid "Type"
135
  msgstr "Тип"
136
 
137
- #: ../classes/column.php:945
138
  msgid "Choose a column type."
139
  msgstr "Выбрать тип колонки"
140
 
141
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
142
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
143
- #: ../classes/column/post/ID.php:12
144
  msgid "ID"
145
  msgstr "ID"
146
 
147
- #: ../classes/column.php:955
148
  msgid "Label"
149
  msgstr "Метка"
150
 
151
- #: ../classes/column.php:955
152
  msgid "This is the name which will appear as the column header."
153
  msgstr "Это имя, которое будет отображаться в качестве заголовка столбца."
154
 
155
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
156
  msgid "Width"
157
  msgstr "Ширина"
158
 
159
- #: ../classes/column.php:964 ../classes/column.php:965
160
  msgid "default"
161
  msgstr "по умолчанию"
162
 
163
- #: ../classes/column/acf-placeholder.php:16
164
  msgid "ACF Field"
165
  msgstr "Поле ACF"
166
 
167
  #: ../classes/column/acf-placeholder.php:32
168
- msgid "This feature is only available in Admin Columns Pro - Developer."
169
- msgstr "Эта функция доступна только для разработчиков в Admin Columns Pro."
170
 
171
  #: ../classes/column/acf-placeholder.php:35
172
  #, php-format
173
- msgid ""
174
- "If you have a developer licence please download & install your ACF add-on "
175
- "from the <a href='%s'>add-ons tab</a>."
176
- msgstr ""
177
- "Если Вы имеете лицензию разработчика, пожалуйста, загрузите и утановите Ваш "
178
- "ACF add-on по ссылке <a href='%s'>add-ons tab</a>."
179
 
180
  #: ../classes/column/acf-placeholder.php:38
181
- msgid ""
182
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
183
- "integeration, allowing you to easily display and edit ACF fields from within "
184
- "your posts overview."
185
- msgstr ""
186
- "Admin Columns Pro - Разработчик предлагает полную интеграцию Advanced Custom "
187
- "Fields, что позволяет легко просматривать и редактировать ACF поля из вашего "
188
- "обзора сообщений."
189
 
190
- #: ../classes/column/acf-placeholder.php:40
191
  msgid "Find out more"
192
  msgstr "Узнайте больше"
193
 
194
- #: ../classes/column/comment/actions.php:14
195
- #: ../classes/column/link/actions.php:14
196
- #: ../classes/column/media/actions.php:14
197
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
198
  msgid "Actions"
199
  msgstr "действия"
200
 
201
- #: ../classes/column/comment/actions.php:73
202
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  msgid "Unapprove"
204
  msgstr "Отклонить"
205
 
206
- #: ../classes/column/comment/actions.php:75
207
- #: ../classes/column/comment/actions.php:77
208
  msgid "Approve"
209
  msgstr "Утвердить"
210
 
211
- #: ../classes/column/comment/actions.php:86
212
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
213
  msgid "Restore"
214
  msgstr "Восстановить"
215
 
216
- #: ../classes/column/comment/actions.php:90
217
- #: ../classes/column/post/actions.php:66
218
  msgid "Delete Permanently"
219
  msgstr "Удалить полностью"
220
 
221
- #: ../classes/column/comment/actions.php:97
222
- #: ../classes/column/post/actions.php:58
223
  msgid "Quick&nbsp;Edit"
224
  msgstr "Quick&nbsp;Edit"
225
 
226
- #: ../classes/column/comment/actions.php:98
227
  msgid "Reply"
228
  msgstr "Ответить"
229
 
230
- #: ../classes/column/comment/agent.php:12
231
  msgid "Agent"
232
  msgstr "Агент"
233
 
234
- #: ../classes/column/comment/approved.php:12
235
- #: ../classes/column/post/comment-count.php:31
236
  msgid "Approved"
237
  msgstr "Утверждено"
238
 
239
- #: ../classes/column/comment/author-avatar.php:12
240
  msgid "Avatar"
241
  msgstr "Аватар"
242
 
243
- #: ../classes/column/comment/author-email.php:12
244
  msgid "Author email"
245
  msgstr "Email автора"
246
 
247
- #: ../classes/column/comment/author-ip.php:12
248
  msgid "Author IP"
249
  msgstr "IP автора"
250
 
251
- #: ../classes/column/comment/author-url.php:12
252
  msgid "Author url"
253
  msgstr "URL автора"
254
 
255
- #: ../classes/column/comment/author.php:12
256
  msgid "Author"
257
  msgstr "Автор"
258
 
259
- #: ../classes/column/comment/date-gmt.php:12
260
  msgid "Date GMT"
261
  msgstr "Дата GMT"
262
 
263
- #: ../classes/column/comment/date-gmt.php:25
264
- #: ../classes/column/comment/date.php:25
265
  #, php-format
266
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
267
  msgstr "Подтверждено на <a href=\"%1$s\">%2$s at %3$s</a>"
268
 
269
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
270
- #: ../classes/settings.php:300
271
  msgid "Date"
272
  msgstr "Дата"
273
 
274
- #: ../classes/column/comment/excerpt.php:13
275
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
276
- #: ../classes/settings.php:297
277
  msgid "Excerpt"
278
  msgstr "Отрывок"
279
 
280
- #: ../classes/column/comment/reply-to.php:12
281
  msgid "In Reply To"
282
  msgstr "В ответ на"
283
 
284
- #: ../classes/column/comment/word-count.php:12
285
- #: ../classes/column/post/word-count.php:12
286
  msgid "Word count"
287
  msgstr "Счетчик слов"
288
 
289
- #: ../classes/column/custom-field.php:16
290
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
291
  msgid "Custom Field"
292
  msgstr "Пользовательское поле"
293
 
294
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
295
- #: ../classes/storage_model.php:504
296
  msgid "Default"
297
  msgstr "По умолчанию"
298
 
299
- #: ../classes/column/custom-field.php:66
300
  msgid "Checkmark (true/false)"
301
  msgstr "Галочка (true/false)"
302
 
303
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
304
  msgid "Color"
305
  msgstr "Цвет"
306
 
307
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
308
  msgid "Counter"
309
  msgstr "Счетчик"
310
 
311
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
312
- #: ../classes/settings.php:296
313
  msgid "Image"
314
  msgstr "Изображение"
315
 
316
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
317
  msgid "Media Library"
318
  msgstr "Медиа библиотека"
319
 
320
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
321
  msgid "Multiple Values"
322
  msgstr "Несколько значений"
323
 
324
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
325
  msgid "Numeric"
326
  msgstr "Числовой"
327
 
328
- #: ../classes/column/custom-field.php:75
329
  msgid "Post Title (Post ID's)"
330
  msgstr "Заголовок поста (Post ID's)"
331
 
332
- #: ../classes/column/custom-field.php:76
333
  msgid "Username (User ID's)"
334
  msgstr "Имя пользователя (User ID's)"
335
 
336
- #: ../classes/column/custom-field.php:384
337
  msgid "Select your custom field."
338
  msgstr "Выберитрать пользовательское поле."
339
 
340
- #: ../classes/column/custom-field.php:394
341
  msgid "No custom fields available."
342
  msgstr "Нет доступных пользовательских полей."
343
 
344
- #: ../classes/column/custom-field.php:401
345
  msgid "Field Type"
346
  msgstr "Тип поля"
347
 
348
- #: ../classes/column/custom-field.php:401
349
  msgid "This will determine how the value will be displayed."
350
  msgstr "От этого будет зависеть, как будет отображаться значение."
351
 
352
- #: ../classes/column/link/actions.php:46
353
  #, php-format
354
  msgid ""
355
  "You are about to delete this link '%s'\n"
@@ -358,841 +340,777 @@ msgstr ""
358
  "Вы собираетесь удалить эту ссылку '%s'\n"
359
  " 'Cancel' для отмены, 'OK' для удаления."
360
 
361
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
362
  msgid "Delete"
363
  msgstr "Удалить"
364
 
365
- #: ../classes/column/link/description.php:12
366
- #: ../classes/column/media/description.php:12
367
- #: ../classes/column/user/description.php:14
368
  msgid "Description"
369
  msgstr "Описание"
370
 
371
- #: ../classes/column/link/length.php:12
372
  msgid "Length"
373
  msgstr "Длина"
374
 
375
- #: ../classes/column/link/notes.php:13
376
  msgid "Notes"
377
  msgstr "Примечания"
378
 
379
- #: ../classes/column/link/owner.php:12
380
  msgid "Owner"
381
  msgstr "Владелец"
382
 
383
- #: ../classes/column/link/rss.php:12
384
  msgid "Rss"
385
  msgstr "RSS"
386
 
387
- #: ../classes/column/link/target.php:12
388
  msgid "Target"
389
  msgstr "Цель"
390
 
391
- #: ../classes/column/media/alternate-text.php:12
392
  msgid "Alt"
393
  msgstr "Вариант"
394
 
395
- #: ../classes/column/media/available-sizes.php:14
396
  msgid "Available Sizes"
397
  msgstr "Доступные размеры"
398
 
399
- #: ../classes/column/media/available-sizes.php:37
400
  msgid "full size"
401
  msgstr "полный размер"
402
 
403
- #: ../classes/column/media/caption.php:12
404
- #: ../classes/column/media/exif-data.php:36
405
  msgid "Caption"
406
  msgstr "Подпись"
407
 
408
- #: ../classes/column/media/dimensions.php:12
409
  msgid "Dimensions"
410
  msgstr "Размеры"
411
 
412
- #: ../classes/column/media/exif-data.php:12
413
  msgid "EXIF data"
414
  msgstr "EXIF данные"
415
 
416
- #: ../classes/column/media/exif-data.php:33
417
  msgid "Aperture"
418
  msgstr "Апертура"
419
 
420
- #: ../classes/column/media/exif-data.php:34
421
  msgid "Credit"
422
  msgstr "Кредит"
423
 
424
- #: ../classes/column/media/exif-data.php:35
425
  msgid "Camera"
426
  msgstr "Камера"
427
 
428
- #: ../classes/column/media/exif-data.php:37
429
  msgid "Timestamp"
430
  msgstr "Временной штамп"
431
 
432
- #: ../classes/column/media/exif-data.php:38
433
  msgid "Copyright EXIF"
434
  msgstr "Copyright EXIF"
435
 
436
- #: ../classes/column/media/exif-data.php:39
437
  msgid "Focal Length"
438
  msgstr "Фокусное расстояние"
439
 
440
- #: ../classes/column/media/exif-data.php:40
441
  msgid "ISO"
442
  msgstr "ISO"
443
 
444
- #: ../classes/column/media/exif-data.php:41
445
  msgid "Shutter Speed"
446
  msgstr "Скорость затвора"
447
 
448
- #: ../classes/column/media/exif-data.php:42
449
  msgid "Title"
450
  msgstr "Заголовок"
451
 
452
- #: ../classes/column/media/file-name.php:12
453
  msgid "File name"
454
  msgstr "Имя файла"
455
 
456
- #: ../classes/column/media/file-size.php:12
457
  msgid "File size"
458
  msgstr "Размер файла"
459
 
460
- #: ../classes/column/media/full-path.php:12
461
  msgid "Full path"
462
  msgstr "Полный путь"
463
 
464
- #: ../classes/column/media/height.php:12
465
  msgid "Height"
466
  msgstr "Высота"
467
 
468
- #: ../classes/column/media/mime-type.php:12
469
  msgid "Mime type"
470
  msgstr "MIME тип"
471
 
472
- #: ../classes/column/post/actions.php:57
473
  msgid "Edit this item"
474
  msgstr "Редактировать этот объект"
475
 
476
- #: ../classes/column/post/actions.php:58
477
  msgid "Edit this item inline"
478
  msgstr "Редактировать этот объект инлайн"
479
 
480
- #: ../classes/column/post/actions.php:62
481
  msgid "Restore this item from the Trash"
482
  msgstr "Восстановить этот объект из корзины"
483
 
484
- #: ../classes/column/post/actions.php:64
485
  msgid "Move this item to the Trash"
486
  msgstr "Перенести этот объект в корзину"
487
 
488
- #: ../classes/column/post/actions.php:64
489
- #: ../classes/column/post/comment-count.php:34
490
- #: ../classes/column/post/status.php:38
491
  msgid "Trash"
492
  msgstr "Корзина"
493
 
494
- #: ../classes/column/post/actions.php:66
495
  msgid "Delete this item permanently"
496
  msgstr "Удалить этот объект окончательно"
497
 
498
- #: ../classes/column/post/actions.php:71
499
  #, php-format
500
  msgid "Preview &#8220;%s&#8221;"
501
  msgstr "Просмотр &#8220;%s&#8221;"
502
 
503
- #: ../classes/column/post/actions.php:71
504
  msgid "Preview"
505
  msgstr "Просмотр"
506
 
507
- #: ../classes/column/post/actions.php:73
508
  #, php-format
509
  msgid "View &#8220;%s&#8221;"
510
  msgstr "Смотреть &#8220;%s&#8221;"
511
 
512
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
513
  msgid "View"
514
  msgstr "Смотреть"
515
 
516
- #: ../classes/column/post/attachment-count.php:12
517
  msgid "No. of Attachments"
518
  msgstr "Кол-во приложений"
519
 
520
- #: ../classes/column/post/attachment.php:12
521
  msgid "Attachment"
522
  msgstr "Приложение"
523
 
524
- #: ../classes/column/post/author-name.php:12
525
  msgid "Display Author As"
526
  msgstr "Показать автора как"
527
 
528
- #: ../classes/column/post/author-name.php:34
529
  msgid "Display Name"
530
  msgstr "Отображаемое имя"
531
 
532
- #: ../classes/column/post/author-name.php:35
533
  msgid "First Name"
534
  msgstr "Имя"
535
 
536
- #: ../classes/column/post/author-name.php:36
537
  msgid "Last Name"
538
  msgstr "Фамилия"
539
 
540
- #: ../classes/column/post/author-name.php:37
541
- #: ../classes/column/user/nickname.php:14
542
  msgid "Nickname"
543
  msgstr "Ник"
544
 
545
- #: ../classes/column/post/author-name.php:38
546
  msgid "User Login"
547
  msgstr "Логин пользователя"
548
 
549
- #: ../classes/column/post/author-name.php:39
550
  msgid "User Email"
551
  msgstr "Email пользователя"
552
 
553
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
554
  msgid "User ID"
555
  msgstr "ID пользователя"
556
 
557
- #: ../classes/column/post/author-name.php:41
558
  msgid "First and Last Name"
559
  msgstr "Имя и Фамилия"
560
 
561
- #: ../classes/column/post/author-name.php:118
562
  msgid "This is the format of the author name."
563
  msgstr "Формат имени автора."
564
 
565
- #: ../classes/column/post/before-moretag.php:14
566
  msgid "Before More Tag"
567
  msgstr "Перед тэгом \"Подробнее\""
568
 
569
- #: ../classes/column/post/comment-count.php:14
570
  msgid "Comment count"
571
  msgstr "Счетчик комментариев"
572
 
573
- #: ../classes/column/post/comment-count.php:30
574
  msgid "Total"
575
  msgstr "Всего"
576
 
577
- #: ../classes/column/post/comment-count.php:32
578
  msgid "Pending"
579
  msgstr "В ожидании"
580
 
581
- #: ../classes/column/post/comment-count.php:33
582
  msgid "Spam"
583
  msgstr "Спам"
584
 
585
- #: ../classes/column/post/comment-count.php:95
586
- #: ../classes/column/post/comment-status.php:14
587
  msgid "Comment status"
588
  msgstr "Статус комментария"
589
 
590
- #: ../classes/column/post/comment-count.php:95
591
  msgid "Select which comment status you like to display."
592
  msgstr "Выберите статус комментария для отображения."
593
 
594
- #: ../classes/column/post/featured-image.php:14
595
  msgid "Featured Image"
596
  msgstr "Рекомендуемые изображения"
597
 
598
- #: ../classes/column/post/formats.php:14
599
  msgid "Post Format"
600
  msgstr "Формат сообщения"
601
 
602
- #: ../classes/column/post/modified.php:14
603
  msgid "Last modified"
604
  msgstr "Изменен"
605
 
606
- #: ../classes/column/post/order.php:14
607
  msgid "Page Order"
608
  msgstr "Порядок страницы"
609
 
610
- #: ../classes/column/post/page-template.php:12
611
  msgid "Page Template"
612
  msgstr "Шаблон страницы"
613
 
614
- #: ../classes/column/post/parent.php:12
615
  msgid "Parent"
616
  msgstr "Родитель"
617
 
618
- #: ../classes/column/post/permalink.php:12
 
 
 
 
619
  msgid "Permalink"
620
  msgstr "Постоянная ссылка"
621
 
622
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
 
 
 
 
623
  msgid "Ping status"
624
  msgstr "Ping статус"
625
 
626
- #: ../classes/column/post/roles.php:14
627
  msgid "Roles"
628
  msgstr "Роли"
629
 
630
- #: ../classes/column/post/slug.php:12
631
  msgid "Slug"
632
  msgstr "Ссылка"
633
 
634
- #: ../classes/column/post/status.php:14
635
  msgid "Status"
636
  msgstr "Статус"
637
 
638
- #: ../classes/column/post/status.php:32
639
  msgid "Published"
640
  msgstr "Опубликовано"
641
 
642
- #: ../classes/column/post/status.php:33
643
  msgid "Draft"
644
  msgstr "Черновик"
645
 
646
- #: ../classes/column/post/status.php:34
647
  msgid "Scheduled"
648
  msgstr "Запланировано"
649
 
650
- #: ../classes/column/post/status.php:35
651
  msgid "Private"
652
  msgstr "Приватно"
653
 
654
- #: ../classes/column/post/status.php:36
655
  msgid "Pending Review"
656
  msgstr "Ожидается отзыв"
657
 
658
- #: ../classes/column/post/status.php:37
659
  msgid "Auto Draft"
660
  msgstr "Авто черновик"
661
 
662
- #: ../classes/column/post/sticky.php:14
663
  msgid "Sticky"
664
  msgstr "Липучка"
665
 
666
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
667
  msgid "Taxonomy"
668
  msgstr "Таксономия"
669
 
670
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
671
  msgid "Comment Count"
672
  msgstr "Счетчик комментариев"
673
 
674
- #: ../classes/column/user/first-name.php:14
675
  msgid "First name"
676
  msgstr "Имя"
677
 
678
- #: ../classes/column/user/last-name.php:14
679
  msgid "Last name"
680
  msgstr "Фамилия"
681
 
682
- #: ../classes/column/user/post-count.php:14
683
  msgid "Post Count"
684
  msgstr "Счетчик сообщений"
685
 
686
- #: ../classes/column/user/post-count.php:99
687
  msgid "Post Type"
688
  msgstr "Тип сообщения"
689
 
690
- #: ../classes/column/user/registered.php:14
691
  msgid "Registered"
692
  msgstr "Зарегестрировано"
693
 
694
- #: ../classes/column/user/url.php:14
695
  msgid "Url"
696
  msgstr "URL"
697
 
698
- #: ../classes/settings.php:97
699
  msgid "Add-on successfully activated."
700
  msgstr "Дополнение успешно активировано."
701
 
702
- #: ../classes/settings.php:100
703
  msgid "Add-on successfully deactivated."
704
  msgstr "Дополнение успешно деактивировано."
705
 
706
- #: ../classes/settings.php:155
707
  msgid "Admin Columns Settings"
708
  msgstr "Настройки Admin Columns"
709
 
710
- #: ../classes/settings.php:155 ../classes/settings.php:619
711
- #: ../classes/upgrade.php:83
712
  msgid "Admin Columns"
713
  msgstr "Admin Columns"
714
 
715
- #: ../classes/settings.php:203
716
  #, php-format
717
  msgid "%s column is already present and can not be duplicated."
718
  msgstr "%s колонка уже существует и не может быть продублирована."
719
 
720
- #: ../classes/settings.php:256
721
  msgid "Default settings succesfully restored."
722
  msgstr "Настройки по умолчанию успешно восстановлены."
723
 
724
- #: ../classes/settings.php:273
725
  msgid "Overview"
726
  msgstr "Обзор"
727
 
728
- #: ../classes/settings.php:276
729
- msgid ""
730
- "This plugin is for adding and removing additional columns to the "
731
- "administration screens for post(types), pages, media library, comments, "
732
- "links and users. Change the column's label and reorder them."
733
- msgstr ""
734
- "Этот плагин предназначен для добавления и удаления дополнительных столбцов "
735
- "на экраны администрирования для записей, страниц, библиотеки, комментариев, "
736
- "ссылок и пользователей. Изменяйте метки столбцов и изменяйте их порядок."
737
 
738
- #: ../classes/settings.php:279
739
  msgid "Basics"
740
  msgstr "Основы"
741
 
742
- #: ../classes/settings.php:281
743
  msgid "Change order"
744
  msgstr "Изменить порядок"
745
 
746
- #: ../classes/settings.php:282
747
- msgid ""
748
- "By dragging the columns you can change the order which they will appear in."
749
  msgstr "Перетаскивая столбцы, Вы можете изменить порядок их расположения."
750
 
751
- #: ../classes/settings.php:283
752
  msgid "Change label"
753
  msgstr "Изменить метку"
754
 
755
- #: ../classes/settings.php:284
756
- msgid ""
757
- "By clicking on the triangle you will see the column options. Here you can "
758
- "change each label of the columns heading."
759
- msgstr ""
760
- "Нажав на треугольник, вы увидите настройки колонки. Здесь вы можете изменить "
761
- "метки заголовков колонок."
762
 
763
- #: ../classes/settings.php:285
764
  msgid "Change column width"
765
  msgstr "Изменить ширину столбца"
766
 
767
- #: ../classes/settings.php:286
768
- msgid ""
769
- "By clicking on the triangle you will see the column options. By using the "
770
- "draggable slider you can set the width of the columns in percentages."
771
- msgstr ""
772
- "Нажав на треугольник вы увидите настройки колонки. С помощью перетаскивания "
773
- "ползунка можно установить ширину столбцов в процентах."
774
 
775
- #: ../classes/settings.php:292
776
  msgid "'Custom Field' column"
777
  msgstr "Столбец 'Custom Field'"
778
 
779
- #: ../classes/settings.php:293
780
- msgid ""
781
- "The custom field colum uses the custom fields from posts and users. There "
782
- "are 10 types which you can set."
783
- msgstr ""
784
- "Столбец пользовательского поля использует поля постов и пользователей. "
785
- "Существует 10 типов, которые вы можете установить."
786
 
787
- #: ../classes/settings.php:295
788
- msgid ""
789
- "Value: Can be either a string or array. Arrays will be flattened and values "
790
- "are seperated by a ',' comma."
791
- msgstr ""
792
- "Значение: Может быть строкой или массивом. Массив будет сведен и значения "
793
- "будут разделяться ',' запятой."
794
 
795
- #: ../classes/settings.php:296
796
- msgid ""
797
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
798
- "comma )."
799
- msgstr ""
800
- "Значение: должно содержать URL изображения или Attachment IDs, (разделенные "
801
- "',' запятой)."
802
 
803
- #: ../classes/settings.php:297
804
  msgid "Value: This will show the first 20 words of the Post content."
805
  msgstr "Значение: Это покажет первые 20 слов содержания поста."
806
 
807
- #: ../classes/settings.php:298
808
- msgid ""
809
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
810
- msgstr ""
811
- "Значение: должно быть массивом. Будут сведены любые многомерные масиивы."
812
 
813
- #: ../classes/settings.php:299
814
- msgid ""
815
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
816
- "for sorting, so you can sort your posts on numeric (custom field) values."
817
- msgstr ""
818
- "Значение:. Целые только <br/> Если у вас есть 'сортировочный аддон', то "
819
- "будут использоваться для сортировки, так что вы можете сортировать свои "
820
- "сообщения по числовым значениям пользовательских полей."
821
 
822
- #: ../classes/settings.php:300
823
  #, php-format
824
- msgid ""
825
- "Value: Can be unix time stamp or a date format as described in the <a "
826
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
827
- "href='%s'>general settings</a> page."
828
- msgstr ""
829
- "Value: Может быть Unix-штамп времени или формат даты, как описано в <a "
830
- "href='%s'>Кодексе</a>. Вы можете изменить выходной формат даты на странице "
831
- "<a href='%s'>общих настроек</a>."
832
 
833
- #: ../classes/settings.php:301
834
  msgid "Post Titles"
835
  msgstr "Заголовки постов"
836
 
837
- #: ../classes/settings.php:301
838
  msgid "Value: can be one or more Post ID's (seperated by ',')."
839
  msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
840
 
841
- #: ../classes/settings.php:302
842
  msgid "Usernames"
843
  msgstr "Имена пользователей"
844
 
845
- #: ../classes/settings.php:302
846
  msgid "Value: can be one or more User ID's (seperated by ',')."
847
  msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
848
 
849
- #: ../classes/settings.php:303
850
  msgid "Checkmark"
851
  msgstr "Галочка"
852
 
853
- #: ../classes/settings.php:303
854
  msgid "Value: should be a 1 (one) or 0 (zero)."
855
  msgstr "Значение: должно быть 1 или 0."
856
 
857
- #: ../classes/settings.php:304
858
  msgid "Value: hex value color, such as #808080."
859
  msgstr "Значение: значение цвета в HEX-формате, например #808080."
860
 
861
- #: ../classes/settings.php:305
862
- msgid ""
863
- "Value: Can be either a string or array. This will display a count of the "
864
- "number of times the meta key is used by the item."
865
- msgstr ""
866
- "Значение: Может быть строкой или массивом. Это покажет какое количества раз "
867
- "мета ключ использовался объектом."
868
 
869
- #: ../classes/settings.php:399
870
  msgid "Welcome to Admin Columns"
871
  msgstr "Добро пожаловать в Admin Columns"
872
 
873
- #: ../classes/settings.php:402
874
  msgid "Thank you for updating to the latest version!"
875
  msgstr "Спасибо за обновление до последней версии!"
876
 
877
- #: ../classes/settings.php:403
878
- msgid ""
879
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
880
- "like it."
881
- msgstr ""
882
- "Admin Columns сейчас более изысканный и приятный, чем когда-либо прежде. Мы "
883
- "надеемся, вам понравится."
884
 
885
- #: ../classes/settings.php:408
886
  msgid "What’s New"
887
  msgstr "Что нового"
888
 
889
- #: ../classes/settings.php:409
890
  msgid "Changelog"
891
  msgstr "История изменений"
892
 
893
- #: ../classes/settings.php:414
894
- msgid "Addons"
895
- msgstr "Дополнения"
896
-
897
- #: ../classes/settings.php:416
898
- msgid ""
899
- "Addons are now activated by downloading and installing individual plugins. "
900
- "Although these plugins will not be hosted on the wordpress.org repository, "
901
- "each Add-on will continue to receive updates in the usual way."
902
- msgstr ""
903
- "Дополнения теперь активируются путем загрузки и установки отдельных "
904
- "плагинов. Хотя эти плагины не будут размещаться в хранилище wordpress.org, "
905
- "каждое дополнение будет продолжать получать обновления в обычном порядке."
906
-
907
- #: ../classes/settings.php:419
908
- msgid ""
909
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
910
- msgstr ""
911
- "Этот сайт использует дополнение Sortorder. Это дополнение требует загрузки."
912
-
913
- #: ../classes/settings.php:422
914
- msgid "Addons are seperate plugins which need to be downloaded."
915
- msgstr ""
916
- "Дополнения являются отдельными плагинами, которые должны быть загружены."
917
-
918
- #: ../classes/settings.php:422
919
- msgid "Download your Addons"
920
- msgstr "Загрузите ваши дополнения"
921
-
922
- #: ../classes/settings.php:428
923
- msgid "This website does not use add-ons"
924
- msgstr "Этот сайт не использует дополнения"
925
-
926
- #: ../classes/settings.php:428
927
- msgid "See our website for Admin Columns Pro."
928
- msgstr "Смотрите наш сайт Admin Columns Pro."
929
-
930
- #: ../classes/settings.php:435
931
  msgid "Important"
932
  msgstr "Важно"
933
 
934
- #: ../classes/settings.php:437
935
  msgid "Database Changes"
936
  msgstr "Изменения базы данных"
937
 
938
- #: ../classes/settings.php:438
939
- msgid ""
940
- "The database has been changed between versions 1 and 2. But we made sure you "
941
- "can still roll back to version 1x without any issues."
942
- msgstr ""
943
- "База данных была изменена между версиями 1 и 2. Но мы убедились, что вы все "
944
- "еще можете вернуться к версии 1х без каких-либо проблем."
945
 
946
- #: ../classes/settings.php:441
947
  msgid "Make sure you backup your database and then click"
948
  msgstr "Убедитесь, что вы сделали резервную копию базы данных, а затем нажмите"
949
 
950
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
951
  msgid "Upgrade Database"
952
  msgstr "Обновить базу данных"
953
 
954
- #: ../classes/settings.php:444
955
  msgid "Potential Issues"
956
  msgstr "Потенциальные проблемы"
957
 
958
- #: ../classes/settings.php:445
959
- msgid ""
960
- "Do to the sizable refactoring the code, surounding Addons and action/"
961
- "filters, your website may not operate correctly. It is important that you "
962
- "read the full"
963
- msgstr ""
964
- "Сделав значительную реорганизацию кода плагинов и фильтров, ваш сайт может "
965
- "работать неправильно. Важно, чтобы вы прочитали полное"
966
 
967
- #: ../classes/settings.php:445
968
  msgid "Migrating from v1 to v2"
969
  msgstr "Переход от v1 до v2"
970
 
971
- #: ../classes/settings.php:445
972
  msgid "guide to view the full list of changes."
973
  msgstr "руководство, чтобы увидеть полный список изменений."
974
 
975
- #: ../classes/settings.php:445
976
  #, php-format
977
- msgid ""
978
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
979
- "can fix it in the next release."
980
- msgstr ""
981
- "Если вы обнаружите ошибки, пожалуйста, <a href=\"%s\">сообщите о них нам</"
982
- "a>, чтобы мы исправили их в следующем выпуске."
983
 
984
- #: ../classes/settings.php:448
985
  msgid "Important!"
986
  msgstr "Важно!"
987
 
988
- #: ../classes/settings.php:448
989
- msgid ""
990
- "If you updated the Admin Columns plugin without prior knowledge of such "
991
- "changes, Please roll back to the latest"
992
- msgstr ""
993
- "Если вы обновили плагин Admin Columns без предварительного знания о таких "
994
- "изменениях, пожалуйста сделайте откат к последней"
995
 
996
- #: ../classes/settings.php:448
997
  msgid "version 1"
998
  msgstr "версии 1"
999
 
1000
- #: ../classes/settings.php:448
1001
  msgid "of this plugin."
1002
  msgstr "этого плагина."
1003
 
1004
- #: ../classes/settings.php:454
1005
  msgid "Changelog for"
1006
  msgstr "История изменений для"
1007
 
1008
- #: ../classes/settings.php:469
1009
  msgid "Learn more"
1010
  msgstr "Изучить больше"
1011
 
1012
- #: ../classes/settings.php:479
1013
  msgid "Start using Admin Columns"
1014
  msgstr "начать, используя Admin Columns"
1015
 
1016
- #: ../classes/settings.php:522
1017
  msgid "General Settings"
1018
  msgstr "Общие настройки"
1019
 
1020
- #: ../classes/settings.php:523
1021
  msgid "Customize your Admin Columns settings."
1022
  msgstr "Настроить параметры Admin Columns."
1023
 
1024
- #: ../classes/settings.php:546
1025
- msgid ""
1026
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1027
  msgstr ""
1028
- "Показать кнопку \"Edit Columns\" на административных экранах. По умолчанию - "
1029
- "<code>off</code>."
1030
 
1031
- #: ../classes/settings.php:553 ../classes/settings.php:682
1032
  msgid "Save"
1033
  msgstr "Сохранить"
1034
 
1035
- #: ../classes/settings.php:593
1036
  msgid "Restore Settings"
1037
  msgstr "Восстановить настройки"
1038
 
1039
- #: ../classes/settings.php:594
1040
  msgid "This will delete all column settings and restore the default settings."
1041
- msgstr ""
1042
- "Это удалит все настройки столбцов и восстановит настройки по умолчанию."
1043
 
1044
- #: ../classes/settings.php:600
1045
  msgid "Restore default settings"
1046
  msgstr "Восстановить настройки по умолчанию"
1047
 
1048
- #: ../classes/settings.php:600
1049
- msgid ""
1050
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1051
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1052
- msgstr ""
1053
- "Предупреждение! Все сохраненные данные колонки администратора будут удалены. "
1054
- "Это не может быть отменено. \\'ОК\\' для удаления, \\'Отмена\\' для отмены"
1055
 
1056
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1057
  msgid "Settings"
1058
  msgstr "Настройки"
1059
 
1060
- #: ../classes/settings.php:621
1061
  msgid "Add-ons"
1062
  msgstr "Дополнения"
1063
 
1064
- #: ../classes/settings.php:647
1065
  msgid "Posttypes"
1066
  msgstr "Типы постов"
1067
 
1068
- #: ../classes/settings.php:648
1069
  msgid "Others"
1070
  msgstr "Другое"
1071
 
1072
- #: ../classes/settings.php:649
1073
  msgid "Taxonomies"
1074
  msgstr "Таксономии"
1075
 
1076
- #: ../classes/settings.php:668
1077
  #, php-format
1078
- msgid ""
1079
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1080
- "be edited in the admin panel."
1081
- msgstr ""
1082
- "Столбцы для <strong>%s</strong> устанавливаются через PHP и поэтому не могут "
1083
- "быть отредактированы в админ-панели."
1084
 
1085
- #: ../classes/settings.php:678
1086
  msgid "Store settings"
1087
  msgstr "Настройки памяти"
1088
 
1089
- #: ../classes/settings.php:682
1090
  msgid "Update"
1091
  msgstr "Обновить"
1092
 
1093
- #: ../classes/settings.php:686
1094
  #, php-format
1095
- msgid ""
1096
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1097
- "\\' to delete, \\'Cancel\\' to stop"
1098
- msgstr ""
1099
- "Предупреждение! Столбцы данных в %s будут удалены. Это не может быть "
1100
- "отменено. \\'ОК\\' для удаления, \\'Отмена\\' для отмены"
1101
 
1102
- #: ../classes/settings.php:687
1103
  msgid "columns"
1104
  msgstr "столбцы"
1105
 
1106
- #: ../classes/settings.php:701
1107
  msgid "Get Admin Columns Pro"
1108
  msgstr "Получить Admin Columns Pro"
1109
 
1110
- #: ../classes/settings.php:705
1111
  msgid "Add Sorting"
1112
  msgstr "Добавить сортировку"
1113
 
1114
- #: ../classes/settings.php:706
1115
  msgid "Add Filtering"
1116
  msgstr "Добавить фильтрацию"
1117
 
1118
- #: ../classes/settings.php:707
1119
  msgid "Add Import/Export"
1120
  msgstr "Добавить Импорт/Экспорт"
1121
 
1122
- #: ../classes/settings.php:708
1123
  msgid "Add Direct Editing"
1124
  msgstr "Добавить Прямое редактирование"
1125
 
1126
- #: ../classes/settings.php:711
1127
  #, php-format
1128
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
 
 
 
 
 
 
 
 
 
 
 
 
1129
  msgstr ""
1130
- "Проверьте <a href=\"%s\">Admin Columns Pro</a> для получения подробной "
1131
- "информации!"
1132
 
1133
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1134
  msgid "Support"
1135
  msgstr "Поддержка"
1136
 
1137
- #: ../classes/settings.php:745
1138
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1139
  msgstr "Проверьте раздел <strong>Помощь</strong> в правом верхнем углу."
1140
 
1141
- #: ../classes/settings.php:748
1142
  #, php-format
1143
- msgid ""
1144
- "For full documentation, bug reports, feature suggestions and other tips <a "
1145
- "href='%s'>visit the Admin Columns website</a>"
1146
- msgstr ""
1147
- "Для получения полной документации, отчетов об ошибках, особых предложений и "
1148
- "других материалов <a href='%s'>посетите сайт Admin Columns</a>"
1149
 
1150
- #: ../classes/settings.php:777
1151
  msgid "Drag and drop to reorder"
1152
  msgstr "Перетащите, чтобы изменить порядок"
1153
 
1154
- #: ../classes/settings.php:780
1155
  msgid "Add Column"
1156
  msgstr "Добавить столбец"
1157
 
1158
- #: ../classes/settings.php:853
1159
  msgid "Active"
1160
  msgstr "Активно"
1161
 
1162
- #: ../classes/settings.php:854
1163
  msgid "Deactivate"
1164
  msgstr "Деактивировать"
1165
 
1166
- #: ../classes/settings.php:861
1167
  msgid "Installed"
1168
  msgstr "Установлено"
1169
 
1170
- #: ../classes/settings.php:862
1171
  msgid "Activate"
1172
  msgstr "Активировать"
1173
 
1174
- #: ../classes/settings.php:876
1175
  msgid "Download & Install"
1176
  msgstr "Загрузить и установить"
1177
 
1178
- #: ../classes/settings.php:881
1179
  msgid "Get this add-on"
1180
  msgstr "Получить это дополнение"
1181
 
1182
- #: ../classes/storage_model.php:207
1183
  msgid "settings succesfully restored."
1184
  msgstr "настройки успешно восстановлены."
1185
 
1186
- #: ../classes/storage_model.php:222
1187
  msgid "No columns settings available."
1188
  msgstr "Нет доступных настроек столбцов."
1189
 
1190
- #: ../classes/storage_model.php:243
1191
  #, php-format
1192
  msgid "You are trying to store the same settings for %s."
1193
  msgstr "Вы пытаетесь сохранить те же настройки для %s."
1194
 
1195
- #: ../classes/storage_model.php:247
1196
  #, php-format
1197
  msgid "Settings for %s updated succesfully."
1198
  msgstr "Настройки для %s успешно обновлены."
@@ -1209,62 +1127,64 @@ msgstr "Ссылки"
1209
  msgid "Users"
1210
  msgstr "Пользователи"
1211
 
1212
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
1213
  msgid "Upgrade"
1214
  msgstr "Обновить"
1215
 
1216
- #: ../classes/upgrade.php:84
1217
  msgid "requires a database upgrade"
1218
  msgstr "требуется обновление базы данных"
1219
 
1220
- #: ../classes/upgrade.php:87
1221
  msgid "why?"
1222
  msgstr "почему?"
1223
 
1224
- #: ../classes/upgrade.php:88
1225
  msgid "Please"
1226
  msgstr "Пожалуйста"
1227
 
1228
- #: ../classes/upgrade.php:89
1229
  msgid "backup your database"
1230
  msgstr "создайте резервную копию базы данных"
1231
 
1232
- #: ../classes/upgrade.php:90
1233
  msgid "then click"
1234
  msgstr "затем нажмите"
1235
 
1236
- #: ../classes/upgrade.php:298
1237
  msgid "Migrating Column Settings"
1238
  msgstr "Перенос настроек столбцов"
1239
 
1240
- #: ../classes/upgrade.php:334
1241
  msgid "No Upgrade Required"
1242
  msgstr "Обновление не требуется"
1243
 
1244
- #: ../classes/upgrade.php:335
1245
  msgid "Return to welcome screen."
1246
  msgstr "Вернуться на начальный экран."
1247
 
1248
- #: ../classes/upgrade.php:353
1249
  msgid "Upgrade Complete!"
1250
  msgstr "Обновление завершено!"
1251
 
1252
- #: ../classes/upgrade.php:353
1253
  msgid "Return to settings."
1254
  msgstr "Возврат к настройкам."
1255
 
1256
- #: ../classes/upgrade.php:354
1257
  msgid "Error"
1258
  msgstr "Ошибка"
1259
 
1260
- #: ../classes/upgrade.php:355
1261
- msgid ""
1262
- "Sorry. Something went wrong during the upgrade process. Please report this "
1263
- "on the support forum."
1264
- msgstr ""
1265
- "Извините. Что-то пошло не так во время процесса обновления. Пожалуйста, "
1266
- "сообщите об этом на форуме поддержки."
1267
 
1268
- #: ../codepress-admin-columns.php:439
1269
  msgid "Edit columns"
1270
  msgstr "Редактировать столбцы"
4
  msgstr ""
5
  "Project-Id-Version: Admin Columns\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
8
+ "PO-Revision-Date: 2014-12-10 17:24+0100\n"
9
  "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: Russian (http://www.transifex.com/projects/p/admin-columns/language/ru/)\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Language: ru\n"
15
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
+ "X-Generator: Poedit 1.7.1\n"
 
17
  "X-Poedit-Basepath: .\n"
18
  "X-Poedit-KeywordsList: __;_e\n"
19
  "X-Poedit-SourceCharset: UTF-8\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
 
23
+ #: ../classes/addons.php:110
24
  msgid "Third party plugin integration"
25
  msgstr "Интеграция плагина третьей стороной"
26
 
27
+ #: ../classes/addons.php:135
28
  msgid "Advanced Custom Fields"
29
  msgstr "Advanced Custom Fields"
30
 
31
+ #: ../classes/addons.php:136
32
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
33
+ msgstr "Показать и изменить поля Advanced Custom Fields в обзорах записей в считанные секунды!"
34
+
35
+ #: ../classes/addons.php:141
36
+ msgid "WooCommerce"
37
+ msgstr ""
38
+
39
+ #: ../classes/addons.php:142
40
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
41
  msgstr ""
 
 
42
 
43
+ #: ../classes/column.php:500
44
  msgid "Thumbnail"
45
  msgstr "Миниатюра"
46
 
47
+ #: ../classes/column.php:501
48
  msgid "Medium"
49
  msgstr "Средний"
50
 
51
+ #: ../classes/column.php:502
52
  msgid "Large"
53
  msgstr "Большой"
54
 
55
+ #: ../classes/column.php:503
56
  msgid "Full"
57
  msgstr "Полный"
58
 
59
+ #: ../classes/column.php:863
60
  msgid "Date Format"
61
  msgstr "Формат даты"
62
 
63
+ #: ../classes/column.php:864
64
  msgid "This will determine how the date will be displayed."
65
  msgstr "Это определяет отображение даты."
66
 
67
+ #: ../classes/column.php:870
68
  msgid "Example:"
69
  msgstr "Пример:"
70
 
71
+ #: ../classes/column.php:872
72
  #, php-format
73
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
74
+ msgstr "Оставьте пустым для формата даты WordPress, измените <a href=\"%s\">default date format here</a>."
 
 
 
 
75
 
76
+ #: ../classes/column.php:873
77
  msgid "Documentation on date and time formatting."
78
  msgstr "Документация по форматированию даты и времени."
79
 
80
+ #: ../classes/column.php:887
81
  msgid "Excerpt length"
82
  msgstr "Длина отрывка"
83
 
84
+ #: ../classes/column.php:888
85
  msgid "Number of words"
86
  msgstr "Количество слов"
87
 
88
+ #: ../classes/column.php:906
89
  msgid "Preview size"
90
  msgstr "Размер просмотра"
91
 
92
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
93
  msgid "Custom"
94
  msgstr "Пользовательский"
95
 
96
+ #: ../classes/column.php:926
97
  msgid "width"
98
  msgstr "ширина"
99
 
100
+ #: ../classes/column.php:929
101
  msgid "height"
102
  msgstr "высота"
103
 
104
+ #: ../classes/column.php:943
105
  msgid "Before"
106
  msgstr "Перед"
107
 
108
+ #: ../classes/column.php:943
109
  msgid "This text will appear before the custom field value."
110
  msgstr "Этот текст появится перед значением настраиваемого поля."
111
 
112
+ #: ../classes/column.php:949
113
  msgid "After"
114
  msgstr "После"
115
 
116
+ #: ../classes/column.php:949
117
  msgid "This text will appear after the custom field value."
118
  msgstr "Этот текст появится перед значением настраиваемого поля."
119
 
120
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
 
 
121
  msgid "Edit"
122
  msgstr "Редактировать"
123
 
124
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
125
  msgid "Remove"
126
  msgstr "Удалить"
127
 
128
+ #: ../classes/column.php:1062
129
  msgid "Type"
130
  msgstr "Тип"
131
 
132
+ #: ../classes/column.php:1062
133
  msgid "Choose a column type."
134
  msgstr "Выбрать тип колонки"
135
 
136
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
137
  msgid "ID"
138
  msgstr "ID"
139
 
140
+ #: ../classes/column.php:1072
141
  msgid "Label"
142
  msgstr "Метка"
143
 
144
+ #: ../classes/column.php:1072
145
  msgid "This is the name which will appear as the column header."
146
  msgstr "Это имя, которое будет отображаться в качестве заголовка столбца."
147
 
148
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
149
  msgid "Width"
150
  msgstr "Ширина"
151
 
152
+ #: ../classes/column.php:1081 ../classes/column.php:1082
153
  msgid "default"
154
  msgstr "по умолчанию"
155
 
156
+ #: ../classes/column/acf-placeholder.php:19
157
  msgid "ACF Field"
158
  msgstr "Поле ACF"
159
 
160
  #: ../classes/column/acf-placeholder.php:32
161
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
162
+ msgstr ""
163
 
164
  #: ../classes/column/acf-placeholder.php:35
165
  #, php-format
166
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
167
+ msgstr "Если Вы имеете лицензию разработчика, пожалуйста, загрузите и утановите Ваш ACF add-on по ссылке <a href='%s'>add-ons tab</a>."
 
 
 
 
168
 
169
  #: ../classes/column/acf-placeholder.php:38
170
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
171
+ msgstr "Admin Columns Pro - Разработчик предлагает полную интеграцию Advanced Custom Fields, что позволяет легко просматривать и редактировать ACF поля из вашего обзора сообщений."
 
 
 
 
 
 
172
 
173
+ #: ../classes/column/acf-placeholder.php:44
174
  msgid "Find out more"
175
  msgstr "Узнайте больше"
176
 
177
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20 ../classes/column/user/actions.php:19
 
 
 
178
  msgid "Actions"
179
  msgstr "действия"
180
 
181
+ #: ../classes/column/actions.php:87
182
+ msgid "Use icons?"
183
+ msgstr ""
184
+
185
+ #: ../classes/column/actions.php:87
186
+ msgid "Use icons instead of text for displaying the actions."
187
+ msgstr ""
188
+
189
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
190
+ msgid "Yes"
191
+ msgstr ""
192
+
193
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
194
+ msgid "No"
195
+ msgstr ""
196
+
197
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
198
  msgid "Unapprove"
199
  msgstr "Отклонить"
200
 
201
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
202
  msgid "Approve"
203
  msgstr "Утвердить"
204
 
205
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
206
  msgid "Restore"
207
  msgstr "Восстановить"
208
 
209
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
210
  msgid "Delete Permanently"
211
  msgstr "Удалить полностью"
212
 
213
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
214
  msgid "Quick&nbsp;Edit"
215
  msgstr "Quick&nbsp;Edit"
216
 
217
+ #: ../classes/column/comment/actions.php:101
218
  msgid "Reply"
219
  msgstr "Ответить"
220
 
221
+ #: ../classes/column/comment/agent.php:19
222
  msgid "Agent"
223
  msgstr "Агент"
224
 
225
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
226
  msgid "Approved"
227
  msgstr "Утверждено"
228
 
229
+ #: ../classes/column/comment/author-avatar.php:19
230
  msgid "Avatar"
231
  msgstr "Аватар"
232
 
233
+ #: ../classes/column/comment/author-email.php:19
234
  msgid "Author email"
235
  msgstr "Email автора"
236
 
237
+ #: ../classes/column/comment/author-ip.php:19
238
  msgid "Author IP"
239
  msgstr "IP автора"
240
 
241
+ #: ../classes/column/comment/author-url.php:19
242
  msgid "Author url"
243
  msgstr "URL автора"
244
 
245
+ #: ../classes/column/comment/author.php:19
246
  msgid "Author"
247
  msgstr "Автор"
248
 
249
+ #: ../classes/column/comment/date-gmt.php:19
250
  msgid "Date GMT"
251
  msgstr "Дата GMT"
252
 
253
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
254
  #, php-format
255
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
256
  msgstr "Подтверждено на <a href=\"%1$s\">%2$s at %3$s</a>"
257
 
258
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
259
  msgid "Date"
260
  msgstr "Дата"
261
 
262
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
263
  msgid "Excerpt"
264
  msgstr "Отрывок"
265
 
266
+ #: ../classes/column/comment/reply-to.php:19
267
  msgid "In Reply To"
268
  msgstr "В ответ на"
269
 
270
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
271
  msgid "Word count"
272
  msgstr "Счетчик слов"
273
 
274
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
275
  msgid "Custom Field"
276
  msgstr "Пользовательское поле"
277
 
278
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
279
  msgid "Default"
280
  msgstr "По умолчанию"
281
 
282
+ #: ../classes/column/custom-field.php:95
283
  msgid "Checkmark (true/false)"
284
  msgstr "Галочка (true/false)"
285
 
286
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
287
  msgid "Color"
288
  msgstr "Цвет"
289
 
290
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
291
  msgid "Counter"
292
  msgstr "Счетчик"
293
 
294
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
295
  msgid "Image"
296
  msgstr "Изображение"
297
 
298
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
299
  msgid "Media Library"
300
  msgstr "Медиа библиотека"
301
 
302
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
303
  msgid "Multiple Values"
304
  msgstr "Несколько значений"
305
 
306
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
307
  msgid "Numeric"
308
  msgstr "Числовой"
309
 
310
+ #: ../classes/column/custom-field.php:104
311
  msgid "Post Title (Post ID's)"
312
  msgstr "Заголовок поста (Post ID's)"
313
 
314
+ #: ../classes/column/custom-field.php:105
315
  msgid "Username (User ID's)"
316
  msgstr "Имя пользователя (User ID's)"
317
 
318
+ #: ../classes/column/custom-field.php:356
319
  msgid "Select your custom field."
320
  msgstr "Выберитрать пользовательское поле."
321
 
322
+ #: ../classes/column/custom-field.php:366
323
  msgid "No custom fields available."
324
  msgstr "Нет доступных пользовательских полей."
325
 
326
+ #: ../classes/column/custom-field.php:373
327
  msgid "Field Type"
328
  msgstr "Тип поля"
329
 
330
+ #: ../classes/column/custom-field.php:373
331
  msgid "This will determine how the value will be displayed."
332
  msgstr "От этого будет зависеть, как будет отображаться значение."
333
 
334
+ #: ../classes/column/link/actions.php:49
335
  #, php-format
336
  msgid ""
337
  "You are about to delete this link '%s'\n"
340
  "Вы собираетесь удалить эту ссылку '%s'\n"
341
  " 'Cancel' для отмены, 'OK' для удаления."
342
 
343
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
344
  msgid "Delete"
345
  msgstr "Удалить"
346
 
347
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
348
  msgid "Description"
349
  msgstr "Описание"
350
 
351
+ #: ../classes/column/link/length.php:19
352
  msgid "Length"
353
  msgstr "Длина"
354
 
355
+ #: ../classes/column/link/notes.php:19
356
  msgid "Notes"
357
  msgstr "Примечания"
358
 
359
+ #: ../classes/column/link/owner.php:19
360
  msgid "Owner"
361
  msgstr "Владелец"
362
 
363
+ #: ../classes/column/link/rss.php:19
364
  msgid "Rss"
365
  msgstr "RSS"
366
 
367
+ #: ../classes/column/link/target.php:19
368
  msgid "Target"
369
  msgstr "Цель"
370
 
371
+ #: ../classes/column/media/alternate-text.php:19
372
  msgid "Alt"
373
  msgstr "Вариант"
374
 
375
+ #: ../classes/column/media/available-sizes.php:20
376
  msgid "Available Sizes"
377
  msgstr "Доступные размеры"
378
 
379
+ #: ../classes/column/media/available-sizes.php:40
380
  msgid "full size"
381
  msgstr "полный размер"
382
 
383
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
384
  msgid "Caption"
385
  msgstr "Подпись"
386
 
387
+ #: ../classes/column/media/dimensions.php:19
388
  msgid "Dimensions"
389
  msgstr "Размеры"
390
 
391
+ #: ../classes/column/media/exif-data.php:19
392
  msgid "EXIF data"
393
  msgstr "EXIF данные"
394
 
395
+ #: ../classes/column/media/exif-data.php:38
396
  msgid "Aperture"
397
  msgstr "Апертура"
398
 
399
+ #: ../classes/column/media/exif-data.php:39
400
  msgid "Credit"
401
  msgstr "Кредит"
402
 
403
+ #: ../classes/column/media/exif-data.php:40
404
  msgid "Camera"
405
  msgstr "Камера"
406
 
407
+ #: ../classes/column/media/exif-data.php:42
408
  msgid "Timestamp"
409
  msgstr "Временной штамп"
410
 
411
+ #: ../classes/column/media/exif-data.php:43
412
  msgid "Copyright EXIF"
413
  msgstr "Copyright EXIF"
414
 
415
+ #: ../classes/column/media/exif-data.php:44
416
  msgid "Focal Length"
417
  msgstr "Фокусное расстояние"
418
 
419
+ #: ../classes/column/media/exif-data.php:45
420
  msgid "ISO"
421
  msgstr "ISO"
422
 
423
+ #: ../classes/column/media/exif-data.php:46
424
  msgid "Shutter Speed"
425
  msgstr "Скорость затвора"
426
 
427
+ #: ../classes/column/media/exif-data.php:47
428
  msgid "Title"
429
  msgstr "Заголовок"
430
 
431
+ #: ../classes/column/media/file-name.php:19
432
  msgid "File name"
433
  msgstr "Имя файла"
434
 
435
+ #: ../classes/column/media/file-size.php:19
436
  msgid "File size"
437
  msgstr "Размер файла"
438
 
439
+ #: ../classes/column/media/full-path.php:19
440
  msgid "Full path"
441
  msgstr "Полный путь"
442
 
443
+ #: ../classes/column/media/height.php:19
444
  msgid "Height"
445
  msgstr "Высота"
446
 
447
+ #: ../classes/column/media/mime-type.php:19
448
  msgid "Mime type"
449
  msgstr "MIME тип"
450
 
451
+ #: ../classes/column/post/actions.php:31
452
  msgid "Edit this item"
453
  msgstr "Редактировать этот объект"
454
 
455
+ #: ../classes/column/post/actions.php:34
456
  msgid "Edit this item inline"
457
  msgstr "Редактировать этот объект инлайн"
458
 
459
+ #: ../classes/column/post/actions.php:39
460
  msgid "Restore this item from the Trash"
461
  msgstr "Восстановить этот объект из корзины"
462
 
463
+ #: ../classes/column/post/actions.php:41
464
  msgid "Move this item to the Trash"
465
  msgstr "Перенести этот объект в корзину"
466
 
467
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
468
  msgid "Trash"
469
  msgstr "Корзина"
470
 
471
+ #: ../classes/column/post/actions.php:43
472
  msgid "Delete this item permanently"
473
  msgstr "Удалить этот объект окончательно"
474
 
475
+ #: ../classes/column/post/actions.php:48
476
  #, php-format
477
  msgid "Preview &#8220;%s&#8221;"
478
  msgstr "Просмотр &#8220;%s&#8221;"
479
 
480
+ #: ../classes/column/post/actions.php:48
481
  msgid "Preview"
482
  msgstr "Просмотр"
483
 
484
+ #: ../classes/column/post/actions.php:50
485
  #, php-format
486
  msgid "View &#8220;%s&#8221;"
487
  msgstr "Смотреть &#8220;%s&#8221;"
488
 
489
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
490
  msgid "View"
491
  msgstr "Смотреть"
492
 
493
+ #: ../classes/column/post/attachment-count.php:19
494
  msgid "No. of Attachments"
495
  msgstr "Кол-во приложений"
496
 
497
+ #: ../classes/column/post/attachment.php:19
498
  msgid "Attachment"
499
  msgstr "Приложение"
500
 
501
+ #: ../classes/column/post/author-name.php:20
502
  msgid "Display Author As"
503
  msgstr "Показать автора как"
504
 
505
+ #: ../classes/column/post/author-name.php:40
506
  msgid "Display Name"
507
  msgstr "Отображаемое имя"
508
 
509
+ #: ../classes/column/post/author-name.php:41
510
  msgid "First Name"
511
  msgstr "Имя"
512
 
513
+ #: ../classes/column/post/author-name.php:42
514
  msgid "Last Name"
515
  msgstr "Фамилия"
516
 
517
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
518
  msgid "Nickname"
519
  msgstr "Ник"
520
 
521
+ #: ../classes/column/post/author-name.php:44
522
  msgid "User Login"
523
  msgstr "Логин пользователя"
524
 
525
+ #: ../classes/column/post/author-name.php:45
526
  msgid "User Email"
527
  msgstr "Email пользователя"
528
 
529
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
530
  msgid "User ID"
531
  msgstr "ID пользователя"
532
 
533
+ #: ../classes/column/post/author-name.php:47
534
  msgid "First and Last Name"
535
  msgstr "Имя и Фамилия"
536
 
537
+ #: ../classes/column/post/author-name.php:124
538
  msgid "This is the format of the author name."
539
  msgstr "Формат имени автора."
540
 
541
+ #: ../classes/column/post/before-moretag.php:19
542
  msgid "Before More Tag"
543
  msgstr "Перед тэгом \"Подробнее\""
544
 
545
+ #: ../classes/column/post/comment-count.php:20
546
  msgid "Comment count"
547
  msgstr "Счетчик комментариев"
548
 
549
+ #: ../classes/column/post/comment-count.php:34
550
  msgid "Total"
551
  msgstr "Всего"
552
 
553
+ #: ../classes/column/post/comment-count.php:36
554
  msgid "Pending"
555
  msgstr "В ожидании"
556
 
557
+ #: ../classes/column/post/comment-count.php:37
558
  msgid "Spam"
559
  msgstr "Спам"
560
 
561
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
562
  msgid "Comment status"
563
  msgstr "Статус комментария"
564
 
565
+ #: ../classes/column/post/comment-count.php:99
566
  msgid "Select which comment status you like to display."
567
  msgstr "Выберите статус комментария для отображения."
568
 
569
+ #: ../classes/column/post/featured-image.php:19
570
  msgid "Featured Image"
571
  msgstr "Рекомендуемые изображения"
572
 
573
+ #: ../classes/column/post/formats.php:19
574
  msgid "Post Format"
575
  msgstr "Формат сообщения"
576
 
577
+ #: ../classes/column/post/modified.php:19
578
  msgid "Last modified"
579
  msgstr "Изменен"
580
 
581
+ #: ../classes/column/post/order.php:19
582
  msgid "Page Order"
583
  msgstr "Порядок страницы"
584
 
585
+ #: ../classes/column/post/page-template.php:19
586
  msgid "Page Template"
587
  msgstr "Шаблон страницы"
588
 
589
+ #: ../classes/column/post/parent.php:19
590
  msgid "Parent"
591
  msgstr "Родитель"
592
 
593
+ #: ../classes/column/post/path.php:19
594
+ msgid "Path"
595
+ msgstr ""
596
+
597
+ #: ../classes/column/post/permalink.php:19
598
  msgid "Permalink"
599
  msgstr "Постоянная ссылка"
600
 
601
+ #: ../classes/column/post/permalink.php:68
602
+ msgid "Link to post"
603
+ msgstr ""
604
+
605
+ #: ../classes/column/post/permalink.php:68
606
+ msgid "This will make the permalink clickable."
607
+ msgstr ""
608
+
609
+ #: ../classes/column/post/ping-status.php:19
610
  msgid "Ping status"
611
  msgstr "Ping статус"
612
 
613
+ #: ../classes/column/post/roles.php:19
614
  msgid "Roles"
615
  msgstr "Роли"
616
 
617
+ #: ../classes/column/post/slug.php:19
618
  msgid "Slug"
619
  msgstr "Ссылка"
620
 
621
+ #: ../classes/column/post/status.php:19
622
  msgid "Status"
623
  msgstr "Статус"
624
 
625
+ #: ../classes/column/post/status.php:29
626
  msgid "Published"
627
  msgstr "Опубликовано"
628
 
629
+ #: ../classes/column/post/status.php:30
630
  msgid "Draft"
631
  msgstr "Черновик"
632
 
633
+ #: ../classes/column/post/status.php:31
634
  msgid "Scheduled"
635
  msgstr "Запланировано"
636
 
637
+ #: ../classes/column/post/status.php:32
638
  msgid "Private"
639
  msgstr "Приватно"
640
 
641
+ #: ../classes/column/post/status.php:33
642
  msgid "Pending Review"
643
  msgstr "Ожидается отзыв"
644
 
645
+ #: ../classes/column/post/status.php:34
646
  msgid "Auto Draft"
647
  msgstr "Авто черновик"
648
 
649
+ #: ../classes/column/post/sticky.php:19
650
  msgid "Sticky"
651
  msgstr "Липучка"
652
 
653
+ #: ../classes/column/post/title-raw.php:19
654
+ msgid "Title without actions"
655
+ msgstr ""
656
+
657
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
658
  msgid "Taxonomy"
659
  msgstr "Таксономия"
660
 
661
+ #: ../classes/column/used-by-menu.php:20
662
+ msgid "Used by Menu"
663
+ msgstr ""
664
+
665
+ #: ../classes/column/used-by-menu.php:133
666
+ msgid "Link to menu"
667
+ msgstr ""
668
+
669
+ #: ../classes/column/used-by-menu.php:133
670
+ msgid "This will make the title link to the menu."
671
+ msgstr ""
672
+
673
+ #: ../classes/column/user/comment-count.php:19
674
  msgid "Comment Count"
675
  msgstr "Счетчик комментариев"
676
 
677
+ #: ../classes/column/user/first-name.php:19
678
  msgid "First name"
679
  msgstr "Имя"
680
 
681
+ #: ../classes/column/user/last-name.php:19
682
  msgid "Last name"
683
  msgstr "Фамилия"
684
 
685
+ #: ../classes/column/user/post-count.php:19
686
  msgid "Post Count"
687
  msgstr "Счетчик сообщений"
688
 
689
+ #: ../classes/column/user/post-count.php:102
690
  msgid "Post Type"
691
  msgstr "Тип сообщения"
692
 
693
+ #: ../classes/column/user/registered.php:19
694
  msgid "Registered"
695
  msgstr "Зарегестрировано"
696
 
697
+ #: ../classes/column/user/url.php:19
698
  msgid "Url"
699
  msgstr "URL"
700
 
701
+ #: ../classes/settings.php:111
702
  msgid "Add-on successfully activated."
703
  msgstr "Дополнение успешно активировано."
704
 
705
+ #: ../classes/settings.php:114
706
  msgid "Add-on successfully deactivated."
707
  msgstr "Дополнение успешно деактивировано."
708
 
709
+ #: ../classes/settings.php:169
710
  msgid "Admin Columns Settings"
711
  msgstr "Настройки Admin Columns"
712
 
713
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
714
  msgid "Admin Columns"
715
  msgstr "Admin Columns"
716
 
717
+ #: ../classes/settings.php:217
718
  #, php-format
719
  msgid "%s column is already present and can not be duplicated."
720
  msgstr "%s колонка уже существует и не может быть продублирована."
721
 
722
+ #: ../classes/settings.php:271
723
  msgid "Default settings succesfully restored."
724
  msgstr "Настройки по умолчанию успешно восстановлены."
725
 
726
+ #: ../classes/settings.php:288
727
  msgid "Overview"
728
  msgstr "Обзор"
729
 
730
+ #: ../classes/settings.php:291
731
+ msgid "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
732
+ msgstr "Этот плагин предназначен для добавления и удаления дополнительных столбцов на экраны администрирования для записей, страниц, библиотеки, комментариев, ссылок и пользователей. Изменяйте метки столбцов и изменяйте их порядок."
 
 
 
 
 
 
733
 
734
+ #: ../classes/settings.php:294
735
  msgid "Basics"
736
  msgstr "Основы"
737
 
738
+ #: ../classes/settings.php:296
739
  msgid "Change order"
740
  msgstr "Изменить порядок"
741
 
742
+ #: ../classes/settings.php:297
743
+ msgid "By dragging the columns you can change the order which they will appear in."
 
744
  msgstr "Перетаскивая столбцы, Вы можете изменить порядок их расположения."
745
 
746
+ #: ../classes/settings.php:298
747
  msgid "Change label"
748
  msgstr "Изменить метку"
749
 
750
+ #: ../classes/settings.php:299
751
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
752
+ msgstr "Нажав на треугольник, вы увидите настройки колонки. Здесь вы можете изменить метки заголовков колонок."
 
 
 
 
753
 
754
+ #: ../classes/settings.php:300
755
  msgid "Change column width"
756
  msgstr "Изменить ширину столбца"
757
 
758
+ #: ../classes/settings.php:301
759
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
760
+ msgstr "Нажав на треугольник вы увидите настройки колонки. С помощью перетаскивания ползунка можно установить ширину столбцов в процентах."
 
 
 
 
761
 
762
+ #: ../classes/settings.php:307
763
  msgid "'Custom Field' column"
764
  msgstr "Столбец 'Custom Field'"
765
 
766
+ #: ../classes/settings.php:308
767
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
768
+ msgstr "Столбец пользовательского поля использует поля постов и пользователей. Существует 10 типов, которые вы можете установить."
 
 
 
 
769
 
770
+ #: ../classes/settings.php:310
771
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
772
+ msgstr "Значение: Может быть строкой или массивом. Массив будет сведен и значения будут разделяться ',' запятой."
 
 
 
 
773
 
774
+ #: ../classes/settings.php:311
775
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
776
+ msgstr "Значение: должно содержать URL изображения или Attachment IDs, (разделенные ',' запятой)."
 
 
 
 
777
 
778
+ #: ../classes/settings.php:312
779
  msgid "Value: This will show the first 20 words of the Post content."
780
  msgstr "Значение: Это покажет первые 20 слов содержания поста."
781
 
782
+ #: ../classes/settings.php:313
783
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
784
+ msgstr "Значение: должно быть массивом. Будут сведены любые многомерные масиивы."
 
 
785
 
786
+ #: ../classes/settings.php:314
787
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
788
+ msgstr "Значение:. Целые только <br/> Если у вас есть 'сортировочный аддон', то будут использоваться для сортировки, так что вы можете сортировать свои сообщения по числовым значениям пользовательских полей."
 
 
 
 
 
789
 
790
+ #: ../classes/settings.php:315
791
  #, php-format
792
+ msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
793
+ msgstr "Value: Может быть Unix-штамп времени или формат даты, как описано в <a href='%s'>Кодексе</a>. Вы можете изменить выходной формат даты на странице <a href='%s'>общих настроек</a>."
 
 
 
 
 
 
794
 
795
+ #: ../classes/settings.php:316
796
  msgid "Post Titles"
797
  msgstr "Заголовки постов"
798
 
799
+ #: ../classes/settings.php:316
800
  msgid "Value: can be one or more Post ID's (seperated by ',')."
801
  msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
802
 
803
+ #: ../classes/settings.php:317
804
  msgid "Usernames"
805
  msgstr "Имена пользователей"
806
 
807
+ #: ../classes/settings.php:317
808
  msgid "Value: can be one or more User ID's (seperated by ',')."
809
  msgstr "Значение: может быть оно или несколько Post ID, разделенных ','."
810
 
811
+ #: ../classes/settings.php:318
812
  msgid "Checkmark"
813
  msgstr "Галочка"
814
 
815
+ #: ../classes/settings.php:318
816
  msgid "Value: should be a 1 (one) or 0 (zero)."
817
  msgstr "Значение: должно быть 1 или 0."
818
 
819
+ #: ../classes/settings.php:319
820
  msgid "Value: hex value color, such as #808080."
821
  msgstr "Значение: значение цвета в HEX-формате, например #808080."
822
 
823
+ #: ../classes/settings.php:320
824
+ msgid "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."
825
+ msgstr "Значение: Может быть строкой или массивом. Это покажет какое количества раз мета ключ использовался объектом."
 
 
 
 
826
 
827
+ #: ../classes/settings.php:409
828
  msgid "Welcome to Admin Columns"
829
  msgstr "Добро пожаловать в Admin Columns"
830
 
831
+ #: ../classes/settings.php:412
832
  msgid "Thank you for updating to the latest version!"
833
  msgstr "Спасибо за обновление до последней версии!"
834
 
835
+ #: ../classes/settings.php:413
836
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
837
+ msgstr "Admin Columns сейчас более изысканный и приятный, чем когда-либо прежде. Мы надеемся, вам понравится."
 
 
 
 
838
 
839
+ #: ../classes/settings.php:418
840
  msgid "What’s New"
841
  msgstr "Что нового"
842
 
843
+ #: ../classes/settings.php:419
844
  msgid "Changelog"
845
  msgstr "История изменений"
846
 
847
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
848
  msgid "Important"
849
  msgstr "Важно"
850
 
851
+ #: ../classes/settings.php:426
852
  msgid "Database Changes"
853
  msgstr "Изменения базы данных"
854
 
855
+ #: ../classes/settings.php:427
856
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
857
+ msgstr "База данных была изменена между версиями 1 и 2. Но мы убедились, что вы все еще можете вернуться к версии 1х без каких-либо проблем."
 
 
 
 
858
 
859
+ #: ../classes/settings.php:430
860
  msgid "Make sure you backup your database and then click"
861
  msgstr "Убедитесь, что вы сделали резервную копию базы данных, а затем нажмите"
862
 
863
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
864
  msgid "Upgrade Database"
865
  msgstr "Обновить базу данных"
866
 
867
+ #: ../classes/settings.php:433
868
  msgid "Potential Issues"
869
  msgstr "Потенциальные проблемы"
870
 
871
+ #: ../classes/settings.php:434
872
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
873
+ msgstr "Сделав значительную реорганизацию кода плагинов и фильтров, ваш сайт может работать неправильно. Важно, чтобы вы прочитали полное"
 
 
 
 
 
874
 
875
+ #: ../classes/settings.php:434
876
  msgid "Migrating from v1 to v2"
877
  msgstr "Переход от v1 до v2"
878
 
879
+ #: ../classes/settings.php:434
880
  msgid "guide to view the full list of changes."
881
  msgstr "руководство, чтобы увидеть полный список изменений."
882
 
883
+ #: ../classes/settings.php:434
884
  #, php-format
885
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
886
+ msgstr "Если вы обнаружите ошибки, пожалуйста, <a href=\"%s\">сообщите о них нам</a>, чтобы мы исправили их в следующем выпуске."
 
 
 
 
887
 
888
+ #: ../classes/settings.php:437
889
  msgid "Important!"
890
  msgstr "Важно!"
891
 
892
+ #: ../classes/settings.php:437
893
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
894
+ msgstr "Если вы обновили плагин Admin Columns без предварительного знания о таких изменениях, пожалуйста сделайте откат к последней"
 
 
 
 
895
 
896
+ #: ../classes/settings.php:437
897
  msgid "version 1"
898
  msgstr "версии 1"
899
 
900
+ #: ../classes/settings.php:437
901
  msgid "of this plugin."
902
  msgstr "этого плагина."
903
 
904
+ #: ../classes/settings.php:443
905
  msgid "Changelog for"
906
  msgstr "История изменений для"
907
 
908
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
909
  msgid "Learn more"
910
  msgstr "Изучить больше"
911
 
912
+ #: ../classes/settings.php:468
913
  msgid "Start using Admin Columns"
914
  msgstr "начать, используя Admin Columns"
915
 
916
+ #: ../classes/settings.php:511
917
  msgid "General Settings"
918
  msgstr "Общие настройки"
919
 
920
+ #: ../classes/settings.php:512
921
  msgid "Customize your Admin Columns settings."
922
  msgstr "Настроить параметры Admin Columns."
923
 
924
+ #: ../classes/settings.php:523
925
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
 
926
  msgstr ""
 
 
927
 
928
+ #: ../classes/settings.php:530 ../classes/settings.php:660
929
  msgid "Save"
930
  msgstr "Сохранить"
931
 
932
+ #: ../classes/settings.php:570
933
  msgid "Restore Settings"
934
  msgstr "Восстановить настройки"
935
 
936
+ #: ../classes/settings.php:571
937
  msgid "This will delete all column settings and restore the default settings."
938
+ msgstr "Это удалит все настройки столбцов и восстановит настройки по умолчанию."
 
939
 
940
+ #: ../classes/settings.php:577
941
  msgid "Restore default settings"
942
  msgstr "Восстановить настройки по умолчанию"
943
 
944
+ #: ../classes/settings.php:577
945
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
946
+ msgstr "Предупреждение! Все сохраненные данные колонки администратора будут удалены. Это не может быть отменено. \\'ОК\\' для удаления, \\'Отмена\\' для отмены"
 
 
 
 
947
 
948
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
949
  msgid "Settings"
950
  msgstr "Настройки"
951
 
952
+ #: ../classes/settings.php:600
953
  msgid "Add-ons"
954
  msgstr "Дополнения"
955
 
956
+ #: ../classes/settings.php:625
957
  msgid "Posttypes"
958
  msgstr "Типы постов"
959
 
960
+ #: ../classes/settings.php:626
961
  msgid "Others"
962
  msgstr "Другое"
963
 
964
+ #: ../classes/settings.php:627
965
  msgid "Taxonomies"
966
  msgstr "Таксономии"
967
 
968
+ #: ../classes/settings.php:646
969
  #, php-format
970
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
971
+ msgstr "Столбцы для <strong>%s</strong> устанавливаются через PHP и поэтому не могут быть отредактированы в админ-панели."
 
 
 
 
972
 
973
+ #: ../classes/settings.php:656
974
  msgid "Store settings"
975
  msgstr "Настройки памяти"
976
 
977
+ #: ../classes/settings.php:660
978
  msgid "Update"
979
  msgstr "Обновить"
980
 
981
+ #: ../classes/settings.php:664
982
  #, php-format
983
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
984
+ msgstr "Предупреждение! Столбцы данных в %s будут удалены. Это не может быть отменено. \\'ОК\\' для удаления, \\'Отмена\\' для отмены"
 
 
 
 
985
 
986
+ #: ../classes/settings.php:665
987
  msgid "columns"
988
  msgstr "столбцы"
989
 
990
+ #: ../classes/settings.php:684
991
  msgid "Get Admin Columns Pro"
992
  msgstr "Получить Admin Columns Pro"
993
 
994
+ #: ../classes/settings.php:688
995
  msgid "Add Sorting"
996
  msgstr "Добавить сортировку"
997
 
998
+ #: ../classes/settings.php:689
999
  msgid "Add Filtering"
1000
  msgstr "Добавить фильтрацию"
1001
 
1002
+ #: ../classes/settings.php:690
1003
  msgid "Add Import/Export"
1004
  msgstr "Добавить Импорт/Экспорт"
1005
 
1006
+ #: ../classes/settings.php:691
1007
  msgid "Add Direct Editing"
1008
  msgstr "Добавить Прямое редактирование"
1009
 
1010
+ #: ../classes/settings.php:694
1011
  #, php-format
1012
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1013
+ msgstr "Проверьте <a href=\"%s\">Admin Columns Pro</a> для получения подробной информации!"
1014
+
1015
+ #: ../classes/settings.php:725
1016
+ msgid "Are you happy with Admin Columns?"
1017
+ msgstr ""
1018
+
1019
+ #: ../classes/settings.php:733
1020
+ msgid "What's wrong? Need help? Let us know!"
1021
+ msgstr ""
1022
+
1023
+ #: ../classes/settings.php:734
1024
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1025
  msgstr ""
 
 
1026
 
1027
  #: ../classes/settings.php:742
1028
+ msgid "Docs"
1029
+ msgstr ""
1030
+
1031
+ #: ../classes/settings.php:747
1032
+ msgid "Forums"
1033
+ msgstr ""
1034
+
1035
+ #: ../classes/settings.php:756
1036
+ msgid "Woohoo! We're glad to hear that!"
1037
+ msgstr ""
1038
+
1039
+ #: ../classes/settings.php:757
1040
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1041
+ msgstr ""
1042
+
1043
+ #: ../classes/settings.php:761
1044
+ msgid "Rate"
1045
+ msgstr ""
1046
+
1047
+ #: ../classes/settings.php:772
1048
+ msgid "Tweet"
1049
+ msgstr ""
1050
+
1051
+ #: ../classes/settings.php:782
1052
+ msgid "Buy Pro"
1053
+ msgstr ""
1054
+
1055
+ #: ../classes/settings.php:794
1056
  msgid "Support"
1057
  msgstr "Поддержка"
1058
 
1059
+ #: ../classes/settings.php:797
1060
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1061
  msgstr "Проверьте раздел <strong>Помощь</strong> в правом верхнем углу."
1062
 
1063
+ #: ../classes/settings.php:800
1064
  #, php-format
1065
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1066
+ msgstr "Для получения полной документации, отчетов об ошибках, особых предложений и других материалов <a href='%s'>посетите сайт Admin Columns</a>"
 
 
 
 
1067
 
1068
+ #: ../classes/settings.php:829
1069
  msgid "Drag and drop to reorder"
1070
  msgstr "Перетащите, чтобы изменить порядок"
1071
 
1072
+ #: ../classes/settings.php:832
1073
  msgid "Add Column"
1074
  msgstr "Добавить столбец"
1075
 
1076
+ #: ../classes/settings.php:908
1077
  msgid "Active"
1078
  msgstr "Активно"
1079
 
1080
+ #: ../classes/settings.php:909
1081
  msgid "Deactivate"
1082
  msgstr "Деактивировать"
1083
 
1084
+ #: ../classes/settings.php:916
1085
  msgid "Installed"
1086
  msgstr "Установлено"
1087
 
1088
+ #: ../classes/settings.php:917
1089
  msgid "Activate"
1090
  msgstr "Активировать"
1091
 
1092
+ #: ../classes/settings.php:931
1093
  msgid "Download & Install"
1094
  msgstr "Загрузить и установить"
1095
 
1096
+ #: ../classes/settings.php:936
1097
  msgid "Get this add-on"
1098
  msgstr "Получить это дополнение"
1099
 
1100
+ #: ../classes/storage_model.php:213
1101
  msgid "settings succesfully restored."
1102
  msgstr "настройки успешно восстановлены."
1103
 
1104
+ #: ../classes/storage_model.php:229
1105
  msgid "No columns settings available."
1106
  msgstr "Нет доступных настроек столбцов."
1107
 
1108
+ #: ../classes/storage_model.php:250
1109
  #, php-format
1110
  msgid "You are trying to store the same settings for %s."
1111
  msgstr "Вы пытаетесь сохранить те же настройки для %s."
1112
 
1113
+ #: ../classes/storage_model.php:254
1114
  #, php-format
1115
  msgid "Settings for %s updated succesfully."
1116
  msgstr "Настройки для %s успешно обновлены."
1127
  msgid "Users"
1128
  msgstr "Пользователи"
1129
 
1130
+ #: ../classes/upgrade.php:62
1131
+ msgid ""
1132
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of <strong>Admin Columns Pro</strong> <a href=\"http://www."
1133
+ "admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new features, including Direct Inline Editing!"
1134
+ msgstr ""
1135
+
1136
+ #: ../classes/upgrade.php:95
1137
  msgid "Upgrade"
1138
  msgstr "Обновить"
1139
 
1140
+ #: ../classes/upgrade.php:136
1141
  msgid "requires a database upgrade"
1142
  msgstr "требуется обновление базы данных"
1143
 
1144
+ #: ../classes/upgrade.php:139
1145
  msgid "why?"
1146
  msgstr "почему?"
1147
 
1148
+ #: ../classes/upgrade.php:140
1149
  msgid "Please"
1150
  msgstr "Пожалуйста"
1151
 
1152
+ #: ../classes/upgrade.php:141
1153
  msgid "backup your database"
1154
  msgstr "создайте резервную копию базы данных"
1155
 
1156
+ #: ../classes/upgrade.php:142
1157
  msgid "then click"
1158
  msgstr "затем нажмите"
1159
 
1160
+ #: ../classes/upgrade.php:351
1161
  msgid "Migrating Column Settings"
1162
  msgstr "Перенос настроек столбцов"
1163
 
1164
+ #: ../classes/upgrade.php:387
1165
  msgid "No Upgrade Required"
1166
  msgstr "Обновление не требуется"
1167
 
1168
+ #: ../classes/upgrade.php:388
1169
  msgid "Return to welcome screen."
1170
  msgstr "Вернуться на начальный экран."
1171
 
1172
+ #: ../classes/upgrade.php:406
1173
  msgid "Upgrade Complete!"
1174
  msgstr "Обновление завершено!"
1175
 
1176
+ #: ../classes/upgrade.php:406
1177
  msgid "Return to settings."
1178
  msgstr "Возврат к настройкам."
1179
 
1180
+ #: ../classes/upgrade.php:407
1181
  msgid "Error"
1182
  msgstr "Ошибка"
1183
 
1184
+ #: ../classes/upgrade.php:408
1185
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1186
+ msgstr "Извините. Что-то пошло не так во время процесса обновления. Пожалуйста, сообщите об этом на форуме поддержки."
 
 
 
 
1187
 
1188
+ #: ../codepress-admin-columns.php:390
1189
  msgid "Edit columns"
1190
  msgstr "Редактировать столбцы"
languages/cpac-sv_SE.mo CHANGED
Binary file
languages/cpac-sv_SE.po CHANGED
@@ -6,352 +6,334 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
10
- "PO-Revision-Date: 2014-08-28 12:17+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
- "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/admin-"
13
- "columns/language/sv_SE/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: sv_SE\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Generator: Poedit 1.6.8\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
- #: ../classes/addons.php:117
27
  msgid "Third party plugin integration"
28
  msgstr "Tredjeparts plugin integration"
29
 
30
- #: ../classes/addons.php:142
31
  msgid "Advanced Custom Fields"
32
  msgstr "Advanced Custom Fields"
33
 
34
- #: ../classes/addons.php:143
35
- msgid ""
36
- "Display and edit Advanced Custom Fields fields in the posts overview in "
37
- "seconds!"
 
 
 
 
 
 
38
  msgstr ""
39
- "Visa och redigera Advanced Custom Fields fält vid inläggets överblick på "
40
- "några sekunder! "
41
 
42
- #: ../classes/column.php:481
43
  msgid "Thumbnail"
44
  msgstr "Miniatyrer"
45
 
46
- #: ../classes/column.php:482
47
  msgid "Medium"
48
  msgstr "Mellan"
49
 
50
- #: ../classes/column.php:483
51
  msgid "Large"
52
  msgstr "Stor"
53
 
54
- #: ../classes/column.php:484
55
  msgid "Full"
56
  msgstr "Hel"
57
 
58
- #: ../classes/column.php:751
59
  msgid "Date Format"
60
  msgstr "Datumformat"
61
 
62
- #: ../classes/column.php:752
63
  msgid "This will determine how the date will be displayed."
64
  msgstr "Detta kommer att avgöra hur datumet ska visas."
65
 
66
- #: ../classes/column.php:758
67
  msgid "Example:"
68
  msgstr "Exempel:"
69
 
70
- #: ../classes/column.php:760
71
  #, php-format
72
- msgid ""
73
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
74
- "date format here</a>."
75
- msgstr ""
76
- "Lämna tomt för WordPress datumformat, ändra din <a href=\"%s\">standard "
77
- "datumformat här</a>."
78
 
79
- #: ../classes/column.php:761
80
  msgid "Documentation on date and time formatting."
81
  msgstr "Dokumentation om datum och tid formatering."
82
 
83
- #: ../classes/column.php:775
84
  msgid "Excerpt length"
85
  msgstr "Utdragens längd"
86
 
87
- #: ../classes/column.php:776
88
  msgid "Number of words"
89
  msgstr "Antal ord"
90
 
91
- #: ../classes/column.php:794
92
  msgid "Preview size"
93
  msgstr "Förhandsgranska storlek"
94
 
95
- #: ../classes/column.php:811 ../classes/storage_model.php:505
96
  msgid "Custom"
97
  msgstr "Anpassad"
98
 
99
- #: ../classes/column.php:814
100
  msgid "width"
101
  msgstr "bredd"
102
 
103
- #: ../classes/column.php:817
104
  msgid "height"
105
  msgstr "höjd"
106
 
107
- #: ../classes/column.php:831
108
  msgid "Before"
109
  msgstr "Innan"
110
 
111
- #: ../classes/column.php:831
112
  msgid "This text will appear before the custom field value."
113
  msgstr "Denna text kommer att visas innan det anpassade fältet värde."
114
 
115
- #: ../classes/column.php:837
116
  msgid "After"
117
  msgstr "Efter"
118
 
119
- #: ../classes/column.php:837
120
  msgid "This text will appear after the custom field value."
121
  msgstr "Denna text kommer att visas efter det anpassade fältet värde."
122
 
123
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
124
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
125
- #: ../classes/column/user/actions.php:66
126
  msgid "Edit"
127
  msgstr "Redigera"
128
 
129
- #: ../classes/column.php:927 ../classes/column.php:1005
130
- #: ../classes/column/user/actions.php:74
131
  msgid "Remove"
132
  msgstr "Ta bort"
133
 
134
- #: ../classes/column.php:945
135
  msgid "Type"
136
  msgstr "Typ"
137
 
138
- #: ../classes/column.php:945
139
  msgid "Choose a column type."
140
  msgstr "Välj en kolumntyp."
141
 
142
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
143
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
144
- #: ../classes/column/post/ID.php:12
145
  msgid "ID"
146
  msgstr "ID"
147
 
148
- #: ../classes/column.php:955
149
  msgid "Label"
150
  msgstr "Etikett"
151
 
152
- #: ../classes/column.php:955
153
  msgid "This is the name which will appear as the column header."
154
  msgstr "Detta är det namn som kommer att visas som kolumnrubriken."
155
 
156
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
157
  msgid "Width"
158
  msgstr "Bredd"
159
 
160
- #: ../classes/column.php:964 ../classes/column.php:965
161
  msgid "default"
162
  msgstr "standard"
163
 
164
- #: ../classes/column/acf-placeholder.php:16
165
  msgid "ACF Field"
166
  msgstr "ACF Fält"
167
 
168
  #: ../classes/column/acf-placeholder.php:32
169
- msgid "This feature is only available in Admin Columns Pro - Developer."
170
  msgstr ""
171
- "Den här funktionen är endast tillgänglig i Admin Columns Pro - Utvecklare."
172
 
173
  #: ../classes/column/acf-placeholder.php:35
174
  #, php-format
175
- msgid ""
176
- "If you have a developer licence please download & install your ACF add-on "
177
- "from the <a href='%s'>add-ons tab</a>."
178
- msgstr ""
179
- "Om du har en utvecklarlicens vänligen ladda ner & installera ditt ACF "
180
- "tillägg från <a href='%s'>fliken tillägg</a>."
181
 
182
  #: ../classes/column/acf-placeholder.php:38
183
- msgid ""
184
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
185
- "integeration, allowing you to easily display and edit ACF fields from within "
186
- "your posts overview."
187
- msgstr ""
188
- "Admins Columns Pro - Utvecklare erbjuder full integration med Advanced "
189
- "Custom Fields, vilket gör att du enkelt kan visa och redigera ACF fält i "
190
- "överblick för dina inlägg."
191
 
192
- #: ../classes/column/acf-placeholder.php:40
193
  msgid "Find out more"
194
  msgstr "Läs mer"
195
 
196
- #: ../classes/column/comment/actions.php:14
197
- #: ../classes/column/link/actions.php:14
198
- #: ../classes/column/media/actions.php:14
199
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
200
  msgid "Actions"
201
  msgstr "Åtgärder"
202
 
203
- #: ../classes/column/comment/actions.php:73
204
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  msgid "Unapprove"
206
  msgstr "Förkastad"
207
 
208
- #: ../classes/column/comment/actions.php:75
209
- #: ../classes/column/comment/actions.php:77
210
  msgid "Approve"
211
  msgstr "Godkänn"
212
 
213
- #: ../classes/column/comment/actions.php:86
214
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
215
  msgid "Restore"
216
  msgstr "Återställ"
217
 
218
- #: ../classes/column/comment/actions.php:90
219
- #: ../classes/column/post/actions.php:66
220
  msgid "Delete Permanently"
221
  msgstr "Radera permanent"
222
 
223
- #: ../classes/column/comment/actions.php:97
224
- #: ../classes/column/post/actions.php:58
225
  msgid "Quick&nbsp;Edit"
226
  msgstr "Snabbt&nbsp;Redigera"
227
 
228
- #: ../classes/column/comment/actions.php:98
229
  msgid "Reply"
230
  msgstr "Svara"
231
 
232
- #: ../classes/column/comment/agent.php:12
233
  msgid "Agent"
234
  msgstr "Agent"
235
 
236
- #: ../classes/column/comment/approved.php:12
237
- #: ../classes/column/post/comment-count.php:31
238
  msgid "Approved"
239
  msgstr "Godkänd"
240
 
241
- #: ../classes/column/comment/author-avatar.php:12
242
  msgid "Avatar"
243
  msgstr "Avatar"
244
 
245
- #: ../classes/column/comment/author-email.php:12
246
  msgid "Author email"
247
  msgstr "Författare mail"
248
 
249
- #: ../classes/column/comment/author-ip.php:12
250
  msgid "Author IP"
251
  msgstr "Författare IP"
252
 
253
- #: ../classes/column/comment/author-url.php:12
254
  msgid "Author url"
255
  msgstr "Författare url"
256
 
257
- #: ../classes/column/comment/author.php:12
258
  msgid "Author"
259
  msgstr "Författare"
260
 
261
- #: ../classes/column/comment/date-gmt.php:12
262
  msgid "Date GMT"
263
  msgstr "Datum GMT"
264
 
265
- #: ../classes/column/comment/date-gmt.php:25
266
- #: ../classes/column/comment/date.php:25
267
  #, php-format
268
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
269
  msgstr "Skickad den <a href=\"%1$s\">%2$s vid %3$s</a>"
270
 
271
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
272
- #: ../classes/settings.php:300
273
  msgid "Date"
274
  msgstr "Datum"
275
 
276
- #: ../classes/column/comment/excerpt.php:13
277
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
278
- #: ../classes/settings.php:297
279
  msgid "Excerpt"
280
  msgstr "Utdrag"
281
 
282
- #: ../classes/column/comment/reply-to.php:12
283
  msgid "In Reply To"
284
  msgstr "Som svar på"
285
 
286
- #: ../classes/column/comment/word-count.php:12
287
- #: ../classes/column/post/word-count.php:12
288
  msgid "Word count"
289
  msgstr "Antal ord"
290
 
291
- #: ../classes/column/custom-field.php:16
292
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
293
  msgid "Custom Field"
294
  msgstr "Anpassat fält"
295
 
296
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
297
- #: ../classes/storage_model.php:504
298
  msgid "Default"
299
  msgstr "Standard"
300
 
301
- #: ../classes/column/custom-field.php:66
302
  msgid "Checkmark (true/false)"
303
  msgstr "Checkmark (sant/falskt)"
304
 
305
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
306
  msgid "Color"
307
  msgstr "Färg"
308
 
309
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
310
  msgid "Counter"
311
  msgstr "Räknare"
312
 
313
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
314
- #: ../classes/settings.php:296
315
  msgid "Image"
316
  msgstr "Bild"
317
 
318
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
319
  msgid "Media Library"
320
  msgstr "Mediabibliotek"
321
 
322
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
323
  msgid "Multiple Values"
324
  msgstr "Flera värden"
325
 
326
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
327
  msgid "Numeric"
328
  msgstr "Numerisk"
329
 
330
- #: ../classes/column/custom-field.php:75
331
  msgid "Post Title (Post ID's)"
332
  msgstr "Titel"
333
 
334
- #: ../classes/column/custom-field.php:76
335
  msgid "Username (User ID's)"
336
  msgstr "Användarnamn (Användar-ID)"
337
 
338
- #: ../classes/column/custom-field.php:384
339
  msgid "Select your custom field."
340
  msgstr "Välj ditt anpassade fält."
341
 
342
- #: ../classes/column/custom-field.php:394
343
  msgid "No custom fields available."
344
  msgstr "Inget anpassat fält är tillgängligt."
345
 
346
- #: ../classes/column/custom-field.php:401
347
  msgid "Field Type"
348
  msgstr "Fälttyp"
349
 
350
- #: ../classes/column/custom-field.php:401
351
  msgid "This will determine how the value will be displayed."
352
  msgstr "Detta avgör hur värdet kommer att visas."
353
 
354
- #: ../classes/column/link/actions.php:46
355
  #, php-format
356
  msgid ""
357
  "You are about to delete this link '%s'\n"
@@ -360,841 +342,777 @@ msgstr ""
360
  "Du är på väg att radera denna länk '%s'\n"
361
  " 'Avbryt' för att avbryta, 'OK' för att radera"
362
 
363
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
364
  msgid "Delete"
365
  msgstr "Radera"
366
 
367
- #: ../classes/column/link/description.php:12
368
- #: ../classes/column/media/description.php:12
369
- #: ../classes/column/user/description.php:14
370
  msgid "Description"
371
  msgstr "Beskrivning"
372
 
373
- #: ../classes/column/link/length.php:12
374
  msgid "Length"
375
  msgstr "Längd"
376
 
377
- #: ../classes/column/link/notes.php:13
378
  msgid "Notes"
379
  msgstr "Anteckningar"
380
 
381
- #: ../classes/column/link/owner.php:12
382
  msgid "Owner"
383
  msgstr "Ägare"
384
 
385
- #: ../classes/column/link/rss.php:12
386
  msgid "Rss"
387
  msgstr "RSS"
388
 
389
- #: ../classes/column/link/target.php:12
390
  msgid "Target"
391
  msgstr "Mål"
392
 
393
- #: ../classes/column/media/alternate-text.php:12
394
  msgid "Alt"
395
  msgstr "Alt"
396
 
397
- #: ../classes/column/media/available-sizes.php:14
398
  msgid "Available Sizes"
399
  msgstr "Tillgängliga storlekar"
400
 
401
- #: ../classes/column/media/available-sizes.php:37
402
  msgid "full size"
403
  msgstr "full storlek"
404
 
405
- #: ../classes/column/media/caption.php:12
406
- #: ../classes/column/media/exif-data.php:36
407
  msgid "Caption"
408
  msgstr "Bildtext"
409
 
410
- #: ../classes/column/media/dimensions.php:12
411
  msgid "Dimensions"
412
  msgstr "Dimensioner"
413
 
414
- #: ../classes/column/media/exif-data.php:12
415
  msgid "EXIF data"
416
  msgstr "EXIF data"
417
 
418
- #: ../classes/column/media/exif-data.php:33
419
  msgid "Aperture"
420
  msgstr "Bländare"
421
 
422
- #: ../classes/column/media/exif-data.php:34
423
  msgid "Credit"
424
  msgstr "Erkännande"
425
 
426
- #: ../classes/column/media/exif-data.php:35
427
  msgid "Camera"
428
  msgstr "Kamera"
429
 
430
- #: ../classes/column/media/exif-data.php:37
431
  msgid "Timestamp"
432
  msgstr "Tidsstämpel"
433
 
434
- #: ../classes/column/media/exif-data.php:38
435
  msgid "Copyright EXIF"
436
  msgstr "Upphovsrätt EXIF"
437
 
438
- #: ../classes/column/media/exif-data.php:39
439
  msgid "Focal Length"
440
  msgstr "Bränvidd"
441
 
442
- #: ../classes/column/media/exif-data.php:40
443
  msgid "ISO"
444
  msgstr "ISO"
445
 
446
- #: ../classes/column/media/exif-data.php:41
447
  msgid "Shutter Speed"
448
  msgstr "Slutartid"
449
 
450
- #: ../classes/column/media/exif-data.php:42
451
  msgid "Title"
452
  msgstr "Titel"
453
 
454
- #: ../classes/column/media/file-name.php:12
455
  msgid "File name"
456
  msgstr "Filnamn"
457
 
458
- #: ../classes/column/media/file-size.php:12
459
  msgid "File size"
460
  msgstr "Filstorlek"
461
 
462
- #: ../classes/column/media/full-path.php:12
463
  msgid "Full path"
464
  msgstr "Full path"
465
 
466
- #: ../classes/column/media/height.php:12
467
  msgid "Height"
468
  msgstr "Höjd"
469
 
470
- #: ../classes/column/media/mime-type.php:12
471
  msgid "Mime type"
472
  msgstr "Mime typ"
473
 
474
- #: ../classes/column/post/actions.php:57
475
  msgid "Edit this item"
476
  msgstr "Redigera detta objekt"
477
 
478
- #: ../classes/column/post/actions.php:58
479
  msgid "Edit this item inline"
480
  msgstr "Redigera detta objekt inbäddat"
481
 
482
- #: ../classes/column/post/actions.php:62
483
  msgid "Restore this item from the Trash"
484
  msgstr "Återställ detta objekt från papperskorgen"
485
 
486
- #: ../classes/column/post/actions.php:64
487
  msgid "Move this item to the Trash"
488
  msgstr "Flytta detta objekt till papperskorgen"
489
 
490
- #: ../classes/column/post/actions.php:64
491
- #: ../classes/column/post/comment-count.php:34
492
- #: ../classes/column/post/status.php:38
493
  msgid "Trash"
494
  msgstr "Papperskorg"
495
 
496
- #: ../classes/column/post/actions.php:66
497
  msgid "Delete this item permanently"
498
  msgstr "Ta bort detta objeckt permanent"
499
 
500
- #: ../classes/column/post/actions.php:71
501
  #, php-format
502
  msgid "Preview &#8220;%s&#8221;"
503
  msgstr "Förhandsgranska &#8220;%s&#8221;"
504
 
505
- #: ../classes/column/post/actions.php:71
506
  msgid "Preview"
507
  msgstr "Förhandsgranska"
508
 
509
- #: ../classes/column/post/actions.php:73
510
  #, php-format
511
  msgid "View &#8220;%s&#8221;"
512
  msgstr "Visa &#8220;%s&#8221;"
513
 
514
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
515
  msgid "View"
516
  msgstr "Visa"
517
 
518
- #: ../classes/column/post/attachment-count.php:12
519
  msgid "No. of Attachments"
520
  msgstr "No. av bilagor"
521
 
522
- #: ../classes/column/post/attachment.php:12
523
  msgid "Attachment"
524
  msgstr "Bilaga"
525
 
526
- #: ../classes/column/post/author-name.php:12
527
  msgid "Display Author As"
528
  msgstr "Visa som författare"
529
 
530
- #: ../classes/column/post/author-name.php:34
531
  msgid "Display Name"
532
  msgstr "Visa namn"
533
 
534
- #: ../classes/column/post/author-name.php:35
535
  msgid "First Name"
536
  msgstr "Förnamn"
537
 
538
- #: ../classes/column/post/author-name.php:36
539
  msgid "Last Name"
540
  msgstr "Efternamn"
541
 
542
- #: ../classes/column/post/author-name.php:37
543
- #: ../classes/column/user/nickname.php:14
544
  msgid "Nickname"
545
  msgstr "Smeknamn"
546
 
547
- #: ../classes/column/post/author-name.php:38
548
  msgid "User Login"
549
  msgstr "Användare Loggin"
550
 
551
- #: ../classes/column/post/author-name.php:39
552
  msgid "User Email"
553
  msgstr "Användare Email"
554
 
555
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
556
  msgid "User ID"
557
  msgstr "Användar-ID"
558
 
559
- #: ../classes/column/post/author-name.php:41
560
  msgid "First and Last Name"
561
  msgstr "Förnamn och efternamn"
562
 
563
- #: ../classes/column/post/author-name.php:118
564
  msgid "This is the format of the author name."
565
  msgstr "Detta är formatet på författarens namn."
566
 
567
- #: ../classes/column/post/before-moretag.php:14
568
  msgid "Before More Tag"
569
  msgstr "Innan mer tagg"
570
 
571
- #: ../classes/column/post/comment-count.php:14
572
  msgid "Comment count"
573
  msgstr "Antal kommentarer"
574
 
575
- #: ../classes/column/post/comment-count.php:30
576
  msgid "Total"
577
  msgstr "Totalt"
578
 
579
- #: ../classes/column/post/comment-count.php:32
580
  msgid "Pending"
581
  msgstr "Avvaktan"
582
 
583
- #: ../classes/column/post/comment-count.php:33
584
  msgid "Spam"
585
  msgstr "Spam"
586
 
587
- #: ../classes/column/post/comment-count.php:95
588
- #: ../classes/column/post/comment-status.php:14
589
  msgid "Comment status"
590
  msgstr "Kommentarsstatus"
591
 
592
- #: ../classes/column/post/comment-count.php:95
593
  msgid "Select which comment status you like to display."
594
  msgstr "Välj vilken kommentarsstatus du vill visa."
595
 
596
- #: ../classes/column/post/featured-image.php:14
597
  msgid "Featured Image"
598
  msgstr "Utvald bild"
599
 
600
- #: ../classes/column/post/formats.php:14
601
  msgid "Post Format"
602
  msgstr "Inläggsformat"
603
 
604
- #: ../classes/column/post/modified.php:14
605
  msgid "Last modified"
606
  msgstr "Senast ändrad"
607
 
608
- #: ../classes/column/post/order.php:14
609
  msgid "Page Order"
610
  msgstr "Sidordning"
611
 
612
- #: ../classes/column/post/page-template.php:12
613
  msgid "Page Template"
614
  msgstr "Sidmallen"
615
 
616
- #: ../classes/column/post/parent.php:12
617
  msgid "Parent"
618
  msgstr "Förälder"
619
 
620
- #: ../classes/column/post/permalink.php:12
 
 
 
 
621
  msgid "Permalink"
622
  msgstr "Permalänk"
623
 
624
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
 
 
 
 
625
  msgid "Ping status"
626
  msgstr "Ping status"
627
 
628
- #: ../classes/column/post/roles.php:14
629
  msgid "Roles"
630
  msgstr "Roller"
631
 
632
- #: ../classes/column/post/slug.php:12
633
  msgid "Slug"
634
  msgstr "Permalänk"
635
 
636
- #: ../classes/column/post/status.php:14
637
  msgid "Status"
638
  msgstr "Status"
639
 
640
- #: ../classes/column/post/status.php:32
641
  msgid "Published"
642
  msgstr "Publicerad"
643
 
644
- #: ../classes/column/post/status.php:33
645
  msgid "Draft"
646
  msgstr "Utkast"
647
 
648
- #: ../classes/column/post/status.php:34
649
  msgid "Scheduled"
650
  msgstr "Planerat"
651
 
652
- #: ../classes/column/post/status.php:35
653
  msgid "Private"
654
  msgstr "Privat"
655
 
656
- #: ../classes/column/post/status.php:36
657
  msgid "Pending Review"
658
  msgstr "Väntar på granskning"
659
 
660
- #: ../classes/column/post/status.php:37
661
  msgid "Auto Draft"
662
  msgstr "Automatiskt utkast"
663
 
664
- #: ../classes/column/post/sticky.php:14
665
  msgid "Sticky"
666
  msgstr "Klistrad"
667
 
668
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
669
  msgid "Taxonomy"
670
  msgstr "Taxonomi"
671
 
672
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
673
  msgid "Comment Count"
674
  msgstr "Antal kommentarer"
675
 
676
- #: ../classes/column/user/first-name.php:14
677
  msgid "First name"
678
  msgstr "Förnamn"
679
 
680
- #: ../classes/column/user/last-name.php:14
681
  msgid "Last name"
682
  msgstr "Efternamn"
683
 
684
- #: ../classes/column/user/post-count.php:14
685
  msgid "Post Count"
686
  msgstr "Inläggsräknare"
687
 
688
- #: ../classes/column/user/post-count.php:99
689
  msgid "Post Type"
690
  msgstr "Inläggstyp"
691
 
692
- #: ../classes/column/user/registered.php:14
693
  msgid "Registered"
694
  msgstr "Registrerad"
695
 
696
- #: ../classes/column/user/url.php:14
697
  msgid "Url"
698
  msgstr "Url"
699
 
700
- #: ../classes/settings.php:97
701
  msgid "Add-on successfully activated."
702
  msgstr "Tillägget aktiverat."
703
 
704
- #: ../classes/settings.php:100
705
  msgid "Add-on successfully deactivated."
706
  msgstr "Tillägget inaktiverat."
707
 
708
- #: ../classes/settings.php:155
709
  msgid "Admin Columns Settings"
710
  msgstr "Admin Columns Inställningar"
711
 
712
- #: ../classes/settings.php:155 ../classes/settings.php:619
713
- #: ../classes/upgrade.php:83
714
  msgid "Admin Columns"
715
  msgstr "Admin Columns"
716
 
717
- #: ../classes/settings.php:203
718
  #, php-format
719
  msgid "%s column is already present and can not be duplicated."
720
  msgstr "%s kolumn finns redan och kan inte dupliceras."
721
 
722
- #: ../classes/settings.php:256
723
  msgid "Default settings succesfully restored."
724
  msgstr "Standardinställningar återställdes framgångsrikt."
725
 
726
- #: ../classes/settings.php:273
727
  msgid "Overview"
728
  msgstr "Översikt"
729
 
730
- #: ../classes/settings.php:276
731
- msgid ""
732
- "This plugin is for adding and removing additional columns to the "
733
- "administration screens for post(types), pages, media library, comments, "
734
- "links and users. Change the column's label and reorder them."
735
- msgstr ""
736
- "Denna plugin är för att lägga till och ta bort ytterligare kolumner till "
737
- "administrationsvyn för inlägg(typer), sidor, mediabibliotek, kommentarer, "
738
- "länkar och användare. Ändra kolumens etikett och ändra ordningen."
739
 
740
- #: ../classes/settings.php:279
741
  msgid "Basics"
742
  msgstr "Grundläggande"
743
 
744
- #: ../classes/settings.php:281
745
  msgid "Change order"
746
  msgstr "Ändra ordning"
747
 
748
- #: ../classes/settings.php:282
749
- msgid ""
750
- "By dragging the columns you can change the order which they will appear in."
751
  msgstr "Genom att dra kolumnerna så kan du ändra ordningen som de visas i."
752
 
753
- #: ../classes/settings.php:283
754
  msgid "Change label"
755
  msgstr "Ändra etikett"
756
 
757
- #: ../classes/settings.php:284
758
- msgid ""
759
- "By clicking on the triangle you will see the column options. Here you can "
760
- "change each label of the columns heading."
761
- msgstr ""
762
- "Genom att klicka på triangeln kommer du att se kolumnalternativ. Här kan du "
763
- "ändra varje etikett av kolumnernas rubrik."
764
 
765
- #: ../classes/settings.php:285
766
  msgid "Change column width"
767
  msgstr "Ändra kolumnens bredd"
768
 
769
- #: ../classes/settings.php:286
770
- msgid ""
771
- "By clicking on the triangle you will see the column options. By using the "
772
- "draggable slider you can set the width of the columns in percentages."
773
- msgstr ""
774
- "Genom att klicka på triangeln kommer du att se kolumnalternativ. Genom att "
775
- "använda dragbar reglaget kan du ställa in bredden på kolumnerna i procent."
776
 
777
- #: ../classes/settings.php:292
778
  msgid "'Custom Field' column"
779
  msgstr "'Anpassat fält' kolumn "
780
 
781
- #: ../classes/settings.php:293
782
- msgid ""
783
- "The custom field colum uses the custom fields from posts and users. There "
784
- "are 10 types which you can set."
785
- msgstr ""
786
- "Det anpassade fältets kolumn använder den anpassade fältet från inlägg och "
787
- "användare. Det fins 10 typer som du kan ange."
788
 
789
- #: ../classes/settings.php:295
790
- msgid ""
791
- "Value: Can be either a string or array. Arrays will be flattened and values "
792
- "are seperated by a ',' comma."
793
- msgstr ""
794
- "Värde: Kan antingen vara en sträng eller array. Arrays ska plattas och "
795
- "värden åtskilda av en ',' kommatecken."
796
 
797
- #: ../classes/settings.php:296
798
- msgid ""
799
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
800
- "comma )."
801
- msgstr ""
802
- "Värde: ska innehålla en bildadress eller bilags-ID ( separerad av ett ',' "
803
- "kommatecken )."
804
 
805
- #: ../classes/settings.php:297
806
  msgid "Value: This will show the first 20 words of the Post content."
807
  msgstr "Värde: Detta kommer visa de första 20 orden av inläggets innehåll."
808
 
809
- #: ../classes/settings.php:298
810
- msgid ""
811
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
812
- msgstr ""
813
- "Värde: skall vara en array. Detta planar en ( flerdimensionell ) array."
814
 
815
- #: ../classes/settings.php:299
816
- msgid ""
817
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
818
- "for sorting, so you can sort your posts on numeric (custom field) values."
819
- msgstr ""
820
- "Värde: Heltal bara. <br/> Om du har \"sorterings tillägget\" kommer detta "
821
- "att användas för sortering, så att du kan sortera dina inlägg på numeriska "
822
- "(anpassade fält) värden."
823
 
824
- #: ../classes/settings.php:300
825
  #, php-format
826
- msgid ""
827
- "Value: Can be unix time stamp or a date format as described in the <a "
828
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
829
- "href='%s'>general settings</a> page."
830
- msgstr ""
831
- "Värde: Kan vara unix tidsstämpel eller ett datumformat som beskrivs i <a "
832
- "href='%s'>Codex</a>. Du kan ändra hur datumformatet ska visas på <a "
833
- "href='%s'>generella inställningar</a> sidan."
834
 
835
- #: ../classes/settings.php:301
836
  msgid "Post Titles"
837
  msgstr "Titel på inlägg"
838
 
839
- #: ../classes/settings.php:301
840
  msgid "Value: can be one or more Post ID's (seperated by ',')."
841
  msgstr "Värde: kan vara en eller flera post-ID (separerat med ',')."
842
 
843
- #: ../classes/settings.php:302
844
  msgid "Usernames"
845
  msgstr "Användarnamn"
846
 
847
- #: ../classes/settings.php:302
848
  msgid "Value: can be one or more User ID's (seperated by ',')."
849
  msgstr "Värde: kan vara en eller flera användar-ID (separerat med ',')."
850
 
851
- #: ../classes/settings.php:303
852
  msgid "Checkmark"
853
  msgstr "Checkmark"
854
 
855
- #: ../classes/settings.php:303
856
  msgid "Value: should be a 1 (one) or 0 (zero)."
857
  msgstr "Värde: ska vara en 1 (ett) eller 0 (noll)."
858
 
859
- #: ../classes/settings.php:304
860
  msgid "Value: hex value color, such as #808080."
861
  msgstr "Värde: hex värde färg, som #808080."
862
 
863
- #: ../classes/settings.php:305
864
- msgid ""
865
- "Value: Can be either a string or array. This will display a count of the "
866
- "number of times the meta key is used by the item."
867
- msgstr ""
868
- "Värde: Kan antingen vara en sträng eller array. Detta kommer att visa en "
869
- "sammanställningen av antalet gånger meta nyckel används av objektet."
870
 
871
- #: ../classes/settings.php:399
872
  msgid "Welcome to Admin Columns"
873
  msgstr "Välkommen till Admin Columns"
874
 
875
- #: ../classes/settings.php:402
876
  msgid "Thank you for updating to the latest version!"
877
  msgstr "Tack för att du uppdaterar till den senaste versionen!"
878
 
879
- #: ../classes/settings.php:403
880
- msgid ""
881
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
882
- "like it."
883
- msgstr ""
884
- "Admin Columns är mer polerat och roligare än någonsin tidigare. Vi hoppas "
885
- "att du gillar det."
886
 
887
- #: ../classes/settings.php:408
888
  msgid "What’s New"
889
  msgstr "Vad som är nytt"
890
 
891
- #: ../classes/settings.php:409
892
  msgid "Changelog"
893
  msgstr "Ändringslogg"
894
 
895
- #: ../classes/settings.php:414
896
- msgid "Addons"
897
- msgstr "Tillägg"
898
-
899
- #: ../classes/settings.php:416
900
- msgid ""
901
- "Addons are now activated by downloading and installing individual plugins. "
902
- "Although these plugins will not be hosted on the wordpress.org repository, "
903
- "each Add-on will continue to receive updates in the usual way."
904
- msgstr ""
905
- "Tillägg aktiveras nu genom att hämta och installera dem individuellt. Även "
906
- "om dessa tillägg inte kommer att finnas på wordpress.org förvaret, kommer "
907
- "varje tillägg kommer att fortsätta uppdateras som vanligt."
908
-
909
- #: ../classes/settings.php:419
910
- msgid ""
911
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
912
- msgstr ""
913
- "Denna webbplats användar Sortorder tillägg. Detta tillägg behöver hämtas."
914
-
915
- #: ../classes/settings.php:422
916
- msgid "Addons are seperate plugins which need to be downloaded."
917
- msgstr "Tillägg är separata och behöver därför hämtas."
918
-
919
- #: ../classes/settings.php:422
920
- msgid "Download your Addons"
921
- msgstr "Hämta dina tillägg"
922
-
923
- #: ../classes/settings.php:428
924
- msgid "This website does not use add-ons"
925
- msgstr "Denna webbsida använder inte tillägg"
926
-
927
- #: ../classes/settings.php:428
928
- msgid "See our website for Admin Columns Pro."
929
- msgstr "Besök vår webbsida för Admin Columns Pro."
930
-
931
- #: ../classes/settings.php:435
932
  msgid "Important"
933
  msgstr "Viktigt"
934
 
935
- #: ../classes/settings.php:437
936
  msgid "Database Changes"
937
  msgstr "Databas ändringar"
938
 
939
- #: ../classes/settings.php:438
940
- msgid ""
941
- "The database has been changed between versions 1 and 2. But we made sure you "
942
- "can still roll back to version 1x without any issues."
943
- msgstr ""
944
- "Databasen har ändrats mellan versionerna 1 och 2. Men vi såg till att du "
945
- "fortfarande kan rulla tillbaka till version 1x utan några problem."
946
 
947
- #: ../classes/settings.php:441
948
  msgid "Make sure you backup your database and then click"
949
  msgstr "Se till att du säkerhetskopiera din databas och klicka sen på"
950
 
951
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
952
  msgid "Upgrade Database"
953
  msgstr "Uppgradera databasen"
954
 
955
- #: ../classes/settings.php:444
956
  msgid "Potential Issues"
957
  msgstr "Potentiella problem"
958
 
959
- #: ../classes/settings.php:445
960
- msgid ""
961
- "Do to the sizable refactoring the code, surounding Addons and action/"
962
- "filters, your website may not operate correctly. It is important that you "
963
- "read the full"
964
- msgstr ""
965
- "För den betydande refactoring koden, omgivande tillägg och action/filters, "
966
- "så kanske din webbplats inte fungerar korrekt. Det är viktigt att du läser "
967
- "hela"
968
 
969
- #: ../classes/settings.php:445
970
  msgid "Migrating from v1 to v2"
971
  msgstr "Migrera från v1 till v2"
972
 
973
- #: ../classes/settings.php:445
974
  msgid "guide to view the full list of changes."
975
  msgstr "guide för att visa en komplett lista på förändringar."
976
 
977
- #: ../classes/settings.php:445
978
  #, php-format
979
- msgid ""
980
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
981
- "can fix it in the next release."
982
- msgstr ""
983
- "När du har hittat en bugg vänligen <a href=\"%s\">rapportera dem till oss</"
984
- "a> så att vi kan åtgärda det i kommande utgåva."
985
 
986
- #: ../classes/settings.php:448
987
  msgid "Important!"
988
  msgstr "Viktigt!"
989
 
990
- #: ../classes/settings.php:448
991
- msgid ""
992
- "If you updated the Admin Columns plugin without prior knowledge of such "
993
- "changes, Please roll back to the latest"
994
- msgstr ""
995
- "Om du uppdaterat Admin Columns tillägget utan förkunskaper om sådana "
996
- "ändringar, vänligen rulla tillbaka till den senaste"
997
 
998
- #: ../classes/settings.php:448
999
  msgid "version 1"
1000
  msgstr "version 1"
1001
 
1002
- #: ../classes/settings.php:448
1003
  msgid "of this plugin."
1004
  msgstr "av detta tillägg."
1005
 
1006
- #: ../classes/settings.php:454
1007
  msgid "Changelog for"
1008
  msgstr "Ändringslogg för"
1009
 
1010
- #: ../classes/settings.php:469
1011
  msgid "Learn more"
1012
  msgstr "Lära dig mer"
1013
 
1014
- #: ../classes/settings.php:479
1015
  msgid "Start using Admin Columns"
1016
  msgstr "Börja med att använda Admin Columns"
1017
 
1018
- #: ../classes/settings.php:522
1019
  msgid "General Settings"
1020
  msgstr "Allmänna inställningar"
1021
 
1022
- #: ../classes/settings.php:523
1023
  msgid "Customize your Admin Columns settings."
1024
  msgstr "Anpassa dina Admin Columns inställningar."
1025
 
1026
- #: ../classes/settings.php:546
1027
- msgid ""
1028
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
1029
  msgstr ""
1030
- "Visa \"Redigera kolumner\" knappen på admin skärmen. Standard är <code>av</"
1031
- "code>."
1032
 
1033
- #: ../classes/settings.php:553 ../classes/settings.php:682
1034
  msgid "Save"
1035
  msgstr "Spara"
1036
 
1037
- #: ../classes/settings.php:593
1038
  msgid "Restore Settings"
1039
  msgstr "Återställ inställningar"
1040
 
1041
- #: ../classes/settings.php:594
1042
  msgid "This will delete all column settings and restore the default settings."
1043
- msgstr ""
1044
- "Detta kommer att radera alla kolumner inställningar och återställa till "
1045
- "standardinställningarna"
1046
 
1047
- #: ../classes/settings.php:600
1048
  msgid "Restore default settings"
1049
  msgstr "Återställ till standardinställningar"
1050
 
1051
- #: ../classes/settings.php:600
1052
- msgid ""
1053
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1054
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1055
- msgstr ""
1056
- "Varning! ALLA sparade admin kolumners data kommer att radera. Detta kan inte "
1057
- "ångras. \\'OK\\' för att radera, \\'Cancel\\' för att avbryta "
1058
 
1059
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1060
  msgid "Settings"
1061
  msgstr "Inställningar"
1062
 
1063
- #: ../classes/settings.php:621
1064
  msgid "Add-ons"
1065
  msgstr "Tillägg"
1066
 
1067
- #: ../classes/settings.php:647
1068
  msgid "Posttypes"
1069
  msgstr "Posttyper"
1070
 
1071
- #: ../classes/settings.php:648
1072
  msgid "Others"
1073
  msgstr "Annat"
1074
 
1075
- #: ../classes/settings.php:649
1076
  msgid "Taxonomies"
1077
  msgstr "Taxanomier"
1078
 
1079
- #: ../classes/settings.php:668
1080
  #, php-format
1081
- msgid ""
1082
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1083
- "be edited in the admin panel."
1084
- msgstr ""
1085
- "Kolumnerna för <strong>%s</strong> är inställda via PHP och kan därför inte "
1086
- "redigeras i adminpanelen."
1087
 
1088
- #: ../classes/settings.php:678
1089
  msgid "Store settings"
1090
  msgstr "Spara inställningar"
1091
 
1092
- #: ../classes/settings.php:682
1093
  msgid "Update"
1094
  msgstr "Uppdatera"
1095
 
1096
- #: ../classes/settings.php:686
1097
  #, php-format
1098
- msgid ""
1099
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1100
- "\\' to delete, \\'Cancel\\' to stop"
1101
- msgstr ""
1102
- "Varning! Den %s kolumner data kommer att raderas. Detta kan inte ångras. "
1103
- "\\'OK\\' för att ta bort, \\'Avbryt\\' för att stoppa"
1104
 
1105
- #: ../classes/settings.php:687
1106
  msgid "columns"
1107
  msgstr "kolumner"
1108
 
1109
- #: ../classes/settings.php:701
1110
  msgid "Get Admin Columns Pro"
1111
  msgstr "Skaffa Admin Columns Pro"
1112
 
1113
- #: ../classes/settings.php:705
1114
  msgid "Add Sorting"
1115
  msgstr "Lägg till sortering"
1116
 
1117
- #: ../classes/settings.php:706
1118
  msgid "Add Filtering"
1119
  msgstr "Lägg till filtrering"
1120
 
1121
- #: ../classes/settings.php:707
1122
  msgid "Add Import/Export"
1123
  msgstr "Lägg till Import/Export"
1124
 
1125
- #: ../classes/settings.php:708
1126
  msgid "Add Direct Editing"
1127
  msgstr "Lägg till snabbredigering"
1128
 
1129
- #: ../classes/settings.php:711
1130
  #, php-format
1131
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1132
  msgstr "Kolla <a href=\"%s\">Admin Columns Pro</a> för mer information!"
1133
 
 
 
 
 
 
 
 
 
 
 
 
 
1134
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1135
  msgid "Support"
1136
  msgstr "Support"
1137
 
1138
- #: ../classes/settings.php:745
1139
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1140
- msgstr ""
1141
- "Kolla på <strong>Hjälp</strong> sektionen i den övre högra delen av skärmen."
1142
 
1143
- #: ../classes/settings.php:748
1144
  #, php-format
1145
- msgid ""
1146
- "For full documentation, bug reports, feature suggestions and other tips <a "
1147
- "href='%s'>visit the Admin Columns website</a>"
1148
- msgstr ""
1149
- "För fullständig dokumentation, felrapporter, förslag på funktioner och andra "
1150
- "tips <a href='%s'>besök Admin Columns webbsida</a>"
1151
 
1152
- #: ../classes/settings.php:777
1153
  msgid "Drag and drop to reorder"
1154
  msgstr "Drag och släpp för att ändra ordning"
1155
 
1156
- #: ../classes/settings.php:780
1157
  msgid "Add Column"
1158
  msgstr "Lägg till kolumn"
1159
 
1160
- #: ../classes/settings.php:853
1161
  msgid "Active"
1162
  msgstr "Aktiv"
1163
 
1164
- #: ../classes/settings.php:854
1165
  msgid "Deactivate"
1166
  msgstr "Inaktivera"
1167
 
1168
- #: ../classes/settings.php:861
1169
  msgid "Installed"
1170
  msgstr "Installerad"
1171
 
1172
- #: ../classes/settings.php:862
1173
  msgid "Activate"
1174
  msgstr "Aktivera"
1175
 
1176
- #: ../classes/settings.php:876
1177
  msgid "Download & Install"
1178
  msgstr "Ladda ner & installera"
1179
 
1180
- #: ../classes/settings.php:881
1181
  msgid "Get this add-on"
1182
  msgstr "Skaffa detta tillägget"
1183
 
1184
- #: ../classes/storage_model.php:207
1185
  msgid "settings succesfully restored."
1186
  msgstr "inställningar återställdes framgångsrikt."
1187
 
1188
- #: ../classes/storage_model.php:222
1189
  msgid "No columns settings available."
1190
  msgstr "Inga inställningar för kolumner är tillgängliga."
1191
 
1192
- #: ../classes/storage_model.php:243
1193
  #, php-format
1194
  msgid "You are trying to store the same settings for %s."
1195
  msgstr "Du försöker lagra samma inställningar för %s."
1196
 
1197
- #: ../classes/storage_model.php:247
1198
  #, php-format
1199
  msgid "Settings for %s updated succesfully."
1200
  msgstr "Inställningar för %s uppdaterades med framgång."
@@ -1211,62 +1129,64 @@ msgstr "Länkar"
1211
  msgid "Users"
1212
  msgstr "Användare"
1213
 
1214
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
1215
  msgid "Upgrade"
1216
  msgstr "Uppgradera"
1217
 
1218
- #: ../classes/upgrade.php:84
1219
  msgid "requires a database upgrade"
1220
  msgstr "krävs en databas uppgradering"
1221
 
1222
- #: ../classes/upgrade.php:87
1223
  msgid "why?"
1224
  msgstr "varför?"
1225
 
1226
- #: ../classes/upgrade.php:88
1227
  msgid "Please"
1228
  msgstr "Vänligen"
1229
 
1230
- #: ../classes/upgrade.php:89
1231
  msgid "backup your database"
1232
  msgstr "säkerhetskopiera din databas"
1233
 
1234
- #: ../classes/upgrade.php:90
1235
  msgid "then click"
1236
  msgstr "klicka sedan"
1237
 
1238
- #: ../classes/upgrade.php:298
1239
  msgid "Migrating Column Settings"
1240
  msgstr "Migrera kolumninställningar"
1241
 
1242
- #: ../classes/upgrade.php:334
1243
  msgid "No Upgrade Required"
1244
  msgstr "Ingen uppgradering krävs"
1245
 
1246
- #: ../classes/upgrade.php:335
1247
  msgid "Return to welcome screen."
1248
  msgstr "Återgå till välkomstskärmen."
1249
 
1250
- #: ../classes/upgrade.php:353
1251
  msgid "Upgrade Complete!"
1252
  msgstr "Uppgradering klar!"
1253
 
1254
- #: ../classes/upgrade.php:353
1255
  msgid "Return to settings."
1256
  msgstr "Återgå till inställningar."
1257
 
1258
- #: ../classes/upgrade.php:354
1259
  msgid "Error"
1260
  msgstr "Fel"
1261
 
1262
- #: ../classes/upgrade.php:355
1263
- msgid ""
1264
- "Sorry. Something went wrong during the upgrade process. Please report this "
1265
- "on the support forum."
1266
- msgstr ""
1267
- "Ursäkta. Något gick fel under uppgraderingen. Vänligen rapportera detta på "
1268
- "support forumet. "
1269
 
1270
- #: ../codepress-admin-columns.php:439
1271
  msgid "Edit columns"
1272
  msgstr "Redigera kolumner"
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
10
+ "PO-Revision-Date: 2014-12-10 17:24+0100\n"
11
  "Last-Translator: Codepress <info@codepress.nl>\n"
12
+ "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/admin-columns/language/sv_SE/)\n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: sv_SE\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: Poedit 1.7.1\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
+ #: ../classes/addons.php:110
26
  msgid "Third party plugin integration"
27
  msgstr "Tredjeparts plugin integration"
28
 
29
+ #: ../classes/addons.php:135
30
  msgid "Advanced Custom Fields"
31
  msgstr "Advanced Custom Fields"
32
 
33
+ #: ../classes/addons.php:136
34
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
35
+ msgstr "Visa och redigera Advanced Custom Fields fält vid inläggets överblick några sekunder! "
36
+
37
+ #: ../classes/addons.php:141
38
+ msgid "WooCommerce"
39
+ msgstr ""
40
+
41
+ #: ../classes/addons.php:142
42
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
43
  msgstr ""
 
 
44
 
45
+ #: ../classes/column.php:500
46
  msgid "Thumbnail"
47
  msgstr "Miniatyrer"
48
 
49
+ #: ../classes/column.php:501
50
  msgid "Medium"
51
  msgstr "Mellan"
52
 
53
+ #: ../classes/column.php:502
54
  msgid "Large"
55
  msgstr "Stor"
56
 
57
+ #: ../classes/column.php:503
58
  msgid "Full"
59
  msgstr "Hel"
60
 
61
+ #: ../classes/column.php:863
62
  msgid "Date Format"
63
  msgstr "Datumformat"
64
 
65
+ #: ../classes/column.php:864
66
  msgid "This will determine how the date will be displayed."
67
  msgstr "Detta kommer att avgöra hur datumet ska visas."
68
 
69
+ #: ../classes/column.php:870
70
  msgid "Example:"
71
  msgstr "Exempel:"
72
 
73
+ #: ../classes/column.php:872
74
  #, php-format
75
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
76
+ msgstr "Lämna tomt för WordPress datumformat, ändra din <a href=\"%s\">standard datumformat här</a>."
 
 
 
 
77
 
78
+ #: ../classes/column.php:873
79
  msgid "Documentation on date and time formatting."
80
  msgstr "Dokumentation om datum och tid formatering."
81
 
82
+ #: ../classes/column.php:887
83
  msgid "Excerpt length"
84
  msgstr "Utdragens längd"
85
 
86
+ #: ../classes/column.php:888
87
  msgid "Number of words"
88
  msgstr "Antal ord"
89
 
90
+ #: ../classes/column.php:906
91
  msgid "Preview size"
92
  msgstr "Förhandsgranska storlek"
93
 
94
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
95
  msgid "Custom"
96
  msgstr "Anpassad"
97
 
98
+ #: ../classes/column.php:926
99
  msgid "width"
100
  msgstr "bredd"
101
 
102
+ #: ../classes/column.php:929
103
  msgid "height"
104
  msgstr "höjd"
105
 
106
+ #: ../classes/column.php:943
107
  msgid "Before"
108
  msgstr "Innan"
109
 
110
+ #: ../classes/column.php:943
111
  msgid "This text will appear before the custom field value."
112
  msgstr "Denna text kommer att visas innan det anpassade fältet värde."
113
 
114
+ #: ../classes/column.php:949
115
  msgid "After"
116
  msgstr "Efter"
117
 
118
+ #: ../classes/column.php:949
119
  msgid "This text will appear after the custom field value."
120
  msgstr "Denna text kommer att visas efter det anpassade fältet värde."
121
 
122
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31 ../classes/column/user/actions.php:69
 
 
123
  msgid "Edit"
124
  msgstr "Redigera"
125
 
126
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
127
  msgid "Remove"
128
  msgstr "Ta bort"
129
 
130
+ #: ../classes/column.php:1062
131
  msgid "Type"
132
  msgstr "Typ"
133
 
134
+ #: ../classes/column.php:1062
135
  msgid "Choose a column type."
136
  msgstr "Välj en kolumntyp."
137
 
138
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
139
  msgid "ID"
140
  msgstr "ID"
141
 
142
+ #: ../classes/column.php:1072
143
  msgid "Label"
144
  msgstr "Etikett"
145
 
146
+ #: ../classes/column.php:1072
147
  msgid "This is the name which will appear as the column header."
148
  msgstr "Detta är det namn som kommer att visas som kolumnrubriken."
149
 
150
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
151
  msgid "Width"
152
  msgstr "Bredd"
153
 
154
+ #: ../classes/column.php:1081 ../classes/column.php:1082
155
  msgid "default"
156
  msgstr "standard"
157
 
158
+ #: ../classes/column/acf-placeholder.php:19
159
  msgid "ACF Field"
160
  msgstr "ACF Fält"
161
 
162
  #: ../classes/column/acf-placeholder.php:32
163
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
164
  msgstr ""
 
165
 
166
  #: ../classes/column/acf-placeholder.php:35
167
  #, php-format
168
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
169
+ msgstr "Om du har en utvecklarlicens vänligen ladda ner & installera ditt ACF tillägg från <a href='%s'>fliken tillägg</a>."
 
 
 
 
170
 
171
  #: ../classes/column/acf-placeholder.php:38
172
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
173
+ msgstr "Admins Columns Pro - Utvecklare erbjuder full integration med Advanced Custom Fields, vilket gör att du enkelt kan visa och redigera ACF fält i överblick för dina inlägg."
 
 
 
 
 
 
174
 
175
+ #: ../classes/column/acf-placeholder.php:44
176
  msgid "Find out more"
177
  msgstr "Läs mer"
178
 
179
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20 ../classes/column/user/actions.php:19
 
 
 
180
  msgid "Actions"
181
  msgstr "Åtgärder"
182
 
183
+ #: ../classes/column/actions.php:87
184
+ msgid "Use icons?"
185
+ msgstr ""
186
+
187
+ #: ../classes/column/actions.php:87
188
+ msgid "Use icons instead of text for displaying the actions."
189
+ msgstr ""
190
+
191
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
192
+ msgid "Yes"
193
+ msgstr ""
194
+
195
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
196
+ msgid "No"
197
+ msgstr ""
198
+
199
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
200
  msgid "Unapprove"
201
  msgstr "Förkastad"
202
 
203
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
204
  msgid "Approve"
205
  msgstr "Godkänn"
206
 
207
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
208
  msgid "Restore"
209
  msgstr "Återställ"
210
 
211
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
212
  msgid "Delete Permanently"
213
  msgstr "Radera permanent"
214
 
215
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
216
  msgid "Quick&nbsp;Edit"
217
  msgstr "Snabbt&nbsp;Redigera"
218
 
219
+ #: ../classes/column/comment/actions.php:101
220
  msgid "Reply"
221
  msgstr "Svara"
222
 
223
+ #: ../classes/column/comment/agent.php:19
224
  msgid "Agent"
225
  msgstr "Agent"
226
 
227
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
228
  msgid "Approved"
229
  msgstr "Godkänd"
230
 
231
+ #: ../classes/column/comment/author-avatar.php:19
232
  msgid "Avatar"
233
  msgstr "Avatar"
234
 
235
+ #: ../classes/column/comment/author-email.php:19
236
  msgid "Author email"
237
  msgstr "Författare mail"
238
 
239
+ #: ../classes/column/comment/author-ip.php:19
240
  msgid "Author IP"
241
  msgstr "Författare IP"
242
 
243
+ #: ../classes/column/comment/author-url.php:19
244
  msgid "Author url"
245
  msgstr "Författare url"
246
 
247
+ #: ../classes/column/comment/author.php:19
248
  msgid "Author"
249
  msgstr "Författare"
250
 
251
+ #: ../classes/column/comment/date-gmt.php:19
252
  msgid "Date GMT"
253
  msgstr "Datum GMT"
254
 
255
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
256
  #, php-format
257
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
258
  msgstr "Skickad den <a href=\"%1$s\">%2$s vid %3$s</a>"
259
 
260
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
261
  msgid "Date"
262
  msgstr "Datum"
263
 
264
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
265
  msgid "Excerpt"
266
  msgstr "Utdrag"
267
 
268
+ #: ../classes/column/comment/reply-to.php:19
269
  msgid "In Reply To"
270
  msgstr "Som svar på"
271
 
272
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
273
  msgid "Word count"
274
  msgstr "Antal ord"
275
 
276
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
277
  msgid "Custom Field"
278
  msgstr "Anpassat fält"
279
 
280
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
281
  msgid "Default"
282
  msgstr "Standard"
283
 
284
+ #: ../classes/column/custom-field.php:95
285
  msgid "Checkmark (true/false)"
286
  msgstr "Checkmark (sant/falskt)"
287
 
288
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
289
  msgid "Color"
290
  msgstr "Färg"
291
 
292
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
293
  msgid "Counter"
294
  msgstr "Räknare"
295
 
296
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
297
  msgid "Image"
298
  msgstr "Bild"
299
 
300
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
301
  msgid "Media Library"
302
  msgstr "Mediabibliotek"
303
 
304
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
305
  msgid "Multiple Values"
306
  msgstr "Flera värden"
307
 
308
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
309
  msgid "Numeric"
310
  msgstr "Numerisk"
311
 
312
+ #: ../classes/column/custom-field.php:104
313
  msgid "Post Title (Post ID's)"
314
  msgstr "Titel"
315
 
316
+ #: ../classes/column/custom-field.php:105
317
  msgid "Username (User ID's)"
318
  msgstr "Användarnamn (Användar-ID)"
319
 
320
+ #: ../classes/column/custom-field.php:356
321
  msgid "Select your custom field."
322
  msgstr "Välj ditt anpassade fält."
323
 
324
+ #: ../classes/column/custom-field.php:366
325
  msgid "No custom fields available."
326
  msgstr "Inget anpassat fält är tillgängligt."
327
 
328
+ #: ../classes/column/custom-field.php:373
329
  msgid "Field Type"
330
  msgstr "Fälttyp"
331
 
332
+ #: ../classes/column/custom-field.php:373
333
  msgid "This will determine how the value will be displayed."
334
  msgstr "Detta avgör hur värdet kommer att visas."
335
 
336
+ #: ../classes/column/link/actions.php:49
337
  #, php-format
338
  msgid ""
339
  "You are about to delete this link '%s'\n"
342
  "Du är på väg att radera denna länk '%s'\n"
343
  " 'Avbryt' för att avbryta, 'OK' för att radera"
344
 
345
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
346
  msgid "Delete"
347
  msgstr "Radera"
348
 
349
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
350
  msgid "Description"
351
  msgstr "Beskrivning"
352
 
353
+ #: ../classes/column/link/length.php:19
354
  msgid "Length"
355
  msgstr "Längd"
356
 
357
+ #: ../classes/column/link/notes.php:19
358
  msgid "Notes"
359
  msgstr "Anteckningar"
360
 
361
+ #: ../classes/column/link/owner.php:19
362
  msgid "Owner"
363
  msgstr "Ägare"
364
 
365
+ #: ../classes/column/link/rss.php:19
366
  msgid "Rss"
367
  msgstr "RSS"
368
 
369
+ #: ../classes/column/link/target.php:19
370
  msgid "Target"
371
  msgstr "Mål"
372
 
373
+ #: ../classes/column/media/alternate-text.php:19
374
  msgid "Alt"
375
  msgstr "Alt"
376
 
377
+ #: ../classes/column/media/available-sizes.php:20
378
  msgid "Available Sizes"
379
  msgstr "Tillgängliga storlekar"
380
 
381
+ #: ../classes/column/media/available-sizes.php:40
382
  msgid "full size"
383
  msgstr "full storlek"
384
 
385
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
386
  msgid "Caption"
387
  msgstr "Bildtext"
388
 
389
+ #: ../classes/column/media/dimensions.php:19
390
  msgid "Dimensions"
391
  msgstr "Dimensioner"
392
 
393
+ #: ../classes/column/media/exif-data.php:19
394
  msgid "EXIF data"
395
  msgstr "EXIF data"
396
 
397
+ #: ../classes/column/media/exif-data.php:38
398
  msgid "Aperture"
399
  msgstr "Bländare"
400
 
401
+ #: ../classes/column/media/exif-data.php:39
402
  msgid "Credit"
403
  msgstr "Erkännande"
404
 
405
+ #: ../classes/column/media/exif-data.php:40
406
  msgid "Camera"
407
  msgstr "Kamera"
408
 
409
+ #: ../classes/column/media/exif-data.php:42
410
  msgid "Timestamp"
411
  msgstr "Tidsstämpel"
412
 
413
+ #: ../classes/column/media/exif-data.php:43
414
  msgid "Copyright EXIF"
415
  msgstr "Upphovsrätt EXIF"
416
 
417
+ #: ../classes/column/media/exif-data.php:44
418
  msgid "Focal Length"
419
  msgstr "Bränvidd"
420
 
421
+ #: ../classes/column/media/exif-data.php:45
422
  msgid "ISO"
423
  msgstr "ISO"
424
 
425
+ #: ../classes/column/media/exif-data.php:46
426
  msgid "Shutter Speed"
427
  msgstr "Slutartid"
428
 
429
+ #: ../classes/column/media/exif-data.php:47
430
  msgid "Title"
431
  msgstr "Titel"
432
 
433
+ #: ../classes/column/media/file-name.php:19
434
  msgid "File name"
435
  msgstr "Filnamn"
436
 
437
+ #: ../classes/column/media/file-size.php:19
438
  msgid "File size"
439
  msgstr "Filstorlek"
440
 
441
+ #: ../classes/column/media/full-path.php:19
442
  msgid "Full path"
443
  msgstr "Full path"
444
 
445
+ #: ../classes/column/media/height.php:19
446
  msgid "Height"
447
  msgstr "Höjd"
448
 
449
+ #: ../classes/column/media/mime-type.php:19
450
  msgid "Mime type"
451
  msgstr "Mime typ"
452
 
453
+ #: ../classes/column/post/actions.php:31
454
  msgid "Edit this item"
455
  msgstr "Redigera detta objekt"
456
 
457
+ #: ../classes/column/post/actions.php:34
458
  msgid "Edit this item inline"
459
  msgstr "Redigera detta objekt inbäddat"
460
 
461
+ #: ../classes/column/post/actions.php:39
462
  msgid "Restore this item from the Trash"
463
  msgstr "Återställ detta objekt från papperskorgen"
464
 
465
+ #: ../classes/column/post/actions.php:41
466
  msgid "Move this item to the Trash"
467
  msgstr "Flytta detta objekt till papperskorgen"
468
 
469
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
470
  msgid "Trash"
471
  msgstr "Papperskorg"
472
 
473
+ #: ../classes/column/post/actions.php:43
474
  msgid "Delete this item permanently"
475
  msgstr "Ta bort detta objeckt permanent"
476
 
477
+ #: ../classes/column/post/actions.php:48
478
  #, php-format
479
  msgid "Preview &#8220;%s&#8221;"
480
  msgstr "Förhandsgranska &#8220;%s&#8221;"
481
 
482
+ #: ../classes/column/post/actions.php:48
483
  msgid "Preview"
484
  msgstr "Förhandsgranska"
485
 
486
+ #: ../classes/column/post/actions.php:50
487
  #, php-format
488
  msgid "View &#8220;%s&#8221;"
489
  msgstr "Visa &#8220;%s&#8221;"
490
 
491
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
492
  msgid "View"
493
  msgstr "Visa"
494
 
495
+ #: ../classes/column/post/attachment-count.php:19
496
  msgid "No. of Attachments"
497
  msgstr "No. av bilagor"
498
 
499
+ #: ../classes/column/post/attachment.php:19
500
  msgid "Attachment"
501
  msgstr "Bilaga"
502
 
503
+ #: ../classes/column/post/author-name.php:20
504
  msgid "Display Author As"
505
  msgstr "Visa som författare"
506
 
507
+ #: ../classes/column/post/author-name.php:40
508
  msgid "Display Name"
509
  msgstr "Visa namn"
510
 
511
+ #: ../classes/column/post/author-name.php:41
512
  msgid "First Name"
513
  msgstr "Förnamn"
514
 
515
+ #: ../classes/column/post/author-name.php:42
516
  msgid "Last Name"
517
  msgstr "Efternamn"
518
 
519
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
520
  msgid "Nickname"
521
  msgstr "Smeknamn"
522
 
523
+ #: ../classes/column/post/author-name.php:44
524
  msgid "User Login"
525
  msgstr "Användare Loggin"
526
 
527
+ #: ../classes/column/post/author-name.php:45
528
  msgid "User Email"
529
  msgstr "Användare Email"
530
 
531
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
532
  msgid "User ID"
533
  msgstr "Användar-ID"
534
 
535
+ #: ../classes/column/post/author-name.php:47
536
  msgid "First and Last Name"
537
  msgstr "Förnamn och efternamn"
538
 
539
+ #: ../classes/column/post/author-name.php:124
540
  msgid "This is the format of the author name."
541
  msgstr "Detta är formatet på författarens namn."
542
 
543
+ #: ../classes/column/post/before-moretag.php:19
544
  msgid "Before More Tag"
545
  msgstr "Innan mer tagg"
546
 
547
+ #: ../classes/column/post/comment-count.php:20
548
  msgid "Comment count"
549
  msgstr "Antal kommentarer"
550
 
551
+ #: ../classes/column/post/comment-count.php:34
552
  msgid "Total"
553
  msgstr "Totalt"
554
 
555
+ #: ../classes/column/post/comment-count.php:36
556
  msgid "Pending"
557
  msgstr "Avvaktan"
558
 
559
+ #: ../classes/column/post/comment-count.php:37
560
  msgid "Spam"
561
  msgstr "Spam"
562
 
563
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
564
  msgid "Comment status"
565
  msgstr "Kommentarsstatus"
566
 
567
+ #: ../classes/column/post/comment-count.php:99
568
  msgid "Select which comment status you like to display."
569
  msgstr "Välj vilken kommentarsstatus du vill visa."
570
 
571
+ #: ../classes/column/post/featured-image.php:19
572
  msgid "Featured Image"
573
  msgstr "Utvald bild"
574
 
575
+ #: ../classes/column/post/formats.php:19
576
  msgid "Post Format"
577
  msgstr "Inläggsformat"
578
 
579
+ #: ../classes/column/post/modified.php:19
580
  msgid "Last modified"
581
  msgstr "Senast ändrad"
582
 
583
+ #: ../classes/column/post/order.php:19
584
  msgid "Page Order"
585
  msgstr "Sidordning"
586
 
587
+ #: ../classes/column/post/page-template.php:19
588
  msgid "Page Template"
589
  msgstr "Sidmallen"
590
 
591
+ #: ../classes/column/post/parent.php:19
592
  msgid "Parent"
593
  msgstr "Förälder"
594
 
595
+ #: ../classes/column/post/path.php:19
596
+ msgid "Path"
597
+ msgstr ""
598
+
599
+ #: ../classes/column/post/permalink.php:19
600
  msgid "Permalink"
601
  msgstr "Permalänk"
602
 
603
+ #: ../classes/column/post/permalink.php:68
604
+ msgid "Link to post"
605
+ msgstr ""
606
+
607
+ #: ../classes/column/post/permalink.php:68
608
+ msgid "This will make the permalink clickable."
609
+ msgstr ""
610
+
611
+ #: ../classes/column/post/ping-status.php:19
612
  msgid "Ping status"
613
  msgstr "Ping status"
614
 
615
+ #: ../classes/column/post/roles.php:19
616
  msgid "Roles"
617
  msgstr "Roller"
618
 
619
+ #: ../classes/column/post/slug.php:19
620
  msgid "Slug"
621
  msgstr "Permalänk"
622
 
623
+ #: ../classes/column/post/status.php:19
624
  msgid "Status"
625
  msgstr "Status"
626
 
627
+ #: ../classes/column/post/status.php:29
628
  msgid "Published"
629
  msgstr "Publicerad"
630
 
631
+ #: ../classes/column/post/status.php:30
632
  msgid "Draft"
633
  msgstr "Utkast"
634
 
635
+ #: ../classes/column/post/status.php:31
636
  msgid "Scheduled"
637
  msgstr "Planerat"
638
 
639
+ #: ../classes/column/post/status.php:32
640
  msgid "Private"
641
  msgstr "Privat"
642
 
643
+ #: ../classes/column/post/status.php:33
644
  msgid "Pending Review"
645
  msgstr "Väntar på granskning"
646
 
647
+ #: ../classes/column/post/status.php:34
648
  msgid "Auto Draft"
649
  msgstr "Automatiskt utkast"
650
 
651
+ #: ../classes/column/post/sticky.php:19
652
  msgid "Sticky"
653
  msgstr "Klistrad"
654
 
655
+ #: ../classes/column/post/title-raw.php:19
656
+ msgid "Title without actions"
657
+ msgstr ""
658
+
659
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
660
  msgid "Taxonomy"
661
  msgstr "Taxonomi"
662
 
663
+ #: ../classes/column/used-by-menu.php:20
664
+ msgid "Used by Menu"
665
+ msgstr ""
666
+
667
+ #: ../classes/column/used-by-menu.php:133
668
+ msgid "Link to menu"
669
+ msgstr ""
670
+
671
+ #: ../classes/column/used-by-menu.php:133
672
+ msgid "This will make the title link to the menu."
673
+ msgstr ""
674
+
675
+ #: ../classes/column/user/comment-count.php:19
676
  msgid "Comment Count"
677
  msgstr "Antal kommentarer"
678
 
679
+ #: ../classes/column/user/first-name.php:19
680
  msgid "First name"
681
  msgstr "Förnamn"
682
 
683
+ #: ../classes/column/user/last-name.php:19
684
  msgid "Last name"
685
  msgstr "Efternamn"
686
 
687
+ #: ../classes/column/user/post-count.php:19
688
  msgid "Post Count"
689
  msgstr "Inläggsräknare"
690
 
691
+ #: ../classes/column/user/post-count.php:102
692
  msgid "Post Type"
693
  msgstr "Inläggstyp"
694
 
695
+ #: ../classes/column/user/registered.php:19
696
  msgid "Registered"
697
  msgstr "Registrerad"
698
 
699
+ #: ../classes/column/user/url.php:19
700
  msgid "Url"
701
  msgstr "Url"
702
 
703
+ #: ../classes/settings.php:111
704
  msgid "Add-on successfully activated."
705
  msgstr "Tillägget aktiverat."
706
 
707
+ #: ../classes/settings.php:114
708
  msgid "Add-on successfully deactivated."
709
  msgstr "Tillägget inaktiverat."
710
 
711
+ #: ../classes/settings.php:169
712
  msgid "Admin Columns Settings"
713
  msgstr "Admin Columns Inställningar"
714
 
715
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
716
  msgid "Admin Columns"
717
  msgstr "Admin Columns"
718
 
719
+ #: ../classes/settings.php:217
720
  #, php-format
721
  msgid "%s column is already present and can not be duplicated."
722
  msgstr "%s kolumn finns redan och kan inte dupliceras."
723
 
724
+ #: ../classes/settings.php:271
725
  msgid "Default settings succesfully restored."
726
  msgstr "Standardinställningar återställdes framgångsrikt."
727
 
728
+ #: ../classes/settings.php:288
729
  msgid "Overview"
730
  msgstr "Översikt"
731
 
732
+ #: ../classes/settings.php:291
733
+ msgid "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the column's label and reorder them."
734
+ 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."
 
 
 
 
 
 
735
 
736
+ #: ../classes/settings.php:294
737
  msgid "Basics"
738
  msgstr "Grundläggande"
739
 
740
+ #: ../classes/settings.php:296
741
  msgid "Change order"
742
  msgstr "Ändra ordning"
743
 
744
+ #: ../classes/settings.php:297
745
+ msgid "By dragging the columns you can change the order which they will appear in."
 
746
  msgstr "Genom att dra kolumnerna så kan du ändra ordningen som de visas i."
747
 
748
+ #: ../classes/settings.php:298
749
  msgid "Change label"
750
  msgstr "Ändra etikett"
751
 
752
+ #: ../classes/settings.php:299
753
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
754
+ msgstr "Genom att klicka triangeln kommer du att se kolumnalternativ. Här kan du ändra varje etikett av kolumnernas rubrik."
 
 
 
 
755
 
756
+ #: ../classes/settings.php:300
757
  msgid "Change column width"
758
  msgstr "Ändra kolumnens bredd"
759
 
760
+ #: ../classes/settings.php:301
761
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
762
+ msgstr "Genom att klicka triangeln kommer du att se kolumnalternativ. Genom att använda dragbar reglaget kan du ställa in bredden på kolumnerna i procent."
 
 
 
 
763
 
764
+ #: ../classes/settings.php:307
765
  msgid "'Custom Field' column"
766
  msgstr "'Anpassat fält' kolumn "
767
 
768
+ #: ../classes/settings.php:308
769
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
770
+ 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."
 
 
 
 
771
 
772
+ #: ../classes/settings.php:310
773
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
774
+ msgstr "Värde: Kan antingen vara en sträng eller array. Arrays ska plattas och värden åtskilda av en ',' kommatecken."
 
 
 
 
775
 
776
+ #: ../classes/settings.php:311
777
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
778
+ msgstr "Värde: ska innehålla en bildadress eller bilags-ID ( separerad av ett ',' kommatecken )."
 
 
 
 
779
 
780
+ #: ../classes/settings.php:312
781
  msgid "Value: This will show the first 20 words of the Post content."
782
  msgstr "Värde: Detta kommer visa de första 20 orden av inläggets innehåll."
783
 
784
+ #: ../classes/settings.php:313
785
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
786
+ msgstr "Värde: skall vara en array. Detta planar en ( flerdimensionell ) array."
 
 
787
 
788
+ #: ../classes/settings.php:314
789
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
790
+ 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."
 
 
 
 
 
791
 
792
+ #: ../classes/settings.php:315
793
  #, php-format
794
+ msgid "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> page."
795
+ 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."
 
 
 
 
 
 
796
 
797
+ #: ../classes/settings.php:316
798
  msgid "Post Titles"
799
  msgstr "Titel på inlägg"
800
 
801
+ #: ../classes/settings.php:316
802
  msgid "Value: can be one or more Post ID's (seperated by ',')."
803
  msgstr "Värde: kan vara en eller flera post-ID (separerat med ',')."
804
 
805
+ #: ../classes/settings.php:317
806
  msgid "Usernames"
807
  msgstr "Användarnamn"
808
 
809
+ #: ../classes/settings.php:317
810
  msgid "Value: can be one or more User ID's (seperated by ',')."
811
  msgstr "Värde: kan vara en eller flera användar-ID (separerat med ',')."
812
 
813
+ #: ../classes/settings.php:318
814
  msgid "Checkmark"
815
  msgstr "Checkmark"
816
 
817
+ #: ../classes/settings.php:318
818
  msgid "Value: should be a 1 (one) or 0 (zero)."
819
  msgstr "Värde: ska vara en 1 (ett) eller 0 (noll)."
820
 
821
+ #: ../classes/settings.php:319
822
  msgid "Value: hex value color, such as #808080."
823
  msgstr "Värde: hex värde färg, som #808080."
824
 
825
+ #: ../classes/settings.php:320
826
+ msgid "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."
827
+ msgstr "Värde: Kan antingen vara en sträng eller array. Detta kommer att visa en sammanställningen av antalet gånger meta nyckel används av objektet."
 
 
 
 
828
 
829
+ #: ../classes/settings.php:409
830
  msgid "Welcome to Admin Columns"
831
  msgstr "Välkommen till Admin Columns"
832
 
833
+ #: ../classes/settings.php:412
834
  msgid "Thank you for updating to the latest version!"
835
  msgstr "Tack för att du uppdaterar till den senaste versionen!"
836
 
837
+ #: ../classes/settings.php:413
838
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
839
+ msgstr "Admin Columns är mer polerat och roligare än någonsin tidigare. Vi hoppas att du gillar det."
 
 
 
 
840
 
841
+ #: ../classes/settings.php:418
842
  msgid "What’s New"
843
  msgstr "Vad som är nytt"
844
 
845
+ #: ../classes/settings.php:419
846
  msgid "Changelog"
847
  msgstr "Ändringslogg"
848
 
849
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
850
  msgid "Important"
851
  msgstr "Viktigt"
852
 
853
+ #: ../classes/settings.php:426
854
  msgid "Database Changes"
855
  msgstr "Databas ändringar"
856
 
857
+ #: ../classes/settings.php:427
858
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
859
+ 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."
 
 
 
 
860
 
861
+ #: ../classes/settings.php:430
862
  msgid "Make sure you backup your database and then click"
863
  msgstr "Se till att du säkerhetskopiera din databas och klicka sen på"
864
 
865
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
866
  msgid "Upgrade Database"
867
  msgstr "Uppgradera databasen"
868
 
869
+ #: ../classes/settings.php:433
870
  msgid "Potential Issues"
871
  msgstr "Potentiella problem"
872
 
873
+ #: ../classes/settings.php:434
874
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
875
+ 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"
 
 
 
 
 
 
876
 
877
+ #: ../classes/settings.php:434
878
  msgid "Migrating from v1 to v2"
879
  msgstr "Migrera från v1 till v2"
880
 
881
+ #: ../classes/settings.php:434
882
  msgid "guide to view the full list of changes."
883
  msgstr "guide för att visa en komplett lista på förändringar."
884
 
885
+ #: ../classes/settings.php:434
886
  #, php-format
887
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
888
+ msgstr "När du har hittat en bugg vänligen <a href=\"%s\">rapportera dem till oss</a> att vi kan åtgärda det i kommande utgåva."
 
 
 
 
889
 
890
+ #: ../classes/settings.php:437
891
  msgid "Important!"
892
  msgstr "Viktigt!"
893
 
894
+ #: ../classes/settings.php:437
895
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
896
+ msgstr "Om du uppdaterat Admin Columns tillägget utan förkunskaper om sådana ändringar, vänligen rulla tillbaka till den senaste"
 
 
 
 
897
 
898
+ #: ../classes/settings.php:437
899
  msgid "version 1"
900
  msgstr "version 1"
901
 
902
+ #: ../classes/settings.php:437
903
  msgid "of this plugin."
904
  msgstr "av detta tillägg."
905
 
906
+ #: ../classes/settings.php:443
907
  msgid "Changelog for"
908
  msgstr "Ändringslogg för"
909
 
910
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
911
  msgid "Learn more"
912
  msgstr "Lära dig mer"
913
 
914
+ #: ../classes/settings.php:468
915
  msgid "Start using Admin Columns"
916
  msgstr "Börja med att använda Admin Columns"
917
 
918
+ #: ../classes/settings.php:511
919
  msgid "General Settings"
920
  msgstr "Allmänna inställningar"
921
 
922
+ #: ../classes/settings.php:512
923
  msgid "Customize your Admin Columns settings."
924
  msgstr "Anpassa dina Admin Columns inställningar."
925
 
926
+ #: ../classes/settings.php:523
927
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
 
928
  msgstr ""
 
 
929
 
930
+ #: ../classes/settings.php:530 ../classes/settings.php:660
931
  msgid "Save"
932
  msgstr "Spara"
933
 
934
+ #: ../classes/settings.php:570
935
  msgid "Restore Settings"
936
  msgstr "Återställ inställningar"
937
 
938
+ #: ../classes/settings.php:571
939
  msgid "This will delete all column settings and restore the default settings."
940
+ msgstr "Detta kommer att radera alla kolumner inställningar och återställa till standardinställningarna"
 
 
941
 
942
+ #: ../classes/settings.php:577
943
  msgid "Restore default settings"
944
  msgstr "Återställ till standardinställningar"
945
 
946
+ #: ../classes/settings.php:577
947
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
948
+ msgstr "Varning! ALLA sparade admin kolumners data kommer att radera. Detta kan inte ångras. \\'OK\\' för att radera, \\'Cancel\\' för att avbryta "
 
 
 
 
949
 
950
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
951
  msgid "Settings"
952
  msgstr "Inställningar"
953
 
954
+ #: ../classes/settings.php:600
955
  msgid "Add-ons"
956
  msgstr "Tillägg"
957
 
958
+ #: ../classes/settings.php:625
959
  msgid "Posttypes"
960
  msgstr "Posttyper"
961
 
962
+ #: ../classes/settings.php:626
963
  msgid "Others"
964
  msgstr "Annat"
965
 
966
+ #: ../classes/settings.php:627
967
  msgid "Taxonomies"
968
  msgstr "Taxanomier"
969
 
970
+ #: ../classes/settings.php:646
971
  #, php-format
972
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
973
+ msgstr "Kolumnerna för <strong>%s</strong> är inställda via PHP och kan därför inte redigeras i adminpanelen."
 
 
 
 
974
 
975
+ #: ../classes/settings.php:656
976
  msgid "Store settings"
977
  msgstr "Spara inställningar"
978
 
979
+ #: ../classes/settings.php:660
980
  msgid "Update"
981
  msgstr "Uppdatera"
982
 
983
+ #: ../classes/settings.php:664
984
  #, php-format
985
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
986
+ msgstr "Varning! Den %s kolumner data kommer att raderas. Detta kan inte ångras. \\'OK\\' för att ta bort, \\'Avbryt\\' för att stoppa"
 
 
 
 
987
 
988
+ #: ../classes/settings.php:665
989
  msgid "columns"
990
  msgstr "kolumner"
991
 
992
+ #: ../classes/settings.php:684
993
  msgid "Get Admin Columns Pro"
994
  msgstr "Skaffa Admin Columns Pro"
995
 
996
+ #: ../classes/settings.php:688
997
  msgid "Add Sorting"
998
  msgstr "Lägg till sortering"
999
 
1000
+ #: ../classes/settings.php:689
1001
  msgid "Add Filtering"
1002
  msgstr "Lägg till filtrering"
1003
 
1004
+ #: ../classes/settings.php:690
1005
  msgid "Add Import/Export"
1006
  msgstr "Lägg till Import/Export"
1007
 
1008
+ #: ../classes/settings.php:691
1009
  msgid "Add Direct Editing"
1010
  msgstr "Lägg till snabbredigering"
1011
 
1012
+ #: ../classes/settings.php:694
1013
  #, php-format
1014
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1015
  msgstr "Kolla <a href=\"%s\">Admin Columns Pro</a> för mer information!"
1016
 
1017
+ #: ../classes/settings.php:725
1018
+ msgid "Are you happy with Admin Columns?"
1019
+ msgstr ""
1020
+
1021
+ #: ../classes/settings.php:733
1022
+ msgid "What's wrong? Need help? Let us know!"
1023
+ msgstr ""
1024
+
1025
+ #: ../classes/settings.php:734
1026
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1027
+ msgstr ""
1028
+
1029
  #: ../classes/settings.php:742
1030
+ msgid "Docs"
1031
+ msgstr ""
1032
+
1033
+ #: ../classes/settings.php:747
1034
+ msgid "Forums"
1035
+ msgstr ""
1036
+
1037
+ #: ../classes/settings.php:756
1038
+ msgid "Woohoo! We're glad to hear that!"
1039
+ msgstr ""
1040
+
1041
+ #: ../classes/settings.php:757
1042
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1043
+ msgstr ""
1044
+
1045
+ #: ../classes/settings.php:761
1046
+ msgid "Rate"
1047
+ msgstr ""
1048
+
1049
+ #: ../classes/settings.php:772
1050
+ msgid "Tweet"
1051
+ msgstr ""
1052
+
1053
+ #: ../classes/settings.php:782
1054
+ msgid "Buy Pro"
1055
+ msgstr ""
1056
+
1057
+ #: ../classes/settings.php:794
1058
  msgid "Support"
1059
  msgstr "Support"
1060
 
1061
+ #: ../classes/settings.php:797
1062
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1063
+ msgstr "Kolla på <strong>Hjälp</strong> sektionen i den övre högra delen av skärmen."
 
1064
 
1065
+ #: ../classes/settings.php:800
1066
  #, php-format
1067
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
1068
+ msgstr "För fullständig dokumentation, felrapporter, förslag funktioner och andra tips <a href='%s'>besök Admin Columns webbsida</a>"
 
 
 
 
1069
 
1070
+ #: ../classes/settings.php:829
1071
  msgid "Drag and drop to reorder"
1072
  msgstr "Drag och släpp för att ändra ordning"
1073
 
1074
+ #: ../classes/settings.php:832
1075
  msgid "Add Column"
1076
  msgstr "Lägg till kolumn"
1077
 
1078
+ #: ../classes/settings.php:908
1079
  msgid "Active"
1080
  msgstr "Aktiv"
1081
 
1082
+ #: ../classes/settings.php:909
1083
  msgid "Deactivate"
1084
  msgstr "Inaktivera"
1085
 
1086
+ #: ../classes/settings.php:916
1087
  msgid "Installed"
1088
  msgstr "Installerad"
1089
 
1090
+ #: ../classes/settings.php:917
1091
  msgid "Activate"
1092
  msgstr "Aktivera"
1093
 
1094
+ #: ../classes/settings.php:931
1095
  msgid "Download & Install"
1096
  msgstr "Ladda ner & installera"
1097
 
1098
+ #: ../classes/settings.php:936
1099
  msgid "Get this add-on"
1100
  msgstr "Skaffa detta tillägget"
1101
 
1102
+ #: ../classes/storage_model.php:213
1103
  msgid "settings succesfully restored."
1104
  msgstr "inställningar återställdes framgångsrikt."
1105
 
1106
+ #: ../classes/storage_model.php:229
1107
  msgid "No columns settings available."
1108
  msgstr "Inga inställningar för kolumner är tillgängliga."
1109
 
1110
+ #: ../classes/storage_model.php:250
1111
  #, php-format
1112
  msgid "You are trying to store the same settings for %s."
1113
  msgstr "Du försöker lagra samma inställningar för %s."
1114
 
1115
+ #: ../classes/storage_model.php:254
1116
  #, php-format
1117
  msgid "Settings for %s updated succesfully."
1118
  msgstr "Inställningar för %s uppdaterades med framgång."
1129
  msgid "Users"
1130
  msgstr "Användare"
1131
 
1132
+ #: ../classes/upgrade.php:62
1133
+ msgid ""
1134
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of <strong>Admin Columns Pro</strong> <a href="
1135
+ "\"http://www.admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new features, including Direct Inline Editing!"
1136
+ msgstr ""
1137
+
1138
+ #: ../classes/upgrade.php:95
1139
  msgid "Upgrade"
1140
  msgstr "Uppgradera"
1141
 
1142
+ #: ../classes/upgrade.php:136
1143
  msgid "requires a database upgrade"
1144
  msgstr "krävs en databas uppgradering"
1145
 
1146
+ #: ../classes/upgrade.php:139
1147
  msgid "why?"
1148
  msgstr "varför?"
1149
 
1150
+ #: ../classes/upgrade.php:140
1151
  msgid "Please"
1152
  msgstr "Vänligen"
1153
 
1154
+ #: ../classes/upgrade.php:141
1155
  msgid "backup your database"
1156
  msgstr "säkerhetskopiera din databas"
1157
 
1158
+ #: ../classes/upgrade.php:142
1159
  msgid "then click"
1160
  msgstr "klicka sedan"
1161
 
1162
+ #: ../classes/upgrade.php:351
1163
  msgid "Migrating Column Settings"
1164
  msgstr "Migrera kolumninställningar"
1165
 
1166
+ #: ../classes/upgrade.php:387
1167
  msgid "No Upgrade Required"
1168
  msgstr "Ingen uppgradering krävs"
1169
 
1170
+ #: ../classes/upgrade.php:388
1171
  msgid "Return to welcome screen."
1172
  msgstr "Återgå till välkomstskärmen."
1173
 
1174
+ #: ../classes/upgrade.php:406
1175
  msgid "Upgrade Complete!"
1176
  msgstr "Uppgradering klar!"
1177
 
1178
+ #: ../classes/upgrade.php:406
1179
  msgid "Return to settings."
1180
  msgstr "Återgå till inställningar."
1181
 
1182
+ #: ../classes/upgrade.php:407
1183
  msgid "Error"
1184
  msgstr "Fel"
1185
 
1186
+ #: ../classes/upgrade.php:408
1187
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
1188
+ msgstr "Ursäkta. Något gick fel under uppgraderingen. Vänligen rapportera detta support forumet. "
 
 
 
 
1189
 
1190
+ #: ../codepress-admin-columns.php:390
1191
  msgid "Edit columns"
1192
  msgstr "Redigera kolumner"
languages/cpac-zh_CN.mo CHANGED
Binary file
languages/cpac-zh_CN.po CHANGED
@@ -5,344 +5,336 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2014-05-22 17:03+0100\n"
9
- "PO-Revision-Date: 2014-08-28 12:17+0100\n"
10
  "Last-Translator: Codepress <info@codepress.nl>\n"
11
- "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/admin-"
12
- "columns/language/zh_CN/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: zh_CN\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
- "X-Generator: Poedit 1.6.8\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../classes/addons.php:117
26
  msgid "Third party plugin integration"
27
  msgstr ""
28
 
29
- #: ../classes/addons.php:142
30
  msgid "Advanced Custom Fields"
31
  msgstr ""
32
 
33
- #: ../classes/addons.php:143
34
- msgid ""
35
- "Display and edit Advanced Custom Fields fields in the posts overview in "
36
- "seconds!"
 
 
 
 
 
 
37
  msgstr ""
38
 
39
- #: ../classes/column.php:481
40
  msgid "Thumbnail"
41
  msgstr "缩略图"
42
 
43
- #: ../classes/column.php:482
44
  msgid "Medium"
45
  msgstr "中等大小"
46
 
47
- #: ../classes/column.php:483
48
  msgid "Large"
49
  msgstr "大尺寸"
50
 
51
- #: ../classes/column.php:484
52
  msgid "Full"
53
  msgstr "原始大小"
54
 
55
- #: ../classes/column.php:751
56
  msgid "Date Format"
57
  msgstr "日期格式"
58
 
59
- #: ../classes/column.php:752
60
  msgid "This will determine how the date will be displayed."
61
  msgstr "用来决定如何显示日期"
62
 
63
- #: ../classes/column.php:758
64
  msgid "Example:"
65
  msgstr "例如:"
66
 
67
- #: ../classes/column.php:760
68
  #, php-format
69
- msgid ""
70
- "Leave empty for WordPress date format, change your <a href=\"%s\">default "
71
- "date format here</a>."
72
- msgstr ""
73
- "留空将使用WordPress日期格式,你可以在 <a href=\"%s\">这里</a> 修改默认的日期"
74
- "格式。"
75
 
76
- #: ../classes/column.php:761
77
  msgid "Documentation on date and time formatting."
78
  msgstr "日期和时间格式的文档。"
79
 
80
- #: ../classes/column.php:775
81
  msgid "Excerpt length"
82
  msgstr "摘要长度"
83
 
84
- #: ../classes/column.php:776
85
  msgid "Number of words"
86
  msgstr "字数"
87
 
88
- #: ../classes/column.php:794
89
  msgid "Preview size"
90
  msgstr "预览大小"
91
 
92
- #: ../classes/column.php:811 ../classes/storage_model.php:505
93
  msgid "Custom"
94
  msgstr "自定义"
95
 
96
- #: ../classes/column.php:814
97
  msgid "width"
98
  msgstr "宽度"
99
 
100
- #: ../classes/column.php:817
101
  msgid "height"
102
  msgstr "高度"
103
 
104
- #: ../classes/column.php:831
105
  msgid "Before"
106
  msgstr "前"
107
 
108
- #: ../classes/column.php:831
109
  msgid "This text will appear before the custom field value."
110
  msgstr "该文本将显示在自定义字段的值的前面"
111
 
112
- #: ../classes/column.php:837
113
  msgid "After"
114
  msgstr "后"
115
 
116
- #: ../classes/column.php:837
117
  msgid "This text will appear after the custom field value."
118
  msgstr "该文本将显示在自定义字段的值的后面"
119
 
120
- #: ../classes/column.php:926 ../classes/column/comment/actions.php:96
121
- #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:57
122
- #: ../classes/column/user/actions.php:66
123
  msgid "Edit"
124
  msgstr "编辑"
125
 
126
- #: ../classes/column.php:927 ../classes/column.php:1005
127
- #: ../classes/column/user/actions.php:74
128
  msgid "Remove"
129
  msgstr "删除"
130
 
131
- #: ../classes/column.php:945
132
  msgid "Type"
133
  msgstr "类型"
134
 
135
- #: ../classes/column.php:945
136
  msgid "Choose a column type."
137
  msgstr "选择一个列类型。"
138
 
139
- #: ../classes/column.php:945 ../classes/column/comment/ID.php:12
140
- #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
141
- #: ../classes/column/post/ID.php:12
142
  msgid "ID"
143
  msgstr "ID"
144
 
145
- #: ../classes/column.php:955
146
  msgid "Label"
147
  msgstr "标签"
148
 
149
- #: ../classes/column.php:955
150
  msgid "This is the name which will appear as the column header."
151
  msgstr "该名称将显示为列标题。"
152
 
153
- #: ../classes/column.php:962 ../classes/column/media/width.php:12
154
  msgid "Width"
155
  msgstr "宽度"
156
 
157
- #: ../classes/column.php:964 ../classes/column.php:965
158
  msgid "default"
159
  msgstr "默认"
160
 
161
- #: ../classes/column/acf-placeholder.php:16
162
  msgid "ACF Field"
163
  msgstr ""
164
 
165
  #: ../classes/column/acf-placeholder.php:32
166
- msgid "This feature is only available in Admin Columns Pro - Developer."
167
  msgstr ""
168
 
169
  #: ../classes/column/acf-placeholder.php:35
170
  #, php-format
171
- msgid ""
172
- "If you have a developer licence please download & install your ACF add-on "
173
- "from the <a href='%s'>add-ons tab</a>."
174
  msgstr ""
175
 
176
  #: ../classes/column/acf-placeholder.php:38
177
- msgid ""
178
- "Admin Columns Pro - Developer offers full Advanced Custom Fields "
179
- "integeration, allowing you to easily display and edit ACF fields from within "
180
- "your posts overview."
181
  msgstr ""
182
 
183
- #: ../classes/column/acf-placeholder.php:40
184
  msgid "Find out more"
185
  msgstr ""
186
 
187
- #: ../classes/column/comment/actions.php:14
188
- #: ../classes/column/link/actions.php:14
189
- #: ../classes/column/media/actions.php:14
190
- #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
191
  msgid "Actions"
192
  msgstr "操作"
193
 
194
- #: ../classes/column/comment/actions.php:73
195
- #: ../classes/column/comment/actions.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  msgid "Unapprove"
197
  msgstr "驳回"
198
 
199
- #: ../classes/column/comment/actions.php:75
200
- #: ../classes/column/comment/actions.php:77
201
  msgid "Approve"
202
  msgstr "通过"
203
 
204
- #: ../classes/column/comment/actions.php:86
205
- #: ../classes/column/post/actions.php:62 ../classes/settings.php:687
206
  msgid "Restore"
207
  msgstr "恢复"
208
 
209
- #: ../classes/column/comment/actions.php:90
210
- #: ../classes/column/post/actions.php:66
211
  msgid "Delete Permanently"
212
  msgstr "永久删除"
213
 
214
- #: ../classes/column/comment/actions.php:97
215
- #: ../classes/column/post/actions.php:58
216
  msgid "Quick&nbsp;Edit"
217
  msgstr "Quick&nbsp;Edit"
218
 
219
- #: ../classes/column/comment/actions.php:98
220
  msgid "Reply"
221
  msgstr "回复"
222
 
223
- #: ../classes/column/comment/agent.php:12
224
  msgid "Agent"
225
  msgstr "代理(Agent)"
226
 
227
- #: ../classes/column/comment/approved.php:12
228
- #: ../classes/column/post/comment-count.php:31
229
  msgid "Approved"
230
  msgstr "已通过"
231
 
232
- #: ../classes/column/comment/author-avatar.php:12
233
  msgid "Avatar"
234
  msgstr "头像"
235
 
236
- #: ../classes/column/comment/author-email.php:12
237
  msgid "Author email"
238
  msgstr "作者邮箱"
239
 
240
- #: ../classes/column/comment/author-ip.php:12
241
  msgid "Author IP"
242
  msgstr "作者IP"
243
 
244
- #: ../classes/column/comment/author-url.php:12
245
  msgid "Author url"
246
  msgstr "作者url"
247
 
248
- #: ../classes/column/comment/author.php:12
249
  msgid "Author"
250
  msgstr "作者"
251
 
252
- #: ../classes/column/comment/date-gmt.php:12
253
  msgid "Date GMT"
254
  msgstr "日期GMT"
255
 
256
- #: ../classes/column/comment/date-gmt.php:25
257
- #: ../classes/column/comment/date.php:25
258
  #, php-format
259
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
260
  msgstr "提交于 <a href=\"%1$s\">%2$s at %3$s</a>"
261
 
262
- #: ../classes/column/comment/date.php:12 ../classes/column/custom-field.php:69
263
- #: ../classes/settings.php:300
264
  msgid "Date"
265
  msgstr "日期"
266
 
267
- #: ../classes/column/comment/excerpt.php:13
268
- #: ../classes/column/custom-field.php:70 ../classes/column/post/excerpt.php:13
269
- #: ../classes/settings.php:297
270
  msgid "Excerpt"
271
  msgstr "摘要"
272
 
273
- #: ../classes/column/comment/reply-to.php:12
274
  msgid "In Reply To"
275
  msgstr "回应给"
276
 
277
- #: ../classes/column/comment/word-count.php:12
278
- #: ../classes/column/post/word-count.php:12
279
  msgid "Word count"
280
  msgstr "字数"
281
 
282
- #: ../classes/column/custom-field.php:16
283
- #: ../classes/column/custom-field.php:384 ../classes/settings.php:290
284
  msgid "Custom Field"
285
  msgstr "自定义字段"
286
 
287
- #: ../classes/column/custom-field.php:65 ../classes/settings.php:295
288
- #: ../classes/storage_model.php:504
289
  msgid "Default"
290
  msgstr "默认"
291
 
292
- #: ../classes/column/custom-field.php:66
293
  msgid "Checkmark (true/false)"
294
  msgstr "判断(true/false)"
295
 
296
- #: ../classes/column/custom-field.php:67 ../classes/settings.php:304
297
  msgid "Color"
298
  msgstr "颜色"
299
 
300
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
301
  msgid "Counter"
302
  msgstr ""
303
 
304
- #: ../classes/column/custom-field.php:71 ../classes/column/link/image.php:12
305
- #: ../classes/settings.php:296
306
  msgid "Image"
307
  msgstr "图像"
308
 
309
- #: ../classes/column/custom-field.php:72 ../classes/storage_model/media.php:13
310
  msgid "Media Library"
311
  msgstr "媒体库"
312
 
313
- #: ../classes/column/custom-field.php:73 ../classes/settings.php:298
314
  msgid "Multiple Values"
315
  msgstr "多个值"
316
 
317
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
318
  msgid "Numeric"
319
  msgstr "数字"
320
 
321
- #: ../classes/column/custom-field.php:75
322
  msgid "Post Title (Post ID's)"
323
  msgstr "文章标题(文章ID)"
324
 
325
- #: ../classes/column/custom-field.php:76
326
  msgid "Username (User ID's)"
327
  msgstr "用户名(用户ID)"
328
 
329
- #: ../classes/column/custom-field.php:384
330
  msgid "Select your custom field."
331
  msgstr "选择自定义字段"
332
 
333
- #: ../classes/column/custom-field.php:394
334
  msgid "No custom fields available."
335
  msgstr "没有可用的自定义字段"
336
 
337
- #: ../classes/column/custom-field.php:401
338
  msgid "Field Type"
339
  msgstr "字段类型"
340
 
341
- #: ../classes/column/custom-field.php:401
342
  msgid "This will determine how the value will be displayed."
343
  msgstr "用来确定如何显示值"
344
 
345
- #: ../classes/column/link/actions.php:46
346
  #, php-format
347
  msgid ""
348
  "You are about to delete this link '%s'\n"
@@ -351,813 +343,783 @@ msgstr ""
351
  "你将要删除这个链接“%s”\n"
352
  "“取消”将停止,“确定”将删除。"
353
 
354
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
355
  msgid "Delete"
356
  msgstr "删除"
357
 
358
- #: ../classes/column/link/description.php:12
359
- #: ../classes/column/media/description.php:12
360
- #: ../classes/column/user/description.php:14
361
  msgid "Description"
362
  msgstr "描述"
363
 
364
- #: ../classes/column/link/length.php:12
365
  msgid "Length"
366
  msgstr "长度"
367
 
368
- #: ../classes/column/link/notes.php:13
369
  msgid "Notes"
370
  msgstr "笔记"
371
 
372
- #: ../classes/column/link/owner.php:12
373
  msgid "Owner"
374
  msgstr "所有者"
375
 
376
- #: ../classes/column/link/rss.php:12
377
  msgid "Rss"
378
  msgstr "Rss"
379
 
380
- #: ../classes/column/link/target.php:12
381
  msgid "Target"
382
  msgstr "Target"
383
 
384
- #: ../classes/column/media/alternate-text.php:12
385
  msgid "Alt"
386
  msgstr "Alt"
387
 
388
- #: ../classes/column/media/available-sizes.php:14
389
  msgid "Available Sizes"
390
  msgstr "可用尺寸"
391
 
392
- #: ../classes/column/media/available-sizes.php:37
393
  msgid "full size"
394
  msgstr "全尺寸"
395
 
396
- #: ../classes/column/media/caption.php:12
397
- #: ../classes/column/media/exif-data.php:36
398
  msgid "Caption"
399
  msgstr "标题"
400
 
401
- #: ../classes/column/media/dimensions.php:12
402
  msgid "Dimensions"
403
  msgstr "尺寸"
404
 
405
- #: ../classes/column/media/exif-data.php:12
406
  msgid "EXIF data"
407
  msgstr "EXIF数据"
408
 
409
- #: ../classes/column/media/exif-data.php:33
410
  msgid "Aperture"
411
  msgstr "光圈"
412
 
413
- #: ../classes/column/media/exif-data.php:34
414
  msgid "Credit"
415
  msgstr "信用"
416
 
417
- #: ../classes/column/media/exif-data.php:35
418
  msgid "Camera"
419
  msgstr "相机"
420
 
421
- #: ../classes/column/media/exif-data.php:37
422
  msgid "Timestamp"
423
  msgstr "时间戳"
424
 
425
- #: ../classes/column/media/exif-data.php:38
426
  msgid "Copyright EXIF"
427
  msgstr "版权EXIF"
428
 
429
- #: ../classes/column/media/exif-data.php:39
430
  msgid "Focal Length"
431
  msgstr "焦距"
432
 
433
- #: ../classes/column/media/exif-data.php:40
434
  msgid "ISO"
435
  msgstr "ISO"
436
 
437
- #: ../classes/column/media/exif-data.php:41
438
  msgid "Shutter Speed"
439
  msgstr "快门速度"
440
 
441
- #: ../classes/column/media/exif-data.php:42
442
  msgid "Title"
443
  msgstr "标题"
444
 
445
- #: ../classes/column/media/file-name.php:12
446
  msgid "File name"
447
  msgstr "名字"
448
 
449
- #: ../classes/column/media/file-size.php:12
450
  msgid "File size"
451
  msgstr "文件大小"
452
 
453
- #: ../classes/column/media/full-path.php:12
454
  msgid "Full path"
455
  msgstr "完整路径"
456
 
457
- #: ../classes/column/media/height.php:12
458
  msgid "Height"
459
  msgstr "高度"
460
 
461
- #: ../classes/column/media/mime-type.php:12
462
  msgid "Mime type"
463
  msgstr "Mime类型"
464
 
465
- #: ../classes/column/post/actions.php:57
466
  msgid "Edit this item"
467
  msgstr "编辑该项目"
468
 
469
- #: ../classes/column/post/actions.php:58
470
  msgid "Edit this item inline"
471
  msgstr "编辑该项目的联"
472
 
473
- #: ../classes/column/post/actions.php:62
474
  msgid "Restore this item from the Trash"
475
  msgstr "从回收站中还原"
476
 
477
- #: ../classes/column/post/actions.php:64
478
  msgid "Move this item to the Trash"
479
  msgstr "移至回收站"
480
 
481
- #: ../classes/column/post/actions.php:64
482
- #: ../classes/column/post/comment-count.php:34
483
- #: ../classes/column/post/status.php:38
484
  msgid "Trash"
485
  msgstr "回收站"
486
 
487
- #: ../classes/column/post/actions.php:66
488
  msgid "Delete this item permanently"
489
  msgstr "永久删除改项目"
490
 
491
- #: ../classes/column/post/actions.php:71
492
  #, php-format
493
  msgid "Preview &#8220;%s&#8221;"
494
  msgstr "预览 &#8220;%s&#8221;"
495
 
496
- #: ../classes/column/post/actions.php:71
497
  msgid "Preview"
498
  msgstr "预览"
499
 
500
- #: ../classes/column/post/actions.php:73
501
  #, php-format
502
  msgid "View &#8220;%s&#8221;"
503
  msgstr "查看 &#8220;%s&#8221;"
504
 
505
- #: ../classes/column/post/actions.php:73 ../classes/storage_model.php:701
506
  msgid "View"
507
  msgstr "查看"
508
 
509
- #: ../classes/column/post/attachment-count.php:12
510
  msgid "No. of Attachments"
511
  msgstr "附件数量"
512
 
513
- #: ../classes/column/post/attachment.php:12
514
  msgid "Attachment"
515
  msgstr "附件"
516
 
517
- #: ../classes/column/post/author-name.php:12
518
  msgid "Display Author As"
519
  msgstr "显示作者为"
520
 
521
- #: ../classes/column/post/author-name.php:34
522
  msgid "Display Name"
523
  msgstr "公开显示为"
524
 
525
- #: ../classes/column/post/author-name.php:35
526
  msgid "First Name"
527
  msgstr "名字"
528
 
529
- #: ../classes/column/post/author-name.php:36
530
  msgid "Last Name"
531
  msgstr "姓氏"
532
 
533
- #: ../classes/column/post/author-name.php:37
534
- #: ../classes/column/user/nickname.php:14
535
  msgid "Nickname"
536
  msgstr "昵称"
537
 
538
- #: ../classes/column/post/author-name.php:38
539
  msgid "User Login"
540
  msgstr "用户名"
541
 
542
- #: ../classes/column/post/author-name.php:39
543
  msgid "User Email"
544
  msgstr "用户邮箱"
545
 
546
- #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
547
  msgid "User ID"
548
  msgstr "用户ID"
549
 
550
- #: ../classes/column/post/author-name.php:41
551
  msgid "First and Last Name"
552
  msgstr "姓名"
553
 
554
- #: ../classes/column/post/author-name.php:118
555
  msgid "This is the format of the author name."
556
  msgstr "作者名字的格式"
557
 
558
- #: ../classes/column/post/before-moretag.php:14
559
  msgid "Before More Tag"
560
  msgstr "More标签前"
561
 
562
- #: ../classes/column/post/comment-count.php:14
563
  msgid "Comment count"
564
  msgstr "评论数量"
565
 
566
- #: ../classes/column/post/comment-count.php:30
567
  msgid "Total"
568
  msgstr "所有"
569
 
570
- #: ../classes/column/post/comment-count.php:32
571
  msgid "Pending"
572
  msgstr "待审"
573
 
574
- #: ../classes/column/post/comment-count.php:33
575
  msgid "Spam"
576
  msgstr "垃圾评论"
577
 
578
- #: ../classes/column/post/comment-count.php:95
579
- #: ../classes/column/post/comment-status.php:14
580
  msgid "Comment status"
581
  msgstr "评论状态"
582
 
583
- #: ../classes/column/post/comment-count.php:95
584
  msgid "Select which comment status you like to display."
585
  msgstr "选择你要显示的评论状态"
586
 
587
- #: ../classes/column/post/featured-image.php:14
588
  msgid "Featured Image"
589
  msgstr "特色图像"
590
 
591
- #: ../classes/column/post/formats.php:14
592
  msgid "Post Format"
593
  msgstr "文章形式"
594
 
595
- #: ../classes/column/post/modified.php:14
596
  msgid "Last modified"
597
  msgstr "最后修订"
598
 
599
- #: ../classes/column/post/order.php:14
600
  msgid "Page Order"
601
  msgstr "页面排序"
602
 
603
- #: ../classes/column/post/page-template.php:12
604
  msgid "Page Template"
605
  msgstr "页面模板"
606
 
607
- #: ../classes/column/post/parent.php:12
608
  msgid "Parent"
609
  msgstr "父级"
610
 
611
- #: ../classes/column/post/permalink.php:12
 
 
 
 
612
  msgid "Permalink"
613
  msgstr ""
614
 
615
- #: ../classes/column/post/ping-status.php:14
 
 
 
 
 
 
 
 
616
  msgid "Ping status"
617
  msgstr "Ping状态"
618
 
619
- #: ../classes/column/post/roles.php:14
620
  msgid "Roles"
621
  msgstr "角色"
622
 
623
- #: ../classes/column/post/slug.php:12
624
  msgid "Slug"
625
  msgstr "别名"
626
 
627
- #: ../classes/column/post/status.php:14
628
  msgid "Status"
629
  msgstr "状态"
630
 
631
- #: ../classes/column/post/status.php:32
632
  msgid "Published"
633
  msgstr "已发布"
634
 
635
- #: ../classes/column/post/status.php:33
636
  msgid "Draft"
637
  msgstr "草稿"
638
 
639
- #: ../classes/column/post/status.php:34
640
  msgid "Scheduled"
641
  msgstr "定时"
642
 
643
- #: ../classes/column/post/status.php:35
644
  msgid "Private"
645
  msgstr "私密"
646
 
647
- #: ../classes/column/post/status.php:36
648
  msgid "Pending Review"
649
  msgstr "待审核"
650
 
651
- #: ../classes/column/post/status.php:37
652
  msgid "Auto Draft"
653
  msgstr ""
654
 
655
- #: ../classes/column/post/sticky.php:14
656
  msgid "Sticky"
657
  msgstr "置顶"
658
 
659
- #: ../classes/column/taxonomy.php:12 ../classes/column/taxonomy.php:101
 
 
 
 
660
  msgid "Taxonomy"
661
  msgstr "分类法"
662
 
663
- #: ../classes/column/user/comment-count.php:14
 
 
 
 
 
 
 
 
 
 
 
 
664
  msgid "Comment Count"
665
  msgstr "评论数量"
666
 
667
- #: ../classes/column/user/first-name.php:14
668
  msgid "First name"
669
  msgstr "名字"
670
 
671
- #: ../classes/column/user/last-name.php:14
672
  msgid "Last name"
673
  msgstr "姓氏"
674
 
675
- #: ../classes/column/user/post-count.php:14
676
  msgid "Post Count"
677
  msgstr "文章数量"
678
 
679
- #: ../classes/column/user/post-count.php:99
680
  msgid "Post Type"
681
  msgstr "文章类型"
682
 
683
- #: ../classes/column/user/registered.php:14
684
  msgid "Registered"
685
  msgstr "注册"
686
 
687
- #: ../classes/column/user/url.php:14
688
  msgid "Url"
689
  msgstr "Url"
690
 
691
- #: ../classes/settings.php:97
692
  msgid "Add-on successfully activated."
693
  msgstr ""
694
 
695
- #: ../classes/settings.php:100
696
  msgid "Add-on successfully deactivated."
697
  msgstr ""
698
 
699
- #: ../classes/settings.php:155
700
  msgid "Admin Columns Settings"
701
  msgstr "Admin Columns 设置"
702
 
703
- #: ../classes/settings.php:155 ../classes/settings.php:619
704
- #: ../classes/upgrade.php:83
705
  msgid "Admin Columns"
706
  msgstr "Admin Columns"
707
 
708
- #: ../classes/settings.php:203
709
  #, php-format
710
  msgid "%s column is already present and can not be duplicated."
711
  msgstr "%s 这个列已经存在,不能被复制。"
712
 
713
- #: ../classes/settings.php:256
714
  msgid "Default settings succesfully restored."
715
  msgstr "已成功恢复默认设置。"
716
 
717
- #: ../classes/settings.php:273
718
  msgid "Overview"
719
  msgstr "预览"
720
 
721
- #: ../classes/settings.php:276
722
  msgid ""
723
- "This plugin is for adding and removing additional columns to the "
724
- "administration screens for post(types), pages, media library, comments, "
725
- "links and users. Change the column's label and reorder them."
726
- msgstr ""
727
- "该插件用来从管理界面中添加或移除额外的列,比如文章(自定义文章类型)、页面、"
728
- "媒体库、评论、链接和用户的管理界面。修改列的标题和重新排序它们。"
729
 
730
- #: ../classes/settings.php:279
731
  msgid "Basics"
732
  msgstr "基础"
733
 
734
- #: ../classes/settings.php:281
735
  msgid "Change order"
736
  msgstr "更改排序"
737
 
738
- #: ../classes/settings.php:282
739
- msgid ""
740
- "By dragging the columns you can change the order which they will appear in."
741
  msgstr "拖动排序这些列,你可以重新排列它们显示的顺序。"
742
 
743
- #: ../classes/settings.php:283
744
  msgid "Change label"
745
  msgstr "更改标签"
746
 
747
- #: ../classes/settings.php:284
748
- msgid ""
749
- "By clicking on the triangle you will see the column options. Here you can "
750
- "change each label of the columns heading."
751
  msgstr "点击三角形,你会看到列的选项。在这里,你可以改变每个标签的列标题栏。"
752
 
753
- #: ../classes/settings.php:285
754
  msgid "Change column width"
755
  msgstr "更改列宽"
756
 
757
- #: ../classes/settings.php:286
758
- msgid ""
759
- "By clicking on the triangle you will see the column options. By using the "
760
- "draggable slider you can set the width of the columns in percentages."
761
  msgstr "点击三角形,你会看到列的选项。你可以通过拖动滑块设置列的百分比宽度。"
762
 
763
- #: ../classes/settings.php:292
764
  msgid "'Custom Field' column"
765
  msgstr "“自定义字段”列"
766
 
767
- #: ../classes/settings.php:293
768
- msgid ""
769
- "The custom field colum uses the custom fields from posts and users. There "
770
- "are 10 types which you can set."
771
  msgstr "自定义字段列使用文章和用户的自定义字段,你可以设置10中类型。"
772
 
773
- #: ../classes/settings.php:295
774
- msgid ""
775
- "Value: Can be either a string or array. Arrays will be flattened and values "
776
- "are seperated by a ',' comma."
777
- msgstr ""
778
- "值:可以是一个字符串或数组。数组将被压平(Arrays will be flattened),值之间"
779
- "用逗号“,”隔开。"
780
 
781
- #: ../classes/settings.php:296
782
- msgid ""
783
- "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
784
- "comma )."
785
  msgstr "值:应该包括一个图像URL或附件ID(使用逗号“,”隔开)"
786
 
787
- #: ../classes/settings.php:297
788
  msgid "Value: This will show the first 20 words of the Post content."
789
  msgstr "值:将显示文章内容的前 20 个字。"
790
 
791
- #: ../classes/settings.php:298
792
- msgid ""
793
- "Value: should be an array. This will flatten any ( multi dimensional ) array."
794
  msgstr "值:应该是一个数组。这将被压平(多维)数组"
795
 
796
- #: ../classes/settings.php:299
797
- msgid ""
798
- "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
799
- "for sorting, so you can sort your posts on numeric (custom field) values."
800
- msgstr ""
801
- "值:只能是数字。<br/>如果你安装了“排序扩展”,这将用于排序,所以你可以通过这个"
802
- "数字(自定义字段)值来排序文章。"
803
 
804
- #: ../classes/settings.php:300
805
  #, php-format
806
  msgid ""
807
- "Value: Can be unix time stamp or a date format as described in the <a "
808
- "href='%s'>Codex</a>. You can change the outputted date format at the <a "
809
- "href='%s'>general settings</a> page."
810
- msgstr ""
811
- "值:可以是 Unix 时间戳或<a href='%s'>规则</a>中描述的一种日期格式。你可以在 "
812
- "<a href='%s'>常规设置</a> 页面修改输出的日期格式。"
813
 
814
- #: ../classes/settings.php:301
815
  msgid "Post Titles"
816
  msgstr "文章标题"
817
 
818
- #: ../classes/settings.php:301
819
  msgid "Value: can be one or more Post ID's (seperated by ',')."
820
  msgstr "值:可以是一个或多个文章ID(使用逗号“,”隔开)"
821
 
822
- #: ../classes/settings.php:302
823
  msgid "Usernames"
824
  msgstr "用户名"
825
 
826
- #: ../classes/settings.php:302
827
  msgid "Value: can be one or more User ID's (seperated by ',')."
828
  msgstr "值:可以是一个或多个用户ID(使用逗号“,”隔开)"
829
 
830
- #: ../classes/settings.php:303
831
  msgid "Checkmark"
832
  msgstr "判断"
833
 
834
- #: ../classes/settings.php:303
835
  msgid "Value: should be a 1 (one) or 0 (zero)."
836
  msgstr "值:应该是 1 (一)或 0 (零)"
837
 
838
- #: ../classes/settings.php:304
839
  msgid "Value: hex value color, such as #808080."
840
  msgstr "值:十六进制值的颜色,如#808080。"
841
 
842
- #: ../classes/settings.php:305
843
- msgid ""
844
- "Value: Can be either a string or array. This will display a count of the "
845
- "number of times the meta key is used by the item."
846
  msgstr ""
847
 
848
- #: ../classes/settings.php:399
849
  msgid "Welcome to Admin Columns"
850
  msgstr "欢迎使用Admin Columns插件。"
851
 
852
- #: ../classes/settings.php:402
853
  msgid "Thank you for updating to the latest version!"
854
  msgstr "感谢您更新到最新版本!"
855
 
856
- #: ../classes/settings.php:403
857
- msgid ""
858
- "Admin Columns is more polished and enjoyable than ever before. We hope you "
859
- "like it."
860
  msgstr "Admin Columns插件比以往任何时候都更加精致,愉快。我们希望你喜欢它。"
861
 
862
- #: ../classes/settings.php:408
863
  msgid "What’s New"
864
  msgstr "最近更新"
865
 
866
- #: ../classes/settings.php:409
867
  msgid "Changelog"
868
  msgstr "更新记录"
869
 
870
- #: ../classes/settings.php:414
871
- msgid "Addons"
872
- msgstr "扩展"
873
-
874
- #: ../classes/settings.php:416
875
- msgid ""
876
- "Addons are now activated by downloading and installing individual plugins. "
877
- "Although these plugins will not be hosted on the wordpress.org repository, "
878
- "each Add-on will continue to receive updates in the usual way."
879
- msgstr ""
880
- "通过下载和安装插件可以启用扩展。尽管这些扩展插件不再托管于 wordpress.org,但"
881
- "是它们都可以通过通常的方式获得更新。"
882
-
883
- #: ../classes/settings.php:419
884
- msgid ""
885
- "This website uses the Sortorder Addon. This addon needs to be downloaded."
886
- msgstr "该网站使用了排序扩展,该扩展需要下载。"
887
-
888
- #: ../classes/settings.php:422
889
- msgid "Addons are seperate plugins which need to be downloaded."
890
- msgstr "扩展是需要下载的单独插件。"
891
-
892
- #: ../classes/settings.php:422
893
- msgid "Download your Addons"
894
- msgstr "下载你的扩展"
895
-
896
- #: ../classes/settings.php:428
897
- msgid "This website does not use add-ons"
898
- msgstr "该网站没有使用扩展"
899
-
900
- #: ../classes/settings.php:428
901
- msgid "See our website for Admin Columns Pro."
902
- msgstr ""
903
-
904
- #: ../classes/settings.php:435
905
  msgid "Important"
906
  msgstr "重要"
907
 
908
- #: ../classes/settings.php:437
909
  msgid "Database Changes"
910
  msgstr "数据库更改"
911
 
912
- #: ../classes/settings.php:438
913
- msgid ""
914
- "The database has been changed between versions 1 and 2. But we made sure you "
915
- "can still roll back to version 1x without any issues."
916
- msgstr ""
917
- "该数据库已在版本1和2之间进行了更改。但我们确信你仍然可以回滚到版本1x,这是没"
918
- "有任何问题的。"
919
 
920
- #: ../classes/settings.php:441
921
  msgid "Make sure you backup your database and then click"
922
  msgstr "确保你已经备份了数据库,然后点击"
923
 
924
- #: ../classes/settings.php:441 ../classes/upgrade.php:91
925
  msgid "Upgrade Database"
926
  msgstr "升级数据库"
927
 
928
- #: ../classes/settings.php:444
929
  msgid "Potential Issues"
930
  msgstr "潜在问题"
931
 
932
- #: ../classes/settings.php:445
933
- msgid ""
934
- "Do to the sizable refactoring the code, surounding Addons and action/"
935
- "filters, your website may not operate correctly. It is important that you "
936
- "read the full"
937
- msgstr ""
938
- "做了相当大的代码重构,包括扩展和各类钩子,你的网站可能无法正常工作。强烈建议"
939
- "你阅读完整的 "
940
 
941
- #: ../classes/settings.php:445
942
  msgid "Migrating from v1 to v2"
943
  msgstr "从 v1 迁移到 v2"
944
 
945
- #: ../classes/settings.php:445
946
  msgid "guide to view the full list of changes."
947
  msgstr "引导查看完整的更改列表。"
948
 
949
- #: ../classes/settings.php:445
950
  #, php-format
951
- msgid ""
952
- "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
953
- "can fix it in the next release."
954
- msgstr ""
955
- "当你发现了 bug,请 <a href=\"%s\">反馈给我们</a>,以便我们在下个版本进行修"
956
- "复。"
957
 
958
- #: ../classes/settings.php:448
959
  msgid "Important!"
960
  msgstr "重要!"
961
 
962
- #: ../classes/settings.php:448
963
- msgid ""
964
- "If you updated the Admin Columns plugin without prior knowledge of such "
965
- "changes, Please roll back to the latest"
966
  msgstr "如果你更新了 Admin Columns 插件没有另行通知这些变更,请回滚到最新版本"
967
 
968
- #: ../classes/settings.php:448
969
  msgid "version 1"
970
  msgstr "版本 1"
971
 
972
- #: ../classes/settings.php:448
973
  msgid "of this plugin."
974
  msgstr "这个插件。"
975
 
976
- #: ../classes/settings.php:454
977
  msgid "Changelog for"
978
  msgstr "更新记录 for"
979
 
980
- #: ../classes/settings.php:469
981
  msgid "Learn more"
982
  msgstr "了解更多"
983
 
984
- #: ../classes/settings.php:479
985
  msgid "Start using Admin Columns"
986
  msgstr "开始使用Admin Columns"
987
 
988
- #: ../classes/settings.php:522
989
  msgid "General Settings"
990
  msgstr "常规设置"
991
 
992
- #: ../classes/settings.php:523
993
  msgid "Customize your Admin Columns settings."
994
  msgstr "自定义Admin Columns的设置"
995
 
996
- #: ../classes/settings.php:546
997
- msgid ""
998
- "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
999
- msgstr "在管理界面显示“编辑列”按钮,默认为<code>不显示</code>"
1000
 
1001
- #: ../classes/settings.php:553 ../classes/settings.php:682
1002
  msgid "Save"
1003
  msgstr "保存"
1004
 
1005
- #: ../classes/settings.php:593
1006
  msgid "Restore Settings"
1007
  msgstr "恢复设置"
1008
 
1009
- #: ../classes/settings.php:594
1010
  msgid "This will delete all column settings and restore the default settings."
1011
  msgstr "这将删除所有列的设置和恢复到默认设置。"
1012
 
1013
- #: ../classes/settings.php:600
1014
  msgid "Restore default settings"
1015
  msgstr "恢复默认设置"
1016
 
1017
- #: ../classes/settings.php:600
1018
- msgid ""
1019
- "Warning! ALL saved admin columns data will be deleted. This cannot be "
1020
- "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1021
- msgstr ""
1022
- "警告!所有Admin Columns的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将"
1023
- "停止。"
1024
 
1025
- #: ../classes/settings.php:620 ../codepress-admin-columns.php:354
1026
  msgid "Settings"
1027
  msgstr "设置"
1028
 
1029
- #: ../classes/settings.php:621
1030
  msgid "Add-ons"
1031
  msgstr ""
1032
 
1033
- #: ../classes/settings.php:647
1034
  msgid "Posttypes"
1035
  msgstr ""
1036
 
1037
- #: ../classes/settings.php:648
1038
  msgid "Others"
1039
  msgstr ""
1040
 
1041
- #: ../classes/settings.php:649
1042
  msgid "Taxonomies"
1043
  msgstr ""
1044
 
1045
- #: ../classes/settings.php:668
1046
  #, php-format
1047
- msgid ""
1048
- "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1049
- "be edited in the admin panel."
1050
  msgstr ""
1051
 
1052
- #: ../classes/settings.php:678
1053
  msgid "Store settings"
1054
  msgstr "保存设置"
1055
 
1056
- #: ../classes/settings.php:682
1057
  msgid "Update"
1058
  msgstr "更新"
1059
 
1060
- #: ../classes/settings.php:686
1061
  #, php-format
1062
- msgid ""
1063
- "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1064
- "\\' to delete, \\'Cancel\\' to stop"
1065
- msgstr ""
1066
- "警告!%s 列的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将停止。"
1067
 
1068
- #: ../classes/settings.php:687
1069
  msgid "columns"
1070
  msgstr "列"
1071
 
1072
- #: ../classes/settings.php:701
1073
  msgid "Get Admin Columns Pro"
1074
  msgstr ""
1075
 
1076
- #: ../classes/settings.php:705
1077
  msgid "Add Sorting"
1078
  msgstr "添加排序"
1079
 
1080
- #: ../classes/settings.php:706
1081
  msgid "Add Filtering"
1082
  msgstr "添加过滤器"
1083
 
1084
- #: ../classes/settings.php:707
1085
  msgid "Add Import/Export"
1086
  msgstr "添加 导入/导出"
1087
 
1088
- #: ../classes/settings.php:708
1089
  msgid "Add Direct Editing"
1090
  msgstr ""
1091
 
1092
- #: ../classes/settings.php:711
1093
  #, php-format
1094
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1095
  msgstr ""
1096
 
 
 
 
 
 
 
 
 
 
 
 
 
1097
  #: ../classes/settings.php:742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1098
  msgid "Support"
1099
  msgstr "支持"
1100
 
1101
- #: ../classes/settings.php:745
1102
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1103
  msgstr "查看右上角的 <strong>帮助</strong>"
1104
 
1105
- #: ../classes/settings.php:748
1106
  #, php-format
1107
- msgid ""
1108
- "For full documentation, bug reports, feature suggestions and other tips <a "
1109
- "href='%s'>visit the Admin Columns website</a>"
1110
  msgstr ""
1111
- "<a href='%s'>访问官方网站</a> 获取帮助文档,反馈Bug,提交建议和其他技巧。</"
1112
- "p><p>本插件由 <a href=\"http://www.wpdaxue.com\" title=\"优秀的WordPress建站"
1113
- "资源平台\" target=\"_blank\">WordPress大学</a> 提供简体中文支持。"
1114
 
1115
- #: ../classes/settings.php:777
1116
  msgid "Drag and drop to reorder"
1117
  msgstr "拖动排序"
1118
 
1119
- #: ../classes/settings.php:780
1120
  msgid "Add Column"
1121
  msgstr "添加列"
1122
 
1123
- #: ../classes/settings.php:853
1124
  msgid "Active"
1125
  msgstr ""
1126
 
1127
- #: ../classes/settings.php:854
1128
  msgid "Deactivate"
1129
  msgstr ""
1130
 
1131
- #: ../classes/settings.php:861
1132
  msgid "Installed"
1133
  msgstr ""
1134
 
1135
- #: ../classes/settings.php:862
1136
  msgid "Activate"
1137
  msgstr ""
1138
 
1139
- #: ../classes/settings.php:876
1140
  msgid "Download & Install"
1141
  msgstr ""
1142
 
1143
- #: ../classes/settings.php:881
1144
  msgid "Get this add-on"
1145
  msgstr ""
1146
 
1147
- #: ../classes/storage_model.php:207
1148
  msgid "settings succesfully restored."
1149
  msgstr "设置已成功恢复!"
1150
 
1151
- #: ../classes/storage_model.php:222
1152
  msgid "No columns settings available."
1153
  msgstr "没有可用的列设置。"
1154
 
1155
- #: ../classes/storage_model.php:243
1156
  #, php-format
1157
  msgid "You are trying to store the same settings for %s."
1158
  msgstr "你正在尝试为 %s 保存同样设置"
1159
 
1160
- #: ../classes/storage_model.php:247
1161
  #, php-format
1162
  msgid "Settings for %s updated succesfully."
1163
  msgstr "%s 的设置已保存!"
@@ -1174,60 +1136,65 @@ msgstr "链接"
1174
  msgid "Users"
1175
  msgstr "用户"
1176
 
1177
- #: ../classes/upgrade.php:43
 
 
 
 
 
 
 
1178
  msgid "Upgrade"
1179
  msgstr "升级"
1180
 
1181
- #: ../classes/upgrade.php:84
1182
  msgid "requires a database upgrade"
1183
  msgstr "需要升级数据库"
1184
 
1185
- #: ../classes/upgrade.php:87
1186
  msgid "why?"
1187
  msgstr "为什么?"
1188
 
1189
- #: ../classes/upgrade.php:88
1190
  msgid "Please"
1191
  msgstr "请"
1192
 
1193
- #: ../classes/upgrade.php:89
1194
  msgid "backup your database"
1195
  msgstr "备份数据库"
1196
 
1197
- #: ../classes/upgrade.php:90
1198
  msgid "then click"
1199
  msgstr "然后点击"
1200
 
1201
- #: ../classes/upgrade.php:298
1202
  msgid "Migrating Column Settings"
1203
  msgstr "迁移列设置"
1204
 
1205
- #: ../classes/upgrade.php:334
1206
  msgid "No Upgrade Required"
1207
  msgstr "无需升级"
1208
 
1209
- #: ../classes/upgrade.php:335
1210
  msgid "Return to welcome screen."
1211
  msgstr "返回欢迎界面"
1212
 
1213
- #: ../classes/upgrade.php:353
1214
  msgid "Upgrade Complete!"
1215
  msgstr "升级完成!"
1216
 
1217
- #: ../classes/upgrade.php:353
1218
  msgid "Return to settings."
1219
  msgstr "返回设置。"
1220
 
1221
- #: ../classes/upgrade.php:354
1222
  msgid "Error"
1223
  msgstr "错误"
1224
 
1225
- #: ../classes/upgrade.php:355
1226
- msgid ""
1227
- "Sorry. Something went wrong during the upgrade process. Please report this "
1228
- "on the support forum."
1229
  msgstr "抱歉,升级过程中出错了,请在论坛中反馈。"
1230
 
1231
- #: ../codepress-admin-columns.php:439
1232
  msgid "Edit columns"
1233
  msgstr "编辑列"
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
9
+ "PO-Revision-Date: 2014-12-10 17:24+0100\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.7.1\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
 
24
+ #: ../classes/addons.php:110
25
  msgid "Third party plugin integration"
26
  msgstr ""
27
 
28
+ #: ../classes/addons.php:135
29
  msgid "Advanced Custom Fields"
30
  msgstr ""
31
 
32
+ #: ../classes/addons.php:136
33
+ msgid "Display and edit Advanced Custom Fields fields in the posts overview in seconds!"
34
+ msgstr ""
35
+
36
+ #: ../classes/addons.php:141
37
+ msgid "WooCommerce"
38
+ msgstr ""
39
+
40
+ #: ../classes/addons.php:142
41
+ msgid "Enhance the products, orders and coupons overviews with new columns and inline editing."
42
  msgstr ""
43
 
44
+ #: ../classes/column.php:500
45
  msgid "Thumbnail"
46
  msgstr "缩略图"
47
 
48
+ #: ../classes/column.php:501
49
  msgid "Medium"
50
  msgstr "中等大小"
51
 
52
+ #: ../classes/column.php:502
53
  msgid "Large"
54
  msgstr "大尺寸"
55
 
56
+ #: ../classes/column.php:503
57
  msgid "Full"
58
  msgstr "原始大小"
59
 
60
+ #: ../classes/column.php:863
61
  msgid "Date Format"
62
  msgstr "日期格式"
63
 
64
+ #: ../classes/column.php:864
65
  msgid "This will determine how the date will be displayed."
66
  msgstr "用来决定如何显示日期"
67
 
68
+ #: ../classes/column.php:870
69
  msgid "Example:"
70
  msgstr "例如:"
71
 
72
+ #: ../classes/column.php:872
73
  #, php-format
74
+ msgid "Leave empty for WordPress date format, change your <a href=\"%s\">default date format here</a>."
75
+ msgstr "留空将使用WordPress日期格式,你可以在 <a href=\"%s\">这里</a> 修改默认的日期格式。"
 
 
 
 
76
 
77
+ #: ../classes/column.php:873
78
  msgid "Documentation on date and time formatting."
79
  msgstr "日期和时间格式的文档。"
80
 
81
+ #: ../classes/column.php:887
82
  msgid "Excerpt length"
83
  msgstr "摘要长度"
84
 
85
+ #: ../classes/column.php:888
86
  msgid "Number of words"
87
  msgstr "字数"
88
 
89
+ #: ../classes/column.php:906
90
  msgid "Preview size"
91
  msgstr "预览大小"
92
 
93
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
94
  msgid "Custom"
95
  msgstr "自定义"
96
 
97
+ #: ../classes/column.php:926
98
  msgid "width"
99
  msgstr "宽度"
100
 
101
+ #: ../classes/column.php:929
102
  msgid "height"
103
  msgstr "高度"
104
 
105
+ #: ../classes/column.php:943
106
  msgid "Before"
107
  msgstr "前"
108
 
109
+ #: ../classes/column.php:943
110
  msgid "This text will appear before the custom field value."
111
  msgstr "该文本将显示在自定义字段的值的前面"
112
 
113
+ #: ../classes/column.php:949
114
  msgid "After"
115
  msgstr "后"
116
 
117
+ #: ../classes/column.php:949
118
  msgid "This text will appear after the custom field value."
119
  msgstr "该文本将显示在自定义字段的值的后面"
120
 
121
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99 ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31
122
+ #: ../classes/column/user/actions.php:69
 
123
  msgid "Edit"
124
  msgstr "编辑"
125
 
126
+ #: ../classes/column.php:1044 ../classes/column.php:1122 ../classes/column/user/actions.php:77
 
127
  msgid "Remove"
128
  msgstr "删除"
129
 
130
+ #: ../classes/column.php:1062
131
  msgid "Type"
132
  msgstr "类型"
133
 
134
+ #: ../classes/column.php:1062
135
  msgid "Choose a column type."
136
  msgstr "选择一个列类型。"
137
 
138
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19 ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19 ../classes/column/post/ID.php:19
 
 
139
  msgid "ID"
140
  msgstr "ID"
141
 
142
+ #: ../classes/column.php:1072
143
  msgid "Label"
144
  msgstr "标签"
145
 
146
+ #: ../classes/column.php:1072
147
  msgid "This is the name which will appear as the column header."
148
  msgstr "该名称将显示为列标题。"
149
 
150
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
151
  msgid "Width"
152
  msgstr "宽度"
153
 
154
+ #: ../classes/column.php:1081 ../classes/column.php:1082
155
  msgid "default"
156
  msgstr "默认"
157
 
158
+ #: ../classes/column/acf-placeholder.php:19
159
  msgid "ACF Field"
160
  msgstr ""
161
 
162
  #: ../classes/column/acf-placeholder.php:32
163
+ msgid "This feature is only available in Admin Columns Pro - Business or Developer."
164
  msgstr ""
165
 
166
  #: ../classes/column/acf-placeholder.php:35
167
  #, php-format
168
+ msgid "If you have a developer licence please download & install your ACF add-on from the <a href='%s'>add-ons tab</a>."
 
 
169
  msgstr ""
170
 
171
  #: ../classes/column/acf-placeholder.php:38
172
+ msgid "Admin Columns Pro - Developer offers full Advanced Custom Fields integeration, allowing you to easily display and edit ACF fields from within your posts overview."
 
 
 
173
  msgstr ""
174
 
175
+ #: ../classes/column/acf-placeholder.php:44
176
  msgid "Find out more"
177
  msgstr ""
178
 
179
+ #: ../classes/column/actions.php:29 ../classes/column/comment/actions.php:19 ../classes/column/link/actions.php:19 ../classes/column/media/actions.php:20
180
+ #: ../classes/column/user/actions.php:19
 
 
181
  msgid "Actions"
182
  msgstr "操作"
183
 
184
+ #: ../classes/column/actions.php:87
185
+ msgid "Use icons?"
186
+ msgstr ""
187
+
188
+ #: ../classes/column/actions.php:87
189
+ msgid "Use icons instead of text for displaying the actions."
190
+ msgstr ""
191
+
192
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72 ../classes/column/used-by-menu.php:137
193
+ msgid "Yes"
194
+ msgstr ""
195
+
196
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76 ../classes/column/used-by-menu.php:141
197
+ msgid "No"
198
+ msgstr ""
199
+
200
+ #: ../classes/column/comment/actions.php:76 ../classes/column/comment/actions.php:81
201
  msgid "Unapprove"
202
  msgstr "驳回"
203
 
204
+ #: ../classes/column/comment/actions.php:78 ../classes/column/comment/actions.php:80
 
205
  msgid "Approve"
206
  msgstr "通过"
207
 
208
+ #: ../classes/column/comment/actions.php:89 ../classes/column/post/actions.php:39 ../classes/settings.php:665
 
209
  msgid "Restore"
210
  msgstr "恢复"
211
 
212
+ #: ../classes/column/comment/actions.php:93 ../classes/column/post/actions.php:43
 
213
  msgid "Delete Permanently"
214
  msgstr "永久删除"
215
 
216
+ #: ../classes/column/comment/actions.php:100 ../classes/column/post/actions.php:34
 
217
  msgid "Quick&nbsp;Edit"
218
  msgstr "Quick&nbsp;Edit"
219
 
220
+ #: ../classes/column/comment/actions.php:101
221
  msgid "Reply"
222
  msgstr "回复"
223
 
224
+ #: ../classes/column/comment/agent.php:19
225
  msgid "Agent"
226
  msgstr "代理(Agent)"
227
 
228
+ #: ../classes/column/comment/approved.php:19 ../classes/column/post/comment-count.php:35
 
229
  msgid "Approved"
230
  msgstr "已通过"
231
 
232
+ #: ../classes/column/comment/author-avatar.php:19
233
  msgid "Avatar"
234
  msgstr "头像"
235
 
236
+ #: ../classes/column/comment/author-email.php:19
237
  msgid "Author email"
238
  msgstr "作者邮箱"
239
 
240
+ #: ../classes/column/comment/author-ip.php:19
241
  msgid "Author IP"
242
  msgstr "作者IP"
243
 
244
+ #: ../classes/column/comment/author-url.php:19
245
  msgid "Author url"
246
  msgstr "作者url"
247
 
248
+ #: ../classes/column/comment/author.php:19
249
  msgid "Author"
250
  msgstr "作者"
251
 
252
+ #: ../classes/column/comment/date-gmt.php:19
253
  msgid "Date GMT"
254
  msgstr "日期GMT"
255
 
256
+ #: ../classes/column/comment/date-gmt.php:30 ../classes/column/comment/date.php:30
 
257
  #, php-format
258
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
259
  msgstr "提交于 <a href=\"%1$s\">%2$s at %3$s</a>"
260
 
261
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98 ../classes/settings.php:315
 
262
  msgid "Date"
263
  msgstr "日期"
264
 
265
+ #: ../classes/column/comment/excerpt.php:19 ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19 ../classes/settings.php:312
 
 
266
  msgid "Excerpt"
267
  msgstr "摘要"
268
 
269
+ #: ../classes/column/comment/reply-to.php:19
270
  msgid "In Reply To"
271
  msgstr "回应给"
272
 
273
+ #: ../classes/column/comment/word-count.php:19 ../classes/column/post/word-count.php:19
 
274
  msgid "Word count"
275
  msgstr "字数"
276
 
277
+ #: ../classes/column/custom-field.php:23 ../classes/column/custom-field.php:356 ../classes/settings.php:305
 
278
  msgid "Custom Field"
279
  msgstr "自定义字段"
280
 
281
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310 ../classes/storage_model.php:535
 
282
  msgid "Default"
283
  msgstr "默认"
284
 
285
+ #: ../classes/column/custom-field.php:95
286
  msgid "Checkmark (true/false)"
287
  msgstr "判断(true/false)"
288
 
289
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
290
  msgid "Color"
291
  msgstr "颜色"
292
 
293
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
294
  msgid "Counter"
295
  msgstr ""
296
 
297
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19 ../classes/settings.php:311
 
298
  msgid "Image"
299
  msgstr "图像"
300
 
301
+ #: ../classes/column/custom-field.php:101 ../classes/storage_model/media.php:13
302
  msgid "Media Library"
303
  msgstr "媒体库"
304
 
305
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
306
  msgid "Multiple Values"
307
  msgstr "多个值"
308
 
309
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
310
  msgid "Numeric"
311
  msgstr "数字"
312
 
313
+ #: ../classes/column/custom-field.php:104
314
  msgid "Post Title (Post ID's)"
315
  msgstr "文章标题(文章ID)"
316
 
317
+ #: ../classes/column/custom-field.php:105
318
  msgid "Username (User ID's)"
319
  msgstr "用户名(用户ID)"
320
 
321
+ #: ../classes/column/custom-field.php:356
322
  msgid "Select your custom field."
323
  msgstr "选择自定义字段"
324
 
325
+ #: ../classes/column/custom-field.php:366
326
  msgid "No custom fields available."
327
  msgstr "没有可用的自定义字段"
328
 
329
+ #: ../classes/column/custom-field.php:373
330
  msgid "Field Type"
331
  msgstr "字段类型"
332
 
333
+ #: ../classes/column/custom-field.php:373
334
  msgid "This will determine how the value will be displayed."
335
  msgstr "用来确定如何显示值"
336
 
337
+ #: ../classes/column/link/actions.php:49
338
  #, php-format
339
  msgid ""
340
  "You are about to delete this link '%s'\n"
343
  "你将要删除这个链接“%s”\n"
344
  "“取消”将停止,“确定”将删除。"
345
 
346
+ #: ../classes/column/link/actions.php:49 ../classes/column/user/actions.php:75
347
  msgid "Delete"
348
  msgstr "删除"
349
 
350
+ #: ../classes/column/link/description.php:19 ../classes/column/media/description.php:19 ../classes/column/user/description.php:19
 
 
351
  msgid "Description"
352
  msgstr "描述"
353
 
354
+ #: ../classes/column/link/length.php:19
355
  msgid "Length"
356
  msgstr "长度"
357
 
358
+ #: ../classes/column/link/notes.php:19
359
  msgid "Notes"
360
  msgstr "笔记"
361
 
362
+ #: ../classes/column/link/owner.php:19
363
  msgid "Owner"
364
  msgstr "所有者"
365
 
366
+ #: ../classes/column/link/rss.php:19
367
  msgid "Rss"
368
  msgstr "Rss"
369
 
370
+ #: ../classes/column/link/target.php:19
371
  msgid "Target"
372
  msgstr "Target"
373
 
374
+ #: ../classes/column/media/alternate-text.php:19
375
  msgid "Alt"
376
  msgstr "Alt"
377
 
378
+ #: ../classes/column/media/available-sizes.php:20
379
  msgid "Available Sizes"
380
  msgstr "可用尺寸"
381
 
382
+ #: ../classes/column/media/available-sizes.php:40
383
  msgid "full size"
384
  msgstr "全尺寸"
385
 
386
+ #: ../classes/column/media/caption.php:19 ../classes/column/media/exif-data.php:41
 
387
  msgid "Caption"
388
  msgstr "标题"
389
 
390
+ #: ../classes/column/media/dimensions.php:19
391
  msgid "Dimensions"
392
  msgstr "尺寸"
393
 
394
+ #: ../classes/column/media/exif-data.php:19
395
  msgid "EXIF data"
396
  msgstr "EXIF数据"
397
 
398
+ #: ../classes/column/media/exif-data.php:38
399
  msgid "Aperture"
400
  msgstr "光圈"
401
 
402
+ #: ../classes/column/media/exif-data.php:39
403
  msgid "Credit"
404
  msgstr "信用"
405
 
406
+ #: ../classes/column/media/exif-data.php:40
407
  msgid "Camera"
408
  msgstr "相机"
409
 
410
+ #: ../classes/column/media/exif-data.php:42
411
  msgid "Timestamp"
412
  msgstr "时间戳"
413
 
414
+ #: ../classes/column/media/exif-data.php:43
415
  msgid "Copyright EXIF"
416
  msgstr "版权EXIF"
417
 
418
+ #: ../classes/column/media/exif-data.php:44
419
  msgid "Focal Length"
420
  msgstr "焦距"
421
 
422
+ #: ../classes/column/media/exif-data.php:45
423
  msgid "ISO"
424
  msgstr "ISO"
425
 
426
+ #: ../classes/column/media/exif-data.php:46
427
  msgid "Shutter Speed"
428
  msgstr "快门速度"
429
 
430
+ #: ../classes/column/media/exif-data.php:47
431
  msgid "Title"
432
  msgstr "标题"
433
 
434
+ #: ../classes/column/media/file-name.php:19
435
  msgid "File name"
436
  msgstr "名字"
437
 
438
+ #: ../classes/column/media/file-size.php:19
439
  msgid "File size"
440
  msgstr "文件大小"
441
 
442
+ #: ../classes/column/media/full-path.php:19
443
  msgid "Full path"
444
  msgstr "完整路径"
445
 
446
+ #: ../classes/column/media/height.php:19
447
  msgid "Height"
448
  msgstr "高度"
449
 
450
+ #: ../classes/column/media/mime-type.php:19
451
  msgid "Mime type"
452
  msgstr "Mime类型"
453
 
454
+ #: ../classes/column/post/actions.php:31
455
  msgid "Edit this item"
456
  msgstr "编辑该项目"
457
 
458
+ #: ../classes/column/post/actions.php:34
459
  msgid "Edit this item inline"
460
  msgstr "编辑该项目的联"
461
 
462
+ #: ../classes/column/post/actions.php:39
463
  msgid "Restore this item from the Trash"
464
  msgstr "从回收站中还原"
465
 
466
+ #: ../classes/column/post/actions.php:41
467
  msgid "Move this item to the Trash"
468
  msgstr "移至回收站"
469
 
470
+ #: ../classes/column/post/actions.php:41 ../classes/column/post/comment-count.php:38 ../classes/column/post/status.php:35
 
 
471
  msgid "Trash"
472
  msgstr "回收站"
473
 
474
+ #: ../classes/column/post/actions.php:43
475
  msgid "Delete this item permanently"
476
  msgstr "永久删除改项目"
477
 
478
+ #: ../classes/column/post/actions.php:48
479
  #, php-format
480
  msgid "Preview &#8220;%s&#8221;"
481
  msgstr "预览 &#8220;%s&#8221;"
482
 
483
+ #: ../classes/column/post/actions.php:48
484
  msgid "Preview"
485
  msgstr "预览"
486
 
487
+ #: ../classes/column/post/actions.php:50
488
  #, php-format
489
  msgid "View &#8220;%s&#8221;"
490
  msgstr "查看 &#8220;%s&#8221;"
491
 
492
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
493
  msgid "View"
494
  msgstr "查看"
495
 
496
+ #: ../classes/column/post/attachment-count.php:19
497
  msgid "No. of Attachments"
498
  msgstr "附件数量"
499
 
500
+ #: ../classes/column/post/attachment.php:19
501
  msgid "Attachment"
502
  msgstr "附件"
503
 
504
+ #: ../classes/column/post/author-name.php:20
505
  msgid "Display Author As"
506
  msgstr "显示作者为"
507
 
508
+ #: ../classes/column/post/author-name.php:40
509
  msgid "Display Name"
510
  msgstr "公开显示为"
511
 
512
+ #: ../classes/column/post/author-name.php:41
513
  msgid "First Name"
514
  msgstr "名字"
515
 
516
+ #: ../classes/column/post/author-name.php:42
517
  msgid "Last Name"
518
  msgstr "姓氏"
519
 
520
+ #: ../classes/column/post/author-name.php:43 ../classes/column/user/nickname.php:19
 
521
  msgid "Nickname"
522
  msgstr "昵称"
523
 
524
+ #: ../classes/column/post/author-name.php:44
525
  msgid "User Login"
526
  msgstr "用户名"
527
 
528
+ #: ../classes/column/post/author-name.php:45
529
  msgid "User Email"
530
  msgstr "用户邮箱"
531
 
532
+ #: ../classes/column/post/author-name.php:46 ../classes/column/user/ID.php:19
533
  msgid "User ID"
534
  msgstr "用户ID"
535
 
536
+ #: ../classes/column/post/author-name.php:47
537
  msgid "First and Last Name"
538
  msgstr "姓名"
539
 
540
+ #: ../classes/column/post/author-name.php:124
541
  msgid "This is the format of the author name."
542
  msgstr "作者名字的格式"
543
 
544
+ #: ../classes/column/post/before-moretag.php:19
545
  msgid "Before More Tag"
546
  msgstr "More标签前"
547
 
548
+ #: ../classes/column/post/comment-count.php:20
549
  msgid "Comment count"
550
  msgstr "评论数量"
551
 
552
+ #: ../classes/column/post/comment-count.php:34
553
  msgid "Total"
554
  msgstr "所有"
555
 
556
+ #: ../classes/column/post/comment-count.php:36
557
  msgid "Pending"
558
  msgstr "待审"
559
 
560
+ #: ../classes/column/post/comment-count.php:37
561
  msgid "Spam"
562
  msgstr "垃圾评论"
563
 
564
+ #: ../classes/column/post/comment-count.php:99 ../classes/column/post/comment-status.php:20
 
565
  msgid "Comment status"
566
  msgstr "评论状态"
567
 
568
+ #: ../classes/column/post/comment-count.php:99
569
  msgid "Select which comment status you like to display."
570
  msgstr "选择你要显示的评论状态"
571
 
572
+ #: ../classes/column/post/featured-image.php:19
573
  msgid "Featured Image"
574
  msgstr "特色图像"
575
 
576
+ #: ../classes/column/post/formats.php:19
577
  msgid "Post Format"
578
  msgstr "文章形式"
579
 
580
+ #: ../classes/column/post/modified.php:19
581
  msgid "Last modified"
582
  msgstr "最后修订"
583
 
584
+ #: ../classes/column/post/order.php:19
585
  msgid "Page Order"
586
  msgstr "页面排序"
587
 
588
+ #: ../classes/column/post/page-template.php:19
589
  msgid "Page Template"
590
  msgstr "页面模板"
591
 
592
+ #: ../classes/column/post/parent.php:19
593
  msgid "Parent"
594
  msgstr "父级"
595
 
596
+ #: ../classes/column/post/path.php:19
597
+ msgid "Path"
598
+ msgstr ""
599
+
600
+ #: ../classes/column/post/permalink.php:19
601
  msgid "Permalink"
602
  msgstr ""
603
 
604
+ #: ../classes/column/post/permalink.php:68
605
+ msgid "Link to post"
606
+ msgstr ""
607
+
608
+ #: ../classes/column/post/permalink.php:68
609
+ msgid "This will make the permalink clickable."
610
+ msgstr ""
611
+
612
+ #: ../classes/column/post/ping-status.php:19
613
  msgid "Ping status"
614
  msgstr "Ping状态"
615
 
616
+ #: ../classes/column/post/roles.php:19
617
  msgid "Roles"
618
  msgstr "角色"
619
 
620
+ #: ../classes/column/post/slug.php:19
621
  msgid "Slug"
622
  msgstr "别名"
623
 
624
+ #: ../classes/column/post/status.php:19
625
  msgid "Status"
626
  msgstr "状态"
627
 
628
+ #: ../classes/column/post/status.php:29
629
  msgid "Published"
630
  msgstr "已发布"
631
 
632
+ #: ../classes/column/post/status.php:30
633
  msgid "Draft"
634
  msgstr "草稿"
635
 
636
+ #: ../classes/column/post/status.php:31
637
  msgid "Scheduled"
638
  msgstr "定时"
639
 
640
+ #: ../classes/column/post/status.php:32
641
  msgid "Private"
642
  msgstr "私密"
643
 
644
+ #: ../classes/column/post/status.php:33
645
  msgid "Pending Review"
646
  msgstr "待审核"
647
 
648
+ #: ../classes/column/post/status.php:34
649
  msgid "Auto Draft"
650
  msgstr ""
651
 
652
+ #: ../classes/column/post/sticky.php:19
653
  msgid "Sticky"
654
  msgstr "置顶"
655
 
656
+ #: ../classes/column/post/title-raw.php:19
657
+ msgid "Title without actions"
658
+ msgstr ""
659
+
660
+ #: ../classes/column/taxonomy.php:20 ../classes/column/taxonomy.php:79
661
  msgid "Taxonomy"
662
  msgstr "分类法"
663
 
664
+ #: ../classes/column/used-by-menu.php:20
665
+ msgid "Used by Menu"
666
+ msgstr ""
667
+
668
+ #: ../classes/column/used-by-menu.php:133
669
+ msgid "Link to menu"
670
+ msgstr ""
671
+
672
+ #: ../classes/column/used-by-menu.php:133
673
+ msgid "This will make the title link to the menu."
674
+ msgstr ""
675
+
676
+ #: ../classes/column/user/comment-count.php:19
677
  msgid "Comment Count"
678
  msgstr "评论数量"
679
 
680
+ #: ../classes/column/user/first-name.php:19
681
  msgid "First name"
682
  msgstr "名字"
683
 
684
+ #: ../classes/column/user/last-name.php:19
685
  msgid "Last name"
686
  msgstr "姓氏"
687
 
688
+ #: ../classes/column/user/post-count.php:19
689
  msgid "Post Count"
690
  msgstr "文章数量"
691
 
692
+ #: ../classes/column/user/post-count.php:102
693
  msgid "Post Type"
694
  msgstr "文章类型"
695
 
696
+ #: ../classes/column/user/registered.php:19
697
  msgid "Registered"
698
  msgstr "注册"
699
 
700
+ #: ../classes/column/user/url.php:19
701
  msgid "Url"
702
  msgstr "Url"
703
 
704
+ #: ../classes/settings.php:111
705
  msgid "Add-on successfully activated."
706
  msgstr ""
707
 
708
+ #: ../classes/settings.php:114
709
  msgid "Add-on successfully deactivated."
710
  msgstr ""
711
 
712
+ #: ../classes/settings.php:169
713
  msgid "Admin Columns Settings"
714
  msgstr "Admin Columns 设置"
715
 
716
+ #: ../classes/settings.php:169 ../classes/settings.php:598 ../classes/upgrade.php:135
 
717
  msgid "Admin Columns"
718
  msgstr "Admin Columns"
719
 
720
+ #: ../classes/settings.php:217
721
  #, php-format
722
  msgid "%s column is already present and can not be duplicated."
723
  msgstr "%s 这个列已经存在,不能被复制。"
724
 
725
+ #: ../classes/settings.php:271
726
  msgid "Default settings succesfully restored."
727
  msgstr "已成功恢复默认设置。"
728
 
729
+ #: ../classes/settings.php:288
730
  msgid "Overview"
731
  msgstr "预览"
732
 
733
+ #: ../classes/settings.php:291
734
  msgid ""
735
+ "This plugin is for adding and removing additional columns to the administration screens for post(types), pages, media library, comments, links and users. Change the "
736
+ "column's label and reorder them."
737
+ msgstr "该插件用来从管理界面中添加或移除额外的列,比如文章(自定义文章类型)、页面、媒体库、评论、链接和用户的管理界面。修改列的标题和重新排序它们。"
 
 
 
738
 
739
+ #: ../classes/settings.php:294
740
  msgid "Basics"
741
  msgstr "基础"
742
 
743
+ #: ../classes/settings.php:296
744
  msgid "Change order"
745
  msgstr "更改排序"
746
 
747
+ #: ../classes/settings.php:297
748
+ msgid "By dragging the columns you can change the order which they will appear in."
 
749
  msgstr "拖动排序这些列,你可以重新排列它们显示的顺序。"
750
 
751
+ #: ../classes/settings.php:298
752
  msgid "Change label"
753
  msgstr "更改标签"
754
 
755
+ #: ../classes/settings.php:299
756
+ msgid "By clicking on the triangle you will see the column options. Here you can change each label of the columns heading."
 
 
757
  msgstr "点击三角形,你会看到列的选项。在这里,你可以改变每个标签的列标题栏。"
758
 
759
+ #: ../classes/settings.php:300
760
  msgid "Change column width"
761
  msgstr "更改列宽"
762
 
763
+ #: ../classes/settings.php:301
764
+ msgid "By clicking on the triangle you will see the column options. By using the draggable slider you can set the width of the columns in percentages."
 
 
765
  msgstr "点击三角形,你会看到列的选项。你可以通过拖动滑块设置列的百分比宽度。"
766
 
767
+ #: ../classes/settings.php:307
768
  msgid "'Custom Field' column"
769
  msgstr "“自定义字段”列"
770
 
771
+ #: ../classes/settings.php:308
772
+ msgid "The custom field colum uses the custom fields from posts and users. There are 10 types which you can set."
 
 
773
  msgstr "自定义字段列使用文章和用户的自定义字段,你可以设置10中类型。"
774
 
775
+ #: ../classes/settings.php:310
776
+ msgid "Value: Can be either a string or array. Arrays will be flattened and values are seperated by a ',' comma."
777
+ msgstr "值:可以是一个字符串或数组。数组将被压平(Arrays will be flattened),值之间用逗号“,”隔开。"
 
 
 
 
778
 
779
+ #: ../classes/settings.php:311
780
+ msgid "Value: should contain an image URL or Attachment IDs ( seperated by a ',' comma )."
 
 
781
  msgstr "值:应该包括一个图像URL或附件ID(使用逗号“,”隔开)"
782
 
783
+ #: ../classes/settings.php:312
784
  msgid "Value: This will show the first 20 words of the Post content."
785
  msgstr "值:将显示文章内容的前 20 个字。"
786
 
787
+ #: ../classes/settings.php:313
788
+ msgid "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
789
  msgstr "值:应该是一个数组。这将被压平(多维)数组"
790
 
791
+ #: ../classes/settings.php:314
792
+ msgid "Value: Integers only.<br/>If you have the 'sorting addon' this will be used for sorting, so you can sort your posts on numeric (custom field) values."
793
+ msgstr "值:只能是数字。<br/>如果你安装了“排序扩展”,这将用于排序,所以你可以通过这个数字(自定义字段)值来排序文章。"
 
 
 
 
794
 
795
+ #: ../classes/settings.php:315
796
  #, php-format
797
  msgid ""
798
+ "Value: Can be unix time stamp or a date format as described in the <a href='%s'>Codex</a>. You can change the outputted date format at the <a href='%s'>general settings</a> "
799
+ "page."
800
+ msgstr "值:可以是 Unix 时间戳或<a href='%s'>规则</a>中描述的一种日期格式。你可以在 <a href='%s'>常规设置</a> 页面修改输出的日期格式。"
 
 
 
801
 
802
+ #: ../classes/settings.php:316
803
  msgid "Post Titles"
804
  msgstr "文章标题"
805
 
806
+ #: ../classes/settings.php:316
807
  msgid "Value: can be one or more Post ID's (seperated by ',')."
808
  msgstr "值:可以是一个或多个文章ID(使用逗号“,”隔开)"
809
 
810
+ #: ../classes/settings.php:317
811
  msgid "Usernames"
812
  msgstr "用户名"
813
 
814
+ #: ../classes/settings.php:317
815
  msgid "Value: can be one or more User ID's (seperated by ',')."
816
  msgstr "值:可以是一个或多个用户ID(使用逗号“,”隔开)"
817
 
818
+ #: ../classes/settings.php:318
819
  msgid "Checkmark"
820
  msgstr "判断"
821
 
822
+ #: ../classes/settings.php:318
823
  msgid "Value: should be a 1 (one) or 0 (zero)."
824
  msgstr "值:应该是 1 (一)或 0 (零)"
825
 
826
+ #: ../classes/settings.php:319
827
  msgid "Value: hex value color, such as #808080."
828
  msgstr "值:十六进制值的颜色,如#808080。"
829
 
830
+ #: ../classes/settings.php:320
831
+ msgid "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."
 
 
832
  msgstr ""
833
 
834
+ #: ../classes/settings.php:409
835
  msgid "Welcome to Admin Columns"
836
  msgstr "欢迎使用Admin Columns插件。"
837
 
838
+ #: ../classes/settings.php:412
839
  msgid "Thank you for updating to the latest version!"
840
  msgstr "感谢您更新到最新版本!"
841
 
842
+ #: ../classes/settings.php:413
843
+ msgid "Admin Columns is more polished and enjoyable than ever before. We hope you like it."
 
 
844
  msgstr "Admin Columns插件比以往任何时候都更加精致,愉快。我们希望你喜欢它。"
845
 
846
+ #: ../classes/settings.php:418
847
  msgid "What’s New"
848
  msgstr "最近更新"
849
 
850
+ #: ../classes/settings.php:419
851
  msgid "Changelog"
852
  msgstr "更新记录"
853
 
854
+ #: ../classes/settings.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
855
  msgid "Important"
856
  msgstr "重要"
857
 
858
+ #: ../classes/settings.php:426
859
  msgid "Database Changes"
860
  msgstr "数据库更改"
861
 
862
+ #: ../classes/settings.php:427
863
+ msgid "The database has been changed between versions 1 and 2. But we made sure you can still roll back to version 1x without any issues."
864
+ msgstr "该数据库已在版本12之间进行了更改。但我们确信你仍然可以回滚到版本1x,这是没有任何问题的。"
 
 
 
 
865
 
866
+ #: ../classes/settings.php:430
867
  msgid "Make sure you backup your database and then click"
868
  msgstr "确保你已经备份了数据库,然后点击"
869
 
870
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
871
  msgid "Upgrade Database"
872
  msgstr "升级数据库"
873
 
874
+ #: ../classes/settings.php:433
875
  msgid "Potential Issues"
876
  msgstr "潜在问题"
877
 
878
+ #: ../classes/settings.php:434
879
+ msgid "Do to the sizable refactoring the code, surounding Addons and action/filters, your website may not operate correctly. It is important that you read the full"
880
+ msgstr "做了相当大的代码重构,包括扩展和各类钩子,你的网站可能无法正常工作。强烈建议你阅读完整的 "
 
 
 
 
 
881
 
882
+ #: ../classes/settings.php:434
883
  msgid "Migrating from v1 to v2"
884
  msgstr "从 v1 迁移到 v2"
885
 
886
+ #: ../classes/settings.php:434
887
  msgid "guide to view the full list of changes."
888
  msgstr "引导查看完整的更改列表。"
889
 
890
+ #: ../classes/settings.php:434
891
  #, php-format
892
+ msgid "When you have found a bug please <a href=\"%s\">report them to us</a> so we can fix it in the next release."
893
+ msgstr "当你发现了 bug,请 <a href=\"%s\">反馈给我们</a>,以便我们在下个版本进行修复。"
 
 
 
 
894
 
895
+ #: ../classes/settings.php:437
896
  msgid "Important!"
897
  msgstr "重要!"
898
 
899
+ #: ../classes/settings.php:437
900
+ msgid "If you updated the Admin Columns plugin without prior knowledge of such changes, Please roll back to the latest"
 
 
901
  msgstr "如果你更新了 Admin Columns 插件没有另行通知这些变更,请回滚到最新版本"
902
 
903
+ #: ../classes/settings.php:437
904
  msgid "version 1"
905
  msgstr "版本 1"
906
 
907
+ #: ../classes/settings.php:437
908
  msgid "of this plugin."
909
  msgstr "这个插件。"
910
 
911
+ #: ../classes/settings.php:443
912
  msgid "Changelog for"
913
  msgstr "更新记录 for"
914
 
915
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
916
  msgid "Learn more"
917
  msgstr "了解更多"
918
 
919
+ #: ../classes/settings.php:468
920
  msgid "Start using Admin Columns"
921
  msgstr "开始使用Admin Columns"
922
 
923
+ #: ../classes/settings.php:511
924
  msgid "General Settings"
925
  msgstr "常规设置"
926
 
927
+ #: ../classes/settings.php:512
928
  msgid "Customize your Admin Columns settings."
929
  msgstr "自定义Admin Columns的设置"
930
 
931
+ #: ../classes/settings.php:523
932
+ msgid "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
933
+ msgstr ""
 
934
 
935
+ #: ../classes/settings.php:530 ../classes/settings.php:660
936
  msgid "Save"
937
  msgstr "保存"
938
 
939
+ #: ../classes/settings.php:570
940
  msgid "Restore Settings"
941
  msgstr "恢复设置"
942
 
943
+ #: ../classes/settings.php:571
944
  msgid "This will delete all column settings and restore the default settings."
945
  msgstr "这将删除所有列的设置和恢复到默认设置。"
946
 
947
+ #: ../classes/settings.php:577
948
  msgid "Restore default settings"
949
  msgstr "恢复默认设置"
950
 
951
+ #: ../classes/settings.php:577
952
+ msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
953
+ msgstr "警告!所有Admin Columns的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将停止。"
 
 
 
 
954
 
955
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
956
  msgid "Settings"
957
  msgstr "设置"
958
 
959
+ #: ../classes/settings.php:600
960
  msgid "Add-ons"
961
  msgstr ""
962
 
963
+ #: ../classes/settings.php:625
964
  msgid "Posttypes"
965
  msgstr ""
966
 
967
+ #: ../classes/settings.php:626
968
  msgid "Others"
969
  msgstr ""
970
 
971
+ #: ../classes/settings.php:627
972
  msgid "Taxonomies"
973
  msgstr ""
974
 
975
+ #: ../classes/settings.php:646
976
  #, php-format
977
+ msgid "The columns for <strong>%s</strong> are set up via PHP and can therefore not be edited in the admin panel."
 
 
978
  msgstr ""
979
 
980
+ #: ../classes/settings.php:656
981
  msgid "Store settings"
982
  msgstr "保存设置"
983
 
984
+ #: ../classes/settings.php:660
985
  msgid "Update"
986
  msgstr "更新"
987
 
988
+ #: ../classes/settings.php:664
989
  #, php-format
990
+ msgid "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
991
+ msgstr "警告!%s 列的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将停止。"
 
 
 
992
 
993
+ #: ../classes/settings.php:665
994
  msgid "columns"
995
  msgstr "列"
996
 
997
+ #: ../classes/settings.php:684
998
  msgid "Get Admin Columns Pro"
999
  msgstr ""
1000
 
1001
+ #: ../classes/settings.php:688
1002
  msgid "Add Sorting"
1003
  msgstr "添加排序"
1004
 
1005
+ #: ../classes/settings.php:689
1006
  msgid "Add Filtering"
1007
  msgstr "添加过滤器"
1008
 
1009
+ #: ../classes/settings.php:690
1010
  msgid "Add Import/Export"
1011
  msgstr "添加 导入/导出"
1012
 
1013
+ #: ../classes/settings.php:691
1014
  msgid "Add Direct Editing"
1015
  msgstr ""
1016
 
1017
+ #: ../classes/settings.php:694
1018
  #, php-format
1019
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1020
  msgstr ""
1021
 
1022
+ #: ../classes/settings.php:725
1023
+ msgid "Are you happy with Admin Columns?"
1024
+ msgstr ""
1025
+
1026
+ #: ../classes/settings.php:733
1027
+ msgid "What's wrong? Need help? Let us know!"
1028
+ msgstr ""
1029
+
1030
+ #: ../classes/settings.php:734
1031
+ msgid "Check out our extensive documentation, or you can open a support topic on WordPress.org!"
1032
+ msgstr ""
1033
+
1034
  #: ../classes/settings.php:742
1035
+ msgid "Docs"
1036
+ msgstr ""
1037
+
1038
+ #: ../classes/settings.php:747
1039
+ msgid "Forums"
1040
+ msgstr ""
1041
+
1042
+ #: ../classes/settings.php:756
1043
+ msgid "Woohoo! We're glad to hear that!"
1044
+ msgstr ""
1045
+
1046
+ #: ../classes/settings.php:757
1047
+ msgid "We would really love it if you could show your appreciation by giving us a rating on WordPress.org or tweet about Admin Columns!"
1048
+ msgstr ""
1049
+
1050
+ #: ../classes/settings.php:761
1051
+ msgid "Rate"
1052
+ msgstr ""
1053
+
1054
+ #: ../classes/settings.php:772
1055
+ msgid "Tweet"
1056
+ msgstr ""
1057
+
1058
+ #: ../classes/settings.php:782
1059
+ msgid "Buy Pro"
1060
+ msgstr ""
1061
+
1062
+ #: ../classes/settings.php:794
1063
  msgid "Support"
1064
  msgstr "支持"
1065
 
1066
+ #: ../classes/settings.php:797
1067
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1068
  msgstr "查看右上角的 <strong>帮助</strong>"
1069
 
1070
+ #: ../classes/settings.php:800
1071
  #, php-format
1072
+ msgid "For full documentation, bug reports, feature suggestions and other tips <a href='%s'>visit the Admin Columns website</a>"
 
 
1073
  msgstr ""
1074
+ "<a href='%s'>访问官方网站</a> 获取帮助文档,反馈Bug,提交建议和其他技巧。</p><p>本插件由 <a href=\"http://www.wpdaxue.com\" title=\"优秀的WordPress建站资源平台\" target="
1075
+ "\"_blank\">WordPress大学</a> 提供简体中文支持。"
 
1076
 
1077
+ #: ../classes/settings.php:829
1078
  msgid "Drag and drop to reorder"
1079
  msgstr "拖动排序"
1080
 
1081
+ #: ../classes/settings.php:832
1082
  msgid "Add Column"
1083
  msgstr "添加列"
1084
 
1085
+ #: ../classes/settings.php:908
1086
  msgid "Active"
1087
  msgstr ""
1088
 
1089
+ #: ../classes/settings.php:909
1090
  msgid "Deactivate"
1091
  msgstr ""
1092
 
1093
+ #: ../classes/settings.php:916
1094
  msgid "Installed"
1095
  msgstr ""
1096
 
1097
+ #: ../classes/settings.php:917
1098
  msgid "Activate"
1099
  msgstr ""
1100
 
1101
+ #: ../classes/settings.php:931
1102
  msgid "Download & Install"
1103
  msgstr ""
1104
 
1105
+ #: ../classes/settings.php:936
1106
  msgid "Get this add-on"
1107
  msgstr ""
1108
 
1109
+ #: ../classes/storage_model.php:213
1110
  msgid "settings succesfully restored."
1111
  msgstr "设置已成功恢复!"
1112
 
1113
+ #: ../classes/storage_model.php:229
1114
  msgid "No columns settings available."
1115
  msgstr "没有可用的列设置。"
1116
 
1117
+ #: ../classes/storage_model.php:250
1118
  #, php-format
1119
  msgid "You are trying to store the same settings for %s."
1120
  msgstr "你正在尝试为 %s 保存同样设置"
1121
 
1122
+ #: ../classes/storage_model.php:254
1123
  #, php-format
1124
  msgid "Settings for %s updated succesfully."
1125
  msgstr "%s 的设置已保存!"
1136
  msgid "Users"
1137
  msgstr "用户"
1138
 
1139
+ #: ../classes/upgrade.php:62
1140
+ msgid ""
1141
+ "<strong>Important:</strong> We&#39;ve noticed that you&#39;re using the <em>Pro add-on</em>, which is no longer supported by Admin Columns 2.2+. However, a free license of "
1142
+ "<strong>Admin Columns Pro</strong> <a href=\"http://www.admincolumns.com/pro-addon-information/\" target=\"_blank\">is available</a>, which features a bunch of cool new "
1143
+ "features, including Direct Inline Editing!"
1144
+ msgstr ""
1145
+
1146
+ #: ../classes/upgrade.php:95
1147
  msgid "Upgrade"
1148
  msgstr "升级"
1149
 
1150
+ #: ../classes/upgrade.php:136
1151
  msgid "requires a database upgrade"
1152
  msgstr "需要升级数据库"
1153
 
1154
+ #: ../classes/upgrade.php:139
1155
  msgid "why?"
1156
  msgstr "为什么?"
1157
 
1158
+ #: ../classes/upgrade.php:140
1159
  msgid "Please"
1160
  msgstr "请"
1161
 
1162
+ #: ../classes/upgrade.php:141
1163
  msgid "backup your database"
1164
  msgstr "备份数据库"
1165
 
1166
+ #: ../classes/upgrade.php:142
1167
  msgid "then click"
1168
  msgstr "然后点击"
1169
 
1170
+ #: ../classes/upgrade.php:351
1171
  msgid "Migrating Column Settings"
1172
  msgstr "迁移列设置"
1173
 
1174
+ #: ../classes/upgrade.php:387
1175
  msgid "No Upgrade Required"
1176
  msgstr "无需升级"
1177
 
1178
+ #: ../classes/upgrade.php:388
1179
  msgid "Return to welcome screen."
1180
  msgstr "返回欢迎界面"
1181
 
1182
+ #: ../classes/upgrade.php:406
1183
  msgid "Upgrade Complete!"
1184
  msgstr "升级完成!"
1185
 
1186
+ #: ../classes/upgrade.php:406
1187
  msgid "Return to settings."
1188
  msgstr "返回设置。"
1189
 
1190
+ #: ../classes/upgrade.php:407
1191
  msgid "Error"
1192
  msgstr "错误"
1193
 
1194
+ #: ../classes/upgrade.php:408
1195
+ msgid "Sorry. Something went wrong during the upgrade process. Please report this on the support forum."
 
 
1196
  msgstr "抱歉,升级过程中出错了,请在论坛中反馈。"
1197
 
1198
+ #: ../codepress-admin-columns.php:390
1199
  msgid "Edit columns"
1200
  msgstr "编辑列"
languages/cpac.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Codepress Admin Columns\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-10-20 13:33+0100\n"
6
- "PO-Revision-Date: 2014-10-20 13:33+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
  "Language-Team: Codepress <info@codepress.nl>\n"
9
  "Language: en_GB\n"
@@ -13,7 +13,7 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.6.10\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
@@ -42,123 +42,123 @@ msgid ""
42
  "inline editing."
43
  msgstr ""
44
 
45
- #: ../classes/column.php:507
46
  msgid "Thumbnail"
47
  msgstr ""
48
 
49
- #: ../classes/column.php:508
50
  msgid "Medium"
51
  msgstr ""
52
 
53
- #: ../classes/column.php:509
54
  msgid "Large"
55
  msgstr ""
56
 
57
- #: ../classes/column.php:510
58
  msgid "Full"
59
  msgstr ""
60
 
61
- #: ../classes/column.php:883
62
  msgid "Date Format"
63
  msgstr ""
64
 
65
- #: ../classes/column.php:884
66
  msgid "This will determine how the date will be displayed."
67
  msgstr ""
68
 
69
- #: ../classes/column.php:890
70
  msgid "Example:"
71
  msgstr ""
72
 
73
- #: ../classes/column.php:892
74
  #, php-format
75
  msgid ""
76
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
77
  "date format here</a>."
78
  msgstr ""
79
 
80
- #: ../classes/column.php:893
81
  msgid "Documentation on date and time formatting."
82
  msgstr ""
83
 
84
- #: ../classes/column.php:907
85
  msgid "Excerpt length"
86
  msgstr ""
87
 
88
- #: ../classes/column.php:908
89
  msgid "Number of words"
90
  msgstr ""
91
 
92
- #: ../classes/column.php:926
93
  msgid "Preview size"
94
  msgstr ""
95
 
96
- #: ../classes/column.php:943 ../classes/storage_model.php:526
97
  msgid "Custom"
98
  msgstr ""
99
 
100
- #: ../classes/column.php:946
101
  msgid "width"
102
  msgstr ""
103
 
104
- #: ../classes/column.php:949
105
  msgid "height"
106
  msgstr ""
107
 
108
- #: ../classes/column.php:963
109
  msgid "Before"
110
  msgstr ""
111
 
112
- #: ../classes/column.php:963
113
  msgid "This text will appear before the custom field value."
114
  msgstr ""
115
 
116
- #: ../classes/column.php:969
117
  msgid "After"
118
  msgstr ""
119
 
120
- #: ../classes/column.php:969
121
  msgid "This text will appear after the custom field value."
122
  msgstr ""
123
 
124
- #: ../classes/column.php:1063 ../classes/column/comment/actions.php:99
125
  #: ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31
126
  #: ../classes/column/user/actions.php:69
127
  msgid "Edit"
128
  msgstr ""
129
 
130
- #: ../classes/column.php:1064 ../classes/column.php:1142
131
  #: ../classes/column/user/actions.php:77
132
  msgid "Remove"
133
  msgstr ""
134
 
135
- #: ../classes/column.php:1082
136
  msgid "Type"
137
  msgstr ""
138
 
139
- #: ../classes/column.php:1082
140
  msgid "Choose a column type."
141
  msgstr ""
142
 
143
- #: ../classes/column.php:1082 ../classes/column/comment/ID.php:19
144
  #: ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19
145
  #: ../classes/column/post/ID.php:19
146
  msgid "ID"
147
  msgstr ""
148
 
149
- #: ../classes/column.php:1092
150
  msgid "Label"
151
  msgstr ""
152
 
153
- #: ../classes/column.php:1092
154
  msgid "This is the name which will appear as the column header."
155
  msgstr ""
156
 
157
- #: ../classes/column.php:1099 ../classes/column/media/width.php:19
158
  msgid "Width"
159
  msgstr ""
160
 
161
- #: ../classes/column.php:1101 ../classes/column.php:1102
162
  msgid "default"
163
  msgstr ""
164
 
@@ -196,20 +196,20 @@ msgstr ""
196
  msgid "Actions"
197
  msgstr ""
198
 
199
- #: ../classes/column/actions.php:79
200
  msgid "Use icons?"
201
  msgstr ""
202
 
203
- #: ../classes/column/actions.php:79
204
  msgid "Use icons instead of text for displaying the actions."
205
  msgstr ""
206
 
207
- #: ../classes/column/actions.php:83 ../classes/column/post/permalink.php:72
208
  #: ../classes/column/used-by-menu.php:137
209
  msgid "Yes"
210
  msgstr ""
211
 
212
- #: ../classes/column/actions.php:87 ../classes/column/post/permalink.php:76
213
  #: ../classes/column/used-by-menu.php:141
214
  msgid "No"
215
  msgstr ""
@@ -225,7 +225,7 @@ msgid "Approve"
225
  msgstr ""
226
 
227
  #: ../classes/column/comment/actions.php:89
228
- #: ../classes/column/post/actions.php:39 ../classes/settings.php:652
229
  msgid "Restore"
230
  msgstr ""
231
 
@@ -282,14 +282,14 @@ msgstr ""
282
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
283
  msgstr ""
284
 
285
- #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:70
286
- #: ../classes/settings.php:301
287
  msgid "Date"
288
  msgstr ""
289
 
290
  #: ../classes/column/comment/excerpt.php:19
291
- #: ../classes/column/custom-field.php:71 ../classes/column/post/excerpt.php:19
292
- #: ../classes/settings.php:298
293
  msgid "Excerpt"
294
  msgstr ""
295
 
@@ -303,65 +303,66 @@ msgid "Word count"
303
  msgstr ""
304
 
305
  #: ../classes/column/custom-field.php:23
306
- #: ../classes/column/custom-field.php:328 ../classes/settings.php:291
307
  msgid "Custom Field"
308
  msgstr ""
309
 
310
- #: ../classes/column/custom-field.php:66 ../classes/settings.php:296
311
- #: ../classes/storage_model.php:527
312
  msgid "Default"
313
  msgstr ""
314
 
315
- #: ../classes/column/custom-field.php:67
316
  msgid "Checkmark (true/false)"
317
  msgstr ""
318
 
319
- #: ../classes/column/custom-field.php:68 ../classes/settings.php:305
320
  msgid "Color"
321
  msgstr ""
322
 
323
- #: ../classes/column/custom-field.php:69 ../classes/settings.php:306
324
  msgid "Counter"
325
  msgstr ""
326
 
327
- #: ../classes/column/custom-field.php:72 ../classes/column/link/image.php:19
328
- #: ../classes/settings.php:297
329
  msgid "Image"
330
  msgstr ""
331
 
332
- #: ../classes/column/custom-field.php:73 ../classes/storage_model/media.php:13
 
333
  msgid "Media Library"
334
  msgstr ""
335
 
336
- #: ../classes/column/custom-field.php:74 ../classes/settings.php:299
337
  msgid "Multiple Values"
338
  msgstr ""
339
 
340
- #: ../classes/column/custom-field.php:75 ../classes/settings.php:300
341
  msgid "Numeric"
342
  msgstr ""
343
 
344
- #: ../classes/column/custom-field.php:76
345
  msgid "Post Title (Post ID's)"
346
  msgstr ""
347
 
348
- #: ../classes/column/custom-field.php:77
349
  msgid "Username (User ID's)"
350
  msgstr ""
351
 
352
- #: ../classes/column/custom-field.php:328
353
  msgid "Select your custom field."
354
  msgstr ""
355
 
356
- #: ../classes/column/custom-field.php:338
357
  msgid "No custom fields available."
358
  msgstr ""
359
 
360
- #: ../classes/column/custom-field.php:345
361
  msgid "Field Type"
362
  msgstr ""
363
 
364
- #: ../classes/column/custom-field.php:345
365
  msgid "This will determine how the value will be displayed."
366
  msgstr ""
367
 
@@ -501,7 +502,7 @@ msgstr ""
501
 
502
  #: ../classes/column/post/actions.php:41
503
  #: ../classes/column/post/comment-count.php:38
504
- #: ../classes/column/post/status.php:41
505
  msgid "Trash"
506
  msgstr ""
507
 
@@ -523,7 +524,7 @@ msgstr ""
523
  msgid "View &#8220;%s&#8221;"
524
  msgstr ""
525
 
526
- #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:735
527
  msgid "View"
528
  msgstr ""
529
 
@@ -661,27 +662,27 @@ msgstr ""
661
  msgid "Status"
662
  msgstr ""
663
 
664
- #: ../classes/column/post/status.php:35
665
  msgid "Published"
666
  msgstr ""
667
 
668
- #: ../classes/column/post/status.php:36
669
  msgid "Draft"
670
  msgstr ""
671
 
672
- #: ../classes/column/post/status.php:37
673
  msgid "Scheduled"
674
  msgstr ""
675
 
676
- #: ../classes/column/post/status.php:38
677
  msgid "Private"
678
  msgstr ""
679
 
680
- #: ../classes/column/post/status.php:39
681
  msgid "Pending Review"
682
  msgstr ""
683
 
684
- #: ../classes/column/post/status.php:40
685
  msgid "Auto Draft"
686
  msgstr ""
687
 
@@ -737,114 +738,114 @@ msgstr ""
737
  msgid "Url"
738
  msgstr ""
739
 
740
- #: ../classes/settings.php:97
741
  msgid "Add-on successfully activated."
742
  msgstr ""
743
 
744
- #: ../classes/settings.php:100
745
  msgid "Add-on successfully deactivated."
746
  msgstr ""
747
 
748
- #: ../classes/settings.php:155
749
  msgid "Admin Columns Settings"
750
  msgstr ""
751
 
752
- #: ../classes/settings.php:155 ../classes/settings.php:584
753
  #: ../classes/upgrade.php:135
754
  msgid "Admin Columns"
755
  msgstr ""
756
 
757
- #: ../classes/settings.php:203
758
  #, php-format
759
  msgid "%s column is already present and can not be duplicated."
760
  msgstr ""
761
 
762
- #: ../classes/settings.php:257
763
  msgid "Default settings succesfully restored."
764
  msgstr ""
765
 
766
- #: ../classes/settings.php:274
767
  msgid "Overview"
768
  msgstr ""
769
 
770
- #: ../classes/settings.php:277
771
  msgid ""
772
  "This plugin is for adding and removing additional columns to the "
773
  "administration screens for post(types), pages, media library, comments, "
774
  "links and users. Change the column's label and reorder them."
775
  msgstr ""
776
 
777
- #: ../classes/settings.php:280
778
  msgid "Basics"
779
  msgstr ""
780
 
781
- #: ../classes/settings.php:282
782
  msgid "Change order"
783
  msgstr ""
784
 
785
- #: ../classes/settings.php:283
786
  msgid ""
787
  "By dragging the columns you can change the order which they will appear in."
788
  msgstr ""
789
 
790
- #: ../classes/settings.php:284
791
  msgid "Change label"
792
  msgstr ""
793
 
794
- #: ../classes/settings.php:285
795
  msgid ""
796
  "By clicking on the triangle you will see the column options. Here you can "
797
  "change each label of the columns heading."
798
  msgstr ""
799
 
800
- #: ../classes/settings.php:286
801
  msgid "Change column width"
802
  msgstr ""
803
 
804
- #: ../classes/settings.php:287
805
  msgid ""
806
  "By clicking on the triangle you will see the column options. By using the "
807
  "draggable slider you can set the width of the columns in percentages."
808
  msgstr ""
809
 
810
- #: ../classes/settings.php:293
811
  msgid "'Custom Field' column"
812
  msgstr ""
813
 
814
- #: ../classes/settings.php:294
815
  msgid ""
816
  "The custom field colum uses the custom fields from posts and users. There "
817
  "are 10 types which you can set."
818
  msgstr ""
819
 
820
- #: ../classes/settings.php:296
821
  msgid ""
822
  "Value: Can be either a string or array. Arrays will be flattened and values "
823
  "are seperated by a ',' comma."
824
  msgstr ""
825
 
826
- #: ../classes/settings.php:297
827
  msgid ""
828
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
829
  "comma )."
830
  msgstr ""
831
 
832
- #: ../classes/settings.php:298
833
  msgid "Value: This will show the first 20 words of the Post content."
834
  msgstr ""
835
 
836
- #: ../classes/settings.php:299
837
  msgid ""
838
  "Value: should be an array. This will flatten any ( multi dimensional ) array."
839
  msgstr ""
840
 
841
- #: ../classes/settings.php:300
842
  msgid ""
843
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
844
  "for sorting, so you can sort your posts on numeric (custom field) values."
845
  msgstr ""
846
 
847
- #: ../classes/settings.php:301
848
  #, php-format
849
  msgid ""
850
  "Value: Can be unix time stamp or a date format as described in the <a "
@@ -852,334 +853,334 @@ msgid ""
852
  "href='%s'>general settings</a> page."
853
  msgstr ""
854
 
855
- #: ../classes/settings.php:302
856
  msgid "Post Titles"
857
  msgstr ""
858
 
859
- #: ../classes/settings.php:302
860
  msgid "Value: can be one or more Post ID's (seperated by ',')."
861
  msgstr ""
862
 
863
- #: ../classes/settings.php:303
864
  msgid "Usernames"
865
  msgstr ""
866
 
867
- #: ../classes/settings.php:303
868
  msgid "Value: can be one or more User ID's (seperated by ',')."
869
  msgstr ""
870
 
871
- #: ../classes/settings.php:304
872
  msgid "Checkmark"
873
  msgstr ""
874
 
875
- #: ../classes/settings.php:304
876
  msgid "Value: should be a 1 (one) or 0 (zero)."
877
  msgstr ""
878
 
879
- #: ../classes/settings.php:305
880
  msgid "Value: hex value color, such as #808080."
881
  msgstr ""
882
 
883
- #: ../classes/settings.php:306
884
  msgid ""
885
  "Value: Can be either a string or array. This will display a count of the "
886
  "number of times the meta key is used by the item."
887
  msgstr ""
888
 
889
- #: ../classes/settings.php:395
890
  msgid "Welcome to Admin Columns"
891
  msgstr ""
892
 
893
- #: ../classes/settings.php:398
894
  msgid "Thank you for updating to the latest version!"
895
  msgstr ""
896
 
897
- #: ../classes/settings.php:399
898
  msgid ""
899
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
900
  "like it."
901
  msgstr ""
902
 
903
- #: ../classes/settings.php:404
904
  msgid "What’s New"
905
  msgstr ""
906
 
907
- #: ../classes/settings.php:405
908
  msgid "Changelog"
909
  msgstr ""
910
 
911
- #: ../classes/settings.php:410
912
  msgid "Important"
913
  msgstr ""
914
 
915
- #: ../classes/settings.php:412
916
  msgid "Database Changes"
917
  msgstr ""
918
 
919
- #: ../classes/settings.php:413
920
  msgid ""
921
  "The database has been changed between versions 1 and 2. But we made sure you "
922
  "can still roll back to version 1x without any issues."
923
  msgstr ""
924
 
925
- #: ../classes/settings.php:416
926
  msgid "Make sure you backup your database and then click"
927
  msgstr ""
928
 
929
- #: ../classes/settings.php:416 ../classes/upgrade.php:143
930
  msgid "Upgrade Database"
931
  msgstr ""
932
 
933
- #: ../classes/settings.php:419
934
  msgid "Potential Issues"
935
  msgstr ""
936
 
937
- #: ../classes/settings.php:420
938
  msgid ""
939
  "Do to the sizable refactoring the code, surounding Addons and action/"
940
  "filters, your website may not operate correctly. It is important that you "
941
  "read the full"
942
  msgstr ""
943
 
944
- #: ../classes/settings.php:420
945
  msgid "Migrating from v1 to v2"
946
  msgstr ""
947
 
948
- #: ../classes/settings.php:420
949
  msgid "guide to view the full list of changes."
950
  msgstr ""
951
 
952
- #: ../classes/settings.php:420
953
  #, php-format
954
  msgid ""
955
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
956
  "can fix it in the next release."
957
  msgstr ""
958
 
959
- #: ../classes/settings.php:423
960
  msgid "Important!"
961
  msgstr ""
962
 
963
- #: ../classes/settings.php:423
964
  msgid ""
965
  "If you updated the Admin Columns plugin without prior knowledge of such "
966
  "changes, Please roll back to the latest"
967
  msgstr ""
968
 
969
- #: ../classes/settings.php:423
970
  msgid "version 1"
971
  msgstr ""
972
 
973
- #: ../classes/settings.php:423
974
  msgid "of this plugin."
975
  msgstr ""
976
 
977
- #: ../classes/settings.php:429
978
  msgid "Changelog for"
979
  msgstr ""
980
 
981
- #: ../classes/settings.php:444 ../classes/upgrade.php:63
982
  msgid "Learn more"
983
  msgstr ""
984
 
985
- #: ../classes/settings.php:454
986
  msgid "Start using Admin Columns"
987
  msgstr ""
988
 
989
- #: ../classes/settings.php:497
990
  msgid "General Settings"
991
  msgstr ""
992
 
993
- #: ../classes/settings.php:498
994
  msgid "Customize your Admin Columns settings."
995
  msgstr ""
996
 
997
- #: ../classes/settings.php:509
998
  msgid ""
999
  "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1000
  msgstr ""
1001
 
1002
- #: ../classes/settings.php:516 ../classes/settings.php:647
1003
  msgid "Save"
1004
  msgstr ""
1005
 
1006
- #: ../classes/settings.php:556
1007
  msgid "Restore Settings"
1008
  msgstr ""
1009
 
1010
- #: ../classes/settings.php:557
1011
  msgid "This will delete all column settings and restore the default settings."
1012
  msgstr ""
1013
 
1014
- #: ../classes/settings.php:563
1015
  msgid "Restore default settings"
1016
  msgstr ""
1017
 
1018
- #: ../classes/settings.php:563
1019
  msgid ""
1020
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
1021
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1022
  msgstr ""
1023
 
1024
- #: ../classes/settings.php:585 ../codepress-admin-columns.php:337
1025
  msgid "Settings"
1026
  msgstr ""
1027
 
1028
- #: ../classes/settings.php:586
1029
  msgid "Add-ons"
1030
  msgstr ""
1031
 
1032
- #: ../classes/settings.php:612
1033
  msgid "Posttypes"
1034
  msgstr ""
1035
 
1036
- #: ../classes/settings.php:613
1037
  msgid "Others"
1038
  msgstr ""
1039
 
1040
- #: ../classes/settings.php:614
1041
  msgid "Taxonomies"
1042
  msgstr ""
1043
 
1044
- #: ../classes/settings.php:633
1045
  #, php-format
1046
  msgid ""
1047
  "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1048
  "be edited in the admin panel."
1049
  msgstr ""
1050
 
1051
- #: ../classes/settings.php:643
1052
  msgid "Store settings"
1053
  msgstr ""
1054
 
1055
- #: ../classes/settings.php:647
1056
  msgid "Update"
1057
  msgstr ""
1058
 
1059
- #: ../classes/settings.php:651
1060
  #, php-format
1061
  msgid ""
1062
  "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1063
  "\\' to delete, \\'Cancel\\' to stop"
1064
  msgstr ""
1065
 
1066
- #: ../classes/settings.php:652
1067
  msgid "columns"
1068
  msgstr ""
1069
 
1070
- #: ../classes/settings.php:671
1071
  msgid "Get Admin Columns Pro"
1072
  msgstr ""
1073
 
1074
- #: ../classes/settings.php:675
1075
  msgid "Add Sorting"
1076
  msgstr ""
1077
 
1078
- #: ../classes/settings.php:676
1079
  msgid "Add Filtering"
1080
  msgstr ""
1081
 
1082
- #: ../classes/settings.php:677
1083
  msgid "Add Import/Export"
1084
  msgstr ""
1085
 
1086
- #: ../classes/settings.php:678
1087
  msgid "Add Direct Editing"
1088
  msgstr ""
1089
 
1090
- #: ../classes/settings.php:681
1091
  #, php-format
1092
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1093
  msgstr ""
1094
 
1095
- #: ../classes/settings.php:712
1096
  msgid "Are you happy with Admin Columns?"
1097
  msgstr ""
1098
 
1099
- #: ../classes/settings.php:720
1100
  msgid "What's wrong? Need help? Let us know!"
1101
  msgstr ""
1102
 
1103
- #: ../classes/settings.php:721
1104
  msgid ""
1105
  "Check out our extensive documentation, or you can open a support topic on "
1106
  "WordPress.org!"
1107
  msgstr ""
1108
 
1109
- #: ../classes/settings.php:729
1110
  msgid "Docs"
1111
  msgstr ""
1112
 
1113
- #: ../classes/settings.php:734
1114
  msgid "Forums"
1115
  msgstr ""
1116
 
1117
- #: ../classes/settings.php:743
1118
  msgid "Woohoo! We're glad to hear that!"
1119
  msgstr ""
1120
 
1121
- #: ../classes/settings.php:744
1122
  msgid ""
1123
  "We would really love it if you could show your appreciation by giving us a "
1124
  "rating on WordPress.org or tweet about Admin Columns!"
1125
  msgstr ""
1126
 
1127
- #: ../classes/settings.php:748
1128
  msgid "Rate"
1129
  msgstr ""
1130
 
1131
- #: ../classes/settings.php:759
1132
  msgid "Tweet"
1133
  msgstr ""
1134
 
1135
- #: ../classes/settings.php:769
1136
  msgid "Buy Pro"
1137
  msgstr ""
1138
 
1139
- #: ../classes/settings.php:781
1140
  msgid "Support"
1141
  msgstr ""
1142
 
1143
- #: ../classes/settings.php:784
1144
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1145
  msgstr ""
1146
 
1147
- #: ../classes/settings.php:787
1148
  #, php-format
1149
  msgid ""
1150
  "For full documentation, bug reports, feature suggestions and other tips <a "
1151
  "href='%s'>visit the Admin Columns website</a>"
1152
  msgstr ""
1153
 
1154
- #: ../classes/settings.php:816
1155
  msgid "Drag and drop to reorder"
1156
  msgstr ""
1157
 
1158
- #: ../classes/settings.php:819
1159
  msgid "Add Column"
1160
  msgstr ""
1161
 
1162
- #: ../classes/settings.php:895
1163
  msgid "Active"
1164
  msgstr ""
1165
 
1166
- #: ../classes/settings.php:896
1167
  msgid "Deactivate"
1168
  msgstr ""
1169
 
1170
- #: ../classes/settings.php:903
1171
  msgid "Installed"
1172
  msgstr ""
1173
 
1174
- #: ../classes/settings.php:904
1175
  msgid "Activate"
1176
  msgstr ""
1177
 
1178
- #: ../classes/settings.php:918
1179
  msgid "Download & Install"
1180
  msgstr ""
1181
 
1182
- #: ../classes/settings.php:923
1183
  msgid "Get this add-on"
1184
  msgstr ""
1185
 
@@ -1247,36 +1248,36 @@ msgstr ""
1247
  msgid "then click"
1248
  msgstr ""
1249
 
1250
- #: ../classes/upgrade.php:350
1251
  msgid "Migrating Column Settings"
1252
  msgstr ""
1253
 
1254
- #: ../classes/upgrade.php:386
1255
  msgid "No Upgrade Required"
1256
  msgstr ""
1257
 
1258
- #: ../classes/upgrade.php:387
1259
  msgid "Return to welcome screen."
1260
  msgstr ""
1261
 
1262
- #: ../classes/upgrade.php:405
1263
  msgid "Upgrade Complete!"
1264
  msgstr ""
1265
 
1266
- #: ../classes/upgrade.php:405
1267
  msgid "Return to settings."
1268
  msgstr ""
1269
 
1270
- #: ../classes/upgrade.php:406
1271
  msgid "Error"
1272
  msgstr ""
1273
 
1274
- #: ../classes/upgrade.php:407
1275
  msgid ""
1276
  "Sorry. Something went wrong during the upgrade process. Please report this "
1277
  "on the support forum."
1278
  msgstr ""
1279
 
1280
- #: ../codepress-admin-columns.php:401
1281
  msgid "Edit columns"
1282
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Codepress Admin Columns\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-12-10 17:02+0100\n"
6
+ "PO-Revision-Date: 2014-12-10 17:02+0100\n"
7
  "Last-Translator: Codepress <info@codepress.nl>\n"
8
  "Language-Team: Codepress <info@codepress.nl>\n"
9
  "Language: en_GB\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.7.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
42
  "inline editing."
43
  msgstr ""
44
 
45
+ #: ../classes/column.php:500
46
  msgid "Thumbnail"
47
  msgstr ""
48
 
49
+ #: ../classes/column.php:501
50
  msgid "Medium"
51
  msgstr ""
52
 
53
+ #: ../classes/column.php:502
54
  msgid "Large"
55
  msgstr ""
56
 
57
+ #: ../classes/column.php:503
58
  msgid "Full"
59
  msgstr ""
60
 
61
+ #: ../classes/column.php:863
62
  msgid "Date Format"
63
  msgstr ""
64
 
65
+ #: ../classes/column.php:864
66
  msgid "This will determine how the date will be displayed."
67
  msgstr ""
68
 
69
+ #: ../classes/column.php:870
70
  msgid "Example:"
71
  msgstr ""
72
 
73
+ #: ../classes/column.php:872
74
  #, php-format
75
  msgid ""
76
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
77
  "date format here</a>."
78
  msgstr ""
79
 
80
+ #: ../classes/column.php:873
81
  msgid "Documentation on date and time formatting."
82
  msgstr ""
83
 
84
+ #: ../classes/column.php:887
85
  msgid "Excerpt length"
86
  msgstr ""
87
 
88
+ #: ../classes/column.php:888
89
  msgid "Number of words"
90
  msgstr ""
91
 
92
+ #: ../classes/column.php:906
93
  msgid "Preview size"
94
  msgstr ""
95
 
96
+ #: ../classes/column.php:923 ../classes/storage_model.php:534
97
  msgid "Custom"
98
  msgstr ""
99
 
100
+ #: ../classes/column.php:926
101
  msgid "width"
102
  msgstr ""
103
 
104
+ #: ../classes/column.php:929
105
  msgid "height"
106
  msgstr ""
107
 
108
+ #: ../classes/column.php:943
109
  msgid "Before"
110
  msgstr ""
111
 
112
+ #: ../classes/column.php:943
113
  msgid "This text will appear before the custom field value."
114
  msgstr ""
115
 
116
+ #: ../classes/column.php:949
117
  msgid "After"
118
  msgstr ""
119
 
120
+ #: ../classes/column.php:949
121
  msgid "This text will appear after the custom field value."
122
  msgstr ""
123
 
124
+ #: ../classes/column.php:1043 ../classes/column/comment/actions.php:99
125
  #: ../classes/column/link/actions.php:48 ../classes/column/post/actions.php:31
126
  #: ../classes/column/user/actions.php:69
127
  msgid "Edit"
128
  msgstr ""
129
 
130
+ #: ../classes/column.php:1044 ../classes/column.php:1122
131
  #: ../classes/column/user/actions.php:77
132
  msgid "Remove"
133
  msgstr ""
134
 
135
+ #: ../classes/column.php:1062
136
  msgid "Type"
137
  msgstr ""
138
 
139
+ #: ../classes/column.php:1062
140
  msgid "Choose a column type."
141
  msgstr ""
142
 
143
+ #: ../classes/column.php:1062 ../classes/column/comment/ID.php:19
144
  #: ../classes/column/link/ID.php:19 ../classes/column/media/ID.php:19
145
  #: ../classes/column/post/ID.php:19
146
  msgid "ID"
147
  msgstr ""
148
 
149
+ #: ../classes/column.php:1072
150
  msgid "Label"
151
  msgstr ""
152
 
153
+ #: ../classes/column.php:1072
154
  msgid "This is the name which will appear as the column header."
155
  msgstr ""
156
 
157
+ #: ../classes/column.php:1079 ../classes/column/media/width.php:19
158
  msgid "Width"
159
  msgstr ""
160
 
161
+ #: ../classes/column.php:1081 ../classes/column.php:1082
162
  msgid "default"
163
  msgstr ""
164
 
196
  msgid "Actions"
197
  msgstr ""
198
 
199
+ #: ../classes/column/actions.php:87
200
  msgid "Use icons?"
201
  msgstr ""
202
 
203
+ #: ../classes/column/actions.php:87
204
  msgid "Use icons instead of text for displaying the actions."
205
  msgstr ""
206
 
207
+ #: ../classes/column/actions.php:91 ../classes/column/post/permalink.php:72
208
  #: ../classes/column/used-by-menu.php:137
209
  msgid "Yes"
210
  msgstr ""
211
 
212
+ #: ../classes/column/actions.php:95 ../classes/column/post/permalink.php:76
213
  #: ../classes/column/used-by-menu.php:141
214
  msgid "No"
215
  msgstr ""
225
  msgstr ""
226
 
227
  #: ../classes/column/comment/actions.php:89
228
+ #: ../classes/column/post/actions.php:39 ../classes/settings.php:665
229
  msgid "Restore"
230
  msgstr ""
231
 
282
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
283
  msgstr ""
284
 
285
+ #: ../classes/column/comment/date.php:19 ../classes/column/custom-field.php:98
286
+ #: ../classes/settings.php:315
287
  msgid "Date"
288
  msgstr ""
289
 
290
  #: ../classes/column/comment/excerpt.php:19
291
+ #: ../classes/column/custom-field.php:99 ../classes/column/post/excerpt.php:19
292
+ #: ../classes/settings.php:312
293
  msgid "Excerpt"
294
  msgstr ""
295
 
303
  msgstr ""
304
 
305
  #: ../classes/column/custom-field.php:23
306
+ #: ../classes/column/custom-field.php:356 ../classes/settings.php:305
307
  msgid "Custom Field"
308
  msgstr ""
309
 
310
+ #: ../classes/column/custom-field.php:94 ../classes/settings.php:310
311
+ #: ../classes/storage_model.php:535
312
  msgid "Default"
313
  msgstr ""
314
 
315
+ #: ../classes/column/custom-field.php:95
316
  msgid "Checkmark (true/false)"
317
  msgstr ""
318
 
319
+ #: ../classes/column/custom-field.php:96 ../classes/settings.php:319
320
  msgid "Color"
321
  msgstr ""
322
 
323
+ #: ../classes/column/custom-field.php:97 ../classes/settings.php:320
324
  msgid "Counter"
325
  msgstr ""
326
 
327
+ #: ../classes/column/custom-field.php:100 ../classes/column/link/image.php:19
328
+ #: ../classes/settings.php:311
329
  msgid "Image"
330
  msgstr ""
331
 
332
+ #: ../classes/column/custom-field.php:101
333
+ #: ../classes/storage_model/media.php:13
334
  msgid "Media Library"
335
  msgstr ""
336
 
337
+ #: ../classes/column/custom-field.php:102 ../classes/settings.php:313
338
  msgid "Multiple Values"
339
  msgstr ""
340
 
341
+ #: ../classes/column/custom-field.php:103 ../classes/settings.php:314
342
  msgid "Numeric"
343
  msgstr ""
344
 
345
+ #: ../classes/column/custom-field.php:104
346
  msgid "Post Title (Post ID's)"
347
  msgstr ""
348
 
349
+ #: ../classes/column/custom-field.php:105
350
  msgid "Username (User ID's)"
351
  msgstr ""
352
 
353
+ #: ../classes/column/custom-field.php:356
354
  msgid "Select your custom field."
355
  msgstr ""
356
 
357
+ #: ../classes/column/custom-field.php:366
358
  msgid "No custom fields available."
359
  msgstr ""
360
 
361
+ #: ../classes/column/custom-field.php:373
362
  msgid "Field Type"
363
  msgstr ""
364
 
365
+ #: ../classes/column/custom-field.php:373
366
  msgid "This will determine how the value will be displayed."
367
  msgstr ""
368
 
502
 
503
  #: ../classes/column/post/actions.php:41
504
  #: ../classes/column/post/comment-count.php:38
505
+ #: ../classes/column/post/status.php:35
506
  msgid "Trash"
507
  msgstr ""
508
 
524
  msgid "View &#8220;%s&#8221;"
525
  msgstr ""
526
 
527
+ #: ../classes/column/post/actions.php:50 ../classes/storage_model.php:746
528
  msgid "View"
529
  msgstr ""
530
 
662
  msgid "Status"
663
  msgstr ""
664
 
665
+ #: ../classes/column/post/status.php:29
666
  msgid "Published"
667
  msgstr ""
668
 
669
+ #: ../classes/column/post/status.php:30
670
  msgid "Draft"
671
  msgstr ""
672
 
673
+ #: ../classes/column/post/status.php:31
674
  msgid "Scheduled"
675
  msgstr ""
676
 
677
+ #: ../classes/column/post/status.php:32
678
  msgid "Private"
679
  msgstr ""
680
 
681
+ #: ../classes/column/post/status.php:33
682
  msgid "Pending Review"
683
  msgstr ""
684
 
685
+ #: ../classes/column/post/status.php:34
686
  msgid "Auto Draft"
687
  msgstr ""
688
 
738
  msgid "Url"
739
  msgstr ""
740
 
741
+ #: ../classes/settings.php:111
742
  msgid "Add-on successfully activated."
743
  msgstr ""
744
 
745
+ #: ../classes/settings.php:114
746
  msgid "Add-on successfully deactivated."
747
  msgstr ""
748
 
749
+ #: ../classes/settings.php:169
750
  msgid "Admin Columns Settings"
751
  msgstr ""
752
 
753
+ #: ../classes/settings.php:169 ../classes/settings.php:598
754
  #: ../classes/upgrade.php:135
755
  msgid "Admin Columns"
756
  msgstr ""
757
 
758
+ #: ../classes/settings.php:217
759
  #, php-format
760
  msgid "%s column is already present and can not be duplicated."
761
  msgstr ""
762
 
763
+ #: ../classes/settings.php:271
764
  msgid "Default settings succesfully restored."
765
  msgstr ""
766
 
767
+ #: ../classes/settings.php:288
768
  msgid "Overview"
769
  msgstr ""
770
 
771
+ #: ../classes/settings.php:291
772
  msgid ""
773
  "This plugin is for adding and removing additional columns to the "
774
  "administration screens for post(types), pages, media library, comments, "
775
  "links and users. Change the column's label and reorder them."
776
  msgstr ""
777
 
778
+ #: ../classes/settings.php:294
779
  msgid "Basics"
780
  msgstr ""
781
 
782
+ #: ../classes/settings.php:296
783
  msgid "Change order"
784
  msgstr ""
785
 
786
+ #: ../classes/settings.php:297
787
  msgid ""
788
  "By dragging the columns you can change the order which they will appear in."
789
  msgstr ""
790
 
791
+ #: ../classes/settings.php:298
792
  msgid "Change label"
793
  msgstr ""
794
 
795
+ #: ../classes/settings.php:299
796
  msgid ""
797
  "By clicking on the triangle you will see the column options. Here you can "
798
  "change each label of the columns heading."
799
  msgstr ""
800
 
801
+ #: ../classes/settings.php:300
802
  msgid "Change column width"
803
  msgstr ""
804
 
805
+ #: ../classes/settings.php:301
806
  msgid ""
807
  "By clicking on the triangle you will see the column options. By using the "
808
  "draggable slider you can set the width of the columns in percentages."
809
  msgstr ""
810
 
811
+ #: ../classes/settings.php:307
812
  msgid "'Custom Field' column"
813
  msgstr ""
814
 
815
+ #: ../classes/settings.php:308
816
  msgid ""
817
  "The custom field colum uses the custom fields from posts and users. There "
818
  "are 10 types which you can set."
819
  msgstr ""
820
 
821
+ #: ../classes/settings.php:310
822
  msgid ""
823
  "Value: Can be either a string or array. Arrays will be flattened and values "
824
  "are seperated by a ',' comma."
825
  msgstr ""
826
 
827
+ #: ../classes/settings.php:311
828
  msgid ""
829
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
830
  "comma )."
831
  msgstr ""
832
 
833
+ #: ../classes/settings.php:312
834
  msgid "Value: This will show the first 20 words of the Post content."
835
  msgstr ""
836
 
837
+ #: ../classes/settings.php:313
838
  msgid ""
839
  "Value: should be an array. This will flatten any ( multi dimensional ) array."
840
  msgstr ""
841
 
842
+ #: ../classes/settings.php:314
843
  msgid ""
844
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
845
  "for sorting, so you can sort your posts on numeric (custom field) values."
846
  msgstr ""
847
 
848
+ #: ../classes/settings.php:315
849
  #, php-format
850
  msgid ""
851
  "Value: Can be unix time stamp or a date format as described in the <a "
853
  "href='%s'>general settings</a> page."
854
  msgstr ""
855
 
856
+ #: ../classes/settings.php:316
857
  msgid "Post Titles"
858
  msgstr ""
859
 
860
+ #: ../classes/settings.php:316
861
  msgid "Value: can be one or more Post ID's (seperated by ',')."
862
  msgstr ""
863
 
864
+ #: ../classes/settings.php:317
865
  msgid "Usernames"
866
  msgstr ""
867
 
868
+ #: ../classes/settings.php:317
869
  msgid "Value: can be one or more User ID's (seperated by ',')."
870
  msgstr ""
871
 
872
+ #: ../classes/settings.php:318
873
  msgid "Checkmark"
874
  msgstr ""
875
 
876
+ #: ../classes/settings.php:318
877
  msgid "Value: should be a 1 (one) or 0 (zero)."
878
  msgstr ""
879
 
880
+ #: ../classes/settings.php:319
881
  msgid "Value: hex value color, such as #808080."
882
  msgstr ""
883
 
884
+ #: ../classes/settings.php:320
885
  msgid ""
886
  "Value: Can be either a string or array. This will display a count of the "
887
  "number of times the meta key is used by the item."
888
  msgstr ""
889
 
890
+ #: ../classes/settings.php:409
891
  msgid "Welcome to Admin Columns"
892
  msgstr ""
893
 
894
+ #: ../classes/settings.php:412
895
  msgid "Thank you for updating to the latest version!"
896
  msgstr ""
897
 
898
+ #: ../classes/settings.php:413
899
  msgid ""
900
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
901
  "like it."
902
  msgstr ""
903
 
904
+ #: ../classes/settings.php:418
905
  msgid "What’s New"
906
  msgstr ""
907
 
908
+ #: ../classes/settings.php:419
909
  msgid "Changelog"
910
  msgstr ""
911
 
912
+ #: ../classes/settings.php:424
913
  msgid "Important"
914
  msgstr ""
915
 
916
+ #: ../classes/settings.php:426
917
  msgid "Database Changes"
918
  msgstr ""
919
 
920
+ #: ../classes/settings.php:427
921
  msgid ""
922
  "The database has been changed between versions 1 and 2. But we made sure you "
923
  "can still roll back to version 1x without any issues."
924
  msgstr ""
925
 
926
+ #: ../classes/settings.php:430
927
  msgid "Make sure you backup your database and then click"
928
  msgstr ""
929
 
930
+ #: ../classes/settings.php:430 ../classes/upgrade.php:143
931
  msgid "Upgrade Database"
932
  msgstr ""
933
 
934
+ #: ../classes/settings.php:433
935
  msgid "Potential Issues"
936
  msgstr ""
937
 
938
+ #: ../classes/settings.php:434
939
  msgid ""
940
  "Do to the sizable refactoring the code, surounding Addons and action/"
941
  "filters, your website may not operate correctly. It is important that you "
942
  "read the full"
943
  msgstr ""
944
 
945
+ #: ../classes/settings.php:434
946
  msgid "Migrating from v1 to v2"
947
  msgstr ""
948
 
949
+ #: ../classes/settings.php:434
950
  msgid "guide to view the full list of changes."
951
  msgstr ""
952
 
953
+ #: ../classes/settings.php:434
954
  #, php-format
955
  msgid ""
956
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
957
  "can fix it in the next release."
958
  msgstr ""
959
 
960
+ #: ../classes/settings.php:437
961
  msgid "Important!"
962
  msgstr ""
963
 
964
+ #: ../classes/settings.php:437
965
  msgid ""
966
  "If you updated the Admin Columns plugin without prior knowledge of such "
967
  "changes, Please roll back to the latest"
968
  msgstr ""
969
 
970
+ #: ../classes/settings.php:437
971
  msgid "version 1"
972
  msgstr ""
973
 
974
+ #: ../classes/settings.php:437
975
  msgid "of this plugin."
976
  msgstr ""
977
 
978
+ #: ../classes/settings.php:443
979
  msgid "Changelog for"
980
  msgstr ""
981
 
982
+ #: ../classes/settings.php:458 ../classes/upgrade.php:63
983
  msgid "Learn more"
984
  msgstr ""
985
 
986
+ #: ../classes/settings.php:468
987
  msgid "Start using Admin Columns"
988
  msgstr ""
989
 
990
+ #: ../classes/settings.php:511
991
  msgid "General Settings"
992
  msgstr ""
993
 
994
+ #: ../classes/settings.php:512
995
  msgid "Customize your Admin Columns settings."
996
  msgstr ""
997
 
998
+ #: ../classes/settings.php:523
999
  msgid ""
1000
  "Show \"Edit Columns\" button on admin screens. Default is <code>on</code>."
1001
  msgstr ""
1002
 
1003
+ #: ../classes/settings.php:530 ../classes/settings.php:660
1004
  msgid "Save"
1005
  msgstr ""
1006
 
1007
+ #: ../classes/settings.php:570
1008
  msgid "Restore Settings"
1009
  msgstr ""
1010
 
1011
+ #: ../classes/settings.php:571
1012
  msgid "This will delete all column settings and restore the default settings."
1013
  msgstr ""
1014
 
1015
+ #: ../classes/settings.php:577
1016
  msgid "Restore default settings"
1017
  msgstr ""
1018
 
1019
+ #: ../classes/settings.php:577
1020
  msgid ""
1021
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
1022
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
1023
  msgstr ""
1024
 
1025
+ #: ../classes/settings.php:599 ../codepress-admin-columns.php:326
1026
  msgid "Settings"
1027
  msgstr ""
1028
 
1029
+ #: ../classes/settings.php:600
1030
  msgid "Add-ons"
1031
  msgstr ""
1032
 
1033
+ #: ../classes/settings.php:625
1034
  msgid "Posttypes"
1035
  msgstr ""
1036
 
1037
+ #: ../classes/settings.php:626
1038
  msgid "Others"
1039
  msgstr ""
1040
 
1041
+ #: ../classes/settings.php:627
1042
  msgid "Taxonomies"
1043
  msgstr ""
1044
 
1045
+ #: ../classes/settings.php:646
1046
  #, php-format
1047
  msgid ""
1048
  "The columns for <strong>%s</strong> are set up via PHP and can therefore not "
1049
  "be edited in the admin panel."
1050
  msgstr ""
1051
 
1052
+ #: ../classes/settings.php:656
1053
  msgid "Store settings"
1054
  msgstr ""
1055
 
1056
+ #: ../classes/settings.php:660
1057
  msgid "Update"
1058
  msgstr ""
1059
 
1060
+ #: ../classes/settings.php:664
1061
  #, php-format
1062
  msgid ""
1063
  "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
1064
  "\\' to delete, \\'Cancel\\' to stop"
1065
  msgstr ""
1066
 
1067
+ #: ../classes/settings.php:665
1068
  msgid "columns"
1069
  msgstr ""
1070
 
1071
+ #: ../classes/settings.php:684
1072
  msgid "Get Admin Columns Pro"
1073
  msgstr ""
1074
 
1075
+ #: ../classes/settings.php:688
1076
  msgid "Add Sorting"
1077
  msgstr ""
1078
 
1079
+ #: ../classes/settings.php:689
1080
  msgid "Add Filtering"
1081
  msgstr ""
1082
 
1083
+ #: ../classes/settings.php:690
1084
  msgid "Add Import/Export"
1085
  msgstr ""
1086
 
1087
+ #: ../classes/settings.php:691
1088
  msgid "Add Direct Editing"
1089
  msgstr ""
1090
 
1091
+ #: ../classes/settings.php:694
1092
  #, php-format
1093
  msgid "Check out <a href=\"%s\">Admin Columns Pro</a> for more details!"
1094
  msgstr ""
1095
 
1096
+ #: ../classes/settings.php:725
1097
  msgid "Are you happy with Admin Columns?"
1098
  msgstr ""
1099
 
1100
+ #: ../classes/settings.php:733
1101
  msgid "What's wrong? Need help? Let us know!"
1102
  msgstr ""
1103
 
1104
+ #: ../classes/settings.php:734
1105
  msgid ""
1106
  "Check out our extensive documentation, or you can open a support topic on "
1107
  "WordPress.org!"
1108
  msgstr ""
1109
 
1110
+ #: ../classes/settings.php:742
1111
  msgid "Docs"
1112
  msgstr ""
1113
 
1114
+ #: ../classes/settings.php:747
1115
  msgid "Forums"
1116
  msgstr ""
1117
 
1118
+ #: ../classes/settings.php:756
1119
  msgid "Woohoo! We're glad to hear that!"
1120
  msgstr ""
1121
 
1122
+ #: ../classes/settings.php:757
1123
  msgid ""
1124
  "We would really love it if you could show your appreciation by giving us a "
1125
  "rating on WordPress.org or tweet about Admin Columns!"
1126
  msgstr ""
1127
 
1128
+ #: ../classes/settings.php:761
1129
  msgid "Rate"
1130
  msgstr ""
1131
 
1132
+ #: ../classes/settings.php:772
1133
  msgid "Tweet"
1134
  msgstr ""
1135
 
1136
+ #: ../classes/settings.php:782
1137
  msgid "Buy Pro"
1138
  msgstr ""
1139
 
1140
+ #: ../classes/settings.php:794
1141
  msgid "Support"
1142
  msgstr ""
1143
 
1144
+ #: ../classes/settings.php:797
1145
  msgid "Check the <strong>Help</strong> section in the top-right screen."
1146
  msgstr ""
1147
 
1148
+ #: ../classes/settings.php:800
1149
  #, php-format
1150
  msgid ""
1151
  "For full documentation, bug reports, feature suggestions and other tips <a "
1152
  "href='%s'>visit the Admin Columns website</a>"
1153
  msgstr ""
1154
 
1155
+ #: ../classes/settings.php:829
1156
  msgid "Drag and drop to reorder"
1157
  msgstr ""
1158
 
1159
+ #: ../classes/settings.php:832
1160
  msgid "Add Column"
1161
  msgstr ""
1162
 
1163
+ #: ../classes/settings.php:908
1164
  msgid "Active"
1165
  msgstr ""
1166
 
1167
+ #: ../classes/settings.php:909
1168
  msgid "Deactivate"
1169
  msgstr ""
1170
 
1171
+ #: ../classes/settings.php:916
1172
  msgid "Installed"
1173
  msgstr ""
1174
 
1175
+ #: ../classes/settings.php:917
1176
  msgid "Activate"
1177
  msgstr ""
1178
 
1179
+ #: ../classes/settings.php:931
1180
  msgid "Download & Install"
1181
  msgstr ""
1182
 
1183
+ #: ../classes/settings.php:936
1184
  msgid "Get this add-on"
1185
  msgstr ""
1186
 
1248
  msgid "then click"
1249
  msgstr ""
1250
 
1251
+ #: ../classes/upgrade.php:351
1252
  msgid "Migrating Column Settings"
1253
  msgstr ""
1254
 
1255
+ #: ../classes/upgrade.php:387
1256
  msgid "No Upgrade Required"
1257
  msgstr ""
1258
 
1259
+ #: ../classes/upgrade.php:388
1260
  msgid "Return to welcome screen."
1261
  msgstr ""
1262
 
1263
+ #: ../classes/upgrade.php:406
1264
  msgid "Upgrade Complete!"
1265
  msgstr ""
1266
 
1267
+ #: ../classes/upgrade.php:406
1268
  msgid "Return to settings."
1269
  msgstr ""
1270
 
1271
+ #: ../classes/upgrade.php:407
1272
  msgid "Error"
1273
  msgstr ""
1274
 
1275
+ #: ../classes/upgrade.php:408
1276
  msgid ""
1277
  "Sorry. Something went wrong during the upgrade process. Please report this "
1278
  "on the support forum."
1279
  msgstr ""
1280
 
1281
+ #: ../codepress-admin-columns.php:390
1282
  msgid "Edit columns"
1283
  msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: codepress, tschutter, davidmosterd, engelen
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: 4.0
7
- Stable tag: 2.2.9
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
 
@@ -249,10 +249,22 @@ You can find a list of the available actions and filters (and examples on how to
249
 
250
  == Changelog ==
251
 
 
 
 
 
 
 
 
 
 
 
252
  = 2.2.9 =
253
  * [Added] Added filter "cac/column/actions/action_links" for modifying the action column links
254
  * [Fixed] WordPress SEO by Yoast columns were not added to the dropdown menu when using the 'add column' button.
255
  * [Fixed] Fix "restore" action link in post actions column
 
 
256
 
257
  = 2.2.8.1 =
258
  * [Fixed] Quick Edit will display columns correctly after saving
@@ -442,26 +454,22 @@ You can find a list of the available actions and filters (and examples on how to
442
  * [Fixed] Issue: the checkbox disappeared when resetting columns and resaving them.
443
 
444
  = 1.4.6.3 =
445
-
446
  * [Added] new custom field type: User by User ID
447
  * [Added] values to filter 'cpac_get_column_value_custom_field' for better control of the output
448
  * [Added] an example for above filter to FAQ section
449
  * [Fixed] Issue: where trash posts did not show with the sorting addon activated
450
 
451
  = 1.4.6.2 =
452
-
453
  * [Fixed] Issue: with a static function which could cause an error in some cases
454
  * [Added] filter to enable taxonomy filtering. add this to your functions.php to enable taxonomy filtering: `add_filter( 'cpac-remove-filtering-columns', '__return_false' );`
455
 
456
  = 1.4.6.1 =
457
-
458
  * [Fixed] Issue: for possible warning when using Custompress ( props to scottsalisbury for the fix! )
459
  * [Fixed] Issue: for sorting by postcount for users
460
  * [Added] 'Display Author As' column for post(types)
461
  * [Added] sorting support for 'Display Author As' column
462
 
463
  = 1.4.6 =
464
-
465
  * [Added] german language ( thanks to Uli )
466
  * [Added] danish language ( thanks to Morten Dalgaard Johansen )
467
  * [Added] filter for setting thumbnail size ( see FAQ on how to use it )
@@ -469,11 +477,9 @@ You can find a list of the available actions and filters (and examples on how to
469
  * [Fixed] Issue: for WordPress SEO by Yoast Columns
470
 
471
  = 1.4.5.1 =
472
-
473
  * [Removed] taxonomy filtering ( will implement show/hide option )
474
 
475
  = 1.4.5 =
476
-
477
  * [Added] french language ( thanks to Alexandre Girard )
478
  * [Added] filtering by taxonomy ( only displays when column is used )
479
  * [Added] compatibility with woocommerce
@@ -489,7 +495,6 @@ You can find a list of the available actions and filters (and examples on how to
489
  * [Fixed] Issue: with sorting users by postcount
490
 
491
  = 1.4.4 =
492
-
493
  * [Added] posts columns Last Modified and Comment count
494
  * [Added] media columns for EXIF and IPTC image data
495
  * [Added] custom fields columns to the Media Library
@@ -498,11 +503,9 @@ You can find a list of the available actions and filters (and examples on how to
498
  * [Fixed] possible php warning
499
 
500
  = 1.4.3 =
501
-
502
  * [Removed] taxonomy filtering
503
 
504
  = 1.4.2 =
505
-
506
  * [Fixed] Issue: for unexpected output in the column value
507
  * [Fixed] Issue: for better 3rd party plugin support
508
  * [Added] column for Comment status
@@ -514,13 +517,11 @@ You can find a list of the available actions and filters (and examples on how to
514
  * [Added] taxonomy filtering
515
 
516
  = 1.4.1 =
517
-
518
  * [Added] polish translation, thanks to Bartosz.
519
  * [Upated] the license key validation proces to be complaint with WP rules
520
  * [Removed] non-breaking-space-character from column output
521
 
522
  = 1.4 =
523
-
524
  * [Added] support for comment columns
525
  * [Added] support for link columns
526
  * [Added] links to taxonomies
@@ -538,7 +539,6 @@ You can find a list of the available actions and filters (and examples on how to
538
  * [Fixed] Issue: a conflict with the Co-Authors plugin
539
 
540
  = 1.3 =
541
-
542
  * [Added] support for Media columns
543
  * [Added] Media columns: filename, width, height, dimensions, description, alt, caption and mime-type
544
  * [Added] date type to posts custom fields
@@ -547,7 +547,6 @@ You can find a list of the available actions and filters (and examples on how to
547
  * [Improved] str_word_count is used for excerpts
548
 
549
  = 1.2.1 =
550
-
551
  * [Added] word count sorting
552
  * [Added] attachment count sorting
553
  * [Added] template name sorting
@@ -556,27 +555,22 @@ You can find a list of the available actions and filters (and examples on how to
556
  * [Fixed] Issue: with sorting by attachment
557
 
558
  = 1.2 =
559
-
560
  * [Added] support for third party plugins
561
  * [Added] user custom fields
562
  * [Added] extra image check
563
  * [Fixed] Issue: with javascript (jquery) enqueue
564
 
565
  = 1.1.3 =
566
-
567
  * [Fixed] Issue: for WP3.3beta
568
 
569
  = 1.1.2 =
570
-
571
  * [Added] Dutch translation
572
 
573
  = 1.1.1 =
574
-
575
  * [Fixed] Issue: path separator for require_once
576
  * [Added] word count column
577
 
578
  = 1.1 =
579
-
580
  * [Added] User Columns.
581
  * [Added] before / after text for custom fields
582
  * [Added] custom field type 'Numeric'.
@@ -585,7 +579,6 @@ You can find a list of the available actions and filters (and examples on how to
585
  * [Fixed] settings link
586
 
587
  = 1.0 =
588
-
589
  * Initial release.
590
 
591
  == Upgrade Notice ==
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: 4.0.1
7
+ Stable tag: 2.3.1
8
 
9
  Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
10
 
249
 
250
  == Changelog ==
251
 
252
+ = 2.3.1 =
253
+ * [Fixed] Image Uploader failing inside nested Settings pod when using the Pods plugin
254
+
255
+ = 2.3 =
256
+ * [Added] Added filter "cac/column/meta/is_editable" for making all custom fields editable
257
+ * [Added] CPAC_Settings::get_settings_page() to retrieve setting_page slug
258
+ * [Added] Caching method for CPAC_Storage_Model
259
+ * [Fixed] Field PHP Export was not working when included to a site
260
+ * [Updated] Improved word count on post content
261
+
262
  = 2.2.9 =
263
  * [Added] Added filter "cac/column/actions/action_links" for modifying the action column links
264
  * [Fixed] WordPress SEO by Yoast columns were not added to the dropdown menu when using the 'add column' button.
265
  * [Fixed] Fix "restore" action link in post actions column
266
+ * [Added] Persian (fa_IR) language, thanks to kamel kimiaei.
267
+ * [Added] Partially Italian (it_IT) language, thanks to francesco.
268
 
269
  = 2.2.8.1 =
270
  * [Fixed] Quick Edit will display columns correctly after saving
454
  * [Fixed] Issue: the checkbox disappeared when resetting columns and resaving them.
455
 
456
  = 1.4.6.3 =
 
457
  * [Added] new custom field type: User by User ID
458
  * [Added] values to filter 'cpac_get_column_value_custom_field' for better control of the output
459
  * [Added] an example for above filter to FAQ section
460
  * [Fixed] Issue: where trash posts did not show with the sorting addon activated
461
 
462
  = 1.4.6.2 =
 
463
  * [Fixed] Issue: with a static function which could cause an error in some cases
464
  * [Added] filter to enable taxonomy filtering. add this to your functions.php to enable taxonomy filtering: `add_filter( 'cpac-remove-filtering-columns', '__return_false' );`
465
 
466
  = 1.4.6.1 =
 
467
  * [Fixed] Issue: for possible warning when using Custompress ( props to scottsalisbury for the fix! )
468
  * [Fixed] Issue: for sorting by postcount for users
469
  * [Added] 'Display Author As' column for post(types)
470
  * [Added] sorting support for 'Display Author As' column
471
 
472
  = 1.4.6 =
 
473
  * [Added] german language ( thanks to Uli )
474
  * [Added] danish language ( thanks to Morten Dalgaard Johansen )
475
  * [Added] filter for setting thumbnail size ( see FAQ on how to use it )
477
  * [Fixed] Issue: for WordPress SEO by Yoast Columns
478
 
479
  = 1.4.5.1 =
 
480
  * [Removed] taxonomy filtering ( will implement show/hide option )
481
 
482
  = 1.4.5 =
 
483
  * [Added] french language ( thanks to Alexandre Girard )
484
  * [Added] filtering by taxonomy ( only displays when column is used )
485
  * [Added] compatibility with woocommerce
495
  * [Fixed] Issue: with sorting users by postcount
496
 
497
  = 1.4.4 =
 
498
  * [Added] posts columns Last Modified and Comment count
499
  * [Added] media columns for EXIF and IPTC image data
500
  * [Added] custom fields columns to the Media Library
503
  * [Fixed] possible php warning
504
 
505
  = 1.4.3 =
 
506
  * [Removed] taxonomy filtering
507
 
508
  = 1.4.2 =
 
509
  * [Fixed] Issue: for unexpected output in the column value
510
  * [Fixed] Issue: for better 3rd party plugin support
511
  * [Added] column for Comment status
517
  * [Added] taxonomy filtering
518
 
519
  = 1.4.1 =
 
520
  * [Added] polish translation, thanks to Bartosz.
521
  * [Upated] the license key validation proces to be complaint with WP rules
522
  * [Removed] non-breaking-space-character from column output
523
 
524
  = 1.4 =
 
525
  * [Added] support for comment columns
526
  * [Added] support for link columns
527
  * [Added] links to taxonomies
539
  * [Fixed] Issue: a conflict with the Co-Authors plugin
540
 
541
  = 1.3 =
 
542
  * [Added] support for Media columns
543
  * [Added] Media columns: filename, width, height, dimensions, description, alt, caption and mime-type
544
  * [Added] date type to posts custom fields
547
  * [Improved] str_word_count is used for excerpts
548
 
549
  = 1.2.1 =
 
550
  * [Added] word count sorting
551
  * [Added] attachment count sorting
552
  * [Added] template name sorting
555
  * [Fixed] Issue: with sorting by attachment
556
 
557
  = 1.2 =
 
558
  * [Added] support for third party plugins
559
  * [Added] user custom fields
560
  * [Added] extra image check
561
  * [Fixed] Issue: with javascript (jquery) enqueue
562
 
563
  = 1.1.3 =
 
564
  * [Fixed] Issue: for WP3.3beta
565
 
566
  = 1.1.2 =
 
567
  * [Added] Dutch translation
568
 
569
  = 1.1.1 =
 
570
  * [Fixed] Issue: path separator for require_once
571
  * [Added] word count column
572
 
573
  = 1.1 =
 
574
  * [Added] User Columns.
575
  * [Added] before / after text for custom fields
576
  * [Added] custom field type 'Numeric'.
579
  * [Fixed] settings link
580
 
581
  = 1.0 =
 
582
  * Initial release.
583
 
584
  == Upgrade Notice ==