Admin Columns - Version 2.1.0

Version Description

  • [Updated] Improved overall performance for script loading and lowered memory usage
Download this release

Release Info

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

Code changes from version 2.0.3 to 2.1.0

classes/column.php CHANGED
@@ -905,8 +905,8 @@ class CPAC_Column {
905
  $classes = implode( ' ', array_filter( array ( "cpac-box-{$this->properties->type}", $this->properties->classes ) ) );
906
 
907
  // column list
908
- $column_list = $this->get_column_list( $this->storage_model->get_custom_registered_columns(), __( 'Custom', 'cpac' ) );
909
- $column_list .= $this->get_column_list( $this->storage_model->get_default_registered_columns(), __( 'Default', 'cpac' ) );
910
 
911
  // clone attribute
912
  $data_clone = $this->properties->is_cloneable ? " data-clone='{$this->properties->clone}'" : '';
905
  $classes = implode( ' ', array_filter( array ( "cpac-box-{$this->properties->type}", $this->properties->classes ) ) );
906
 
907
  // column list
908
+ $column_list = $this->get_column_list( $this->storage_model->custom_columns, __( 'Custom', 'cpac' ) );
909
+ $column_list .= $this->get_column_list( $this->storage_model->default_columns, __( 'Default', 'cpac' ) );
910
 
911
  // clone attribute
912
  $data_clone = $this->properties->is_cloneable ? " data-clone='{$this->properties->clone}'" : '';
classes/settings.php CHANGED
@@ -73,10 +73,11 @@ class CPAC_Settings {
73
  // register setting
74
  register_setting( 'cpac-general-settings', 'cpac_general_options' );
75
 
 
76
  // add capabilty to administrator to manage admin columns
77
  // note to devs: you can use this to grant other roles this privilidge as well.
78
- $role = get_role( 'administrator' );
79
- $role->add_cap( 'manage_admin_columns' );
80
 
81
  // add cap to options.php
82
  add_filter( 'option_page_capability_cpac-general-settings', array( $this, 'add_capability' ) );
@@ -652,7 +653,7 @@ class CPAC_Settings {
652
  <input type="hidden" name="cpac_action" value="update_by_type" />
653
 
654
  <?php
655
- foreach ( $storage_model->get_columns() as $column ) {
656
  $column->display();
657
  }
658
  ?>
73
  // register setting
74
  register_setting( 'cpac-general-settings', 'cpac_general_options' );
75
 
76
+ // @ todo_minor REMOVE
77
  // add capabilty to administrator to manage admin columns
78
  // note to devs: you can use this to grant other roles this privilidge as well.
79
+ //if ( $role = get_role( 'administrator' ) )
80
+ //$role->add_cap( 'manage_admin_columns' );
81
 
82
  // add cap to options.php
83
  add_filter( 'option_page_capability_cpac-general-settings', array( $this, 'add_capability' ) );
653
  <input type="hidden" name="cpac_action" value="update_by_type" />
654
 
655
  <?php
656
+ foreach ( $storage_model->columns as $column ) {
657
  $column->display();
658
  }
659
  ?>
classes/storage_model.php CHANGED
@@ -44,14 +44,28 @@ abstract class CPAC_Storage_Model {
44
  *
45
  * @since 2.0.1
46
  */
47
- protected $custom_columns;
48
 
49
  /**
50
  * Columns
51
  *
52
  * @since 2.0.1
53
  */
54
- public $columns;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
 
56
  /**
57
  * Get default columns
@@ -165,6 +179,9 @@ abstract class CPAC_Storage_Model {
165
  delete_option( "cpac_options_{$this->key}" );
166
 
167
  cpac_admin_message( "<strong>{$this->label}</strong> " . __( 'settings succesfully restored.', 'cpac' ), 'updated' );
 
 
 
168
  }
169
 
170
  /**
@@ -207,6 +224,9 @@ abstract class CPAC_Storage_Model {
207
 
208
  cpac_admin_message( sprintf( __( 'Settings for %s updated succesfully.', 'cpac' ), "<strong>{$this->label}</strong>" ), 'updated' );
209
 
 
 
 
210
  return true;
211
  }
212
 
@@ -219,7 +239,8 @@ abstract class CPAC_Storage_Model {
219
  *
220
  * @return array Column Classnames | Filepaths
221
  */
222
- protected function set_custom_columns() {
 
223
  $columns = array(
224
  'CPAC_Column_Custom_Field' => CPAC_DIR . 'classes/column/custom-field.php'
225
  );
@@ -238,11 +259,11 @@ abstract class CPAC_Storage_Model {
238
  }
239
 
240
  // cac/columns/custom - filter to register column
241
- $this->custom_columns = apply_filters( 'cac/columns/custom', $columns, $this );
242
 
243
  // cac/columns/custom/type={$type} - filter to register column based on it's content type
244
  // type can be either a posttype or wp-users/wp-comments/wp-links/wp-media
245
- $this->custom_columns = apply_filters( 'cac/columns/custom/type=' . $this->type, $columns, $this );
246
  }
247
 
248
  /**
@@ -320,7 +341,7 @@ abstract class CPAC_Storage_Model {
320
 
321
  $columns = array();
322
 
323
- foreach ( $this->custom_columns as $classname => $path ) {
324
 
325
  include_once $path;
326
 
@@ -342,19 +363,6 @@ abstract class CPAC_Storage_Model {
342
  return $columns;
343
  }
344
 
345
- /**
346
- * Get registered columns
347
- *
348
- * @todo: REMOVE
349
- * @since 2.0.0
350
- *
351
- * @return array Column Type | Column Instance
352
- */
353
- function get_registered_columns() {
354
-
355
- return array_merge( $this->get_custom_registered_columns(), $this->get_default_registered_columns() );
356
- }
357
-
358
  /**
359
  * Get default column options from DB
360
  *
@@ -393,7 +401,26 @@ abstract class CPAC_Storage_Model {
393
  * @since 2.0.2
394
  */
395
  function set_columns() {
396
- $this->columns = $this->get_columns();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
397
  }
398
 
399
  /**
@@ -409,10 +436,15 @@ abstract class CPAC_Storage_Model {
409
  $columns = array();
410
 
411
  // get columns
412
- $default_columns = $this->get_default_registered_columns();
 
 
 
 
 
413
 
414
  // @todo check if this solves the issue with not displaying value when using "manage_{$post_type}_posts_columns" at CPAC_Storage_Model_Post
415
- $registered_columns = array_merge( $default_columns, $this->get_custom_registered_columns() );
416
 
417
  // Stored columns
418
  if ( $stored_columns = $this->get_stored_columns() ) {
@@ -498,10 +530,8 @@ abstract class CPAC_Storage_Model {
498
  */
499
  function add_headings( $columns ) {
500
 
501
- global $pagenow;
502
-
503
  // only add headings on overview screens, to prevent deactivating columns in the Storage Model.
504
- if ( ! in_array( $pagenow, array( 'edit.php', 'users.php', 'edit-comments.php', 'upload.php', 'link-manager.php' ) ) )
505
  return $columns;
506
 
507
  // stored columns exists?
44
  *
45
  * @since 2.0.1
46
  */
47
+ protected $columns_filepath;
48
 
49
  /**
50
  * Columns
51
  *
52
  * @since 2.0.1
53
  */
54
+ public $columns = array();
55
+
56
+ /**
57
+ * Custom Column Instances
58
+ *
59
+ * @since 2.1.0
60
+ */
61
+ public $custom_columns = array();
62
+
63
+ /**
64
+ * Default Column Instances
65
+ *
66
+ * @since 2.1.0
67
+ */
68
+ public $default_columns = array();
69
 
70
  /**
71
  * Get default columns
179
  delete_option( "cpac_options_{$this->key}" );
180
 
181
  cpac_admin_message( "<strong>{$this->label}</strong> " . __( 'settings succesfully restored.', 'cpac' ), 'updated' );
182
+
183
+ // refresh columns otherwise the removed columns will still display
184
+ $this->set_columns();
185
  }
186
 
187
  /**
224
 
225
  cpac_admin_message( sprintf( __( 'Settings for %s updated succesfully.', 'cpac' ), "<strong>{$this->label}</strong>" ), 'updated' );
226
 
227
+ // refresh columns otherwise the newly added columns will not be displayed
228
+ $this->set_columns();
229
+
230
  return true;
231
  }
232
 
239
  *
240
  * @return array Column Classnames | Filepaths
241
  */
242
+ protected function set_columns_filepath() {
243
+
244
  $columns = array(
245
  'CPAC_Column_Custom_Field' => CPAC_DIR . 'classes/column/custom-field.php'
246
  );
259
  }
260
 
261
  // cac/columns/custom - filter to register column
262
+ $this->columns_filepath = apply_filters( 'cac/columns/custom', $columns, $this );
263
 
264
  // cac/columns/custom/type={$type} - filter to register column based on it's content type
265
  // type can be either a posttype or wp-users/wp-comments/wp-links/wp-media
266
+ $this->columns_filepath = apply_filters( 'cac/columns/custom/type=' . $this->type, $columns, $this );
267
  }
268
 
269
  /**
341
 
342
  $columns = array();
343
 
344
+ foreach ( $this->columns_filepath as $classname => $path ) {
345
 
346
  include_once $path;
347
 
363
  return $columns;
364
  }
365
 
 
 
 
 
 
 
 
 
 
 
 
 
 
366
  /**
367
  * Get default column options from DB
368
  *
401
  * @since 2.0.2
402
  */
403
  function set_columns() {
404
+
405
+ // only set columns on allowed screens
406
+ // @todo_minor: maybe add exception for AJAX calls
407
+ if ( ! $this->is_columns_screen() && ! $this->is_settings_page() )
408
+ return;
409
+
410
+ $this->custom_columns = $this->get_custom_registered_columns();
411
+ $this->default_columns = $this->get_default_registered_columns();
412
+
413
+ $this->columns = $this->get_columns();
414
+ }
415
+
416
+ /**
417
+ * Get registered columns
418
+ *
419
+ * @since 2.0.2
420
+ */
421
+ function get_registered_columns() {
422
+
423
+ return array_merge( $this->custom_columns, $this->default_columns );
424
  }
425
 
426
  /**
436
  $columns = array();
437
 
438
  // get columns
439
+ //$default_columns = $this->get_default_registered_columns();
440
+ //$custom_columns = $this->get_custom_registered_columns();
441
+
442
+ // get columns
443
+ $default_columns = $this->default_columns;
444
+ $custom_columns = $this->custom_columns;
445
 
446
  // @todo check if this solves the issue with not displaying value when using "manage_{$post_type}_posts_columns" at CPAC_Storage_Model_Post
447
+ $registered_columns = array_merge( $default_columns, $custom_columns );
448
 
449
  // Stored columns
450
  if ( $stored_columns = $this->get_stored_columns() ) {
530
  */
531
  function add_headings( $columns ) {
532
 
 
 
533
  // only add headings on overview screens, to prevent deactivating columns in the Storage Model.
534
+ if ( ! $this->is_columns_screen() )
535
  return $columns;
536
 
537
  // stored columns exists?
classes/storage_model/comment.php CHANGED
@@ -14,7 +14,7 @@ class CPAC_Storage_Model_Comment extends CPAC_Storage_Model {
14
  $this->type = 'comment';
15
  $this->page = 'edit-comments';
16
 
17
- $this->set_custom_columns();
18
 
19
  // Populate columns variable.
20
  // This is used for manage_value. By storing these columns we greatly improve performance.
14
  $this->type = 'comment';
15
  $this->page = 'edit-comments';
16
 
17
+ $this->set_columns_filepath();
18
 
19
  // Populate columns variable.
20
  // This is used for manage_value. By storing these columns we greatly improve performance.
classes/storage_model/link.php CHANGED
@@ -14,7 +14,7 @@ class CPAC_Storage_Model_Link extends CPAC_Storage_Model {
14
  $this->type = 'link';
15
  $this->page = 'link-manager';
16
 
17
- $this->set_custom_columns();
18
 
19
  // Populate columns variable.
20
  // This is used for manage_value. By storing these columns we greatly improve performance.
14
  $this->type = 'link';
15
  $this->page = 'link-manager';
16
 
17
+ $this->set_columns_filepath();
18
 
19
  // Populate columns variable.
20
  // This is used for manage_value. By storing these columns we greatly improve performance.
classes/storage_model/media.php CHANGED
@@ -14,7 +14,7 @@ class CPAC_Storage_Model_Media extends CPAC_Storage_Model {
14
  $this->type = 'media';
15
  $this->page = 'upload';
16
 
17
- $this->set_custom_columns();
18
 
19
  // Populate columns variable.
20
  // This is used for manage_value. By storing these columns we greatly improve performance.
14
  $this->type = 'media';
15
  $this->page = 'upload';
16
 
17
+ $this->set_columns_filepath();
18
 
19
  // Populate columns variable.
20
  // This is used for manage_value. By storing these columns we greatly improve performance.
classes/storage_model/post.php CHANGED
@@ -20,7 +20,7 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
20
  // add_action( 'admin_init', array( $this, 'set_columns' ) );
21
  // also for the other types
22
 
23
- $this->set_custom_columns();
24
 
25
  // Populate columns variable.
26
  // This is used for manage_value. By storing these columns we greatly improve performance.
@@ -76,6 +76,9 @@ class CPAC_Storage_Model_Post extends CPAC_Storage_Model {
76
 
77
  if ( ! function_exists('_get_list_table') ) return array();
78
 
 
 
 
79
  // You can use this filter to add thirdparty columns by hooking into this.
80
  // See classes/third_party.php for an example.
81
  do_action( "cac/columns/default/posts" );
20
  // add_action( 'admin_init', array( $this, 'set_columns' ) );
21
  // also for the other types
22
 
23
+ $this->set_columns_filepath();
24
 
25
  // Populate columns variable.
26
  // This is used for manage_value. By storing these columns we greatly improve performance.
76
 
77
  if ( ! function_exists('_get_list_table') ) return array();
78
 
79
+ //if ( ! $this->is_columns_screen() && ! $this->is_settings_page() )
80
+ //return array();
81
+
82
  // You can use this filter to add thirdparty columns by hooking into this.
83
  // See classes/third_party.php for an example.
84
  do_action( "cac/columns/default/posts" );
classes/storage_model/user.php CHANGED
@@ -14,7 +14,7 @@ class CPAC_Storage_Model_User extends CPAC_Storage_Model {
14
  $this->type = 'user';
15
  $this->page = 'users';
16
 
17
- $this->set_custom_columns();
18
 
19
  // Populate columns variable.
20
  // This is used for manage_value. By storing these columns we greatly improve performance.
14
  $this->type = 'user';
15
  $this->page = 'users';
16
 
17
+ $this->set_columns_filepath();
18
 
19
  // Populate columns variable.
20
  // This is used for manage_value. By storing these columns we greatly improve performance.
codepress-admin-columns.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
 
4
  Plugin Name: Codepress Admin Columns
5
- Version: 2.0.3
6
  Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
7
  Author: Codepress
8
  Author URI: http://www.codepresshq.com
@@ -11,7 +11,7 @@ Text Domain: cpac
11
  Domain Path: /languages
12
  License: GPLv2
13
 
14
- Copyright 2011-2013 Codepress info@codepress.nl
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License version 2 as published by
@@ -29,7 +29,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
29
 
30
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
31
 
32
- define( 'CPAC_VERSION', '2.0.3' ); // current plugin version
33
  define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // this is the latest version which requires an upgrade
34
  define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
35
  define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
@@ -62,6 +62,7 @@ class CPAC {
62
  * @since 1.0.0
63
  */
64
  function __construct() {
 
65
  add_action( 'wp_loaded', array( $this, 'init') );
66
  }
67
 
@@ -85,10 +86,8 @@ class CPAC {
85
  // add settings link
86
  add_filter( 'plugin_action_links', array( $this, 'add_settings_link'), 1, 2);
87
 
88
- // add capabilty to administrator to manage admin columns
89
- // note to devs: you can use this to grant other roles this privilidge as well.
90
- $role = get_role( 'administrator' );
91
- $role->add_cap( 'manage_admin_columns' );
92
 
93
  // set storage models
94
  $this->set_storage_models();
@@ -100,6 +99,20 @@ class CPAC {
100
  do_action( 'cac/loaded', $this );
101
  }
102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  /**
104
  * Get storage models
105
  *
@@ -108,7 +121,7 @@ class CPAC {
108
  */
109
  private function set_storage_models() {
110
 
111
- $storage_models = array();
112
 
113
  // include parent and childs
114
  require_once CPAC_DIR . 'classes/column.php';
@@ -122,31 +135,29 @@ class CPAC {
122
  // add Posts
123
  foreach ( $this->get_post_types() as $post_type ) {
124
  $storage_model = new CPAC_Storage_Model_Post( $post_type );
125
- $storage_models[ $storage_model->key ] = $storage_model;
126
  }
127
 
128
  // add User
129
  $storage_model = new CPAC_Storage_Model_User();
130
- $storage_models[ $storage_model->key ] = $storage_model;
131
 
132
  // add Media
133
  $storage_model = new CPAC_Storage_Model_Media();
134
- $storage_models[ $storage_model->key ] = $storage_model;
135
 
136
  // add Comment
137
  $storage_model = new CPAC_Storage_Model_Comment();
138
- $storage_models[ $storage_model->key ] = $storage_model;
139
 
140
  // add Link
141
  if ( apply_filters( 'pre_option_link_manager_enabled', false ) ) { // as of 3.5 link manager is removed
142
  $storage_model = new CPAC_Storage_Model_Link();
143
- $storage_models[ $storage_model->key ] = $storage_model;
144
  }
145
 
146
  // Hook to add more models
147
- do_action( 'cac/storage_models', $storage_models );
148
-
149
- $this->storage_models = $storage_models;
150
  }
151
 
152
  /**
@@ -290,30 +301,32 @@ class CPAC {
290
  // JS
291
  $edit_link = '';
292
 
293
- foreach ( $this->storage_models as $storage_model ) {
 
294
 
295
- if ( $storage_model->page . '.php' !== $pagenow )
296
- continue;
297
 
298
- // CSS: columns width
299
- if ( $columns = $storage_model->get_stored_columns() ) {
300
- foreach ( $columns as $name => $options ) {
301
 
302
- if ( ! empty( $options['width'] ) && is_numeric( $options['width'] ) && $options['width'] > 0 ) {
303
- $css_column_width .= ".cp-{$storage_model->key} .wrap table th.column-{$name} { width: {$options['width']}% !important; }";
 
304
  }
305
  }
306
- }
307
 
308
- // JS: edit button
309
- if (
310
- // All types except Posts
311
- empty( $current_screen->post_type ) ||
312
- // Posts
313
- ( ! empty( $current_screen->post_type ) && $storage_model->key == $current_screen->post_type )
314
- )
315
- {
316
- $edit_link = $storage_model->get_edit_link();
 
317
  }
318
  }
319
 
2
  /*
3
 
4
  Plugin Name: Codepress Admin Columns
5
+ Version: 2.1.0
6
  Description: Customize columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
7
  Author: Codepress
8
  Author URI: http://www.codepresshq.com
11
  Domain Path: /languages
12
  License: GPLv2
13
 
14
+ Copyright 2011-2014 Codepress info@codepress.nl
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License version 2 as published by
29
 
30
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
31
 
32
+ define( 'CPAC_VERSION', '2.1.0' ); // current plugin version
33
  define( 'CPAC_UPGRADE_VERSION', '2.0.0' ); // this is the latest version which requires an upgrade
34
  define( 'CPAC_URL', plugin_dir_url( __FILE__ ) );
35
  define( 'CPAC_DIR', plugin_dir_path( __FILE__ ) );
62
  * @since 1.0.0
63
  */
64
  function __construct() {
65
+
66
  add_action( 'wp_loaded', array( $this, 'init') );
67
  }
68
 
86
  // add settings link
87
  add_filter( 'plugin_action_links', array( $this, 'add_settings_link'), 1, 2);
88
 
89
+ // add capabilty to roles to manage admin columns
90
+ $this->set_capabilities();
 
 
91
 
92
  // set storage models
93
  $this->set_storage_models();
99
  do_action( 'cac/loaded', $this );
100
  }
101
 
102
+ /**
103
+ * Add user capabilities
104
+ *
105
+ * note to devs: you can use this to grant other roles this privilidge as well.
106
+ *
107
+ * @since 2.0.4
108
+ */
109
+ public function set_capabilities() {
110
+
111
+ // add capabilty to administrator to manage admin columns
112
+ if ( $role = get_role( 'administrator' ) )
113
+ $role->add_cap( 'manage_admin_columns' );
114
+ }
115
+
116
  /**
117
  * Get storage models
118
  *
121
  */
122
  private function set_storage_models() {
123
 
124
+ $this->storage_models = array();
125
 
126
  // include parent and childs
127
  require_once CPAC_DIR . 'classes/column.php';
135
  // add Posts
136
  foreach ( $this->get_post_types() as $post_type ) {
137
  $storage_model = new CPAC_Storage_Model_Post( $post_type );
138
+ $this->storage_models[ $storage_model->key ] = $storage_model;
139
  }
140
 
141
  // add User
142
  $storage_model = new CPAC_Storage_Model_User();
143
+ $this->storage_models[ $storage_model->key ] = $storage_model;
144
 
145
  // add Media
146
  $storage_model = new CPAC_Storage_Model_Media();
147
+ $this->storage_models[ $storage_model->key ] = $storage_model;
148
 
149
  // add Comment
150
  $storage_model = new CPAC_Storage_Model_Comment();
151
+ $this->storage_models[ $storage_model->key ] = $storage_model;
152
 
153
  // add Link
154
  if ( apply_filters( 'pre_option_link_manager_enabled', false ) ) { // as of 3.5 link manager is removed
155
  $storage_model = new CPAC_Storage_Model_Link();
156
+ $this->storage_models[ $storage_model->key ] = $storage_model;
157
  }
158
 
159
  // Hook to add more models
160
+ do_action( 'cac/storage_models', $this->storage_models );
 
 
161
  }
162
 
163
  /**
301
  // JS
302
  $edit_link = '';
303
 
304
+ if ( $this->storage_models ) {
305
+ foreach ( $this->storage_models as $storage_model ) {
306
 
307
+ if ( $storage_model->page . '.php' !== $pagenow )
308
+ continue;
309
 
310
+ // CSS: columns width
311
+ if ( $columns = $storage_model->get_stored_columns() ) {
312
+ foreach ( $columns as $name => $options ) {
313
 
314
+ if ( ! empty( $options['width'] ) && is_numeric( $options['width'] ) && $options['width'] > 0 ) {
315
+ $css_column_width .= ".cp-{$storage_model->key} .wrap table th.column-{$name} { width: {$options['width']}% !important; }";
316
+ }
317
  }
318
  }
 
319
 
320
+ // JS: edit button
321
+ if (
322
+ // All types except Posts
323
+ empty( $current_screen->post_type ) ||
324
+ // Posts
325
+ ( ! empty( $current_screen->post_type ) && $storage_model->key == $current_screen->post_type )
326
+ )
327
+ {
328
+ $edit_link = $storage_model->get_edit_link();
329
+ }
330
  }
331
  }
332
 
languages/cpac-ar.mo CHANGED
Binary file
languages/cpac-ar.po CHANGED
@@ -1,4 +1,4 @@
1
- #
2
  # Translators:
3
  # TheHassan, 2013
4
  msgid ""
@@ -6,20 +6,22 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-08-29 20:04+0000\n"
10
- "Last-Translator: TheHassan\n"
11
- "Language-Team: Arabic (http://www.transifex.com/projects/p/admin-columns/language/ar/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: ar\n"
16
- "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
- "X-Poedit-SourceCharset: utf-8\n"
23
 
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
@@ -62,7 +64,9 @@ msgstr "مثال:"
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
- msgstr "أترك خاليا لتنسيق ووردبريس الإفتراضي للتاريخ، قم بتغيير <a href=\"%s\">تنسيق التاريخ الخاص بك هنا</a>."
 
 
66
 
67
  #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
@@ -153,7 +157,10 @@ msgid ""
153
  "This plugin is for adding and removing additional columns to the "
154
  "administration screens for post(types), pages, media library, comments, "
155
  "links and users. Change the column's label and reorder them."
156
- msgstr "هذا البرنامج هو لإضافة وإزالة أعمدة إضافية في الشاشات الإدارية لـ(أنواع) التدوينات، الصفحات، مكتبة الوسائط، التعليقات، الوصلات والمستخدمين. قم بتغيير تسمية الأعمدة وإعادة ترتيبها."
 
 
 
157
 
158
  #: ../classes/settings.php:208
159
  msgid "Basics"
@@ -176,7 +183,8 @@ msgstr "تغيير العنوان"
176
  msgid ""
177
  "By clicking on the triangle you will see the column options. Here you can "
178
  "change each label of the columns heading."
179
- msgstr "بالنقر على المثلث سترى خيارات العمود. هنا يمكنك تغيير تسمية ترويسات الأعمدة."
 
180
 
181
  #: ../classes/settings.php:214
182
  msgid "Change column width"
@@ -186,7 +194,9 @@ msgstr "تغيير عرض العمود"
186
  msgid ""
187
  "By clicking on the triangle you will see the column options. By using the "
188
  "draggable slider you can set the width of the columns in percentages."
189
- msgstr "بالنقر على المثلث سترى خيارات العمود. باستخدام شريط التمرير القابل للسحب يمكنك تعيين عرض الأعمدة بالنسب المئوية."
 
 
190
 
191
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
  #: ../classes/column/custom-field.php:324
@@ -201,13 +211,17 @@ msgstr "عمود 'حقل مخصوص'"
201
  msgid ""
202
  "The custom field colum uses the custom fields from posts and users. There "
203
  "are 10 types which you can set."
204
- msgstr "يستخدم عمود الحقل المخصوص الحقول المخصوصة من التدوينات والمستخدمين. هناك 10 أنواع يمكنك تعيينها."
 
 
205
 
206
  #: ../classes/settings.php:224
207
  msgid ""
208
  "Value: Can be either a string or array. Arrays will be flattened and values "
209
  "are seperated by a ',' comma."
210
- msgstr "قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم بـ '،' فاصلة."
 
 
211
 
212
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
  #: ../classes/column/link/image.php:12
@@ -218,7 +232,8 @@ msgstr "صورة"
218
  msgid ""
219
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
  "comma )."
221
- msgstr "قيمة: يجب أن يحتوي عنوان URL للصورة أو معرفات المرفقات (مفصولة بـ '،' فاصلة)."
 
222
 
223
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
  #: ../classes/column/comment/excerpt.php:13
@@ -236,8 +251,7 @@ msgstr "قيم متعددة"
236
 
237
  #: ../classes/settings.php:227
238
  msgid ""
239
- "Value: should be an array. This will flatten any ( multi dimensional ) "
240
- "array."
241
  msgstr "قيمة: يجب أن يكون مصفوفة. هذا سوف يسطح أي مصفوفة (متعددة الأبعاد)."
242
 
243
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
@@ -248,7 +262,9 @@ msgstr "رقمي"
248
  msgid ""
249
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
  "for sorting, so you can sort your posts on numeric (custom field) values."
251
- msgstr "القيمة: الأعداد الصحيحة فقط <br/> إذا كان لديك 'ملحق الترتيب' سيتم استخدام هذه للترتيب، بحيث يمكنك ترتيب تدويناتك على القيم الرقمية (الحقل المخصوص)."
 
 
252
 
253
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
  #: ../classes/column/comment/date.php:12
@@ -261,7 +277,10 @@ msgid ""
261
  "Value: Can be unix time stamp or a date format as described in the <a "
262
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
  "href='%s'>general settings</a> page."
264
- msgstr "قيمة: يمكن أن تكون طابع يونكس زمني أو تنسيق تاريخ كما هو موضح في <a href='%s'>Codex</a>. يمكنك تغيير تنسيق التاريخ المخرج من صفحة <a href='%s'>الإعدادات العامة</a>."
 
 
 
265
 
266
  #: ../classes/settings.php:230
267
  msgid "Post Titles"
@@ -307,7 +326,8 @@ msgstr "شكرا لك على التحديث للنسخة الأخيرة!"
307
  msgid ""
308
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
  "like it."
310
- msgstr "Admin Columns أصبحت مصقولة وممتعة أكثر من أي وقت مضى. نأمل أن تنال إعجابكم."
 
311
 
312
  #: ../classes/settings.php:386
313
  msgid "What’s New"
@@ -330,7 +350,10 @@ msgid ""
330
  "Addons are now activated by downloading and installing individual plugins. "
331
  "Although these plugins will not be hosted on the wordpress.org repository, "
332
  "each Add-on will continue to receive updates in the usual way."
333
- msgstr "يتم تنشيط الملحقات الآن عن طريق تحميل وتثبيت الإضافات الفردية. على الرغم من أنه لن يتم استضافة هذه الإضافات على مستودع wordpress.org، سوف تستمر كل إضافة بتلقي التحديثات بالطريقة المعتادة."
 
 
 
334
 
335
  #: ../classes/settings.php:400
336
  msgid ""
@@ -363,9 +386,11 @@ msgstr "تغييرات قاعدة البيانات"
363
 
364
  #: ../classes/settings.php:419
365
  msgid ""
366
- "The database has been changed between versions 1 and 2. But we made sure you"
367
- " can still roll back to version 1x without any issues."
368
- msgstr "تم تغيير قاعدة البيانات بين الإصدارات 1 و 2. ولكن حرصنا على ألا يزال بإمكانك الرجوع إلى إصدار 1x دون أية مشاكل."
 
 
369
 
370
  #: ../classes/settings.php:422
371
  msgid "Make sure you backup your database and then click"
@@ -381,10 +406,12 @@ msgstr "مشاكل محتملة"
381
 
382
  #: ../classes/settings.php:426
383
  msgid ""
384
- "Do to the sizable refactoring the code, surounding Addons and "
385
- "action/filters, your website may not operate correctly. It is important that"
386
- " you read the full"
387
- msgstr "نسبة إلى إعادة بناء كود الإضافة بشكل كبير، وكذلك الملحاقت والدوال، قد لا يعمل موقع الويب الخاص بك بشكل صحيح. من المهم أن تقرأ بشكل كامل"
 
 
388
 
389
  #: ../classes/settings.php:426
390
  msgid "Migrating from v1 to v2"
@@ -399,7 +426,9 @@ msgstr "توجيه لعرض القائمة الكاملة للتغييرات."
399
  msgid ""
400
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
  "can fix it in the next release."
402
- msgstr "عندما تجد أخطاء الرجاء <a href=\"%s\">التبيلغ عنها لنا</a> لكي نتمكن من إصلاحها في النسخة القادمة."
 
 
403
 
404
  #: ../classes/settings.php:429
405
  msgid "Important!"
@@ -409,7 +438,9 @@ msgstr "مهم!"
409
  msgid ""
410
  "If you updated the Admin Columns plugin without prior knowledge of such "
411
  "changes, Please roll back to the latest"
412
- msgstr "إذا قمت بتحديث Admin Columns دون معرفة مسبقة بهذه التغييرات، فالرجاء الرجوع لآخر"
 
 
413
 
414
  #: ../classes/settings.php:429
415
  msgid "version 1"
@@ -431,12 +462,13 @@ msgstr "تعلم المزيد"
431
  msgid ""
432
  "New to v2, all Addons act as separate plugins which need to be individually "
433
  "downloaded, installed and updated."
434
- msgstr "جديدة في النسخة 2، كل الملحقات عبارة عن إضافات منفصلة وتحتاج ليتم تحميلها، تركيبها وتحديثها بشكل فردي."
 
 
435
 
436
  #: ../classes/settings.php:460
437
  msgid ""
438
- "This page will assist you in downloading and installing each available "
439
- "Addon."
440
  msgstr "هذه الصفحة سوف تساعدك في تحميل وتثبيت كل الملحقات المتاحة."
441
 
442
  #: ../classes/settings.php:461
@@ -481,8 +513,8 @@ msgstr "استخدام الرافع للتصفح واختيار وتثبيت (م
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
- " link"
486
  msgstr "عندما يتم رفع وتنصيب الإضافة، انقر على رابط 'تنشيط الإضافة'"
487
 
488
  #: ../classes/settings.php:491
@@ -514,9 +546,11 @@ msgstr "نشر"
514
  #: ../classes/settings.php:589
515
  #, php-format
516
  msgid ""
517
- "Warning! The %s columns data will be deleted. This cannot be undone. "
518
- "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
- msgstr "تحذير! بيانات أعمدة %s سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
 
 
520
 
521
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
  #: ../classes/column/post/actions.php:53
@@ -554,14 +588,17 @@ msgstr "دعم"
554
 
555
  #: ../classes/settings.php:620
556
  msgid "Check the <strong>Help</strong> section in the top-right screen."
557
- msgstr "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
 
558
 
559
  #: ../classes/settings.php:622
560
  #, php-format
561
  msgid ""
562
  "For full documentation, bug reports, feature suggestions and other tips <a "
563
  "href='%s'>visit the Admin Columns website</a>"
564
- msgstr "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
 
 
565
 
566
  #: ../classes/settings.php:642
567
  msgid "Drag and drop to reorder"
@@ -586,7 +623,9 @@ msgstr "إظهار الحقول المخصوصة المخفية. الإفترا
586
  #: ../classes/settings.php:716
587
  msgid ""
588
  "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
589
- msgstr "إظهار زر \"تحرير الأعمدة\" على الشاشات الإدارية. الإفتراضي هو <code>لا</code>."
 
 
590
 
591
  #: ../classes/settings.php:723
592
  msgid "Save"
@@ -608,7 +647,9 @@ msgstr "استرجاع الإعدادات الإفتراضية"
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
- msgstr "تحذير! كافة بيانات الأعمدة المحفوظة سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
 
 
612
 
613
  #: ../classes/storage_model.php:167
614
  msgid "settings succesfully restored."
@@ -684,7 +725,8 @@ msgstr "خطأ"
684
  msgid ""
685
  "Sorry. Something went wrong during the upgrade process. Please report this "
686
  "on the support forum."
687
- msgstr "عفوا. حدث خطأ أثناء عملية الترقية. الرجاء التبليغ عن هذا في منتديات الدعم."
 
688
 
689
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
690
  msgid "Media Library"
@@ -829,7 +871,9 @@ msgstr "عدد الكلمات"
829
  msgid ""
830
  "You are about to delete this link '%s'\n"
831
  " 'Cancel' to stop, 'OK' to delete."
832
- msgstr "انت على وشك حذف هذا الرابط '%s'\n 'إلغاء' للإيقاف، 'موافق' للحذف."
 
 
833
 
834
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
  msgid "Delete"
1
+ #
2
  # Translators:
3
  # TheHassan, 2013
4
  msgid ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-11-14 15:55+0100\n"
10
+ "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Arabic (http://www.transifex.com/projects/p/admin-columns/"
12
+ "language/ar/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: ar\n"
17
+ "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
18
+ "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
19
  "X-Generator: Poedit 1.5.7\n"
20
  "X-Poedit-Basepath: .\n"
21
  "X-Poedit-KeywordsList: __;_e\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPath-1: ..\n"
 
25
 
26
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
27
  msgid "Settings"
64
  msgid ""
65
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
66
  "date format here</a>."
67
+ msgstr ""
68
+ "أترك خاليا لتنسيق ووردبريس الإفتراضي للتاريخ، قم بتغيير <a href=\"%s\">تنسيق "
69
+ "التاريخ الخاص بك هنا</a>."
70
 
71
  #: ../classes/column.php:784
72
  msgid "Documentation on date and time formatting."
157
  "This plugin is for adding and removing additional columns to the "
158
  "administration screens for post(types), pages, media library, comments, "
159
  "links and users. Change the column's label and reorder them."
160
+ msgstr ""
161
+ "هذا البرنامج هو لإضافة وإزالة أعمدة إضافية في الشاشات الإدارية لـ(أنواع) "
162
+ "التدوينات، الصفحات، مكتبة الوسائط، التعليقات، الوصلات والمستخدمين. قم بتغيير "
163
+ "تسمية الأعمدة وإعادة ترتيبها."
164
 
165
  #: ../classes/settings.php:208
166
  msgid "Basics"
183
  msgid ""
184
  "By clicking on the triangle you will see the column options. Here you can "
185
  "change each label of the columns heading."
186
+ msgstr ""
187
+ "بالنقر على المثلث سترى خيارات العمود. هنا يمكنك تغيير تسمية ترويسات الأعمدة."
188
 
189
  #: ../classes/settings.php:214
190
  msgid "Change column width"
194
  msgid ""
195
  "By clicking on the triangle you will see the column options. By using the "
196
  "draggable slider you can set the width of the columns in percentages."
197
+ msgstr ""
198
+ "بالنقر على المثلث سترى خيارات العمود. باستخدام شريط التمرير القابل للسحب "
199
+ "يمكنك تعيين عرض الأعمدة بالنسب المئوية."
200
 
201
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
202
  #: ../classes/column/custom-field.php:324
211
  msgid ""
212
  "The custom field colum uses the custom fields from posts and users. There "
213
  "are 10 types which you can set."
214
+ msgstr ""
215
+ "يستخدم عمود الحقل المخصوص الحقول المخصوصة من التدوينات والمستخدمين. هناك 10 "
216
+ "أنواع يمكنك تعيينها."
217
 
218
  #: ../classes/settings.php:224
219
  msgid ""
220
  "Value: Can be either a string or array. Arrays will be flattened and values "
221
  "are seperated by a ',' comma."
222
+ msgstr ""
223
+ "قيمة: يمكن أن تكون إما سلسلة أو مصفوفة. سيتم تسطيح المصفوفات ويتم فصل القيم "
224
+ "بـ '،' فاصلة."
225
 
226
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
227
  #: ../classes/column/link/image.php:12
232
  msgid ""
233
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
234
  "comma )."
235
+ msgstr ""
236
+ "قيمة: يجب أن يحتوي عنوان URL للصورة أو معرفات المرفقات (مفصولة بـ '،' فاصلة)."
237
 
238
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
239
  #: ../classes/column/comment/excerpt.php:13
251
 
252
  #: ../classes/settings.php:227
253
  msgid ""
254
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
255
  msgstr "قيمة: يجب أن يكون مصفوفة. هذا سوف يسطح أي مصفوفة (متعددة الأبعاد)."
256
 
257
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
262
  msgid ""
263
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
264
  "for sorting, so you can sort your posts on numeric (custom field) values."
265
+ msgstr ""
266
+ "القيمة: الأعداد الصحيحة فقط <br/> إذا كان لديك 'ملحق الترتيب' سيتم استخدام "
267
+ "هذه للترتيب، بحيث يمكنك ترتيب تدويناتك على القيم الرقمية (الحقل المخصوص)."
268
 
269
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
270
  #: ../classes/column/comment/date.php:12
277
  "Value: Can be unix time stamp or a date format as described in the <a "
278
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
279
  "href='%s'>general settings</a> page."
280
+ msgstr ""
281
+ "قيمة: يمكن أن تكون طابع يونكس زمني أو تنسيق تاريخ كما هو موضح في <a "
282
+ "href='%s'>Codex</a>. يمكنك تغيير تنسيق التاريخ المخرج من صفحة <a "
283
+ "href='%s'>الإعدادات العامة</a>."
284
 
285
  #: ../classes/settings.php:230
286
  msgid "Post Titles"
326
  msgid ""
327
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
328
  "like it."
329
+ msgstr ""
330
+ "Admin Columns أصبحت مصقولة وممتعة أكثر من أي وقت مضى. نأمل أن تنال إعجابكم."
331
 
332
  #: ../classes/settings.php:386
333
  msgid "What’s New"
350
  "Addons are now activated by downloading and installing individual plugins. "
351
  "Although these plugins will not be hosted on the wordpress.org repository, "
352
  "each Add-on will continue to receive updates in the usual way."
353
+ msgstr ""
354
+ "يتم تنشيط الملحقات الآن عن طريق تحميل وتثبيت الإضافات الفردية. على الرغم من "
355
+ "أنه لن يتم استضافة هذه الإضافات على مستودع wordpress.org، سوف تستمر كل إضافة "
356
+ "بتلقي التحديثات بالطريقة المعتادة."
357
 
358
  #: ../classes/settings.php:400
359
  msgid ""
386
 
387
  #: ../classes/settings.php:419
388
  msgid ""
389
+ "The database has been changed between versions 1 and 2. But we made sure you "
390
+ "can still roll back to version 1x without any issues."
391
+ msgstr ""
392
+ "تم تغيير قاعدة البيانات بين الإصدارات 1 و 2. ولكن حرصنا على ألا يزال بإمكانك "
393
+ "الرجوع إلى إصدار 1x دون أية مشاكل."
394
 
395
  #: ../classes/settings.php:422
396
  msgid "Make sure you backup your database and then click"
406
 
407
  #: ../classes/settings.php:426
408
  msgid ""
409
+ "Do to the sizable refactoring the code, surounding Addons and action/"
410
+ "filters, your website may not operate correctly. It is important that you "
411
+ "read the full"
412
+ msgstr ""
413
+ "نسبة إلى إعادة بناء كود الإضافة بشكل كبير، وكذلك الملحاقت والدوال، قد لا "
414
+ "يعمل موقع الويب الخاص بك بشكل صحيح. من المهم أن تقرأ بشكل كامل"
415
 
416
  #: ../classes/settings.php:426
417
  msgid "Migrating from v1 to v2"
426
  msgid ""
427
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
428
  "can fix it in the next release."
429
+ msgstr ""
430
+ "عندما تجد أخطاء الرجاء <a href=\"%s\">التبيلغ عنها لنا</a> لكي نتمكن من "
431
+ "إصلاحها في النسخة القادمة."
432
 
433
  #: ../classes/settings.php:429
434
  msgid "Important!"
438
  msgid ""
439
  "If you updated the Admin Columns plugin without prior knowledge of such "
440
  "changes, Please roll back to the latest"
441
+ msgstr ""
442
+ "إذا قمت بتحديث Admin Columns دون معرفة مسبقة بهذه التغييرات، فالرجاء الرجوع "
443
+ "لآخر"
444
 
445
  #: ../classes/settings.php:429
446
  msgid "version 1"
462
  msgid ""
463
  "New to v2, all Addons act as separate plugins which need to be individually "
464
  "downloaded, installed and updated."
465
+ msgstr ""
466
+ "جديدة في النسخة 2، كل الملحقات عبارة عن إضافات منفصلة وتحتاج ليتم تحميلها، "
467
+ "تركيبها وتحديثها بشكل فردي."
468
 
469
  #: ../classes/settings.php:460
470
  msgid ""
471
+ "This page will assist you in downloading and installing each available Addon."
 
472
  msgstr "هذه الصفحة سوف تساعدك في تحميل وتثبيت كل الملحقات المتاحة."
473
 
474
  #: ../classes/settings.php:461
513
 
514
  #: ../classes/settings.php:490
515
  msgid ""
516
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
517
+ "link"
518
  msgstr "عندما يتم رفع وتنصيب الإضافة، انقر على رابط 'تنشيط الإضافة'"
519
 
520
  #: ../classes/settings.php:491
546
  #: ../classes/settings.php:589
547
  #, php-format
548
  msgid ""
549
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
550
+ "\\' to delete, \\'Cancel\\' to stop"
551
+ msgstr ""
552
+ "تحذير! بيانات أعمدة %s سيتم حذفها. لا يمكن التراجع عن هذا. \\'موافق\\' "
553
+ "للحذف، \\'إلغاء\\' للإيقاف"
554
 
555
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
556
  #: ../classes/column/post/actions.php:53
588
 
589
  #: ../classes/settings.php:620
590
  msgid "Check the <strong>Help</strong> section in the top-right screen."
591
+ msgstr ""
592
+ "تحقق من قسم <strong>المساعدة</strong> في الجانب العلوي الأيسر من الشاشة."
593
 
594
  #: ../classes/settings.php:622
595
  #, php-format
596
  msgid ""
597
  "For full documentation, bug reports, feature suggestions and other tips <a "
598
  "href='%s'>visit the Admin Columns website</a>"
599
+ msgstr ""
600
+ "للحصول على الوثائق الكاملة، تقارير الأخطاء، اقتراحات الميزات وغيرها من "
601
+ "النصائح <a href='%s'>قم بزيارة موقع Admin Columns</a>"
602
 
603
  #: ../classes/settings.php:642
604
  msgid "Drag and drop to reorder"
623
  #: ../classes/settings.php:716
624
  msgid ""
625
  "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
626
+ msgstr ""
627
+ "إظهار زر \"تحرير الأعمدة\" على الشاشات الإدارية. الإفتراضي هو <code>لا</"
628
+ "code>."
629
 
630
  #: ../classes/settings.php:723
631
  msgid "Save"
647
  msgid ""
648
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
649
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
650
+ msgstr ""
651
+ "تحذير! كافة بيانات الأعمدة المحفوظة سيتم حذفها. لا يمكن التراجع عن هذا. "
652
+ "\\'موافق\\' للحذف، \\'إلغاء\\' للإيقاف"
653
 
654
  #: ../classes/storage_model.php:167
655
  msgid "settings succesfully restored."
725
  msgid ""
726
  "Sorry. Something went wrong during the upgrade process. Please report this "
727
  "on the support forum."
728
+ msgstr ""
729
+ "عفوا. حدث خطأ أثناء عملية الترقية. الرجاء التبليغ عن هذا في منتديات الدعم."
730
 
731
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
732
  msgid "Media Library"
871
  msgid ""
872
  "You are about to delete this link '%s'\n"
873
  " 'Cancel' to stop, 'OK' to delete."
874
+ msgstr ""
875
+ "انت على وشك حذف هذا الرابط '%s'\n"
876
+ " 'إلغاء' للإيقاف، 'موافق' للحذف."
877
 
878
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
879
  msgid "Delete"
languages/cpac-da_DK.mo CHANGED
Binary file
languages/cpac-da_DK.po CHANGED
@@ -1,4 +1,4 @@
1
- #
2
  # Translators:
3
  # mikkelbreum <mikkel@wpkitchen.com>, 2013
4
  # iosoftgame <support@iosoftgame.com>, 2013
@@ -7,9 +7,10 @@ msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
10
- "PO-Revision-Date: 2013-09-02 11:25+0000\n"
11
- "Last-Translator: mikkelbreum <mikkel@wpkitchen.com>\n"
12
- "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/admin-columns/language/da_DK/)\n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
@@ -18,9 +19,9 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Poedit-KeywordsList: __;_e\n"
 
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPath-1: ..\n"
23
- "X-Poedit-SourceCharset: utf-8\n"
24
 
25
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
  msgid "Settings"
@@ -63,7 +64,9 @@ msgstr "Eksempel:"
63
  msgid ""
64
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
65
  "date format here</a>."
66
- msgstr "Lad være tomt for at benytte WordPress' datoformat, ændre dit <a href=\"%s\">standard datoformat her</a>."
 
 
67
 
68
  #: ../classes/column.php:784
69
  msgid "Documentation on date and time formatting."
@@ -154,7 +157,10 @@ msgid ""
154
  "This plugin is for adding and removing additional columns to the "
155
  "administration screens for post(types), pages, media library, comments, "
156
  "links and users. Change the column's label and reorder them."
157
- msgstr "Dette plugin er til at tilføje og fjerne tillægskolonner på administrationsskærme for indlægs(typer), sider, mediebibliotek, kommentarer, links og brugere. Ændre kolonnens etikette og rækkefølge."
 
 
 
158
 
159
  #: ../classes/settings.php:208
160
  msgid "Basics"
@@ -167,7 +173,8 @@ msgstr "Ændre rækkefølge"
167
  #: ../classes/settings.php:211
168
  msgid ""
169
  "By dragging the columns you can change the order which they will appear in."
170
- msgstr "Ved at trække i kolonnerne kan du ændre rækkefølgen, som de bliver vist i."
 
171
 
172
  #: ../classes/settings.php:212
173
  msgid "Change label"
@@ -177,7 +184,9 @@ msgstr "Ændre etikette"
177
  msgid ""
178
  "By clicking on the triangle you will see the column options. Here you can "
179
  "change each label of the columns heading."
180
- msgstr "Ved at klikke på trekanten vil du se kolonne valgmuligheder. Her kan du vælge hver etikette for kolonnernes overskrift. "
 
 
181
 
182
  #: ../classes/settings.php:214
183
  msgid "Change column width"
@@ -187,7 +196,9 @@ msgstr "Ændre kolonnebredden"
187
  msgid ""
188
  "By clicking on the triangle you will see the column options. By using the "
189
  "draggable slider you can set the width of the columns in percentages."
190
- msgstr "Tryk på trekanten for at se indstillingsmulighederne. Benyt slideren for at indstille kolonnebredden."
 
 
191
 
192
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
193
  #: ../classes/column/custom-field.php:324
@@ -202,13 +213,17 @@ msgstr "'Brugerdefineret felt' kolonne"
202
  msgid ""
203
  "The custom field colum uses the custom fields from posts and users. There "
204
  "are 10 types which you can set."
205
- msgstr "Den 'brugerdefineret felt' kolonne benytter brugerdefineret felter fra indlæg og brugere. Der er 10 typer som du kan sætte."
 
 
206
 
207
  #: ../classes/settings.php:224
208
  msgid ""
209
  "Value: Can be either a string or array. Arrays will be flattened and values "
210
  "are seperated by a ',' comma."
211
- msgstr "Værdi: Kan være enten en tekststreng eller en tabel. Tabeller vil blive fladtrykt og værdier separeret ved et ',' komma."
 
 
212
 
213
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
214
  #: ../classes/column/link/image.php:12
@@ -219,7 +234,9 @@ msgstr "Billede"
219
  msgid ""
220
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
221
  "comma )."
222
- msgstr "Værdi: skal indeholde en billede URL eller vedhæftnings ID'er ( separeret ved et ',' komma )."
 
 
223
 
224
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
225
  #: ../classes/column/comment/excerpt.php:13
@@ -237,9 +254,10 @@ msgstr "Flere værdier"
237
 
238
  #: ../classes/settings.php:227
239
  msgid ""
240
- "Value: should be an array. This will flatten any ( multi dimensional ) "
241
- "array."
242
- msgstr "Værdi: skal være en tabel. Dette vil fladtrykke enhver ( multi dimensionel ) tabel."
 
243
 
244
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
245
  msgid "Numeric"
@@ -249,7 +267,10 @@ msgstr "Numerisk"
249
  msgid ""
250
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
251
  "for sorting, so you can sort your posts on numeric (custom field) values."
252
- msgstr "Værdi: Kun tal.<br/>Hvis du har sorteringsudvidelsen vil dette blive brugt til sortering, så du kan sortere dine indlæg på numeriske (brugerdefineret felt) værdier."
 
 
 
253
 
254
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
255
  #: ../classes/column/comment/date.php:12
@@ -262,7 +283,10 @@ msgid ""
262
  "Value: Can be unix time stamp or a date format as described in the <a "
263
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
264
  "href='%s'>general settings</a> page."
265
- msgstr "Værdi: Kan være unix tidsstempel eller et datoformat som beskrevet i <a href='%s'>Codex</a>. Du kan ændre det viste datoformat på <a href='%s'>generalle indstillinger</a> siden."
 
 
 
266
 
267
  #: ../classes/settings.php:230
268
  msgid "Post Titles"
@@ -308,7 +332,9 @@ msgstr "Tak fordi du opdaterede til den seneste version!"
308
  msgid ""
309
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
310
  "like it."
311
- msgstr "Admin Columns er mere poleret og behageligt end nogensinde før. Vi håber du kan lide det."
 
 
312
 
313
  #: ../classes/settings.php:386
314
  msgid "What’s New"
@@ -331,12 +357,16 @@ msgid ""
331
  "Addons are now activated by downloading and installing individual plugins. "
332
  "Although these plugins will not be hosted on the wordpress.org repository, "
333
  "each Add-on will continue to receive updates in the usual way."
334
- msgstr "Udvidelser aktiveres nu ved hente og installere individuelle plugins. Selvom disse plugins ikke vil blive hosted på wordpress.org, vil disse udvidelser fortsat modtage opdatering på sædvanlig vis."
 
 
 
335
 
336
  #: ../classes/settings.php:400
337
  msgid ""
338
  "This website uses the Sortorder Addon. This addon needs to be downloaded."
339
- msgstr "Denne hjemmeside benytter Sortorder udvidelse. Denne udvidelse skal hentes."
 
340
 
341
  #: ../classes/settings.php:403
342
  msgid "Addons are seperate plugins which need to be downloaded."
@@ -364,9 +394,11 @@ msgstr "Database ændringer"
364
 
365
  #: ../classes/settings.php:419
366
  msgid ""
367
- "The database has been changed between versions 1 and 2. But we made sure you"
368
- " can still roll back to version 1x without any issues."
369
- msgstr "Databasen er blevet ændret mellem version 1 og 2. Vi har dog sikret at du stadig kan gå tilbage til version 1x uden nogen problemer."
 
 
370
 
371
  #: ../classes/settings.php:422
372
  msgid "Make sure you backup your database and then click"
@@ -382,10 +414,13 @@ msgstr "Mulige problemer"
382
 
383
  #: ../classes/settings.php:426
384
  msgid ""
385
- "Do to the sizable refactoring the code, surounding Addons and "
386
- "action/filters, your website may not operate correctly. It is important that"
387
- " you read the full"
388
- msgstr "På grund af den betydelige omstrukturering af koden omkring udvidelser og action/filters, vil din hjemmeside måske ikke fungerer korrekt. Det er vigtigt at du læser den fulde"
 
 
 
389
 
390
  #: ../classes/settings.php:426
391
  msgid "Migrating from v1 to v2"
@@ -400,7 +435,9 @@ msgstr "guide for at vise den fulde liste med ændringer."
400
  msgid ""
401
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
402
  "can fix it in the next release."
403
- msgstr "Når du har fundet en fejl, venligst <a href=\"%s\">rapporter dem til os</a> så vi kan rette det inden næste udgivelse."
 
 
404
 
405
  #: ../classes/settings.php:429
406
  msgid "Important!"
@@ -410,7 +447,9 @@ msgstr "Vigtigt!"
410
  msgid ""
411
  "If you updated the Admin Columns plugin without prior knowledge of such "
412
  "changes, Please roll back to the latest"
413
- msgstr "Hvis du har opdateret Admin Columns plugin uden tidligere viden om sådanne ændringer, venligst gå tilbage til den seneste"
 
 
414
 
415
  #: ../classes/settings.php:429
416
  msgid "version 1"
@@ -432,13 +471,16 @@ msgstr "Lær mere"
432
  msgid ""
433
  "New to v2, all Addons act as separate plugins which need to be individually "
434
  "downloaded, installed and updated."
435
- msgstr "Nyt i v2, alle udvidelser fungerer som separate plugins, der hver skal hentes, installeres og opdateres."
 
 
436
 
437
  #: ../classes/settings.php:460
438
  msgid ""
439
- "This page will assist you in downloading and installing each available "
440
- "Addon."
441
- msgstr "Denne side vil hjælpe dig med at hente og installere hver tilgængelig udvidelse."
 
442
 
443
  #: ../classes/settings.php:461
444
  msgid "Available Addons"
@@ -478,13 +520,17 @@ msgstr "Plugins > Tilføj nyt > Upload"
478
 
479
  #: ../classes/settings.php:489
480
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
481
- msgstr "Brug uploadfunktionen til at gennemse, vælge og installere din udvidelse (.zip fil)"
 
 
482
 
483
  #: ../classes/settings.php:490
484
  msgid ""
485
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
486
- " link"
487
- msgstr "Når pluginet er blevet uploadet og installeret, klik på 'Aktiver plugin' linket"
 
 
488
 
489
  #: ../classes/settings.php:491
490
  msgid "The Add-on is now installed and activated!"
@@ -494,7 +540,9 @@ msgstr "Udvidelsen er nu installeret og aktiveret!"
494
  #, php-format
495
  msgid ""
496
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
497
- msgstr "For automatisk opdatering, sikre at du har <a href='%s'>indtastet din licensnøgle</a>."
 
 
498
 
499
  #: ../classes/settings.php:502
500
  msgid "Start using Admin Columns"
@@ -515,9 +563,11 @@ msgstr "Udgiv"
515
  #: ../classes/settings.php:589
516
  #, php-format
517
  msgid ""
518
- "Warning! The %s columns data will be deleted. This cannot be undone. "
519
- "\\'OK\\' to delete, \\'Cancel\\' to stop"
520
- msgstr "Advarsel! %s kolonnernes data vil blive slettet. Dette kan ikke fortrydes. \\'OK\\' for at slette, \\'Annuller\\' for at afbryde"
 
 
521
 
522
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
523
  #: ../classes/column/post/actions.php:53
@@ -562,7 +612,9 @@ msgstr "Tjek <strong>Hjælp</strong> sektionen i toppen til højre af skærmen."
562
  msgid ""
563
  "For full documentation, bug reports, feature suggestions and other tips <a "
564
  "href='%s'>visit the Admin Columns website</a>"
565
- msgstr "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips <a href='%s'>besøg Admin Columns hjemmeside</a>"
 
 
566
 
567
  #: ../classes/settings.php:642
568
  msgid "Drag and drop to reorder"
@@ -587,7 +639,9 @@ msgstr "Vis skjulte brugerdefineret felter. Standard er <code>fra</code>."
587
  #: ../classes/settings.php:716
588
  msgid ""
589
  "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
590
- msgstr "Vis \"Rediger kolonner\" knap på administrator skærme. Standard er <code>fra</code>."
 
 
591
 
592
  #: ../classes/settings.php:723
593
  msgid "Save"
@@ -599,7 +653,9 @@ msgstr "Gendan indstillinger"
599
 
600
  #: ../classes/settings.php:764
601
  msgid "This will delete all column settings and restore the default settings."
602
- msgstr "Dette vil slette alle kolonneindstillinger og gendanne standardindstillingerne."
 
 
603
 
604
  #: ../classes/settings.php:770
605
  msgid "Restore default settings"
@@ -609,7 +665,9 @@ msgstr "Gendan standard indstillinger"
609
  msgid ""
610
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
611
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
612
- msgstr "Advarsel! Alle gemte admin kolonner data vil blive slettet. Dette kan ikke fortrydes. \\'OK\\' for at slette, \\'Annuller\\ ' for at stoppe"
 
 
613
 
614
  #: ../classes/storage_model.php:167
615
  msgid "settings succesfully restored."
@@ -685,7 +743,9 @@ msgstr "Fejl"
685
  msgid ""
686
  "Sorry. Something went wrong during the upgrade process. Please report this "
687
  "on the support forum."
688
- msgstr "Beklager. Noget gik galt i opgraderingsprocessen. Venligst rapporter dette i support forummet."
 
 
689
 
690
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
691
  msgid "Media Library"
@@ -830,7 +890,9 @@ msgstr "Antal ord"
830
  msgid ""
831
  "You are about to delete this link '%s'\n"
832
  " 'Cancel' to stop, 'OK' to delete."
833
- msgstr "Du er ved at slette dette link '%s'\n 'Annuller' for at stoppe, 'OK' for at slette."
 
 
834
 
835
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
836
  msgid "Delete"
1
+ #
2
  # Translators:
3
  # mikkelbreum <mikkel@wpkitchen.com>, 2013
4
  # iosoftgame <support@iosoftgame.com>, 2013
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
10
+ "PO-Revision-Date: 2013-11-14 15:55+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"
19
  "X-Generator: Poedit 1.5.7\n"
20
  "X-Poedit-Basepath: .\n"
21
  "X-Poedit-KeywordsList: __;_e\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPath-1: ..\n"
 
25
 
26
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
27
  msgid "Settings"
64
  msgid ""
65
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
66
  "date format here</a>."
67
+ msgstr ""
68
+ "Lad være tomt for at benytte WordPress' datoformat, ændre dit <a href=\"%s"
69
+ "\">standard datoformat her</a>."
70
 
71
  #: ../classes/column.php:784
72
  msgid "Documentation on date and time formatting."
157
  "This plugin is for adding and removing additional columns to the "
158
  "administration screens for post(types), pages, media library, comments, "
159
  "links and users. Change the column's label and reorder them."
160
+ msgstr ""
161
+ "Dette plugin er til at tilføje og fjerne tillægskolonner på "
162
+ "administrationsskærme for indlægs(typer), sider, mediebibliotek, "
163
+ "kommentarer, links og brugere. Ændre kolonnens etikette og rækkefølge."
164
 
165
  #: ../classes/settings.php:208
166
  msgid "Basics"
173
  #: ../classes/settings.php:211
174
  msgid ""
175
  "By dragging the columns you can change the order which they will appear in."
176
+ msgstr ""
177
+ "Ved at trække i kolonnerne kan du ændre rækkefølgen, som de bliver vist i."
178
 
179
  #: ../classes/settings.php:212
180
  msgid "Change label"
184
  msgid ""
185
  "By clicking on the triangle you will see the column options. Here you can "
186
  "change each label of the columns heading."
187
+ msgstr ""
188
+ "Ved at klikke på trekanten vil du se kolonne valgmuligheder. Her kan du "
189
+ "vælge hver etikette for kolonnernes overskrift. "
190
 
191
  #: ../classes/settings.php:214
192
  msgid "Change column width"
196
  msgid ""
197
  "By clicking on the triangle you will see the column options. By using the "
198
  "draggable slider you can set the width of the columns in percentages."
199
+ msgstr ""
200
+ "Tryk på trekanten for at se indstillingsmulighederne. Benyt slideren for at "
201
+ "indstille kolonnebredden."
202
 
203
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
204
  #: ../classes/column/custom-field.php:324
213
  msgid ""
214
  "The custom field colum uses the custom fields from posts and users. There "
215
  "are 10 types which you can set."
216
+ msgstr ""
217
+ "Den 'brugerdefineret felt' kolonne benytter brugerdefineret felter fra "
218
+ "indlæg og brugere. Der er 10 typer som du kan sætte."
219
 
220
  #: ../classes/settings.php:224
221
  msgid ""
222
  "Value: Can be either a string or array. Arrays will be flattened and values "
223
  "are seperated by a ',' comma."
224
+ msgstr ""
225
+ "Værdi: Kan være enten en tekststreng eller en tabel. Tabeller vil blive "
226
+ "fladtrykt og værdier separeret ved et ',' komma."
227
 
228
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
229
  #: ../classes/column/link/image.php:12
234
  msgid ""
235
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
236
  "comma )."
237
+ msgstr ""
238
+ "Værdi: skal indeholde en billede URL eller vedhæftnings ID'er ( separeret "
239
+ "ved et ',' komma )."
240
 
241
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
242
  #: ../classes/column/comment/excerpt.php:13
254
 
255
  #: ../classes/settings.php:227
256
  msgid ""
257
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
258
+ msgstr ""
259
+ "Værdi: skal være en tabel. Dette vil fladtrykke enhver ( multi dimensionel ) "
260
+ "tabel."
261
 
262
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
263
  msgid "Numeric"
267
  msgid ""
268
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
269
  "for sorting, so you can sort your posts on numeric (custom field) values."
270
+ msgstr ""
271
+ "Værdi: Kun tal.<br/>Hvis du har sorteringsudvidelsen vil dette blive brugt "
272
+ "til sortering, så du kan sortere dine indlæg på numeriske (brugerdefineret "
273
+ "felt) værdier."
274
 
275
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
276
  #: ../classes/column/comment/date.php:12
283
  "Value: Can be unix time stamp or a date format as described in the <a "
284
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
285
  "href='%s'>general settings</a> page."
286
+ msgstr ""
287
+ "Værdi: Kan være unix tidsstempel eller et datoformat som beskrevet i <a "
288
+ "href='%s'>Codex</a>. Du kan ændre det viste datoformat på <a "
289
+ "href='%s'>generalle indstillinger</a> siden."
290
 
291
  #: ../classes/settings.php:230
292
  msgid "Post Titles"
332
  msgid ""
333
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
334
  "like it."
335
+ msgstr ""
336
+ "Admin Columns er mere poleret og behageligt end nogensinde før. Vi håber du "
337
+ "kan lide det."
338
 
339
  #: ../classes/settings.php:386
340
  msgid "What’s New"
357
  "Addons are now activated by downloading and installing individual plugins. "
358
  "Although these plugins will not be hosted on the wordpress.org repository, "
359
  "each Add-on will continue to receive updates in the usual way."
360
+ msgstr ""
361
+ "Udvidelser aktiveres nu ved hente og installere individuelle plugins. Selvom "
362
+ "disse plugins ikke vil blive hosted på wordpress.org, vil disse udvidelser "
363
+ "fortsat modtage opdatering på sædvanlig vis."
364
 
365
  #: ../classes/settings.php:400
366
  msgid ""
367
  "This website uses the Sortorder Addon. This addon needs to be downloaded."
368
+ msgstr ""
369
+ "Denne hjemmeside benytter Sortorder udvidelse. Denne udvidelse skal hentes."
370
 
371
  #: ../classes/settings.php:403
372
  msgid "Addons are seperate plugins which need to be downloaded."
394
 
395
  #: ../classes/settings.php:419
396
  msgid ""
397
+ "The database has been changed between versions 1 and 2. But we made sure you "
398
+ "can still roll back to version 1x without any issues."
399
+ msgstr ""
400
+ "Databasen er blevet ændret mellem version 1 og 2. Vi har dog sikret at du "
401
+ "stadig kan gå tilbage til version 1x uden nogen problemer."
402
 
403
  #: ../classes/settings.php:422
404
  msgid "Make sure you backup your database and then click"
414
 
415
  #: ../classes/settings.php:426
416
  msgid ""
417
+ "Do to the sizable refactoring the code, surounding Addons and action/"
418
+ "filters, your website may not operate correctly. It is important that you "
419
+ "read the full"
420
+ msgstr ""
421
+ "På grund af den betydelige omstrukturering af koden omkring udvidelser og "
422
+ "action/filters, vil din hjemmeside måske ikke fungerer korrekt. Det er "
423
+ "vigtigt at du læser den fulde"
424
 
425
  #: ../classes/settings.php:426
426
  msgid "Migrating from v1 to v2"
435
  msgid ""
436
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
437
  "can fix it in the next release."
438
+ msgstr ""
439
+ "Når du har fundet en fejl, venligst <a href=\"%s\">rapporter dem til os</a> "
440
+ "så vi kan rette det inden næste udgivelse."
441
 
442
  #: ../classes/settings.php:429
443
  msgid "Important!"
447
  msgid ""
448
  "If you updated the Admin Columns plugin without prior knowledge of such "
449
  "changes, Please roll back to the latest"
450
+ msgstr ""
451
+ "Hvis du har opdateret Admin Columns plugin uden tidligere viden om sådanne "
452
+ "ændringer, venligst gå tilbage til den seneste"
453
 
454
  #: ../classes/settings.php:429
455
  msgid "version 1"
471
  msgid ""
472
  "New to v2, all Addons act as separate plugins which need to be individually "
473
  "downloaded, installed and updated."
474
+ msgstr ""
475
+ "Nyt i v2, alle udvidelser fungerer som separate plugins, der hver skal "
476
+ "hentes, installeres og opdateres."
477
 
478
  #: ../classes/settings.php:460
479
  msgid ""
480
+ "This page will assist you in downloading and installing each available Addon."
481
+ msgstr ""
482
+ "Denne side vil hjælpe dig med at hente og installere hver tilgængelig "
483
+ "udvidelse."
484
 
485
  #: ../classes/settings.php:461
486
  msgid "Available Addons"
520
 
521
  #: ../classes/settings.php:489
522
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
523
+ msgstr ""
524
+ "Brug uploadfunktionen til at gennemse, vælge og installere din udvidelse (."
525
+ "zip fil)"
526
 
527
  #: ../classes/settings.php:490
528
  msgid ""
529
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
530
+ "link"
531
+ msgstr ""
532
+ "Når pluginet er blevet uploadet og installeret, klik på 'Aktiver plugin' "
533
+ "linket"
534
 
535
  #: ../classes/settings.php:491
536
  msgid "The Add-on is now installed and activated!"
540
  #, php-format
541
  msgid ""
542
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
543
+ msgstr ""
544
+ "For automatisk opdatering, sikre at du har <a href='%s'>indtastet din "
545
+ "licensnøgle</a>."
546
 
547
  #: ../classes/settings.php:502
548
  msgid "Start using Admin Columns"
563
  #: ../classes/settings.php:589
564
  #, php-format
565
  msgid ""
566
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
567
+ "\\' to delete, \\'Cancel\\' to stop"
568
+ msgstr ""
569
+ "Advarsel! %s kolonnernes data vil blive slettet. Dette kan ikke fortrydes. "
570
+ "\\'OK\\' for at slette, \\'Annuller\\' for at afbryde"
571
 
572
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
573
  #: ../classes/column/post/actions.php:53
612
  msgid ""
613
  "For full documentation, bug reports, feature suggestions and other tips <a "
614
  "href='%s'>visit the Admin Columns website</a>"
615
+ msgstr ""
616
+ "For fuld dokumentation, fejlrapporter, forslag til funktioner og andre tips "
617
+ "<a href='%s'>besøg Admin Columns hjemmeside</a>"
618
 
619
  #: ../classes/settings.php:642
620
  msgid "Drag and drop to reorder"
639
  #: ../classes/settings.php:716
640
  msgid ""
641
  "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
642
+ msgstr ""
643
+ "Vis \"Rediger kolonner\" knap på administrator skærme. Standard er "
644
+ "<code>fra</code>."
645
 
646
  #: ../classes/settings.php:723
647
  msgid "Save"
653
 
654
  #: ../classes/settings.php:764
655
  msgid "This will delete all column settings and restore the default settings."
656
+ msgstr ""
657
+ "Dette vil slette alle kolonneindstillinger og gendanne "
658
+ "standardindstillingerne."
659
 
660
  #: ../classes/settings.php:770
661
  msgid "Restore default settings"
665
  msgid ""
666
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
667
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
668
+ msgstr ""
669
+ "Advarsel! Alle gemte admin kolonner data vil blive slettet. Dette kan ikke "
670
+ "fortrydes. \\'OK\\' for at slette, \\'Annuller\\ ' for at stoppe"
671
 
672
  #: ../classes/storage_model.php:167
673
  msgid "settings succesfully restored."
743
  msgid ""
744
  "Sorry. Something went wrong during the upgrade process. Please report this "
745
  "on the support forum."
746
+ msgstr ""
747
+ "Beklager. Noget gik galt i opgraderingsprocessen. Venligst rapporter dette i "
748
+ "support forummet."
749
 
750
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
751
  msgid "Media Library"
890
  msgid ""
891
  "You are about to delete this link '%s'\n"
892
  " 'Cancel' to stop, 'OK' to delete."
893
+ msgstr ""
894
+ "Du er ved at slette dette link '%s'\n"
895
+ " 'Annuller' for at stoppe, 'OK' for at slette."
896
 
897
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
898
  msgid "Delete"
languages/cpac-de_DE.mo CHANGED
Binary file
languages/cpac-de_DE.po CHANGED
@@ -1,13 +1,14 @@
1
- #
2
  # Translators:
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Admin Columns\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
8
- "PO-Revision-Date: 2013-08-29 09:27+0000\n"
9
- "Last-Translator: codepress <info@codepress.nl>\n"
10
- "Language-Team: German (Germany) (http://www.transifex.com/projects/p/admin-columns/language/de_DE/)\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,9 +17,9 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-Basepath: .\n"
18
  "X-Poedit-KeywordsList: __;_e\n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPath-1: ..\n"
21
- "X-Poedit-SourceCharset: utf-8\n"
22
 
23
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
24
  msgid "Settings"
@@ -235,8 +236,7 @@ msgstr "Multiple Werte"
235
 
236
  #: ../classes/settings.php:227
237
  msgid ""
238
- "Value: should be an array. This will flatten any ( multi dimensional ) "
239
- "array."
240
  msgstr ""
241
 
242
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
@@ -362,8 +362,8 @@ msgstr ""
362
 
363
  #: ../classes/settings.php:419
364
  msgid ""
365
- "The database has been changed between versions 1 and 2. But we made sure you"
366
- " can still roll back to version 1x without any issues."
367
  msgstr ""
368
 
369
  #: ../classes/settings.php:422
@@ -380,9 +380,9 @@ msgstr ""
380
 
381
  #: ../classes/settings.php:426
382
  msgid ""
383
- "Do to the sizable refactoring the code, surounding Addons and "
384
- "action/filters, your website may not operate correctly. It is important that"
385
- " you read the full"
386
  msgstr ""
387
 
388
  #: ../classes/settings.php:426
@@ -434,8 +434,7 @@ msgstr ""
434
 
435
  #: ../classes/settings.php:460
436
  msgid ""
437
- "This page will assist you in downloading and installing each available "
438
- "Addon."
439
  msgstr ""
440
 
441
  #: ../classes/settings.php:461
@@ -480,8 +479,8 @@ msgstr ""
480
 
481
  #: ../classes/settings.php:490
482
  msgid ""
483
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
484
- " link"
485
  msgstr ""
486
 
487
  #: ../classes/settings.php:491
@@ -513,8 +512,8 @@ msgstr ""
513
  #: ../classes/settings.php:589
514
  #, php-format
515
  msgid ""
516
- "Warning! The %s columns data will be deleted. This cannot be undone. "
517
- "\\'OK\\' to delete, \\'Cancel\\' to stop"
518
  msgstr ""
519
 
520
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
@@ -597,7 +596,9 @@ msgstr ""
597
 
598
  #: ../classes/settings.php:764
599
  msgid "This will delete all column settings and restore the default settings."
600
- msgstr "Alle Einstellungen werden gelöscht und die Voreinstellungen wiederhergestellt."
 
 
601
 
602
  #: ../classes/settings.php:770
603
  msgid "Restore default settings"
@@ -607,7 +608,9 @@ msgstr "Vorgabewerte wiederherstellen"
607
  msgid ""
608
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
609
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
610
- msgstr "Warnung! Alle Admin Spalteneinstellungen werden endgültig gelöscht. \\'OK\\' zum Löschen, \\'Cancel\\' für Abbruch"
 
 
611
 
612
  #: ../classes/storage_model.php:167
613
  msgid "settings succesfully restored."
@@ -828,7 +831,9 @@ msgstr "Anzahl Worte"
828
  msgid ""
829
  "You are about to delete this link '%s'\n"
830
  " 'Cancel' to stop, 'OK' to delete."
831
- msgstr "Sie sind dabei diesen Link zu löschen '%s'\n 'Cancel' um Abzubrechen, 'OK' zum Löschen."
 
 
832
 
833
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
834
  msgid "Delete"
1
+ #
2
  # Translators:
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Admin Columns\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
8
+ "PO-Revision-Date: 2013-11-14 15:55+0100\n"
9
+ "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: German (Germany) (http://www.transifex.com/projects/p/admin-"
11
+ "columns/language/de_DE/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
17
  "X-Generator: Poedit 1.5.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
 
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
236
 
237
  #: ../classes/settings.php:227
238
  msgid ""
239
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
240
  msgstr ""
241
 
242
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
362
 
363
  #: ../classes/settings.php:419
364
  msgid ""
365
+ "The database has been changed between versions 1 and 2. But we made sure you "
366
+ "can still roll back to version 1x without any issues."
367
  msgstr ""
368
 
369
  #: ../classes/settings.php:422
380
 
381
  #: ../classes/settings.php:426
382
  msgid ""
383
+ "Do to the sizable refactoring the code, surounding Addons and action/"
384
+ "filters, your website may not operate correctly. It is important that you "
385
+ "read the full"
386
  msgstr ""
387
 
388
  #: ../classes/settings.php:426
434
 
435
  #: ../classes/settings.php:460
436
  msgid ""
437
+ "This page will assist you in downloading and installing each available Addon."
 
438
  msgstr ""
439
 
440
  #: ../classes/settings.php:461
479
 
480
  #: ../classes/settings.php:490
481
  msgid ""
482
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
483
+ "link"
484
  msgstr ""
485
 
486
  #: ../classes/settings.php:491
512
  #: ../classes/settings.php:589
513
  #, php-format
514
  msgid ""
515
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
516
+ "\\' to delete, \\'Cancel\\' to stop"
517
  msgstr ""
518
 
519
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
596
 
597
  #: ../classes/settings.php:764
598
  msgid "This will delete all column settings and restore the default settings."
599
+ msgstr ""
600
+ "Alle Einstellungen werden gelöscht und die Voreinstellungen "
601
+ "wiederhergestellt."
602
 
603
  #: ../classes/settings.php:770
604
  msgid "Restore default settings"
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
+ msgstr ""
612
+ "Warnung! Alle Admin Spalteneinstellungen werden endgültig gelöscht. \\'OK\\' "
613
+ "zum Löschen, \\'Cancel\\' für Abbruch"
614
 
615
  #: ../classes/storage_model.php:167
616
  msgid "settings succesfully restored."
831
  msgid ""
832
  "You are about to delete this link '%s'\n"
833
  " 'Cancel' to stop, 'OK' to delete."
834
+ msgstr ""
835
+ "Sie sind dabei diesen Link zu löschen '%s'\n"
836
+ " 'Cancel' um Abzubrechen, 'OK' zum Löschen."
837
 
838
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
839
  msgid "Delete"
languages/cpac-es_ES.mo CHANGED
Binary file
languages/cpac-es_ES.po CHANGED
@@ -1,4 +1,4 @@
1
- #
2
  # Translators:
3
  # redywebs <correo.1@redywebs.com>, 2013
4
  msgid ""
@@ -6,9 +6,10 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-08-29 09:44+0000\n"
10
- "Last-Translator: redywebs <correo.1@redywebs.com>\n"
11
- "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/admin-columns/language/es_ES/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -17,9 +18,9 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
- "X-Poedit-SourceCharset: utf-8\n"
23
 
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
@@ -62,7 +63,9 @@ msgstr "Ejemplo:"
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
- msgstr "Dejar vacío para mantener el formato de fecha de WordPress. Se puede cambiar el <a href=\\\"%s\\\">formato predeterminado aquí</a>."
 
 
66
 
67
  #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
@@ -153,7 +156,11 @@ msgid ""
153
  "This plugin is for adding and removing additional columns to the "
154
  "administration screens for post(types), pages, media library, comments, "
155
  "links and users. Change the column's label and reorder them."
156
- msgstr "Este plugin es para agregar y quitar columnas adicionales a las pantallas de administración de entradas, entradas personalizadas, páginas, biblioteca multimedia, comentarios, enlaces y usuarios. Cambiar etiquetas de columnas y reordenarlas."
 
 
 
 
157
 
158
  #: ../classes/settings.php:208
159
  msgid "Basics"
@@ -176,7 +183,9 @@ msgstr "Cambiar etiqueta"
176
  msgid ""
177
  "By clicking on the triangle you will see the column options. Here you can "
178
  "change each label of the columns heading."
179
- msgstr "Al hacer clic en el triángulo verás las opciones de columna. Aquí se puede cambiar la etiqueta de cada una de las cabeceras de columna."
 
 
180
 
181
  #: ../classes/settings.php:214
182
  msgid "Change column width"
@@ -186,7 +195,10 @@ msgstr "Cambiar ancho de columna"
186
  msgid ""
187
  "By clicking on the triangle you will see the column options. By using the "
188
  "draggable slider you can set the width of the columns in percentages."
189
- msgstr "Al hacer clic en el triángulo se mostrarán las opciones de columna. Al utilizar el control deslizante se puede ajustar el ancho de las columnas en porcentajes."
 
 
 
190
 
191
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
  #: ../classes/column/custom-field.php:324
@@ -201,13 +213,17 @@ msgstr "Columna 'Campo personalizado'"
201
  msgid ""
202
  "The custom field colum uses the custom fields from posts and users. There "
203
  "are 10 types which you can set."
204
- msgstr "La columna de campo personalizado utiliza los campos personalizados de las entradas y usuarios. Hay 10 tipos que se pueden definir."
 
 
205
 
206
  #: ../classes/settings.php:224
207
  msgid ""
208
  "Value: Can be either a string or array. Arrays will be flattened and values "
209
  "are seperated by a ',' comma."
210
- msgstr "Valor: Puede ser una 'string' o un 'array'. Los 'arrays' se corrigen y los valores se separan por una coma ','."
 
 
211
 
212
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
  #: ../classes/column/link/image.php:12
@@ -218,7 +234,9 @@ msgstr "Imagen"
218
  msgid ""
219
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
  "comma )."
221
- msgstr "Valor: debe contener una URL de imagen o ID del adjunto (separados por coma ',')."
 
 
222
 
223
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
  #: ../classes/column/comment/excerpt.php:13
@@ -228,7 +246,8 @@ msgstr "Extracto"
228
 
229
  #: ../classes/settings.php:226
230
  msgid "Value: This will show the first 20 words of the Post content."
231
- msgstr "Valor: Esto mostrará las primeras 20 palabras del contenido de la entrada."
 
232
 
233
  #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
234
  msgid "Multiple Values"
@@ -236,9 +255,10 @@ msgstr "Valores múltiples"
236
 
237
  #: ../classes/settings.php:227
238
  msgid ""
239
- "Value: should be an array. This will flatten any ( multi dimensional ) "
240
- "array."
241
- msgstr "Valor: debe ser un 'array'. Esto corregirá cualquier 'array' (multidimensional)."
 
242
 
243
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
244
  msgid "Numeric"
@@ -248,7 +268,10 @@ msgstr "Numérico"
248
  msgid ""
249
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
  "for sorting, so you can sort your posts on numeric (custom field) values."
251
- msgstr "Valor: Sólo enteros<br/>Si tiene el 'complemento de orden', será utilizado para la reordenación, así puede ordenar las entradas por los valores numéricos de los campos personalizados."
 
 
 
252
 
253
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
  #: ../classes/column/comment/date.php:12
@@ -261,7 +284,10 @@ msgid ""
261
  "Value: Can be unix time stamp or a date format as described in the <a "
262
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
  "href='%s'>general settings</a> page."
264
- msgstr "Valor: Puede ser marcador de tiempo Unix o formato de fecha tal como se describe en el <a href='%s'>Codex</a>. Se puede cambiar el formato de fecha en la <a href='%s'>configuración general</a>."
 
 
 
265
 
266
  #: ../classes/settings.php:230
267
  msgid "Post Titles"
@@ -307,7 +333,9 @@ msgstr "¡Gracias por actualizar a la versión más reciente!"
307
  msgid ""
308
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
  "like it."
310
- msgstr "Columnas de Administración está más pulido y práctico que nunca. Esperamos te guste."
 
 
311
 
312
  #: ../classes/settings.php:386
313
  msgid "What’s New"
@@ -330,16 +358,23 @@ msgid ""
330
  "Addons are now activated by downloading and installing individual plugins. "
331
  "Although these plugins will not be hosted on the wordpress.org repository, "
332
  "each Add-on will continue to receive updates in the usual way."
333
- msgstr "Los complementos son ahora activados descargando e instalando los plugins independientes. Aunque estos plugins no estén alojados en el repositorio de wordpress.org, cada complemento continuará recibiendo actualizaciones de la forma habitual."
 
 
 
 
334
 
335
  #: ../classes/settings.php:400
336
  msgid ""
337
  "This website uses the Sortorder Addon. This addon needs to be downloaded."
338
- msgstr "Este sitio web utiliza el Complemento de Ordenar. Este complemento necesita ser descargado."
 
 
339
 
340
  #: ../classes/settings.php:403
341
  msgid "Addons are seperate plugins which need to be downloaded."
342
- msgstr "Los complementos son plugins independientes que es necesario descargar."
 
343
 
344
  #: ../classes/settings.php:403
345
  msgid "Download your Addons"
@@ -363,13 +398,17 @@ msgstr "Cambios de la Base de datos"
363
 
364
  #: ../classes/settings.php:419
365
  msgid ""
366
- "The database has been changed between versions 1 and 2. But we made sure you"
367
- " can still roll back to version 1x without any issues."
368
- msgstr "La base de datos ha sufrido cambios entre las versiones 1 y 2. Pero nos hemos asegurado de que se pueda revertir a la versión 1x sin ningún problema."
 
 
369
 
370
  #: ../classes/settings.php:422
371
  msgid "Make sure you backup your database and then click"
372
- msgstr "Asegúrate de realizar copias de seguridad de tu base de datos antes de hacer clic"
 
 
373
 
374
  #: ../classes/settings.php:422 ../classes/upgrade.php:97
375
  msgid "Upgrade Database"
@@ -381,10 +420,13 @@ msgstr "Problemas potenciales"
381
 
382
  #: ../classes/settings.php:426
383
  msgid ""
384
- "Do to the sizable refactoring the code, surounding Addons and "
385
- "action/filters, your website may not operate correctly. It is important that"
386
- " you read the full"
387
- msgstr "Debido al considerable retoque del código, los complementos adicionales y acciones/filtros, puede que el sitio web no funcione correctamente. Es importante que leas completamente la"
 
 
 
388
 
389
  #: ../classes/settings.php:426
390
  msgid "Migrating from v1 to v2"
@@ -399,7 +441,9 @@ msgstr "guía para ver la lista completa de cambios."
399
  msgid ""
400
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
  "can fix it in the next release."
402
- msgstr "Cuando encuentres un error, por favor <a href=\"%s\">comunícanoslo</a> para que podamos solucionarlo en la siguiente versión."
 
 
403
 
404
  #: ../classes/settings.php:429
405
  msgid "Important!"
@@ -409,7 +453,9 @@ msgstr "¡Importante!"
409
  msgid ""
410
  "If you updated the Admin Columns plugin without prior knowledge of such "
411
  "changes, Please roll back to the latest"
412
- msgstr "Si has actualizado el plugin Columnas de administración sin conocimiento previo de estos cambios, por favor por favor revertir a la última"
 
 
413
 
414
  #: ../classes/settings.php:429
415
  msgid "version 1"
@@ -431,13 +477,15 @@ msgstr "Más información"
431
  msgid ""
432
  "New to v2, all Addons act as separate plugins which need to be individually "
433
  "downloaded, installed and updated."
434
- msgstr "Nuevo en v2, todos los Complementos actúan como plugins separados que necesitan ser descargados, instalados y actualizados de forma independiente."
 
 
435
 
436
  #: ../classes/settings.php:460
437
  msgid ""
438
- "This page will assist you in downloading and installing each available "
439
- "Addon."
440
- msgstr "Esta página te ayudará a descargar e instalar los complementos disponibles."
441
 
442
  #: ../classes/settings.php:461
443
  msgid "Available Addons"
@@ -477,13 +525,17 @@ msgstr "Plugins > Añadir nuevo > Subir"
477
 
478
  #: ../classes/settings.php:489
479
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
480
- msgstr "Usa el cargador para navegar, seleccionar e instalar tu complemento (archivo .zip) "
 
 
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
- " link"
486
- msgstr "Una vez el plugin haya sido cargado e instalado, haz clic en el enlace 'Activar Plugin'"
 
 
487
 
488
  #: ../classes/settings.php:491
489
  msgid "The Add-on is now installed and activated!"
@@ -493,7 +545,9 @@ msgstr "El complemento ha sido cargado y activado"
493
  #, php-format
494
  msgid ""
495
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
496
- msgstr "Para las actualizaciones automáticas asegúrate de <a href='%s'>introducir la clave de tu licencia</a>."
 
 
497
 
498
  #: ../classes/settings.php:502
499
  msgid "Start using Admin Columns"
@@ -514,9 +568,11 @@ msgstr "Publicar"
514
  #: ../classes/settings.php:589
515
  #, php-format
516
  msgid ""
517
- "Warning! The %s columns data will be deleted. This cannot be undone. "
518
- "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
- msgstr "¡Advertencia! Se borrarán %s columnas de datos. Esto no se puede deshacer. \\'Aceptar\\' para eliminar, \\'Cancelar\\' para detener"
 
 
520
 
521
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
  #: ../classes/column/post/actions.php:53
@@ -554,14 +610,19 @@ msgstr "Ayuda"
554
 
555
  #: ../classes/settings.php:620
556
  msgid "Check the <strong>Help</strong> section in the top-right screen."
557
- msgstr "Comprueba la sección de <strong>Ayuda</strong> arriba a la derecha de la pantalla."
 
 
558
 
559
  #: ../classes/settings.php:622
560
  #, php-format
561
  msgid ""
562
  "For full documentation, bug reports, feature suggestions and other tips <a "
563
  "href='%s'>visit the Admin Columns website</a>"
564
- msgstr "Para obtener la documentación completa, informes de errores, sugerencias y otros consejos, <a href='%s'>visitar la página web de Columnas de administración</a>"
 
 
 
565
 
566
  #: ../classes/settings.php:642
567
  msgid "Drag and drop to reorder"
@@ -581,12 +642,16 @@ msgstr "Personaliza los ajustes de las Columnas de administración."
581
 
582
  #: ../classes/settings.php:710
583
  msgid "Show hidden custom fields. Default is <code>off</code>."
584
- msgstr "Mostrar campos personalizados ocultos. El valor predeterminado es <code>off</code>."
 
 
585
 
586
  #: ../classes/settings.php:716
587
  msgid ""
588
  "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
589
- msgstr "Mostrar el botón \"Editar columnas\" en la administración. El valor predeterminado es <code>off</code>."
 
 
590
 
591
  #: ../classes/settings.php:723
592
  msgid "Save"
@@ -598,7 +663,9 @@ msgstr "Restaurar ajustes"
598
 
599
  #: ../classes/settings.php:764
600
  msgid "This will delete all column settings and restore the default settings."
601
- msgstr "Esto eliminará todos los ajustes de columnas y restaurará la configuración predeterminada."
 
 
602
 
603
  #: ../classes/settings.php:770
604
  msgid "Restore default settings"
@@ -608,7 +675,10 @@ msgstr "Restaurar ajustes predeterminados"
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
- msgstr "¡Advertencia! Se borrarán todos los datos de columnas de administrador guardadas. Esto no se puede deshacer. \\'Aceptar\\' para eliminar, \\'Cancelar\\' para detener"
 
 
 
612
 
613
  #: ../classes/storage_model.php:167
614
  msgid "settings succesfully restored."
@@ -684,7 +754,9 @@ msgstr "Error"
684
  msgid ""
685
  "Sorry. Something went wrong during the upgrade process. Please report this "
686
  "on the support forum."
687
- msgstr "Lo sentimos. Algo salió mal durante el proceso de actualización. Por favor, informa de esto en el foro de soporte."
 
 
688
 
689
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
690
  msgid "Media Library"
@@ -829,7 +901,9 @@ msgstr "Número de palabras"
829
  msgid ""
830
  "You are about to delete this link '%s'\n"
831
  " 'Cancel' to stop, 'OK' to delete."
832
- msgstr "Estás a punto de borrar este enlace'%s⏎\n\\'Cancelar\\' para para detener, \\'Aceptar\\' para borrar."
 
 
833
 
834
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
  msgid "Delete"
1
+ #
2
  # Translators:
3
  # redywebs <correo.1@redywebs.com>, 2013
4
  msgid ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-11-14 15:55+0100\n"
10
+ "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/admin-"
12
+ "columns/language/es_ES/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
18
  "X-Generator: Poedit 1.5.7\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
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
  msgid "Settings"
63
  msgid ""
64
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
65
  "date format here</a>."
66
+ msgstr ""
67
+ "Dejar vacío para mantener el formato de fecha de WordPress. Se puede cambiar "
68
+ "el <a href=\\\"%s\\\">formato predeterminado aquí</a>."
69
 
70
  #: ../classes/column.php:784
71
  msgid "Documentation on date and time formatting."
156
  "This plugin is for adding and removing additional columns to the "
157
  "administration screens for post(types), pages, media library, comments, "
158
  "links and users. Change the column's label and reorder them."
159
+ msgstr ""
160
+ "Este plugin es para agregar y quitar columnas adicionales a las pantallas de "
161
+ "administración de entradas, entradas personalizadas, páginas, biblioteca "
162
+ "multimedia, comentarios, enlaces y usuarios. Cambiar etiquetas de columnas y "
163
+ "reordenarlas."
164
 
165
  #: ../classes/settings.php:208
166
  msgid "Basics"
183
  msgid ""
184
  "By clicking on the triangle you will see the column options. Here you can "
185
  "change each label of the columns heading."
186
+ msgstr ""
187
+ "Al hacer clic en el triángulo verás las opciones de columna. Aquí se puede "
188
+ "cambiar la etiqueta de cada una de las cabeceras de columna."
189
 
190
  #: ../classes/settings.php:214
191
  msgid "Change column width"
195
  msgid ""
196
  "By clicking on the triangle you will see the column options. By using the "
197
  "draggable slider you can set the width of the columns in percentages."
198
+ msgstr ""
199
+ "Al hacer clic en el triángulo se mostrarán las opciones de columna. Al "
200
+ "utilizar el control deslizante se puede ajustar el ancho de las columnas en "
201
+ "porcentajes."
202
 
203
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
204
  #: ../classes/column/custom-field.php:324
213
  msgid ""
214
  "The custom field colum uses the custom fields from posts and users. There "
215
  "are 10 types which you can set."
216
+ msgstr ""
217
+ "La columna de campo personalizado utiliza los campos personalizados de las "
218
+ "entradas y usuarios. Hay 10 tipos que se pueden definir."
219
 
220
  #: ../classes/settings.php:224
221
  msgid ""
222
  "Value: Can be either a string or array. Arrays will be flattened and values "
223
  "are seperated by a ',' comma."
224
+ msgstr ""
225
+ "Valor: Puede ser una 'string' o un 'array'. Los 'arrays' se corrigen y los "
226
+ "valores se separan por una coma ','."
227
 
228
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
229
  #: ../classes/column/link/image.php:12
234
  msgid ""
235
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
236
  "comma )."
237
+ msgstr ""
238
+ "Valor: debe contener una URL de imagen o ID del adjunto (separados por coma "
239
+ "',')."
240
 
241
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
242
  #: ../classes/column/comment/excerpt.php:13
246
 
247
  #: ../classes/settings.php:226
248
  msgid "Value: This will show the first 20 words of the Post content."
249
+ msgstr ""
250
+ "Valor: Esto mostrará las primeras 20 palabras del contenido de la entrada."
251
 
252
  #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
253
  msgid "Multiple Values"
255
 
256
  #: ../classes/settings.php:227
257
  msgid ""
258
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
259
+ msgstr ""
260
+ "Valor: debe ser un 'array'. Esto corregirá cualquier "
261
+ "'array' (multidimensional)."
262
 
263
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
264
  msgid "Numeric"
268
  msgid ""
269
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
270
  "for sorting, so you can sort your posts on numeric (custom field) values."
271
+ msgstr ""
272
+ "Valor: Sólo enteros<br/>Si tiene el 'complemento de orden', será utilizado "
273
+ "para la reordenación, así puede ordenar las entradas por los valores "
274
+ "numéricos de los campos personalizados."
275
 
276
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
277
  #: ../classes/column/comment/date.php:12
284
  "Value: Can be unix time stamp or a date format as described in the <a "
285
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
286
  "href='%s'>general settings</a> page."
287
+ msgstr ""
288
+ "Valor: Puede ser marcador de tiempo Unix o formato de fecha tal como se "
289
+ "describe en el <a href='%s'>Codex</a>. Se puede cambiar el formato de fecha "
290
+ "en la <a href='%s'>configuración general</a>."
291
 
292
  #: ../classes/settings.php:230
293
  msgid "Post Titles"
333
  msgid ""
334
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
335
  "like it."
336
+ msgstr ""
337
+ "Columnas de Administración está más pulido y práctico que nunca. Esperamos "
338
+ "te guste."
339
 
340
  #: ../classes/settings.php:386
341
  msgid "What’s New"
358
  "Addons are now activated by downloading and installing individual plugins. "
359
  "Although these plugins will not be hosted on the wordpress.org repository, "
360
  "each Add-on will continue to receive updates in the usual way."
361
+ msgstr ""
362
+ "Los complementos son ahora activados descargando e instalando los plugins "
363
+ "independientes. Aunque estos plugins no estén alojados en el repositorio de "
364
+ "wordpress.org, cada complemento continuará recibiendo actualizaciones de la "
365
+ "forma habitual."
366
 
367
  #: ../classes/settings.php:400
368
  msgid ""
369
  "This website uses the Sortorder Addon. This addon needs to be downloaded."
370
+ msgstr ""
371
+ "Este sitio web utiliza el Complemento de Ordenar. Este complemento necesita "
372
+ "ser descargado."
373
 
374
  #: ../classes/settings.php:403
375
  msgid "Addons are seperate plugins which need to be downloaded."
376
+ msgstr ""
377
+ "Los complementos son plugins independientes que es necesario descargar."
378
 
379
  #: ../classes/settings.php:403
380
  msgid "Download your Addons"
398
 
399
  #: ../classes/settings.php:419
400
  msgid ""
401
+ "The database has been changed between versions 1 and 2. But we made sure you "
402
+ "can still roll back to version 1x without any issues."
403
+ msgstr ""
404
+ "La base de datos ha sufrido cambios entre las versiones 1 y 2. Pero nos "
405
+ "hemos asegurado de que se pueda revertir a la versión 1x sin ningún problema."
406
 
407
  #: ../classes/settings.php:422
408
  msgid "Make sure you backup your database and then click"
409
+ msgstr ""
410
+ "Asegúrate de realizar copias de seguridad de tu base de datos antes de hacer "
411
+ "clic"
412
 
413
  #: ../classes/settings.php:422 ../classes/upgrade.php:97
414
  msgid "Upgrade Database"
420
 
421
  #: ../classes/settings.php:426
422
  msgid ""
423
+ "Do to the sizable refactoring the code, surounding Addons and action/"
424
+ "filters, your website may not operate correctly. It is important that you "
425
+ "read the full"
426
+ msgstr ""
427
+ "Debido al considerable retoque del código, los complementos adicionales y "
428
+ "acciones/filtros, puede que el sitio web no funcione correctamente. Es "
429
+ "importante que leas completamente la"
430
 
431
  #: ../classes/settings.php:426
432
  msgid "Migrating from v1 to v2"
441
  msgid ""
442
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
443
  "can fix it in the next release."
444
+ msgstr ""
445
+ "Cuando encuentres un error, por favor <a href=\"%s\">comunícanoslo</a> para "
446
+ "que podamos solucionarlo en la siguiente versión."
447
 
448
  #: ../classes/settings.php:429
449
  msgid "Important!"
453
  msgid ""
454
  "If you updated the Admin Columns plugin without prior knowledge of such "
455
  "changes, Please roll back to the latest"
456
+ msgstr ""
457
+ "Si has actualizado el plugin Columnas de administración sin conocimiento "
458
+ "previo de estos cambios, por favor por favor revertir a la última"
459
 
460
  #: ../classes/settings.php:429
461
  msgid "version 1"
477
  msgid ""
478
  "New to v2, all Addons act as separate plugins which need to be individually "
479
  "downloaded, installed and updated."
480
+ msgstr ""
481
+ "Nuevo en v2, todos los Complementos actúan como plugins separados que "
482
+ "necesitan ser descargados, instalados y actualizados de forma independiente."
483
 
484
  #: ../classes/settings.php:460
485
  msgid ""
486
+ "This page will assist you in downloading and installing each available Addon."
487
+ msgstr ""
488
+ "Esta página te ayudará a descargar e instalar los complementos disponibles."
489
 
490
  #: ../classes/settings.php:461
491
  msgid "Available Addons"
525
 
526
  #: ../classes/settings.php:489
527
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
528
+ msgstr ""
529
+ "Usa el cargador para navegar, seleccionar e instalar tu complemento "
530
+ "(archivo .zip) "
531
 
532
  #: ../classes/settings.php:490
533
  msgid ""
534
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
535
+ "link"
536
+ msgstr ""
537
+ "Una vez el plugin haya sido cargado e instalado, haz clic en el enlace "
538
+ "'Activar Plugin'"
539
 
540
  #: ../classes/settings.php:491
541
  msgid "The Add-on is now installed and activated!"
545
  #, php-format
546
  msgid ""
547
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
548
+ msgstr ""
549
+ "Para las actualizaciones automáticas asegúrate de <a href='%s'>introducir la "
550
+ "clave de tu licencia</a>."
551
 
552
  #: ../classes/settings.php:502
553
  msgid "Start using Admin Columns"
568
  #: ../classes/settings.php:589
569
  #, php-format
570
  msgid ""
571
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
572
+ "\\' to delete, \\'Cancel\\' to stop"
573
+ msgstr ""
574
+ "¡Advertencia! Se borrarán %s columnas de datos. Esto no se puede deshacer. "
575
+ "\\'Aceptar\\' para eliminar, \\'Cancelar\\' para detener"
576
 
577
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
578
  #: ../classes/column/post/actions.php:53
610
 
611
  #: ../classes/settings.php:620
612
  msgid "Check the <strong>Help</strong> section in the top-right screen."
613
+ msgstr ""
614
+ "Comprueba la sección de <strong>Ayuda</strong> arriba a la derecha de la "
615
+ "pantalla."
616
 
617
  #: ../classes/settings.php:622
618
  #, php-format
619
  msgid ""
620
  "For full documentation, bug reports, feature suggestions and other tips <a "
621
  "href='%s'>visit the Admin Columns website</a>"
622
+ msgstr ""
623
+ "Para obtener la documentación completa, informes de errores, sugerencias y "
624
+ "otros consejos, <a href='%s'>visitar la página web de Columnas de "
625
+ "administración</a>"
626
 
627
  #: ../classes/settings.php:642
628
  msgid "Drag and drop to reorder"
642
 
643
  #: ../classes/settings.php:710
644
  msgid "Show hidden custom fields. Default is <code>off</code>."
645
+ msgstr ""
646
+ "Mostrar campos personalizados ocultos. El valor predeterminado es <code>off</"
647
+ "code>."
648
 
649
  #: ../classes/settings.php:716
650
  msgid ""
651
  "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
652
+ msgstr ""
653
+ "Mostrar el botón \"Editar columnas\" en la administración. El valor "
654
+ "predeterminado es <code>off</code>."
655
 
656
  #: ../classes/settings.php:723
657
  msgid "Save"
663
 
664
  #: ../classes/settings.php:764
665
  msgid "This will delete all column settings and restore the default settings."
666
+ msgstr ""
667
+ "Esto eliminará todos los ajustes de columnas y restaurará la configuración "
668
+ "predeterminada."
669
 
670
  #: ../classes/settings.php:770
671
  msgid "Restore default settings"
675
  msgid ""
676
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
677
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
678
+ msgstr ""
679
+ "¡Advertencia! Se borrarán todos los datos de columnas de administrador "
680
+ "guardadas. Esto no se puede deshacer. \\'Aceptar\\' para eliminar, "
681
+ "\\'Cancelar\\' para detener"
682
 
683
  #: ../classes/storage_model.php:167
684
  msgid "settings succesfully restored."
754
  msgid ""
755
  "Sorry. Something went wrong during the upgrade process. Please report this "
756
  "on the support forum."
757
+ msgstr ""
758
+ "Lo sentimos. Algo salió mal durante el proceso de actualización. Por favor, "
759
+ "informa de esto en el foro de soporte."
760
 
761
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
762
  msgid "Media Library"
901
  msgid ""
902
  "You are about to delete this link '%s'\n"
903
  " 'Cancel' to stop, 'OK' to delete."
904
+ msgstr ""
905
+ "Estás a punto de borrar este enlace'%s⏎\n"
906
+ "\\'Cancelar\\' para para detener, \\'Aceptar\\' para borrar."
907
 
908
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
909
  msgid "Delete"
languages/cpac-fr_FR.mo CHANGED
Binary file
languages/cpac-fr_FR.po CHANGED
@@ -1,13 +1,14 @@
1
- #
2
  # Translators:
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Admin Columns\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
8
- "PO-Revision-Date: 2013-08-29 09:27+0000\n"
9
- "Last-Translator: codepress <info@codepress.nl>\n"
10
- "Language-Team: French (France) (http://www.transifex.com/projects/p/admin-columns/language/fr_FR/)\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,9 +17,9 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-Basepath: .\n"
18
  "X-Poedit-KeywordsList: __;_e\n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPath-1: ..\n"
21
- "X-Poedit-SourceCharset: utf-8\n"
22
 
23
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
24
  msgid "Settings"
@@ -235,8 +236,7 @@ msgstr "Valeurs multiples"
235
 
236
  #: ../classes/settings.php:227
237
  msgid ""
238
- "Value: should be an array. This will flatten any ( multi dimensional ) "
239
- "array."
240
  msgstr ""
241
 
242
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
@@ -362,8 +362,8 @@ msgstr ""
362
 
363
  #: ../classes/settings.php:419
364
  msgid ""
365
- "The database has been changed between versions 1 and 2. But we made sure you"
366
- " can still roll back to version 1x without any issues."
367
  msgstr ""
368
 
369
  #: ../classes/settings.php:422
@@ -380,9 +380,9 @@ msgstr ""
380
 
381
  #: ../classes/settings.php:426
382
  msgid ""
383
- "Do to the sizable refactoring the code, surounding Addons and "
384
- "action/filters, your website may not operate correctly. It is important that"
385
- " you read the full"
386
  msgstr ""
387
 
388
  #: ../classes/settings.php:426
@@ -434,8 +434,7 @@ msgstr ""
434
 
435
  #: ../classes/settings.php:460
436
  msgid ""
437
- "This page will assist you in downloading and installing each available "
438
- "Addon."
439
  msgstr ""
440
 
441
  #: ../classes/settings.php:461
@@ -480,8 +479,8 @@ msgstr ""
480
 
481
  #: ../classes/settings.php:490
482
  msgid ""
483
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
484
- " link"
485
  msgstr ""
486
 
487
  #: ../classes/settings.php:491
@@ -513,8 +512,8 @@ msgstr ""
513
  #: ../classes/settings.php:589
514
  #, php-format
515
  msgid ""
516
- "Warning! The %s columns data will be deleted. This cannot be undone. "
517
- "\\'OK\\' to delete, \\'Cancel\\' to stop"
518
  msgstr ""
519
 
520
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
@@ -597,7 +596,9 @@ msgstr ""
597
 
598
  #: ../classes/settings.php:764
599
  msgid "This will delete all column settings and restore the default settings."
600
- msgstr "Cette opération va supprimer tous les paramètres de colonnes et restaure tous les paramètres par défaut."
 
 
601
 
602
  #: ../classes/settings.php:770
603
  msgid "Restore default settings"
@@ -607,7 +608,9 @@ msgstr "Restaurer les paramètres par défaut"
607
  msgid ""
608
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
609
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
610
- msgstr "Attention! Tous les données des colonnes d'administration seront supprimées. Cela n'est pas irréversible. \\'OK\\' supprimer, \\'Annuler\\' arrêter"
 
 
611
 
612
  #: ../classes/storage_model.php:167
613
  msgid "settings succesfully restored."
1
+ #
2
  # Translators:
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Admin Columns\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
8
+ "PO-Revision-Date: 2013-11-14 15:55+0100\n"
9
+ "Last-Translator: Codepress <info@codepress.nl>\n"
10
+ "Language-Team: French (France) (http://www.transifex.com/projects/p/admin-"
11
+ "columns/language/fr_FR/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
17
  "X-Generator: Poedit 1.5.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
 
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
236
 
237
  #: ../classes/settings.php:227
238
  msgid ""
239
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
240
  msgstr ""
241
 
242
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
362
 
363
  #: ../classes/settings.php:419
364
  msgid ""
365
+ "The database has been changed between versions 1 and 2. But we made sure you "
366
+ "can still roll back to version 1x without any issues."
367
  msgstr ""
368
 
369
  #: ../classes/settings.php:422
380
 
381
  #: ../classes/settings.php:426
382
  msgid ""
383
+ "Do to the sizable refactoring the code, surounding Addons and action/"
384
+ "filters, your website may not operate correctly. It is important that you "
385
+ "read the full"
386
  msgstr ""
387
 
388
  #: ../classes/settings.php:426
434
 
435
  #: ../classes/settings.php:460
436
  msgid ""
437
+ "This page will assist you in downloading and installing each available Addon."
 
438
  msgstr ""
439
 
440
  #: ../classes/settings.php:461
479
 
480
  #: ../classes/settings.php:490
481
  msgid ""
482
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
483
+ "link"
484
  msgstr ""
485
 
486
  #: ../classes/settings.php:491
512
  #: ../classes/settings.php:589
513
  #, php-format
514
  msgid ""
515
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
516
+ "\\' to delete, \\'Cancel\\' to stop"
517
  msgstr ""
518
 
519
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
596
 
597
  #: ../classes/settings.php:764
598
  msgid "This will delete all column settings and restore the default settings."
599
+ msgstr ""
600
+ "Cette opération va supprimer tous les paramètres de colonnes et restaure "
601
+ "tous les paramètres par défaut."
602
 
603
  #: ../classes/settings.php:770
604
  msgid "Restore default settings"
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
+ msgstr ""
612
+ "Attention! Tous les données des colonnes d'administration seront supprimées. "
613
+ "Cela n'est pas irréversible. \\'OK\\' supprimer, \\'Annuler\\' arrêter"
614
 
615
  #: ../classes/storage_model.php:167
616
  msgid "settings succesfully restored."
languages/cpac-it_IT.mo CHANGED
Binary file
languages/cpac-it_IT.po CHANGED
@@ -1,14 +1,15 @@
1
- #
2
  # Translators:
3
- # werther <werther.d@gmail.com>, 2013
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-10-30 18:22+0000\n"
10
- "Last-Translator: werther <werther.d@gmail.com>\n"
11
- "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/admin-columns/language/it_IT/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -17,9 +18,9 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
- "X-Poedit-SourceCharset: utf-8\n"
23
 
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
@@ -62,7 +63,9 @@ msgstr "Esempio:"
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
- msgstr "Lasciare vuoto per utilizzare il formato data di WordPress, o modifica <a href=\"%s\">qui il formato data</a>."
 
 
66
 
67
  #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
@@ -176,7 +179,9 @@ msgstr "Cambia etichetta"
176
  msgid ""
177
  "By clicking on the triangle you will see the column options. Here you can "
178
  "change each label of the columns heading."
179
- msgstr "Cliccando sul triangolo potrai vedere le opzioni della colonna. Qui puoi cambiare l'etichetta di ogni intestazione di colonna."
 
 
180
 
181
  #: ../classes/settings.php:214
182
  msgid "Change column width"
@@ -236,8 +241,7 @@ msgstr "Valori Multipli"
236
 
237
  #: ../classes/settings.php:227
238
  msgid ""
239
- "Value: should be an array. This will flatten any ( multi dimensional ) "
240
- "array."
241
  msgstr ""
242
 
243
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
@@ -363,8 +367,8 @@ msgstr ""
363
 
364
  #: ../classes/settings.php:419
365
  msgid ""
366
- "The database has been changed between versions 1 and 2. But we made sure you"
367
- " can still roll back to version 1x without any issues."
368
  msgstr ""
369
 
370
  #: ../classes/settings.php:422
@@ -381,9 +385,9 @@ msgstr ""
381
 
382
  #: ../classes/settings.php:426
383
  msgid ""
384
- "Do to the sizable refactoring the code, surounding Addons and "
385
- "action/filters, your website may not operate correctly. It is important that"
386
- " you read the full"
387
  msgstr ""
388
 
389
  #: ../classes/settings.php:426
@@ -435,8 +439,7 @@ msgstr ""
435
 
436
  #: ../classes/settings.php:460
437
  msgid ""
438
- "This page will assist you in downloading and installing each available "
439
- "Addon."
440
  msgstr ""
441
 
442
  #: ../classes/settings.php:461
@@ -481,8 +484,8 @@ msgstr ""
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
- " link"
486
  msgstr ""
487
 
488
  #: ../classes/settings.php:491
@@ -514,8 +517,8 @@ msgstr ""
514
  #: ../classes/settings.php:589
515
  #, php-format
516
  msgid ""
517
- "Warning! The %s columns data will be deleted. This cannot be undone. "
518
- "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
  msgstr ""
520
 
521
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
1
+ #
2
  # Translators:
3
+ # Werther Di Gianni <werther.d@gmail.com>, 2013
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-11-14 15:55+0100\n"
10
+ "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/admin-"
12
+ "columns/language/it_IT/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
18
  "X-Generator: Poedit 1.5.7\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
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
  msgid "Settings"
63
  msgid ""
64
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
65
  "date format here</a>."
66
+ msgstr ""
67
+ "Lasciare vuoto per utilizzare il formato data di WordPress, o modifica <a "
68
+ "href=\"%s\">qui il formato data</a>."
69
 
70
  #: ../classes/column.php:784
71
  msgid "Documentation on date and time formatting."
179
  msgid ""
180
  "By clicking on the triangle you will see the column options. Here you can "
181
  "change each label of the columns heading."
182
+ msgstr ""
183
+ "Cliccando sul triangolo potrai vedere le opzioni della colonna. Qui puoi "
184
+ "cambiare l'etichetta di ogni intestazione di colonna."
185
 
186
  #: ../classes/settings.php:214
187
  msgid "Change column width"
241
 
242
  #: ../classes/settings.php:227
243
  msgid ""
244
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
245
  msgstr ""
246
 
247
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
367
 
368
  #: ../classes/settings.php:419
369
  msgid ""
370
+ "The database has been changed between versions 1 and 2. But we made sure you "
371
+ "can still roll back to version 1x without any issues."
372
  msgstr ""
373
 
374
  #: ../classes/settings.php:422
385
 
386
  #: ../classes/settings.php:426
387
  msgid ""
388
+ "Do to the sizable refactoring the code, surounding Addons and action/"
389
+ "filters, your website may not operate correctly. It is important that you "
390
+ "read the full"
391
  msgstr ""
392
 
393
  #: ../classes/settings.php:426
439
 
440
  #: ../classes/settings.php:460
441
  msgid ""
442
+ "This page will assist you in downloading and installing each available Addon."
 
443
  msgstr ""
444
 
445
  #: ../classes/settings.php:461
484
 
485
  #: ../classes/settings.php:490
486
  msgid ""
487
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
488
+ "link"
489
  msgstr ""
490
 
491
  #: ../classes/settings.php:491
517
  #: ../classes/settings.php:589
518
  #, php-format
519
  msgid ""
520
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
521
+ "\\' to delete, \\'Cancel\\' to stop"
522
  msgstr ""
523
 
524
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
languages/cpac-nl_NL.mo CHANGED
Binary file
languages/cpac-nl_NL.po CHANGED
@@ -1,4 +1,4 @@
1
- #
2
  # Translators:
3
  # codepress <info@codepress.nl>, 2013
4
  msgid ""
@@ -6,9 +6,10 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-11-12 12:34+0000\n"
10
- "Last-Translator: codepress <info@codepress.nl>\n"
11
- "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/admin-columns/language/nl_NL/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -17,9 +18,9 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
- "X-Poedit-SourceCharset: utf-8\n"
23
 
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
@@ -31,11 +32,11 @@ msgstr "Wijzig kolommen"
31
 
32
  #: ../classes/column.php:479
33
  msgid "Thumbnail"
34
- msgstr "Miniatuurafbeelding "
35
 
36
  #: ../classes/column.php:480
37
  msgid "Medium"
38
- msgstr "Medium"
39
 
40
  #: ../classes/column.php:481
41
  msgid "Large"
@@ -47,7 +48,7 @@ msgstr "Volledig"
47
 
48
  #: ../classes/column.php:774
49
  msgid "Date Format"
50
- msgstr "Datum formaat"
51
 
52
  #: ../classes/column.php:775
53
  msgid "This will determine how the date will be displayed."
@@ -62,7 +63,9 @@ msgstr "Voorbeeld:"
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
- msgstr "Laat leeg voor WordPress datumformaat, verander je <a href=\"%s\">standaard datumformaat </a>."
 
 
66
 
67
  #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
@@ -100,7 +103,7 @@ msgstr "Standaard"
100
  #: ../classes/column.php:923 ../classes/column.php:984
101
  #: ../classes/column/user/actions.php:65
102
  msgid "Remove"
103
- msgstr "Verwijder"
104
 
105
  #: ../classes/column.php:942
106
  msgid "Type"
@@ -157,7 +160,7 @@ msgstr ""
157
 
158
  #: ../classes/settings.php:208
159
  msgid "Basics"
160
- msgstr "Basis"
161
 
162
  #: ../classes/settings.php:210
163
  msgid "Change order"
@@ -176,7 +179,9 @@ msgstr "Wijzig label"
176
  msgid ""
177
  "By clicking on the triangle you will see the column options. Here you can "
178
  "change each label of the columns heading."
179
- msgstr "Klik op het kleine driehoekje om de kolom opties te tonen. Hier kan je de kolom label aanpassen."
 
 
180
 
181
  #: ../classes/settings.php:214
182
  msgid "Change column width"
@@ -201,13 +206,17 @@ msgstr "'Custom veld' kolom"
201
  msgid ""
202
  "The custom field colum uses the custom fields from posts and users. There "
203
  "are 10 types which you can set."
204
- msgstr "De 'custom veld' kolom gebruikt custom velden voor berichten en gebruikers. Er zijn 10 typen welke je kan gebruiken."
 
 
205
 
206
  #: ../classes/settings.php:224
207
  msgid ""
208
  "Value: Can be either a string or array. Arrays will be flattened and values "
209
  "are seperated by a ',' comma."
210
- msgstr "Waarde: Kan een string of array zijn. Arrays worden plat gemaakt en de waarden gescheiden door een ',' komma."
 
 
211
 
212
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
  #: ../classes/column/link/image.php:12
@@ -218,7 +227,9 @@ msgstr "Afbeelding"
218
  msgid ""
219
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
  "comma )."
221
- msgstr "Waarde: moet een afbeeldings URL of Media ID zijn ( gescheiden door een ',' komma )."
 
 
222
 
223
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
  #: ../classes/column/comment/excerpt.php:13
@@ -236,8 +247,7 @@ msgstr "Meerdere waarden"
236
 
237
  #: ../classes/settings.php:227
238
  msgid ""
239
- "Value: should be an array. This will flatten any ( multi dimensional ) "
240
- "array."
241
  msgstr ""
242
 
243
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
@@ -269,7 +279,7 @@ msgstr "Post titels"
269
 
270
  #: ../classes/settings.php:230
271
  msgid "Value: can be one or more Post ID's (seperated by ',')."
272
- msgstr ""
273
 
274
  #: ../classes/settings.php:231
275
  msgid "Usernames"
@@ -277,7 +287,7 @@ msgstr "Gebruikersnamen"
277
 
278
  #: ../classes/settings.php:231
279
  msgid "Value: can be one or more User ID's (seperated by ',')."
280
- msgstr ""
281
 
282
  #: ../classes/settings.php:232
283
  msgid "Checkmark"
@@ -307,7 +317,7 @@ msgstr "Bedankt voor het updaten naar de laatste versie!"
307
  msgid ""
308
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
  "like it."
310
- msgstr ""
311
 
312
  #: ../classes/settings.php:386
313
  msgid "What’s New"
@@ -331,6 +341,9 @@ msgid ""
331
  "Although these plugins will not be hosted on the wordpress.org repository, "
332
  "each Add-on will continue to receive updates in the usual way."
333
  msgstr ""
 
 
 
334
 
335
  #: ../classes/settings.php:400
336
  msgid ""
@@ -363,13 +376,13 @@ msgstr "Database Aanpassingen"
363
 
364
  #: ../classes/settings.php:419
365
  msgid ""
366
- "The database has been changed between versions 1 and 2. But we made sure you"
367
- " can still roll back to version 1x without any issues."
368
  msgstr ""
369
 
370
  #: ../classes/settings.php:422
371
  msgid "Make sure you backup your database and then click"
372
- msgstr ""
373
 
374
  #: ../classes/settings.php:422 ../classes/upgrade.php:97
375
  msgid "Upgrade Database"
@@ -381,9 +394,9 @@ msgstr "Potentiele problemen"
381
 
382
  #: ../classes/settings.php:426
383
  msgid ""
384
- "Do to the sizable refactoring the code, surounding Addons and "
385
- "action/filters, your website may not operate correctly. It is important that"
386
- " you read the full"
387
  msgstr ""
388
 
389
  #: ../classes/settings.php:426
@@ -435,9 +448,10 @@ msgstr ""
435
 
436
  #: ../classes/settings.php:460
437
  msgid ""
438
- "This page will assist you in downloading and installing each available "
439
- "Addon."
440
  msgstr ""
 
 
441
 
442
  #: ../classes/settings.php:461
443
  msgid "Available Addons"
@@ -461,7 +475,7 @@ msgstr "Installatie"
461
 
462
  #: ../classes/settings.php:485
463
  msgid "For each Add-on available, please perform the following:"
464
- msgstr ""
465
 
466
  #: ../classes/settings.php:487
467
  msgid "Download the Addon plugin (.zip file) to your desktop"
@@ -481,13 +495,15 @@ msgstr "Gebruik de uploader om de Add-on te installeren (.zip bestand)"
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
- " link"
486
- msgstr "Waanner de plugin is geupload and geinstalleerd, klik de 'Activeer Plugin' link"
 
 
487
 
488
  #: ../classes/settings.php:491
489
  msgid "The Add-on is now installed and activated!"
490
- msgstr ""
491
 
492
  #: ../classes/settings.php:492
493
  #, php-format
@@ -509,19 +525,19 @@ msgstr "Bijwerken"
509
 
510
  #: ../classes/settings.php:585
511
  msgid "Publish"
512
- msgstr "Publiceer"
513
 
514
  #: ../classes/settings.php:589
515
  #, php-format
516
  msgid ""
517
- "Warning! The %s columns data will be deleted. This cannot be undone. "
518
- "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
  msgstr ""
520
 
521
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
  #: ../classes/column/post/actions.php:53
523
  msgid "Restore"
524
- msgstr "Herstel"
525
 
526
  #: ../classes/settings.php:590
527
  msgid "columns"
@@ -598,7 +614,9 @@ msgstr "Herstel Instellingen"
598
 
599
  #: ../classes/settings.php:764
600
  msgid "This will delete all column settings and restore the default settings."
601
- msgstr "Hiermee worden alle kolommen instellingen verwijderd en de standaardinstellingen hersteld."
 
 
602
 
603
  #: ../classes/settings.php:770
604
  msgid "Restore default settings"
@@ -608,7 +626,9 @@ msgstr "Herstel standaard instellingen"
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
- msgstr "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
 
 
612
 
613
  #: ../classes/storage_model.php:167
614
  msgid "settings succesfully restored."
@@ -688,7 +708,7 @@ msgstr ""
688
 
689
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
690
  msgid "Media Library"
691
- msgstr "Media bibliotheek"
692
 
693
  #: ../classes/column/custom-field.php:79
694
  msgid "Post Title (Post ID's)"
@@ -716,7 +736,7 @@ msgstr "Veld type"
716
 
717
  #: ../classes/column/custom-field.php:341
718
  msgid "This will determine how the value will be displayed."
719
- msgstr ""
720
 
721
  #: ../classes/column/custom-field.php:384
722
  msgid "Before"
@@ -739,7 +759,7 @@ msgstr "Deze tekst wordt getoond na de custom field waarde."
739
  #: ../classes/column/media/actions.php:14
740
  #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
741
  msgid "Actions"
742
- msgstr "Akties"
743
 
744
  #: ../classes/column/comment/actions.php:73
745
  #: ../classes/column/comment/actions.php:78
@@ -754,13 +774,13 @@ msgstr "Goedgekeurd"
754
  #: ../classes/column/comment/actions.php:90
755
  #: ../classes/column/post/actions.php:57
756
  msgid "Delete Permanently"
757
- msgstr "Verwijder permanent"
758
 
759
  #: ../classes/column/comment/actions.php:96
760
  #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
761
  #: ../classes/column/user/actions.php:57
762
  msgid "Edit"
763
- msgstr "Bijwerken"
764
 
765
  #: ../classes/column/comment/actions.php:97
766
  #: ../classes/column/post/actions.php:49
@@ -769,7 +789,7 @@ msgstr "Snel&nbsp;Bewerken"
769
 
770
  #: ../classes/column/comment/actions.php:98
771
  msgid "Reply"
772
- msgstr "Antwoord"
773
 
774
  #: ../classes/column/comment/agent.php:12
775
  msgid "Agent"
@@ -859,7 +879,7 @@ msgstr "Rss"
859
 
860
  #: ../classes/column/link/target.php:12
861
  msgid "Target"
862
- msgstr "Target"
863
 
864
  #: ../classes/column/media/alternate-text.php:12
865
  msgid "Alt"
@@ -876,7 +896,7 @@ msgstr "Volledige grootte"
876
  #: ../classes/column/media/caption.php:12
877
  #: ../classes/column/media/exif-data.php:36
878
  msgid "Caption"
879
- msgstr "Caption"
880
 
881
  #: ../classes/column/media/dimensions.php:12
882
  msgid "Dimensions"
@@ -920,7 +940,7 @@ msgstr ""
920
 
921
  #: ../classes/column/media/exif-data.php:42
922
  msgid "Title"
923
- msgstr ""
924
 
925
  #: ../classes/column/media/file-name.php:12
926
  msgid "File name"
@@ -940,7 +960,7 @@ msgstr "Hoogte"
940
 
941
  #: ../classes/column/media/mime-type.php:12
942
  msgid "Mime type"
943
- msgstr ""
944
 
945
  #: ../classes/column/post/actions.php:48
946
  msgid "Edit this item"
@@ -975,7 +995,7 @@ msgstr ""
975
 
976
  #: ../classes/column/post/actions.php:62
977
  msgid "Preview"
978
- msgstr "Preview"
979
 
980
  #: ../classes/column/post/actions.php:64
981
  #, php-format
@@ -1054,7 +1074,7 @@ msgstr "Spam"
1054
  #: ../classes/column/post/comment-count.php:78
1055
  #: ../classes/column/post/comment-status.php:14
1056
  msgid "Comment status"
1057
- msgstr ""
1058
 
1059
  #: ../classes/column/post/comment-count.php:78
1060
  msgid "Select which comment status you like to display."
@@ -1106,7 +1126,7 @@ msgstr "Gepubliceerd"
1106
 
1107
  #: ../classes/column/post/status.php:31
1108
  msgid "Draft"
1109
- msgstr ""
1110
 
1111
  #: ../classes/column/post/status.php:32
1112
  msgid "Scheduled"
@@ -1114,11 +1134,11 @@ msgstr "Gepland"
1114
 
1115
  #: ../classes/column/post/status.php:33
1116
  msgid "Private"
1117
- msgstr "Prive"
1118
 
1119
  #: ../classes/column/post/status.php:34
1120
  msgid "Pending Review"
1121
- msgstr ""
1122
 
1123
  #: ../classes/column/post/sticky.php:14
1124
  msgid "Sticky"
1
+ #
2
  # Translators:
3
  # codepress <info@codepress.nl>, 2013
4
  msgid ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-11-14 15:55+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"
18
  "X-Generator: Poedit 1.5.7\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
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
  msgid "Settings"
32
 
33
  #: ../classes/column.php:479
34
  msgid "Thumbnail"
35
+ msgstr "Thumbnail"
36
 
37
  #: ../classes/column.php:480
38
  msgid "Medium"
39
+ msgstr "Gemiddeld"
40
 
41
  #: ../classes/column.php:481
42
  msgid "Large"
48
 
49
  #: ../classes/column.php:774
50
  msgid "Date Format"
51
+ msgstr "Datumnotatie"
52
 
53
  #: ../classes/column.php:775
54
  msgid "This will determine how the date will be displayed."
63
  msgid ""
64
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
65
  "date format here</a>."
66
+ msgstr ""
67
+ "Laat leeg voor WordPress datumformaat, verander je <a href=\"%s\">standaard "
68
+ "datumformaat </a>."
69
 
70
  #: ../classes/column.php:784
71
  msgid "Documentation on date and time formatting."
103
  #: ../classes/column.php:923 ../classes/column.php:984
104
  #: ../classes/column/user/actions.php:65
105
  msgid "Remove"
106
+ msgstr "Verwijderen"
107
 
108
  #: ../classes/column.php:942
109
  msgid "Type"
160
 
161
  #: ../classes/settings.php:208
162
  msgid "Basics"
163
+ msgstr "Basisinfo"
164
 
165
  #: ../classes/settings.php:210
166
  msgid "Change order"
179
  msgid ""
180
  "By clicking on the triangle you will see the column options. Here you can "
181
  "change each label of the columns heading."
182
+ msgstr ""
183
+ "Klik op het kleine driehoekje om de kolom opties te tonen. Hier kan je de "
184
+ "kolom label aanpassen."
185
 
186
  #: ../classes/settings.php:214
187
  msgid "Change column width"
206
  msgid ""
207
  "The custom field colum uses the custom fields from posts and users. There "
208
  "are 10 types which you can set."
209
+ msgstr ""
210
+ "De 'custom veld' kolom gebruikt custom velden voor berichten en gebruikers. "
211
+ "Er zijn 10 typen welke je kan gebruiken."
212
 
213
  #: ../classes/settings.php:224
214
  msgid ""
215
  "Value: Can be either a string or array. Arrays will be flattened and values "
216
  "are seperated by a ',' comma."
217
+ msgstr ""
218
+ "Waarde: Kan een string of array zijn. Arrays worden plat gemaakt en de "
219
+ "waarden gescheiden door een ',' komma."
220
 
221
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
222
  #: ../classes/column/link/image.php:12
227
  msgid ""
228
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
229
  "comma )."
230
+ msgstr ""
231
+ "Waarde: moet een afbeeldings URL of Media ID zijn ( gescheiden door een ',' "
232
+ "komma )."
233
 
234
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
235
  #: ../classes/column/comment/excerpt.php:13
247
 
248
  #: ../classes/settings.php:227
249
  msgid ""
250
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
251
  msgstr ""
252
 
253
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
279
 
280
  #: ../classes/settings.php:230
281
  msgid "Value: can be one or more Post ID's (seperated by ',')."
282
+ msgstr "Waarde: één of meer Post ID's ( gescheiden door een komma )"
283
 
284
  #: ../classes/settings.php:231
285
  msgid "Usernames"
287
 
288
  #: ../classes/settings.php:231
289
  msgid "Value: can be one or more User ID's (seperated by ',')."
290
+ msgstr "Waarde: één of meer User ID's ( gescheiden door een komma )"
291
 
292
  #: ../classes/settings.php:232
293
  msgid "Checkmark"
317
  msgid ""
318
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
319
  "like it."
320
+ msgstr "Admin Columns ziet er nog beter uit dan ooit. Veel plezier ermee."
321
 
322
  #: ../classes/settings.php:386
323
  msgid "What’s New"
341
  "Although these plugins will not be hosted on the wordpress.org repository, "
342
  "each Add-on will continue to receive updates in the usual way."
343
  msgstr ""
344
+ "Addons worden vanaf nu geactiveer door ze te downloaden en te installeren "
345
+ "als individuele plugins. Deze plugins zullen niet worden gehost op wordpress."
346
+ "org, maar ze blijven wel automatische updates ontvangen zoals gewoonlijk."
347
 
348
  #: ../classes/settings.php:400
349
  msgid ""
376
 
377
  #: ../classes/settings.php:419
378
  msgid ""
379
+ "The database has been changed between versions 1 and 2. But we made sure you "
380
+ "can still roll back to version 1x without any issues."
381
  msgstr ""
382
 
383
  #: ../classes/settings.php:422
384
  msgid "Make sure you backup your database and then click"
385
+ msgstr "Backup je database and klik dan"
386
 
387
  #: ../classes/settings.php:422 ../classes/upgrade.php:97
388
  msgid "Upgrade Database"
394
 
395
  #: ../classes/settings.php:426
396
  msgid ""
397
+ "Do to the sizable refactoring the code, surounding Addons and action/"
398
+ "filters, your website may not operate correctly. It is important that you "
399
+ "read the full"
400
  msgstr ""
401
 
402
  #: ../classes/settings.php:426
448
 
449
  #: ../classes/settings.php:460
450
  msgid ""
451
+ "This page will assist you in downloading and installing each available Addon."
 
452
  msgstr ""
453
+ "De pagina help je met het downloaden en installeren van elke beschikbare "
454
+ "Addon."
455
 
456
  #: ../classes/settings.php:461
457
  msgid "Available Addons"
475
 
476
  #: ../classes/settings.php:485
477
  msgid "For each Add-on available, please perform the following:"
478
+ msgstr "Voor elke addo-on, doe het volgende:"
479
 
480
  #: ../classes/settings.php:487
481
  msgid "Download the Addon plugin (.zip file) to your desktop"
495
 
496
  #: ../classes/settings.php:490
497
  msgid ""
498
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
499
+ "link"
500
+ msgstr ""
501
+ "Waanner de plugin is geupload and geinstalleerd, klik de 'Activeer Plugin' "
502
+ "link"
503
 
504
  #: ../classes/settings.php:491
505
  msgid "The Add-on is now installed and activated!"
506
+ msgstr "De Add-on is nu geinstalleerd en actief!"
507
 
508
  #: ../classes/settings.php:492
509
  #, php-format
525
 
526
  #: ../classes/settings.php:585
527
  msgid "Publish"
528
+ msgstr "Publiceren"
529
 
530
  #: ../classes/settings.php:589
531
  #, php-format
532
  msgid ""
533
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
534
+ "\\' to delete, \\'Cancel\\' to stop"
535
  msgstr ""
536
 
537
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
538
  #: ../classes/column/post/actions.php:53
539
  msgid "Restore"
540
+ msgstr "Herstellen"
541
 
542
  #: ../classes/settings.php:590
543
  msgid "columns"
614
 
615
  #: ../classes/settings.php:764
616
  msgid "This will delete all column settings and restore the default settings."
617
+ msgstr ""
618
+ "Hiermee worden alle kolommen instellingen verwijderd en de "
619
+ "standaardinstellingen hersteld."
620
 
621
  #: ../classes/settings.php:770
622
  msgid "Restore default settings"
626
  msgid ""
627
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
628
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
629
+ msgstr ""
630
+ "Waarschuwing! ALLE bewaarde instellingen worden verwijderd. Dit kan niet "
631
+ "worden ongedaan. \\'OK\\' om te verwijderen, \\'Annuleren\\' om te stoppen"
632
 
633
  #: ../classes/storage_model.php:167
634
  msgid "settings succesfully restored."
708
 
709
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
710
  msgid "Media Library"
711
+ msgstr "Mediabibliotheek"
712
 
713
  #: ../classes/column/custom-field.php:79
714
  msgid "Post Title (Post ID's)"
736
 
737
  #: ../classes/column/custom-field.php:341
738
  msgid "This will determine how the value will be displayed."
739
+ msgstr "Dit bepaald hoe de waarde wordt weer gegeven,"
740
 
741
  #: ../classes/column/custom-field.php:384
742
  msgid "Before"
759
  #: ../classes/column/media/actions.php:14
760
  #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
761
  msgid "Actions"
762
+ msgstr "Acties"
763
 
764
  #: ../classes/column/comment/actions.php:73
765
  #: ../classes/column/comment/actions.php:78
774
  #: ../classes/column/comment/actions.php:90
775
  #: ../classes/column/post/actions.php:57
776
  msgid "Delete Permanently"
777
+ msgstr "Permanent verwijderen"
778
 
779
  #: ../classes/column/comment/actions.php:96
780
  #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
781
  #: ../classes/column/user/actions.php:57
782
  msgid "Edit"
783
+ msgstr "Bewerken"
784
 
785
  #: ../classes/column/comment/actions.php:97
786
  #: ../classes/column/post/actions.php:49
789
 
790
  #: ../classes/column/comment/actions.php:98
791
  msgid "Reply"
792
+ msgstr "Beantwoorden"
793
 
794
  #: ../classes/column/comment/agent.php:12
795
  msgid "Agent"
879
 
880
  #: ../classes/column/link/target.php:12
881
  msgid "Target"
882
+ msgstr "Doel"
883
 
884
  #: ../classes/column/media/alternate-text.php:12
885
  msgid "Alt"
896
  #: ../classes/column/media/caption.php:12
897
  #: ../classes/column/media/exif-data.php:36
898
  msgid "Caption"
899
+ msgstr "Onderschrift"
900
 
901
  #: ../classes/column/media/dimensions.php:12
902
  msgid "Dimensions"
940
 
941
  #: ../classes/column/media/exif-data.php:42
942
  msgid "Title"
943
+ msgstr "Titel"
944
 
945
  #: ../classes/column/media/file-name.php:12
946
  msgid "File name"
960
 
961
  #: ../classes/column/media/mime-type.php:12
962
  msgid "Mime type"
963
+ msgstr "Mimi type"
964
 
965
  #: ../classes/column/post/actions.php:48
966
  msgid "Edit this item"
995
 
996
  #: ../classes/column/post/actions.php:62
997
  msgid "Preview"
998
+ msgstr "Voorbeeld"
999
 
1000
  #: ../classes/column/post/actions.php:64
1001
  #, php-format
1074
  #: ../classes/column/post/comment-count.php:78
1075
  #: ../classes/column/post/comment-status.php:14
1076
  msgid "Comment status"
1077
+ msgstr "Comment status"
1078
 
1079
  #: ../classes/column/post/comment-count.php:78
1080
  msgid "Select which comment status you like to display."
1126
 
1127
  #: ../classes/column/post/status.php:31
1128
  msgid "Draft"
1129
+ msgstr "Concept"
1130
 
1131
  #: ../classes/column/post/status.php:32
1132
  msgid "Scheduled"
1134
 
1135
  #: ../classes/column/post/status.php:33
1136
  msgid "Private"
1137
+ msgstr "Priv&#233;"
1138
 
1139
  #: ../classes/column/post/status.php:34
1140
  msgid "Pending Review"
1141
+ msgstr "Wachtend op review"
1142
 
1143
  #: ../classes/column/post/sticky.php:14
1144
  msgid "Sticky"
languages/cpac-pl_PL.mo CHANGED
Binary file
languages/cpac-pl_PL.po CHANGED
@@ -1,4 +1,4 @@
1
- #
2
  # Translators:
3
  # codepress <info@codepress.nl>, 2013
4
  msgid ""
@@ -6,20 +6,22 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-09-04 16:16+0000\n"
10
- "Last-Translator: codepress <info@codepress.nl>\n"
11
- "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/admin-columns/language/pl_PL/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: pl_PL\n"
16
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
- "X-Poedit-SourceCharset: utf-8\n"
23
 
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
@@ -62,7 +64,9 @@ msgstr "Przykład:"
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
- msgstr "Pozostaw puste aby używać formatu daty WordPressa, lub zmień <a href=\"%s\">domyślny format daty</a>."
 
 
66
 
67
  #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
@@ -153,7 +157,10 @@ msgid ""
153
  "This plugin is for adding and removing additional columns to the "
154
  "administration screens for post(types), pages, media library, comments, "
155
  "links and users. Change the column's label and reorder them."
156
- msgstr "Ta wtyczka dodaje lub usuwa dodatkowe kolumny na ekranach edycji wpisów, stron, biblioteki mediów, komentarzy, linków i użytkowników. Pozwala zmienić nazwy kolumn i ich kolejność."
 
 
 
157
 
158
  #: ../classes/settings.php:208
159
  msgid "Basics"
@@ -166,7 +173,8 @@ msgstr "Zmień kolejność"
166
  #: ../classes/settings.php:211
167
  msgid ""
168
  "By dragging the columns you can change the order which they will appear in."
169
- msgstr "Przeciągając kolumny możesz zmienić kolejność w której będą wyświetlane."
 
170
 
171
  #: ../classes/settings.php:212
172
  msgid "Change label"
@@ -176,7 +184,9 @@ msgstr "Zmień etykietę"
176
  msgid ""
177
  "By clicking on the triangle you will see the column options. Here you can "
178
  "change each label of the columns heading."
179
- msgstr "Klikając w trójkąt zobaczysz opcje kolumn. Możesz tu zmienić nazwy każdej z nich."
 
 
180
 
181
  #: ../classes/settings.php:214
182
  msgid "Change column width"
@@ -186,7 +196,9 @@ msgstr "Zmień szerokość kolumn"
186
  msgid ""
187
  "By clicking on the triangle you will see the column options. By using the "
188
  "draggable slider you can set the width of the columns in percentages."
189
- msgstr "Klikając w trójkąt zobaczysz ustawienia kolumn. Używając przeciągania w slajderze możesz ustawić w procentach szerokość kolumn."
 
 
190
 
191
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
  #: ../classes/column/custom-field.php:324
@@ -201,13 +213,17 @@ msgstr "Kolumna 'Własne pole'"
201
  msgid ""
202
  "The custom field colum uses the custom fields from posts and users. There "
203
  "are 10 types which you can set."
204
- msgstr "Kolumna własnego pola używa własnych pól z wpisów i użytkowników. Możesz wybrać 1 z 10 typów."
 
 
205
 
206
  #: ../classes/settings.php:224
207
  msgid ""
208
  "Value: Can be either a string or array. Arrays will be flattened and values "
209
  "are seperated by a ',' comma."
210
- msgstr "Wartość: Może to być tekst bądź tablica. Tablice zostaną spłąszczone a warości oddzielone przecinkami."
 
 
211
 
212
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
  #: ../classes/column/link/image.php:12
@@ -218,7 +234,9 @@ msgstr "Obrazek"
218
  msgid ""
219
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
  "comma )."
221
- msgstr "Wartość: Powinna zawierać adres URL obrazka lub ID załącznika (oddzielone przecinkami)."
 
 
222
 
223
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
  #: ../classes/column/comment/excerpt.php:13
@@ -236,9 +254,9 @@ msgstr "Wielokrotne wartości"
236
 
237
  #: ../classes/settings.php:227
238
  msgid ""
239
- "Value: should be an array. This will flatten any ( multi dimensional ) "
240
- "array."
241
- msgstr "Wartość: Powinna być tablicą. Tablice wielopoziomowe zostaną spłaszczone."
242
 
243
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
244
  msgid "Numeric"
@@ -248,7 +266,10 @@ msgstr "Numeryczny"
248
  msgid ""
249
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
  "for sorting, so you can sort your posts on numeric (custom field) values."
251
- msgstr "Wartość: Tylko liczby.<br />Jeśli masz dodatek sortowania, zostanie to zastosowane, aby umożliwić sortowanie wpisów wg liczb (z wartości własnych pól)."
 
 
 
252
 
253
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
  #: ../classes/column/comment/date.php:12
@@ -261,7 +282,10 @@ msgid ""
261
  "Value: Can be unix time stamp or a date format as described in the <a "
262
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
  "href='%s'>general settings</a> page."
264
- msgstr "Wartość: Może być stemplem czasu lub datą w formacie określonym w <a href='%s'>Kodeksie</a>. Możesz zmienić wyświetlani daty na stronie <a href='%s'>Ustawień głównych</a>."
 
 
 
265
 
266
  #: ../classes/settings.php:230
267
  msgid "Post Titles"
@@ -269,7 +293,8 @@ msgstr "Tytyły wpisu"
269
 
270
  #: ../classes/settings.php:230
271
  msgid "Value: can be one or more Post ID's (seperated by ',')."
272
- msgstr "Wartość: Może to być jeden lub więcej ID wpisów (oddzielone przecinkami)."
 
273
 
274
  #: ../classes/settings.php:231
275
  msgid "Usernames"
@@ -277,7 +302,9 @@ msgstr "Nazwy użytkowników"
277
 
278
  #: ../classes/settings.php:231
279
  msgid "Value: can be one or more User ID's (seperated by ',')."
280
- msgstr "Wartość: Może to być jeden lub więcej ID użytkowników (oddzielone przecinkami)."
 
 
281
 
282
  #: ../classes/settings.php:232
283
  msgid "Checkmark"
@@ -307,7 +334,9 @@ msgstr "Dziękujemy za aktualizację do najnowszej wersji!"
307
  msgid ""
308
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
  "like it."
310
- msgstr "Edytor kolumn jest bardziej dopracowany niż kiedykolwiek wcześniej. Mamy nadzięję że Ci się spodoba."
 
 
311
 
312
  #: ../classes/settings.php:386
313
  msgid "What’s New"
@@ -330,7 +359,10 @@ msgid ""
330
  "Addons are now activated by downloading and installing individual plugins. "
331
  "Although these plugins will not be hosted on the wordpress.org repository, "
332
  "each Add-on will continue to receive updates in the usual way."
333
- msgstr "Dodatki są aktywowane poprzez wczytanie i instalację oddzielnych wtyczek. Chociaż niektóre wtyczki nie będą utrzymywane w repozytorium wordpress.org, każdy z dodatków będzie mógł być automatycznie aktualizowany."
 
 
 
334
 
335
  #: ../classes/settings.php:400
336
  msgid ""
@@ -363,9 +395,11 @@ msgstr "Zmiany w bazie danych"
363
 
364
  #: ../classes/settings.php:419
365
  msgid ""
366
- "The database has been changed between versions 1 and 2. But we made sure you"
367
- " can still roll back to version 1x without any issues."
368
- msgstr "Baza danych zmieniła się między wersjami 1 i 2. Ale wciąż możesz powrócić do wersji 1 bez żadnych problemów."
 
 
369
 
370
  #: ../classes/settings.php:422
371
  msgid "Make sure you backup your database and then click"
@@ -381,10 +415,13 @@ msgstr "Potencjalne problemy"
381
 
382
  #: ../classes/settings.php:426
383
  msgid ""
384
- "Do to the sizable refactoring the code, surounding Addons and "
385
- "action/filters, your website may not operate correctly. It is important that"
386
- " you read the full"
387
- msgstr "Z powodu znacznych modyfikacji w kodzie, związanymi z dodatkami, filtrami i akcjami, Twoja strona może nie działać poprawnie. Pamiętaj, aby przeczytać pełną"
 
 
 
388
 
389
  #: ../classes/settings.php:426
390
  msgid "Migrating from v1 to v2"
@@ -399,7 +436,9 @@ msgstr "dokumentację i zapoznać się z listą zmian."
399
  msgid ""
400
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
  "can fix it in the next release."
402
- msgstr "Jeśli znajdziesz błąd <a href=\"%s\">zgłoś go</a> abyśmy mogli naprawić go w kolejnej wersji."
 
 
403
 
404
  #: ../classes/settings.php:429
405
  msgid "Important!"
@@ -409,7 +448,9 @@ msgstr "Ważne!"
409
  msgid ""
410
  "If you updated the Admin Columns plugin without prior knowledge of such "
411
  "changes, Please roll back to the latest"
412
- msgstr "Jeżli zaktualizowałeś Edytor kolumn bez świadomości tych zmian, możesz powrócić do poprzedniej"
 
 
413
 
414
  #: ../classes/settings.php:429
415
  msgid "version 1"
@@ -431,12 +472,13 @@ msgstr "Dowiedz się więcej"
431
  msgid ""
432
  "New to v2, all Addons act as separate plugins which need to be individually "
433
  "downloaded, installed and updated."
434
- msgstr "Nowość w wersji 2, wszystkie dodatki funkcjonują jako oddzielne wtyczki, które muszą być oddzielnie wgrywane, instalowane i aktualizowane."
 
 
435
 
436
  #: ../classes/settings.php:460
437
  msgid ""
438
- "This page will assist you in downloading and installing each available "
439
- "Addon."
440
  msgstr "Ta strona pomoże Ci w pobraniu i instalacji dostępnych dodatków."
441
 
442
  #: ../classes/settings.php:461
@@ -481,8 +523,8 @@ msgstr "Użyj instalacji dodatku z pliku .zip"
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
- " link"
486
  msgstr "Po wczytaniu i instalacji wtyczki kliknij link 'Aktywacja wtyczki'"
487
 
488
  #: ../classes/settings.php:491
@@ -493,7 +535,9 @@ msgstr "Dodatek został zaktualizowany i włączony."
493
  #, php-format
494
  msgid ""
495
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
496
- msgstr "Aby uzyskać automatyczne aktualizacje podaj swój <a href='%s'>klucz licencji</a>."
 
 
497
 
498
  #: ../classes/settings.php:502
499
  msgid "Start using Admin Columns"
@@ -514,9 +558,11 @@ msgstr "Opublikuj"
514
  #: ../classes/settings.php:589
515
  #, php-format
516
  msgid ""
517
- "Warning! The %s columns data will be deleted. This cannot be undone. "
518
- "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
- msgstr "Uwaga! Ustawienia %s kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
 
 
520
 
521
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
  #: ../classes/column/post/actions.php:53
@@ -561,7 +607,10 @@ msgstr "Sprawdź dział <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
561
  msgid ""
562
  "For full documentation, bug reports, feature suggestions and other tips <a "
563
  "href='%s'>visit the Admin Columns website</a>"
564
- msgstr "Dostęp do pełnej dokumentacji, raportów błędów, sugestii co do nowych funkcji i innych podpowiedzi uzyskasz na <a href='%s'>stronie Edytora kolumn</a>"
 
 
 
565
 
566
  #: ../classes/settings.php:642
567
  msgid "Drag and drop to reorder"
@@ -586,7 +635,9 @@ msgstr "Wyświetl ukryte własne pola. Domyślnie jest <code>wyłączone</code>.
586
  #: ../classes/settings.php:716
587
  msgid ""
588
  "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
589
- msgstr "Wyświetl przycisk \"Edytuj kolumny\" na ekranie edycji. Domyślnie jest <code>wyłączone</code>."
 
 
590
 
591
  #: ../classes/settings.php:723
592
  msgid "Save"
@@ -598,7 +649,9 @@ msgstr "Przywróć ustawienia"
598
 
599
  #: ../classes/settings.php:764
600
  msgid "This will delete all column settings and restore the default settings."
601
- msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień domyślnych."
 
 
602
 
603
  #: ../classes/settings.php:770
604
  msgid "Restore default settings"
@@ -608,7 +661,10 @@ msgstr "Przywróć ustawienia domyślne"
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
- msgstr "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
 
 
 
612
 
613
  #: ../classes/storage_model.php:167
614
  msgid "settings succesfully restored."
@@ -684,7 +740,9 @@ msgstr "Błąd"
684
  msgid ""
685
  "Sorry. Something went wrong during the upgrade process. Please report this "
686
  "on the support forum."
687
- msgstr "Przykro nam, ale coś poszło źle w trakcie procesu aktualizacji. Napisz o tym na forum pomocy."
 
 
688
 
689
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
690
  msgid "Media Library"
@@ -829,7 +887,9 @@ msgstr "Liczba słów"
829
  msgid ""
830
  "You are about to delete this link '%s'\n"
831
  " 'Cancel' to stop, 'OK' to delete."
832
- msgstr "Zamierzasz usunąć ten link link '%s'\n 'Cancel' to stop, 'OK' to delete."
 
 
833
 
834
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
  msgid "Delete"
1
+ #
2
  # Translators:
3
  # codepress <info@codepress.nl>, 2013
4
  msgid ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-11-14 15:55+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.5.7\n"
20
  "X-Poedit-Basepath: .\n"
21
  "X-Poedit-KeywordsList: __;_e\n"
22
+ "X-Poedit-SourceCharset: utf-8\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPath-1: ..\n"
 
25
 
26
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
27
  msgid "Settings"
64
  msgid ""
65
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
66
  "date format here</a>."
67
+ msgstr ""
68
+ "Pozostaw puste aby używać formatu daty WordPressa, lub zmień <a href=\"%s"
69
+ "\">domyślny format daty</a>."
70
 
71
  #: ../classes/column.php:784
72
  msgid "Documentation on date and time formatting."
157
  "This plugin is for adding and removing additional columns to the "
158
  "administration screens for post(types), pages, media library, comments, "
159
  "links and users. Change the column's label and reorder them."
160
+ msgstr ""
161
+ "Ta wtyczka dodaje lub usuwa dodatkowe kolumny na ekranach edycji wpisów, "
162
+ "stron, biblioteki mediów, komentarzy, linków i użytkowników. Pozwala zmienić "
163
+ "nazwy kolumn i ich kolejność."
164
 
165
  #: ../classes/settings.php:208
166
  msgid "Basics"
173
  #: ../classes/settings.php:211
174
  msgid ""
175
  "By dragging the columns you can change the order which they will appear in."
176
+ msgstr ""
177
+ "Przeciągając kolumny możesz zmienić kolejność w której będą wyświetlane."
178
 
179
  #: ../classes/settings.php:212
180
  msgid "Change label"
184
  msgid ""
185
  "By clicking on the triangle you will see the column options. Here you can "
186
  "change each label of the columns heading."
187
+ msgstr ""
188
+ "Klikając w trójkąt zobaczysz opcje kolumn. Możesz tu zmienić nazwy każdej z "
189
+ "nich."
190
 
191
  #: ../classes/settings.php:214
192
  msgid "Change column width"
196
  msgid ""
197
  "By clicking on the triangle you will see the column options. By using the "
198
  "draggable slider you can set the width of the columns in percentages."
199
+ msgstr ""
200
+ "Klikając w trójkąt zobaczysz ustawienia kolumn. Używając przeciągania w "
201
+ "slajderze możesz ustawić w procentach szerokość kolumn."
202
 
203
  #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
204
  #: ../classes/column/custom-field.php:324
213
  msgid ""
214
  "The custom field colum uses the custom fields from posts and users. There "
215
  "are 10 types which you can set."
216
+ msgstr ""
217
+ "Kolumna własnego pola używa własnych pól z wpisów i użytkowników. Możesz "
218
+ "wybrać 1 z 10 typów."
219
 
220
  #: ../classes/settings.php:224
221
  msgid ""
222
  "Value: Can be either a string or array. Arrays will be flattened and values "
223
  "are seperated by a ',' comma."
224
+ msgstr ""
225
+ "Wartość: Może to być tekst bądź tablica. Tablice zostaną spłąszczone a "
226
+ "warości oddzielone przecinkami."
227
 
228
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
229
  #: ../classes/column/link/image.php:12
234
  msgid ""
235
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
236
  "comma )."
237
+ msgstr ""
238
+ "Wartość: Powinna zawierać adres URL obrazka lub ID załącznika (oddzielone "
239
+ "przecinkami)."
240
 
241
  #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
242
  #: ../classes/column/comment/excerpt.php:13
254
 
255
  #: ../classes/settings.php:227
256
  msgid ""
257
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
258
+ msgstr ""
259
+ "Wartość: Powinna być tablicą. Tablice wielopoziomowe zostaną spłaszczone."
260
 
261
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
262
  msgid "Numeric"
266
  msgid ""
267
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
268
  "for sorting, so you can sort your posts on numeric (custom field) values."
269
+ msgstr ""
270
+ "Wartość: Tylko liczby.<br />Jeśli masz dodatek sortowania, zostanie to "
271
+ "zastosowane, aby umożliwić sortowanie wpisów wg liczb (z wartości własnych "
272
+ "pól)."
273
 
274
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
275
  #: ../classes/column/comment/date.php:12
282
  "Value: Can be unix time stamp or a date format as described in the <a "
283
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
284
  "href='%s'>general settings</a> page."
285
+ msgstr ""
286
+ "Wartość: Może być stemplem czasu lub datą w formacie określonym w <a "
287
+ "href='%s'>Kodeksie</a>. Możesz zmienić wyświetlani daty na stronie <a "
288
+ "href='%s'>Ustawień głównych</a>."
289
 
290
  #: ../classes/settings.php:230
291
  msgid "Post Titles"
293
 
294
  #: ../classes/settings.php:230
295
  msgid "Value: can be one or more Post ID's (seperated by ',')."
296
+ msgstr ""
297
+ "Wartość: Może to być jeden lub więcej ID wpisów (oddzielone przecinkami)."
298
 
299
  #: ../classes/settings.php:231
300
  msgid "Usernames"
302
 
303
  #: ../classes/settings.php:231
304
  msgid "Value: can be one or more User ID's (seperated by ',')."
305
+ msgstr ""
306
+ "Wartość: Może to być jeden lub więcej ID użytkowników (oddzielone "
307
+ "przecinkami)."
308
 
309
  #: ../classes/settings.php:232
310
  msgid "Checkmark"
334
  msgid ""
335
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
336
  "like it."
337
+ msgstr ""
338
+ "Edytor kolumn jest bardziej dopracowany niż kiedykolwiek wcześniej. Mamy "
339
+ "nadzięję że Ci się spodoba."
340
 
341
  #: ../classes/settings.php:386
342
  msgid "What’s New"
359
  "Addons are now activated by downloading and installing individual plugins. "
360
  "Although these plugins will not be hosted on the wordpress.org repository, "
361
  "each Add-on will continue to receive updates in the usual way."
362
+ msgstr ""
363
+ "Dodatki są aktywowane poprzez wczytanie i instalację oddzielnych wtyczek. "
364
+ "Chociaż niektóre wtyczki nie będą utrzymywane w repozytorium wordpress.org, "
365
+ "każdy z dodatków będzie mógł być automatycznie aktualizowany."
366
 
367
  #: ../classes/settings.php:400
368
  msgid ""
395
 
396
  #: ../classes/settings.php:419
397
  msgid ""
398
+ "The database has been changed between versions 1 and 2. But we made sure you "
399
+ "can still roll back to version 1x without any issues."
400
+ msgstr ""
401
+ "Baza danych zmieniła się między wersjami 1 i 2. Ale wciąż możesz powrócić do "
402
+ "wersji 1 bez żadnych problemów."
403
 
404
  #: ../classes/settings.php:422
405
  msgid "Make sure you backup your database and then click"
415
 
416
  #: ../classes/settings.php:426
417
  msgid ""
418
+ "Do to the sizable refactoring the code, surounding Addons and action/"
419
+ "filters, your website may not operate correctly. It is important that you "
420
+ "read the full"
421
+ msgstr ""
422
+ "Z powodu znacznych modyfikacji w kodzie, związanymi z dodatkami, filtrami i "
423
+ "akcjami, Twoja strona może nie działać poprawnie. Pamiętaj, aby przeczytać "
424
+ "pełną"
425
 
426
  #: ../classes/settings.php:426
427
  msgid "Migrating from v1 to v2"
436
  msgid ""
437
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
438
  "can fix it in the next release."
439
+ msgstr ""
440
+ "Jeśli znajdziesz błąd <a href=\"%s\">zgłoś go</a> abyśmy mogli naprawić go w "
441
+ "kolejnej wersji."
442
 
443
  #: ../classes/settings.php:429
444
  msgid "Important!"
448
  msgid ""
449
  "If you updated the Admin Columns plugin without prior knowledge of such "
450
  "changes, Please roll back to the latest"
451
+ msgstr ""
452
+ "Jeżli zaktualizowałeś Edytor kolumn bez świadomości tych zmian, możesz "
453
+ "powrócić do poprzedniej"
454
 
455
  #: ../classes/settings.php:429
456
  msgid "version 1"
472
  msgid ""
473
  "New to v2, all Addons act as separate plugins which need to be individually "
474
  "downloaded, installed and updated."
475
+ msgstr ""
476
+ "Nowość w wersji 2, wszystkie dodatki funkcjonują jako oddzielne wtyczki, "
477
+ "które muszą być oddzielnie wgrywane, instalowane i aktualizowane."
478
 
479
  #: ../classes/settings.php:460
480
  msgid ""
481
+ "This page will assist you in downloading and installing each available Addon."
 
482
  msgstr "Ta strona pomoże Ci w pobraniu i instalacji dostępnych dodatków."
483
 
484
  #: ../classes/settings.php:461
523
 
524
  #: ../classes/settings.php:490
525
  msgid ""
526
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
527
+ "link"
528
  msgstr "Po wczytaniu i instalacji wtyczki kliknij link 'Aktywacja wtyczki'"
529
 
530
  #: ../classes/settings.php:491
535
  #, php-format
536
  msgid ""
537
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
538
+ msgstr ""
539
+ "Aby uzyskać automatyczne aktualizacje podaj swój <a href='%s'>klucz "
540
+ "licencji</a>."
541
 
542
  #: ../classes/settings.php:502
543
  msgid "Start using Admin Columns"
558
  #: ../classes/settings.php:589
559
  #, php-format
560
  msgid ""
561
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
562
+ "\\' to delete, \\'Cancel\\' to stop"
563
+ msgstr ""
564
+ "Uwaga! Ustawienia %s kolumn zostaną usunięte. Tej operacji nie można "
565
+ "przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
566
 
567
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
568
  #: ../classes/column/post/actions.php:53
607
  msgid ""
608
  "For full documentation, bug reports, feature suggestions and other tips <a "
609
  "href='%s'>visit the Admin Columns website</a>"
610
+ msgstr ""
611
+ "Dostęp do pełnej dokumentacji, raportów błędów, sugestii co do nowych "
612
+ "funkcji i innych podpowiedzi uzyskasz na <a href='%s'>stronie Edytora "
613
+ "kolumn</a>"
614
 
615
  #: ../classes/settings.php:642
616
  msgid "Drag and drop to reorder"
635
  #: ../classes/settings.php:716
636
  msgid ""
637
  "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
638
+ msgstr ""
639
+ "Wyświetl przycisk \"Edytuj kolumny\" na ekranie edycji. Domyślnie jest "
640
+ "<code>wyłączone</code>."
641
 
642
  #: ../classes/settings.php:723
643
  msgid "Save"
649
 
650
  #: ../classes/settings.php:764
651
  msgid "This will delete all column settings and restore the default settings."
652
+ msgstr ""
653
+ "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień "
654
+ "domyślnych."
655
 
656
  #: ../classes/settings.php:770
657
  msgid "Restore default settings"
661
  msgid ""
662
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
663
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
664
+ msgstr ""
665
+ "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji "
666
+ "nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby "
667
+ "przerwać."
668
 
669
  #: ../classes/storage_model.php:167
670
  msgid "settings succesfully restored."
740
  msgid ""
741
  "Sorry. Something went wrong during the upgrade process. Please report this "
742
  "on the support forum."
743
+ msgstr ""
744
+ "Przykro nam, ale coś poszło źle w trakcie procesu aktualizacji. Napisz o tym "
745
+ "na forum pomocy."
746
 
747
  #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
748
  msgid "Media Library"
887
  msgid ""
888
  "You are about to delete this link '%s'\n"
889
  " 'Cancel' to stop, 'OK' to delete."
890
+ msgstr ""
891
+ "Zamierzasz usunąć ten link link '%s'\n"
892
+ " 'Cancel' to stop, 'OK' to delete."
893
 
894
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
895
  msgid "Delete"
languages/cpac-pt_BR.mo CHANGED
Binary file
languages/cpac-pt_BR.po CHANGED
@@ -1,4 +1,4 @@
1
- #
2
  # Translators:
3
  # estevanix <aestevam@gmail.com>, 2013
4
  msgid ""
@@ -6,9 +6,10 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-10-24 08:18+0000\n"
10
- "Last-Translator: estevanix <aestevam@gmail.com>\n"
11
- "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/admin-columns/language/pt_BR/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -17,9 +18,9 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
- "X-Poedit-SourceCharset: utf-8\n"
23
 
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
@@ -236,8 +237,7 @@ msgstr ""
236
 
237
  #: ../classes/settings.php:227
238
  msgid ""
239
- "Value: should be an array. This will flatten any ( multi dimensional ) "
240
- "array."
241
  msgstr ""
242
 
243
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
@@ -363,8 +363,8 @@ msgstr ""
363
 
364
  #: ../classes/settings.php:419
365
  msgid ""
366
- "The database has been changed between versions 1 and 2. But we made sure you"
367
- " can still roll back to version 1x without any issues."
368
  msgstr ""
369
 
370
  #: ../classes/settings.php:422
@@ -381,9 +381,9 @@ msgstr ""
381
 
382
  #: ../classes/settings.php:426
383
  msgid ""
384
- "Do to the sizable refactoring the code, surounding Addons and "
385
- "action/filters, your website may not operate correctly. It is important that"
386
- " you read the full"
387
  msgstr ""
388
 
389
  #: ../classes/settings.php:426
@@ -435,8 +435,7 @@ msgstr ""
435
 
436
  #: ../classes/settings.php:460
437
  msgid ""
438
- "This page will assist you in downloading and installing each available "
439
- "Addon."
440
  msgstr ""
441
 
442
  #: ../classes/settings.php:461
@@ -481,8 +480,8 @@ msgstr ""
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
- " link"
486
  msgstr ""
487
 
488
  #: ../classes/settings.php:491
@@ -514,8 +513,8 @@ msgstr ""
514
  #: ../classes/settings.php:589
515
  #, php-format
516
  msgid ""
517
- "Warning! The %s columns data will be deleted. This cannot be undone. "
518
- "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
  msgstr ""
520
 
521
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
1
+ #
2
  # Translators:
3
  # estevanix <aestevam@gmail.com>, 2013
4
  msgid ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-11-14 15:55+0100\n"
10
+ "Last-Translator: Codepress <info@codepress.nl>\n"
11
+ "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
12
+ "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"
18
  "X-Generator: Poedit 1.5.7\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
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
  msgid "Settings"
237
 
238
  #: ../classes/settings.php:227
239
  msgid ""
240
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
241
  msgstr ""
242
 
243
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
363
 
364
  #: ../classes/settings.php:419
365
  msgid ""
366
+ "The database has been changed between versions 1 and 2. But we made sure you "
367
+ "can still roll back to version 1x without any issues."
368
  msgstr ""
369
 
370
  #: ../classes/settings.php:422
381
 
382
  #: ../classes/settings.php:426
383
  msgid ""
384
+ "Do to the sizable refactoring the code, surounding Addons and action/"
385
+ "filters, your website may not operate correctly. It is important that you "
386
+ "read the full"
387
  msgstr ""
388
 
389
  #: ../classes/settings.php:426
435
 
436
  #: ../classes/settings.php:460
437
  msgid ""
438
+ "This page will assist you in downloading and installing each available Addon."
 
439
  msgstr ""
440
 
441
  #: ../classes/settings.php:461
480
 
481
  #: ../classes/settings.php:490
482
  msgid ""
483
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
484
+ "link"
485
  msgstr ""
486
 
487
  #: ../classes/settings.php:491
513
  #: ../classes/settings.php:589
514
  #, php-format
515
  msgid ""
516
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
517
+ "\\' to delete, \\'Cancel\\' to stop"
518
  msgstr ""
519
 
520
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
languages/cpac-sv_SE.mo CHANGED
Binary file
languages/cpac-sv_SE.po CHANGED
@@ -1,14 +1,16 @@
1
- #
2
  # Translators:
3
  # fanderzzon <fidde.andersson@telia.com>, 2013
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-08-29 15:42+0000\n"
10
- "Last-Translator: fanderzzon <fidde.andersson@telia.com>\n"
11
- "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/admin-columns/language/sv_SE/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -17,284 +19,325 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
- "X-Poedit-SourceCharset: utf-8\n"
23
 
24
- #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
26
  msgstr "Inställningar"
27
 
28
- #: ../codepress-admin-columns.php:350
29
  msgid "Edit columns"
30
  msgstr "Redigera kolumner"
31
 
32
- #: ../classes/column.php:479
33
  msgid "Thumbnail"
34
  msgstr "Miniatyrer"
35
 
36
- #: ../classes/column.php:480
37
  msgid "Medium"
38
  msgstr "Mellan"
39
 
40
- #: ../classes/column.php:481
41
  msgid "Large"
42
  msgstr "Stor"
43
 
44
- #: ../classes/column.php:482
45
  msgid "Full"
46
  msgstr "Hel"
47
 
48
- #: ../classes/column.php:774
49
  msgid "Date Format"
50
  msgstr "Datumformat"
51
 
52
- #: ../classes/column.php:775
53
  msgid "This will determine how the date will be displayed."
54
  msgstr "Detta kommer att avgöra hur datumet ska visas."
55
 
56
- #: ../classes/column.php:781
57
  msgid "Example:"
58
  msgstr "Exempel:"
59
 
60
- #: ../classes/column.php:783
61
  #, php-format
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
- msgstr "Lämna tomt för WordPress datumformat, ändra din <a href=\"%s\">standard datumformat här</a>."
 
 
66
 
67
- #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
69
  msgstr "Dokumentation om datum och tid formatering."
70
 
71
- #: ../classes/column.php:801
72
  msgid "Excerpt length"
73
  msgstr "Utdragens längd"
74
 
75
- #: ../classes/column.php:802
76
  msgid "Number of words"
77
  msgstr "Antal ord"
78
 
79
- #: ../classes/column.php:824
80
  msgid "Preview size"
81
  msgstr "Förhandsgranska storlek"
82
 
83
- #: ../classes/column.php:841 ../classes/column.php:897
84
  msgid "Custom"
85
  msgstr "Anpassad"
86
 
87
- #: ../classes/column.php:844
88
  msgid "width"
89
  msgstr "bredd"
90
 
91
- #: ../classes/column.php:847
92
  msgid "height"
93
  msgstr "höjd"
94
 
95
- #: ../classes/column.php:898 ../classes/settings.php:224
96
- #: ../classes/column/custom-field.php:72
97
  msgid "Default"
98
  msgstr "Standard"
99
 
100
- #: ../classes/column.php:923 ../classes/column.php:984
101
- #: ../classes/column/user/actions.php:65
102
  msgid "Remove"
103
  msgstr "Ta bort"
104
 
105
- #: ../classes/column.php:942
106
  msgid "Type"
107
  msgstr "Typ"
108
 
109
- #: ../classes/column.php:942
110
  msgid "Choose a column type."
111
  msgstr "Välj en kolumntyp."
112
 
113
- #: ../classes/column.php:952
 
 
 
 
 
 
114
  msgid "Label"
115
  msgstr "Etikett"
116
 
117
- #: ../classes/column.php:952
118
  msgid "This is the name which will appear as the column header."
119
  msgstr "Detta är det namn som kommer att visas som kolumnrubriken."
120
 
121
- #: ../classes/column.php:959 ../classes/column/media/width.php:12
122
  msgid "Width"
123
  msgstr "Bredd"
124
 
125
- #: ../classes/column.php:961 ../classes/column.php:962
126
  msgid "default"
127
  msgstr "standard"
128
 
129
- #: ../classes/settings.php:68
 
 
 
 
130
  msgid "Admin Columns Settings"
131
  msgstr "Admin Columns Inställningar"
132
 
133
- #: ../classes/settings.php:68 ../classes/settings.php:534
134
  #: ../classes/upgrade.php:89
135
  msgid "Admin Columns"
136
  msgstr "Admin Columns"
137
 
138
- #: ../classes/settings.php:129
139
  #, php-format
140
  msgid "%s column is already present and can not be duplicated."
141
  msgstr "%s kolumn finns redan och kan inte dupliceras."
142
 
143
- #: ../classes/settings.php:184
144
  msgid "Default settings succesfully restored."
145
  msgstr "Standardinställningar återställdes framgångsrikt."
146
 
147
- #: ../classes/settings.php:202 ../classes/settings.php:457
148
  msgid "Overview"
149
  msgstr "Översikt"
150
 
151
- #: ../classes/settings.php:205
152
  msgid ""
153
  "This plugin is for adding and removing additional columns to the "
154
  "administration screens for post(types), pages, media library, comments, "
155
  "links and users. Change the column's label and reorder them."
156
- msgstr "Denna plugin är för att lägga till och ta bort ytterligare kolumner till administrationsvyn för inlägg(typer), sidor, mediabibliotek, kommentarer, länkar och användare. Ändra kolumens etikett och ändra ordningen."
 
 
 
157
 
158
- #: ../classes/settings.php:208
159
  msgid "Basics"
160
  msgstr "Grundläggande"
161
 
162
- #: ../classes/settings.php:210
163
  msgid "Change order"
164
  msgstr "Ändra ordning"
165
 
166
- #: ../classes/settings.php:211
167
  msgid ""
168
  "By dragging the columns you can change the order which they will appear in."
169
  msgstr "Genom att dra kolumnerna så kan du ändra ordningen som de visas i."
170
 
171
- #: ../classes/settings.php:212
172
  msgid "Change label"
173
  msgstr "Ändra etikett"
174
 
175
- #: ../classes/settings.php:213
176
  msgid ""
177
  "By clicking on the triangle you will see the column options. Here you can "
178
  "change each label of the columns heading."
179
- msgstr "Genom att klicka på triangeln kommer du att se kolumnalternativ. Här kan du ändra varje etikett av kolumnernas rubrik."
 
 
180
 
181
- #: ../classes/settings.php:214
182
  msgid "Change column width"
183
  msgstr "Ändra kolumnens bredd"
184
 
185
- #: ../classes/settings.php:215
186
  msgid ""
187
  "By clicking on the triangle you will see the column options. By using the "
188
  "draggable slider you can set the width of the columns in percentages."
189
- msgstr "Genom att klicka på triangeln kommer du att se kolumnalternativ. Genom att använda dragbar reglaget kan du ställa in bredden på kolumnerna i procent."
 
 
190
 
191
- #: ../classes/settings.php:219 ../classes/column/custom-field.php:16
192
- #: ../classes/column/custom-field.php:324
193
  msgid "Custom Field"
194
  msgstr "Anpassat fält"
195
 
196
- #: ../classes/settings.php:221
197
  msgid "'Custom Field' column"
198
  msgstr "'Anpassat fält' kolumn "
199
 
200
- #: ../classes/settings.php:222
201
  msgid ""
202
  "The custom field colum uses the custom fields from posts and users. There "
203
  "are 10 types which you can set."
204
- msgstr "Det anpassade fältets kolumn använder den anpassade fältet från inlägg och användare. Det fins 10 typer som du kan ange."
 
 
205
 
206
- #: ../classes/settings.php:224
207
  msgid ""
208
  "Value: Can be either a string or array. Arrays will be flattened and values "
209
  "are seperated by a ',' comma."
210
- msgstr "Värde: Kan antingen vara en sträng eller array. Arrays ska plattas och värden åtskilda av en ',' kommatecken."
 
 
211
 
212
- #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
  #: ../classes/column/link/image.php:12
214
  msgid "Image"
215
  msgstr "Bild"
216
 
217
- #: ../classes/settings.php:225
218
  msgid ""
219
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
220
  "comma )."
221
- msgstr "Värde: ska innehålla en bildadress eller bilags-ID ( separerad av ett ',' kommatecken )."
 
 
222
 
223
- #: ../classes/settings.php:226 ../classes/column/custom-field.php:75
224
  #: ../classes/column/comment/excerpt.php:13
225
  #: ../classes/column/post/excerpt.php:13
226
  msgid "Excerpt"
227
  msgstr "Utdrag"
228
 
229
- #: ../classes/settings.php:226
230
  msgid "Value: This will show the first 20 words of the Post content."
231
  msgstr "Värde: Detta kommer visa de första 20 orden av inläggets innehåll."
232
 
233
- #: ../classes/settings.php:227 ../classes/column/custom-field.php:76
234
  msgid "Multiple Values"
235
  msgstr "Flera värden"
236
 
237
- #: ../classes/settings.php:227
238
  msgid ""
239
- "Value: should be an array. This will flatten any ( multi dimensional ) "
240
- "array."
241
- msgstr "Värde: skall vara en array. Detta planar en ( flerdimensionell ) array."
242
 
243
- #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
244
  msgid "Numeric"
245
  msgstr "Numerisk"
246
 
247
- #: ../classes/settings.php:228
248
  msgid ""
249
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
  "for sorting, so you can sort your posts on numeric (custom field) values."
251
- msgstr "Värde: Heltal bara. <br/> Om du har \"sorterings tillägget\" kommer detta att användas för sortering, så att du kan sortera dina inlägg på numeriska (anpassade fält) värden."
 
 
 
252
 
253
- #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
  #: ../classes/column/comment/date.php:12
255
  msgid "Date"
256
  msgstr "Datum"
257
 
258
- #: ../classes/settings.php:229
259
  #, php-format
260
  msgid ""
261
  "Value: Can be unix time stamp or a date format as described in the <a "
262
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
  "href='%s'>general settings</a> page."
264
- msgstr "Värde: Kan vara unix tidsstämpel eller ett datumformat som beskrivs i <a href='%s'>Codex</ a>. Du kan ändra hur datumformatet ska visas på <a href='%s'>generella inställningar</ a> sidan."
 
 
 
265
 
266
- #: ../classes/settings.php:230
267
  msgid "Post Titles"
268
  msgstr "Titel på inlägg"
269
 
270
- #: ../classes/settings.php:230
271
  msgid "Value: can be one or more Post ID's (seperated by ',')."
272
  msgstr "Värde: kan vara en eller flera post-ID (separerat med ',')."
273
 
274
- #: ../classes/settings.php:231
275
  msgid "Usernames"
276
  msgstr "Användarnamn"
277
 
278
- #: ../classes/settings.php:231
279
  msgid "Value: can be one or more User ID's (seperated by ',')."
280
  msgstr "Värde: kan vara en eller flera användar-ID (separerat med ',')."
281
 
282
- #: ../classes/settings.php:232
283
  msgid "Checkmark"
284
  msgstr "Checkmark"
285
 
286
- #: ../classes/settings.php:232
287
  msgid "Value: should be a 1 (one) or 0 (zero)."
288
  msgstr "Värde: ska vara en 1 (ett) eller 0 (noll)."
289
 
290
- #: ../classes/settings.php:233 ../classes/column/custom-field.php:82
291
  msgid "Color"
292
  msgstr "Färg"
293
 
294
- #: ../classes/settings.php:233
295
  msgid "Value: hex value color, such as #808080."
296
  msgstr "Värde: hex värde färg, som #808080."
297
 
 
 
 
 
 
 
 
 
 
 
298
  #: ../classes/settings.php:377
299
  msgid "Welcome to Admin Columns"
300
  msgstr "Välkommen till Admin Columns"
@@ -307,7 +350,9 @@ msgstr "Tack för att du uppdaterar till den senaste versionen!"
307
  msgid ""
308
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
309
  "like it."
310
- msgstr "Admin Columns är mer polerat och roligare än någonsin tidigare. Vi hoppas att du gillar det."
 
 
311
 
312
  #: ../classes/settings.php:386
313
  msgid "What’s New"
@@ -330,12 +375,16 @@ msgid ""
330
  "Addons are now activated by downloading and installing individual plugins. "
331
  "Although these plugins will not be hosted on the wordpress.org repository, "
332
  "each Add-on will continue to receive updates in the usual way."
333
- msgstr "Tillägg aktiveras nu genom att hämta och installera dem individuellt. Även om dessa tillägg inte kommer att finnas på wordpress.org förvaret, kommer varje tillägg kommer att fortsätta uppdateras som vanligt."
 
 
 
334
 
335
  #: ../classes/settings.php:400
336
  msgid ""
337
  "This website uses the Sortorder Addon. This addon needs to be downloaded."
338
- msgstr "Denna webbplats användar Sortorder tillägg. Detta tillägg behöver hämtas."
 
339
 
340
  #: ../classes/settings.php:403
341
  msgid "Addons are seperate plugins which need to be downloaded."
@@ -363,9 +412,11 @@ msgstr "Databas ändringar"
363
 
364
  #: ../classes/settings.php:419
365
  msgid ""
366
- "The database has been changed between versions 1 and 2. But we made sure you"
367
- " can still roll back to version 1x without any issues."
368
- msgstr "Databasen har ändrats mellan versionerna 1 och 2. Men vi såg till att du fortfarande kan rulla tillbaka till version 1x utan några problem."
 
 
369
 
370
  #: ../classes/settings.php:422
371
  msgid "Make sure you backup your database and then click"
@@ -381,10 +432,13 @@ msgstr "Potentiella problem"
381
 
382
  #: ../classes/settings.php:426
383
  msgid ""
384
- "Do to the sizable refactoring the code, surounding Addons and "
385
- "action/filters, your website may not operate correctly. It is important that"
386
- " you read the full"
387
- msgstr "För den betydande refactoring koden, omgivande tillägg och action/filters, så kanske din webbplats inte fungerar korrekt. Det är viktigt att du läser hela"
 
 
 
388
 
389
  #: ../classes/settings.php:426
390
  msgid "Migrating from v1 to v2"
@@ -399,7 +453,9 @@ msgstr "guide för att visa en komplett lista på förändringar."
399
  msgid ""
400
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
  "can fix it in the next release."
402
- msgstr "När du har hittat en bugg vänligen <a href=\"%s\">rapportera dem till oss</ a> så att vi kan åtgärda det i kommande utgåva."
 
 
403
 
404
  #: ../classes/settings.php:429
405
  msgid "Important!"
@@ -409,7 +465,9 @@ msgstr "Viktigt!"
409
  msgid ""
410
  "If you updated the Admin Columns plugin without prior knowledge of such "
411
  "changes, Please roll back to the latest"
412
- msgstr "Om du uppdaterat Admin Columns tillägget utan förkunskaper om sådana ändringar, vänligen rulla tillbaka till den senaste"
 
 
413
 
414
  #: ../classes/settings.php:429
415
  msgid "version 1"
@@ -431,13 +489,16 @@ msgstr "Lära dig mer"
431
  msgid ""
432
  "New to v2, all Addons act as separate plugins which need to be individually "
433
  "downloaded, installed and updated."
434
- msgstr "Nytt på v2, alla tillägg agerar separat som behöver hämtas individuellt, installeras och uppdateras."
 
 
435
 
436
  #: ../classes/settings.php:460
437
  msgid ""
438
- "This page will assist you in downloading and installing each available "
439
- "Addon."
440
- msgstr "Denna sida kommer att hjälpa dig att hämta och installera varje tillgängligt tillägg."
 
441
 
442
  #: ../classes/settings.php:461
443
  msgid "Available Addons"
@@ -477,13 +538,17 @@ msgstr "Tillägg - > Lägg till -> Ladda upp"
477
 
478
  #: ../classes/settings.php:489
479
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
480
- msgstr "Använd uppladdaren för att bläddra, välja och installera ditt tillägg (.zip fil)"
 
 
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
- " link"
486
- msgstr "När tillägget har laddas upp och installerats, klicka på 'Aktivera tillägg' länken"
 
 
487
 
488
  #: ../classes/settings.php:491
489
  msgid "The Add-on is now installed and activated!"
@@ -493,142 +558,167 @@ msgstr "Tillägget är nu installerat och aktiverat!"
493
  #, php-format
494
  msgid ""
495
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
496
- msgstr "För automatiska uppdatering se till att <a href='%s'>ange din licensnyckel</a>."
 
 
497
 
498
  #: ../classes/settings.php:502
499
  msgid "Start using Admin Columns"
500
  msgstr "Börja med att använda Admin Columns"
501
 
502
- #: ../classes/settings.php:580
503
  msgid "Store settings"
504
  msgstr "Spara inställningar"
505
 
506
- #: ../classes/settings.php:585
507
  msgid "Update"
508
  msgstr "Uppdatera"
509
 
510
- #: ../classes/settings.php:585
511
  msgid "Publish"
512
  msgstr "Publicera"
513
 
514
- #: ../classes/settings.php:589
515
  #, php-format
516
  msgid ""
517
- "Warning! The %s columns data will be deleted. This cannot be undone. "
518
- "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
- msgstr "Varning! Den %s kolumner data kommer att raderas. Detta kan inte ångras. \\'OK\\' för att ta bort, \\'Avbryt\\' för att stoppa"
 
 
520
 
521
- #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
  #: ../classes/column/post/actions.php:53
523
  msgid "Restore"
524
  msgstr "Återställ"
525
 
526
- #: ../classes/settings.php:590
527
  msgid "columns"
528
  msgstr "kolumner"
529
 
530
- #: ../classes/settings.php:600
531
  msgid "Get the Pro Add-on"
532
  msgstr "Skaffa Pro tillägget"
533
 
534
- #: ../classes/settings.php:604
535
  msgid "Add Sorting"
536
  msgstr "Lägg till sortering"
537
 
538
- #: ../classes/settings.php:605
539
  msgid "Add Filtering"
540
  msgstr "Lägg till filtrering"
541
 
542
- #: ../classes/settings.php:606
543
  msgid "Add Import/Export"
544
  msgstr "Lägg till Import/Export"
545
 
546
- #: ../classes/settings.php:609
547
  #, php-format
548
  msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
549
  msgstr "Titta på <a href=\"%s\">Pro tillägg</a> för mer information!"
550
 
551
  #: ../classes/settings.php:617
 
 
 
 
 
 
 
 
 
 
 
 
552
  msgid "Support"
553
  msgstr "Support"
554
 
555
- #: ../classes/settings.php:620
556
  msgid "Check the <strong>Help</strong> section in the top-right screen."
557
- msgstr "Kolla på <strong>Hjälp</ strong> sektionen i den övre högra delen av skärmen."
 
558
 
559
- #: ../classes/settings.php:622
560
  #, php-format
561
  msgid ""
562
  "For full documentation, bug reports, feature suggestions and other tips <a "
563
  "href='%s'>visit the Admin Columns website</a>"
564
- msgstr "För fullständig dokumentation, felrapporter, förslag på funktioner och andra tips <a href='%s'>besök Admin Columns webbsida</ a>"
 
 
565
 
566
- #: ../classes/settings.php:642
567
  msgid "Drag and drop to reorder"
568
  msgstr "Drag och släpp för att ändra ordning"
569
 
570
- #: ../classes/settings.php:645
571
  msgid "Add Column"
572
  msgstr "Lägg till kolumn"
573
 
574
- #: ../classes/settings.php:696
575
  msgid "General Settings"
576
  msgstr "Allmänna inställningar"
577
 
578
- #: ../classes/settings.php:697
579
  msgid "Customize your Admin Columns settings."
580
  msgstr "Anpassa dina Admin Columns inställningar."
581
 
582
- #: ../classes/settings.php:710
583
  msgid "Show hidden custom fields. Default is <code>off</code>."
584
  msgstr "Visa dolda anpassade fält. Standard är <code>av</code>."
585
 
586
- #: ../classes/settings.php:716
587
  msgid ""
588
  "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
589
- msgstr "Visa \"Redigera kolumner\" knappen på admin skärmen. Standard är <code>av</code>."
 
 
590
 
591
- #: ../classes/settings.php:723
592
  msgid "Save"
593
  msgstr "Spara"
594
 
595
- #: ../classes/settings.php:763
596
  msgid "Restore Settings"
597
  msgstr "Återställ inställningar"
598
 
599
- #: ../classes/settings.php:764
600
  msgid "This will delete all column settings and restore the default settings."
601
- msgstr "Detta kommer att radera alla kolumner inställningar och återställa till standardinställningarna"
 
 
602
 
603
- #: ../classes/settings.php:770
604
  msgid "Restore default settings"
605
  msgstr "Återställ till standardinställningar"
606
 
607
- #: ../classes/settings.php:770
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
- msgstr "Varning! ALLA sparade admin kolumners data kommer att radera. Detta kan inte ångras. \\'OK\\' för att radera, \\'Cancel\\' för att avbryta "
 
 
612
 
613
- #: ../classes/storage_model.php:167
614
  msgid "settings succesfully restored."
615
  msgstr "inställningar återställdes framgångsrikt."
616
 
617
- #: ../classes/storage_model.php:181
618
  msgid "No columns settings available."
619
  msgstr "Inga inställningar för kolumner är tillgängliga."
620
 
621
- #: ../classes/storage_model.php:204
622
  #, php-format
623
  msgid "You are trying to store the same settings for %s."
624
  msgstr "Du försöker lagra samma inställningar för %s."
625
 
626
- #: ../classes/storage_model.php:208
627
  #, php-format
628
  msgid "Settings for %s updated succesfully."
629
  msgstr "Inställningar för %s uppdaterades med framgång."
630
 
631
- #: ../classes/storage_model.php:577 ../classes/column/post/actions.php:64
632
  msgid "View"
633
  msgstr "Visa"
634
 
@@ -684,53 +774,55 @@ msgstr "Fel"
684
  msgid ""
685
  "Sorry. Something went wrong during the upgrade process. Please report this "
686
  "on the support forum."
687
- msgstr "Ursäkta. Något gick fel under uppgraderingen. Vänligen rapportera detta på support forumet. "
 
 
688
 
689
- #: ../classes/column/custom-field.php:74 ../classes/storage_model/media.php:13
 
 
 
 
690
  msgid "Media Library"
691
  msgstr "Mediabibliotek"
692
 
693
- #: ../classes/column/custom-field.php:79
694
  msgid "Post Title (Post ID's)"
695
  msgstr "Titel"
696
 
697
- #: ../classes/column/custom-field.php:80
698
  msgid "Username (User ID's)"
699
  msgstr "Användarnamn (Användar-ID)"
700
 
701
- #: ../classes/column/custom-field.php:81
702
- msgid "Checkmark (true/false)"
703
- msgstr "Checkmark (sant/falskt)"
704
-
705
- #: ../classes/column/custom-field.php:324
706
  msgid "Select your custom field."
707
  msgstr "Välj ditt anpassade fält."
708
 
709
- #: ../classes/column/custom-field.php:334
710
  msgid "No custom fields available."
711
  msgstr "Inget anpassat fält är tillgängligt."
712
 
713
- #: ../classes/column/custom-field.php:341
714
  msgid "Field Type"
715
  msgstr "Fälttyp"
716
 
717
- #: ../classes/column/custom-field.php:341
718
  msgid "This will determine how the value will be displayed."
719
  msgstr "Detta avgör hur värdet kommer att visas."
720
 
721
- #: ../classes/column/custom-field.php:384
722
  msgid "Before"
723
  msgstr "Innan"
724
 
725
- #: ../classes/column/custom-field.php:384
726
  msgid "This text will appear before the custom field value."
727
  msgstr "Denna text kommer att visas innan det anpassade fältet värde."
728
 
729
- #: ../classes/column/custom-field.php:390
730
  msgid "After"
731
  msgstr "Efter"
732
 
733
- #: ../classes/column/custom-field.php:390
734
  msgid "This text will appear after the custom field value."
735
  msgstr "Denna text kommer att visas efter det anpassade fältet värde."
736
 
@@ -758,7 +850,7 @@ msgstr "Radera permanent"
758
 
759
  #: ../classes/column/comment/actions.php:96
760
  #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
761
- #: ../classes/column/user/actions.php:57
762
  msgid "Edit"
763
  msgstr "Redigera"
764
 
@@ -810,11 +902,6 @@ msgstr "Datum GMT"
810
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
811
  msgstr "Skickad den <a href=\"%1$s\">%2$s vid %3$s</a>"
812
 
813
- #: ../classes/column/comment/ID.php:12 ../classes/column/link/ID.php:12
814
- #: ../classes/column/media/ID.php:12 ../classes/column/post/ID.php:12
815
- msgid "ID"
816
- msgstr "ID"
817
-
818
  #: ../classes/column/comment/reply-to.php:12
819
  msgid "In Reply To"
820
  msgstr "Som svar på"
@@ -829,9 +916,11 @@ msgstr "Antal ord"
829
  msgid ""
830
  "You are about to delete this link '%s'\n"
831
  " 'Cancel' to stop, 'OK' to delete."
832
- msgstr "Du är på väg att radera denna länk '%s'\n 'Avbryt' för att avbryta, 'OK' för att radera"
 
 
833
 
834
- #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
  msgid "Delete"
836
  msgstr "Radera"
837
 
@@ -960,7 +1049,7 @@ msgstr "Flytta detta objekt till papperskorgen"
960
 
961
  #: ../classes/column/post/actions.php:55
962
  #: ../classes/column/post/comment-count.php:34
963
- #: ../classes/column/post/status.php:35
964
  msgid "Trash"
965
  msgstr "Papperskorg"
966
 
@@ -994,40 +1083,36 @@ msgstr "Bilaga"
994
  msgid "Display Author As"
995
  msgstr "Visa som författare"
996
 
997
- #: ../classes/column/post/author-name.php:33
998
  msgid "Display Name"
999
  msgstr "Visa namn"
1000
 
1001
- #: ../classes/column/post/author-name.php:34
1002
- msgid "First Name"
1003
- msgstr "Förnamn"
1004
-
1005
- #: ../classes/column/post/author-name.php:35
1006
  msgid "Last Name"
1007
  msgstr "Efternamn"
1008
 
1009
- #: ../classes/column/post/author-name.php:36
1010
  #: ../classes/column/user/nickname.php:14
1011
  msgid "Nickname"
1012
  msgstr "Smeknamn"
1013
 
1014
- #: ../classes/column/post/author-name.php:37
1015
  msgid "User Login"
1016
  msgstr "Användare Loggin"
1017
 
1018
- #: ../classes/column/post/author-name.php:38
1019
  msgid "User Email"
1020
  msgstr "Användare Email"
1021
 
1022
- #: ../classes/column/post/author-name.php:39 ../classes/column/user/ID.php:14
1023
  msgid "User ID"
1024
  msgstr "Användar-ID"
1025
 
1026
- #: ../classes/column/post/author-name.php:40
1027
  msgid "First and Last Name"
1028
  msgstr "Förnamn och efternamn"
1029
 
1030
- #: ../classes/column/post/author-name.php:106
1031
  msgid "This is the format of the author name."
1032
  msgstr "Detta är formatet på författarens namn."
1033
 
@@ -1051,12 +1136,12 @@ msgstr "Avvaktan"
1051
  msgid "Spam"
1052
  msgstr "Spam"
1053
 
1054
- #: ../classes/column/post/comment-count.php:78
1055
  #: ../classes/column/post/comment-status.php:14
1056
  msgid "Comment status"
1057
  msgstr "Kommentarsstatus"
1058
 
1059
- #: ../classes/column/post/comment-count.php:78
1060
  msgid "Select which comment status you like to display."
1061
  msgstr "Välj vilken kommentarsstatus du vill visa."
1062
 
@@ -1100,23 +1185,23 @@ msgstr "Permalänk"
1100
  msgid "Status"
1101
  msgstr "Status"
1102
 
1103
- #: ../classes/column/post/status.php:30
1104
  msgid "Published"
1105
  msgstr "Publicerad"
1106
 
1107
- #: ../classes/column/post/status.php:31
1108
  msgid "Draft"
1109
  msgstr "Utkast"
1110
 
1111
- #: ../classes/column/post/status.php:32
1112
  msgid "Scheduled"
1113
  msgstr "Planerat"
1114
 
1115
- #: ../classes/column/post/status.php:33
1116
  msgid "Private"
1117
  msgstr "Privat"
1118
 
1119
- #: ../classes/column/post/status.php:34
1120
  msgid "Pending Review"
1121
  msgstr "Väntar på granskning"
1122
 
@@ -1125,7 +1210,7 @@ msgid "Sticky"
1125
  msgstr "Klistrad"
1126
 
1127
  #: ../classes/column/post/taxonomy.php:12
1128
- #: ../classes/column/post/taxonomy.php:68
1129
  msgid "Taxonomy"
1130
  msgstr "Taxonomi"
1131
 
@@ -1145,7 +1230,7 @@ msgstr "Efternamn"
1145
  msgid "Post Count"
1146
  msgstr "Inläggsräknare"
1147
 
1148
- #: ../classes/column/user/post-count.php:92
1149
  msgid "Post Type"
1150
  msgstr "Inläggstyp"
1151
 
1
+ #
2
  # Translators:
3
  # fanderzzon <fidde.andersson@telia.com>, 2013
4
+ # codepress <info@codepress.nl>, 2013
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Admin Columns\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2013-11-14 16:56+0100\n"
10
+ "PO-Revision-Date: 2013-11-19 09:57+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"
19
  "X-Generator: Poedit 1.5.7\n"
20
  "X-Poedit-Basepath: .\n"
21
  "X-Poedit-KeywordsList: __;_e\n"
22
+ "X-Poedit-SourceCharset: UTF-8\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPath-1: ..\n"
 
25
 
26
+ #: ../codepress-admin-columns.php:236 ../classes/settings.php:536
27
  msgid "Settings"
28
  msgstr "Inställningar"
29
 
30
+ #: ../codepress-admin-columns.php:357
31
  msgid "Edit columns"
32
  msgstr "Redigera kolumner"
33
 
34
+ #: ../classes/column.php:489
35
  msgid "Thumbnail"
36
  msgstr "Miniatyrer"
37
 
38
+ #: ../classes/column.php:490
39
  msgid "Medium"
40
  msgstr "Mellan"
41
 
42
+ #: ../classes/column.php:491
43
  msgid "Large"
44
  msgstr "Stor"
45
 
46
+ #: ../classes/column.php:492
47
  msgid "Full"
48
  msgstr "Hel"
49
 
50
+ #: ../classes/column.php:784
51
  msgid "Date Format"
52
  msgstr "Datumformat"
53
 
54
+ #: ../classes/column.php:785
55
  msgid "This will determine how the date will be displayed."
56
  msgstr "Detta kommer att avgöra hur datumet ska visas."
57
 
58
+ #: ../classes/column.php:791
59
  msgid "Example:"
60
  msgstr "Exempel:"
61
 
62
+ #: ../classes/column.php:793
63
  #, php-format
64
  msgid ""
65
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
66
  "date format here</a>."
67
+ msgstr ""
68
+ "Lämna tomt för WordPress datumformat, ändra din <a href=\"%s\">standard "
69
+ "datumformat här</a>."
70
 
71
+ #: ../classes/column.php:794
72
  msgid "Documentation on date and time formatting."
73
  msgstr "Dokumentation om datum och tid formatering."
74
 
75
+ #: ../classes/column.php:811
76
  msgid "Excerpt length"
77
  msgstr "Utdragens längd"
78
 
79
+ #: ../classes/column.php:812
80
  msgid "Number of words"
81
  msgstr "Antal ord"
82
 
83
+ #: ../classes/column.php:834
84
  msgid "Preview size"
85
  msgstr "Förhandsgranska storlek"
86
 
87
+ #: ../classes/column.php:851 ../classes/column.php:908
88
  msgid "Custom"
89
  msgstr "Anpassad"
90
 
91
+ #: ../classes/column.php:854
92
  msgid "width"
93
  msgstr "bredd"
94
 
95
+ #: ../classes/column.php:857
96
  msgid "height"
97
  msgstr "höjd"
98
 
99
+ #: ../classes/column.php:909 ../classes/settings.php:222
100
+ #: ../classes/column/custom-field.php:70
101
  msgid "Default"
102
  msgstr "Standard"
103
 
104
+ #: ../classes/column.php:934 ../classes/column.php:996
105
+ #: ../classes/column/user/actions.php:74
106
  msgid "Remove"
107
  msgstr "Ta bort"
108
 
109
+ #: ../classes/column.php:953
110
  msgid "Type"
111
  msgstr "Typ"
112
 
113
+ #: ../classes/column.php:953
114
  msgid "Choose a column type."
115
  msgstr "Välj en kolumntyp."
116
 
117
+ #: ../classes/column.php:953 ../classes/column/comment/ID.php:12
118
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
119
+ #: ../classes/column/post/ID.php:12
120
+ msgid "ID"
121
+ msgstr "ID"
122
+
123
+ #: ../classes/column.php:963
124
  msgid "Label"
125
  msgstr "Etikett"
126
 
127
+ #: ../classes/column.php:963
128
  msgid "This is the name which will appear as the column header."
129
  msgstr "Detta är det namn som kommer att visas som kolumnrubriken."
130
 
131
+ #: ../classes/column.php:970 ../classes/column/media/width.php:12
132
  msgid "Width"
133
  msgstr "Bredd"
134
 
135
+ #: ../classes/column.php:972 ../classes/column.php:973
136
  msgid "default"
137
  msgstr "standard"
138
 
139
+ #: ../classes/column.php:997
140
+ msgid "type"
141
+ msgstr ""
142
+
143
+ #: ../classes/settings.php:64
144
  msgid "Admin Columns Settings"
145
  msgstr "Admin Columns Inställningar"
146
 
147
+ #: ../classes/settings.php:64 ../classes/settings.php:535
148
  #: ../classes/upgrade.php:89
149
  msgid "Admin Columns"
150
  msgstr "Admin Columns"
151
 
152
+ #: ../classes/settings.php:126
153
  #, php-format
154
  msgid "%s column is already present and can not be duplicated."
155
  msgstr "%s kolumn finns redan och kan inte dupliceras."
156
 
157
+ #: ../classes/settings.php:182
158
  msgid "Default settings succesfully restored."
159
  msgstr "Standardinställningar återställdes framgångsrikt."
160
 
161
+ #: ../classes/settings.php:200 ../classes/settings.php:457
162
  msgid "Overview"
163
  msgstr "Översikt"
164
 
165
+ #: ../classes/settings.php:203
166
  msgid ""
167
  "This plugin is for adding and removing additional columns to the "
168
  "administration screens for post(types), pages, media library, comments, "
169
  "links and users. Change the column's label and reorder them."
170
+ msgstr ""
171
+ "Denna plugin är för att lägga till och ta bort ytterligare kolumner till "
172
+ "administrationsvyn för inlägg(typer), sidor, mediabibliotek, kommentarer, "
173
+ "länkar och användare. Ändra kolumens etikett och ändra ordningen."
174
 
175
+ #: ../classes/settings.php:206
176
  msgid "Basics"
177
  msgstr "Grundläggande"
178
 
179
+ #: ../classes/settings.php:208
180
  msgid "Change order"
181
  msgstr "Ändra ordning"
182
 
183
+ #: ../classes/settings.php:209
184
  msgid ""
185
  "By dragging the columns you can change the order which they will appear in."
186
  msgstr "Genom att dra kolumnerna så kan du ändra ordningen som de visas i."
187
 
188
+ #: ../classes/settings.php:210
189
  msgid "Change label"
190
  msgstr "Ändra etikett"
191
 
192
+ #: ../classes/settings.php:211
193
  msgid ""
194
  "By clicking on the triangle you will see the column options. Here you can "
195
  "change each label of the columns heading."
196
+ msgstr ""
197
+ "Genom att klicka på triangeln kommer du att se kolumnalternativ. Här kan du "
198
+ "ändra varje etikett av kolumnernas rubrik."
199
 
200
+ #: ../classes/settings.php:212
201
  msgid "Change column width"
202
  msgstr "Ändra kolumnens bredd"
203
 
204
+ #: ../classes/settings.php:213
205
  msgid ""
206
  "By clicking on the triangle you will see the column options. By using the "
207
  "draggable slider you can set the width of the columns in percentages."
208
+ msgstr ""
209
+ "Genom att klicka på triangeln kommer du att se kolumnalternativ. Genom att "
210
+ "använda dragbar reglaget kan du ställa in bredden på kolumnerna i procent."
211
 
212
+ #: ../classes/settings.php:217 ../classes/column/custom-field.php:16
213
+ #: ../classes/column/custom-field.php:379
214
  msgid "Custom Field"
215
  msgstr "Anpassat fält"
216
 
217
+ #: ../classes/settings.php:219
218
  msgid "'Custom Field' column"
219
  msgstr "'Anpassat fält' kolumn "
220
 
221
+ #: ../classes/settings.php:220
222
  msgid ""
223
  "The custom field colum uses the custom fields from posts and users. There "
224
  "are 10 types which you can set."
225
+ msgstr ""
226
+ "Det anpassade fältets kolumn använder den anpassade fältet från inlägg och "
227
+ "användare. Det fins 10 typer som du kan ange."
228
 
229
+ #: ../classes/settings.php:222
230
  msgid ""
231
  "Value: Can be either a string or array. Arrays will be flattened and values "
232
  "are seperated by a ',' comma."
233
+ msgstr ""
234
+ "Värde: Kan antingen vara en sträng eller array. Arrays ska plattas och "
235
+ "värden åtskilda av en ',' kommatecken."
236
 
237
+ #: ../classes/settings.php:223 ../classes/column/custom-field.php:76
238
  #: ../classes/column/link/image.php:12
239
  msgid "Image"
240
  msgstr "Bild"
241
 
242
+ #: ../classes/settings.php:223
243
  msgid ""
244
  "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
245
  "comma )."
246
+ msgstr ""
247
+ "Värde: ska innehålla en bildadress eller bilags-ID ( separerad av ett ',' "
248
+ "kommatecken )."
249
 
250
+ #: ../classes/settings.php:224 ../classes/column/custom-field.php:75
251
  #: ../classes/column/comment/excerpt.php:13
252
  #: ../classes/column/post/excerpt.php:13
253
  msgid "Excerpt"
254
  msgstr "Utdrag"
255
 
256
+ #: ../classes/settings.php:224
257
  msgid "Value: This will show the first 20 words of the Post content."
258
  msgstr "Värde: Detta kommer visa de första 20 orden av inläggets innehåll."
259
 
260
+ #: ../classes/settings.php:225 ../classes/column/custom-field.php:78
261
  msgid "Multiple Values"
262
  msgstr "Flera värden"
263
 
264
+ #: ../classes/settings.php:225
265
  msgid ""
266
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
267
+ msgstr ""
268
+ "Värde: skall vara en array. Detta planar en ( flerdimensionell ) array."
269
 
270
+ #: ../classes/settings.php:226 ../classes/column/custom-field.php:79
271
  msgid "Numeric"
272
  msgstr "Numerisk"
273
 
274
+ #: ../classes/settings.php:226
275
  msgid ""
276
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
277
  "for sorting, so you can sort your posts on numeric (custom field) values."
278
+ msgstr ""
279
+ "Värde: Heltal bara. <br/> Om du har \"sorterings tillägget\" kommer detta "
280
+ "att användas för sortering, så att du kan sortera dina inlägg på numeriska "
281
+ "(anpassade fält) värden."
282
 
283
+ #: ../classes/settings.php:227 ../classes/column/custom-field.php:74
284
  #: ../classes/column/comment/date.php:12
285
  msgid "Date"
286
  msgstr "Datum"
287
 
288
+ #: ../classes/settings.php:227
289
  #, php-format
290
  msgid ""
291
  "Value: Can be unix time stamp or a date format as described in the <a "
292
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
293
  "href='%s'>general settings</a> page."
294
+ msgstr ""
295
+ "Värde: Kan vara unix tidsstämpel eller ett datumformat som beskrivs i <a "
296
+ "href='%s'>Codex</a>. Du kan ändra hur datumformatet ska visas på <a "
297
+ "href='%s'>generella inställningar</a> sidan."
298
 
299
+ #: ../classes/settings.php:228
300
  msgid "Post Titles"
301
  msgstr "Titel på inlägg"
302
 
303
+ #: ../classes/settings.php:228
304
  msgid "Value: can be one or more Post ID's (seperated by ',')."
305
  msgstr "Värde: kan vara en eller flera post-ID (separerat med ',')."
306
 
307
+ #: ../classes/settings.php:229
308
  msgid "Usernames"
309
  msgstr "Användarnamn"
310
 
311
+ #: ../classes/settings.php:229
312
  msgid "Value: can be one or more User ID's (seperated by ',')."
313
  msgstr "Värde: kan vara en eller flera användar-ID (separerat med ',')."
314
 
315
+ #: ../classes/settings.php:230
316
  msgid "Checkmark"
317
  msgstr "Checkmark"
318
 
319
+ #: ../classes/settings.php:230
320
  msgid "Value: should be a 1 (one) or 0 (zero)."
321
  msgstr "Värde: ska vara en 1 (ett) eller 0 (noll)."
322
 
323
+ #: ../classes/settings.php:231 ../classes/column/custom-field.php:72
324
  msgid "Color"
325
  msgstr "Färg"
326
 
327
+ #: ../classes/settings.php:231
328
  msgid "Value: hex value color, such as #808080."
329
  msgstr "Värde: hex värde färg, som #808080."
330
 
331
+ #: ../classes/settings.php:232 ../classes/column/custom-field.php:73
332
+ msgid "Counter"
333
+ msgstr ""
334
+
335
+ #: ../classes/settings.php:232
336
+ msgid ""
337
+ "Value: Can be either a string or array. This will display a count of the "
338
+ "number of times the meta key is used by the item."
339
+ msgstr ""
340
+
341
  #: ../classes/settings.php:377
342
  msgid "Welcome to Admin Columns"
343
  msgstr "Välkommen till Admin Columns"
350
  msgid ""
351
  "Admin Columns is more polished and enjoyable than ever before. We hope you "
352
  "like it."
353
+ msgstr ""
354
+ "Admin Columns är mer polerat och roligare än någonsin tidigare. Vi hoppas "
355
+ "att du gillar det."
356
 
357
  #: ../classes/settings.php:386
358
  msgid "What’s New"
375
  "Addons are now activated by downloading and installing individual plugins. "
376
  "Although these plugins will not be hosted on the wordpress.org repository, "
377
  "each Add-on will continue to receive updates in the usual way."
378
+ msgstr ""
379
+ "Tillägg aktiveras nu genom att hämta och installera dem individuellt. Även "
380
+ "om dessa tillägg inte kommer att finnas på wordpress.org förvaret, kommer "
381
+ "varje tillägg kommer att fortsätta uppdateras som vanligt."
382
 
383
  #: ../classes/settings.php:400
384
  msgid ""
385
  "This website uses the Sortorder Addon. This addon needs to be downloaded."
386
+ msgstr ""
387
+ "Denna webbplats användar Sortorder tillägg. Detta tillägg behöver hämtas."
388
 
389
  #: ../classes/settings.php:403
390
  msgid "Addons are seperate plugins which need to be downloaded."
412
 
413
  #: ../classes/settings.php:419
414
  msgid ""
415
+ "The database has been changed between versions 1 and 2. But we made sure you "
416
+ "can still roll back to version 1x without any issues."
417
+ msgstr ""
418
+ "Databasen har ändrats mellan versionerna 1 och 2. Men vi såg till att du "
419
+ "fortfarande kan rulla tillbaka till version 1x utan några problem."
420
 
421
  #: ../classes/settings.php:422
422
  msgid "Make sure you backup your database and then click"
432
 
433
  #: ../classes/settings.php:426
434
  msgid ""
435
+ "Do to the sizable refactoring the code, surounding Addons and action/"
436
+ "filters, your website may not operate correctly. It is important that you "
437
+ "read the full"
438
+ msgstr ""
439
+ "För den betydande refactoring koden, omgivande tillägg och action/filters, "
440
+ "så kanske din webbplats inte fungerar korrekt. Det är viktigt att du läser "
441
+ "hela"
442
 
443
  #: ../classes/settings.php:426
444
  msgid "Migrating from v1 to v2"
453
  msgid ""
454
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
455
  "can fix it in the next release."
456
+ msgstr ""
457
+ "När du har hittat en bugg vänligen <a href=\"%s\">rapportera dem till oss</"
458
+ "a> så att vi kan åtgärda det i kommande utgåva."
459
 
460
  #: ../classes/settings.php:429
461
  msgid "Important!"
465
  msgid ""
466
  "If you updated the Admin Columns plugin without prior knowledge of such "
467
  "changes, Please roll back to the latest"
468
+ msgstr ""
469
+ "Om du uppdaterat Admin Columns tillägget utan förkunskaper om sådana "
470
+ "ändringar, vänligen rulla tillbaka till den senaste"
471
 
472
  #: ../classes/settings.php:429
473
  msgid "version 1"
489
  msgid ""
490
  "New to v2, all Addons act as separate plugins which need to be individually "
491
  "downloaded, installed and updated."
492
+ msgstr ""
493
+ "Nytt på v2, alla tillägg agerar separat som behöver hämtas individuellt, "
494
+ "installeras och uppdateras."
495
 
496
  #: ../classes/settings.php:460
497
  msgid ""
498
+ "This page will assist you in downloading and installing each available Addon."
499
+ msgstr ""
500
+ "Denna sida kommer att hjälpa dig att hämta och installera varje tillgängligt "
501
+ "tillägg."
502
 
503
  #: ../classes/settings.php:461
504
  msgid "Available Addons"
538
 
539
  #: ../classes/settings.php:489
540
  msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
541
+ msgstr ""
542
+ "Använd uppladdaren för att bläddra, välja och installera ditt tillägg (.zip "
543
+ "fil)"
544
 
545
  #: ../classes/settings.php:490
546
  msgid ""
547
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
548
+ "link"
549
+ msgstr ""
550
+ "När tillägget har laddas upp och installerats, klicka på 'Aktivera tillägg' "
551
+ "länken"
552
 
553
  #: ../classes/settings.php:491
554
  msgid "The Add-on is now installed and activated!"
558
  #, php-format
559
  msgid ""
560
  "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
561
+ msgstr ""
562
+ "För automatiska uppdatering se till att <a href='%s'>ange din licensnyckel</"
563
+ "a>."
564
 
565
  #: ../classes/settings.php:502
566
  msgid "Start using Admin Columns"
567
  msgstr "Börja med att använda Admin Columns"
568
 
569
+ #: ../classes/settings.php:577
570
  msgid "Store settings"
571
  msgstr "Spara inställningar"
572
 
573
+ #: ../classes/settings.php:581
574
  msgid "Update"
575
  msgstr "Uppdatera"
576
 
577
+ #: ../classes/settings.php:581
578
  msgid "Publish"
579
  msgstr "Publicera"
580
 
581
+ #: ../classes/settings.php:585
582
  #, php-format
583
  msgid ""
584
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
585
+ "\\' to delete, \\'Cancel\\' to stop"
586
+ msgstr ""
587
+ "Varning! Den %s kolumner data kommer att raderas. Detta kan inte ångras. "
588
+ "\\'OK\\' för att ta bort, \\'Avbryt\\' för att stoppa"
589
 
590
+ #: ../classes/settings.php:586 ../classes/column/comment/actions.php:86
591
  #: ../classes/column/post/actions.php:53
592
  msgid "Restore"
593
  msgstr "Återställ"
594
 
595
+ #: ../classes/settings.php:586
596
  msgid "columns"
597
  msgstr "kolumner"
598
 
599
+ #: ../classes/settings.php:599
600
  msgid "Get the Pro Add-on"
601
  msgstr "Skaffa Pro tillägget"
602
 
603
+ #: ../classes/settings.php:603
604
  msgid "Add Sorting"
605
  msgstr "Lägg till sortering"
606
 
607
+ #: ../classes/settings.php:604
608
  msgid "Add Filtering"
609
  msgstr "Lägg till filtrering"
610
 
611
+ #: ../classes/settings.php:605
612
  msgid "Add Import/Export"
613
  msgstr "Lägg till Import/Export"
614
 
615
+ #: ../classes/settings.php:608
616
  #, php-format
617
  msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
618
  msgstr "Titta på <a href=\"%s\">Pro tillägg</a> för mer information!"
619
 
620
  #: ../classes/settings.php:617
621
+ msgid "Subscribe to receive news &amp; updates below."
622
+ msgstr ""
623
+
624
+ #: ../classes/settings.php:620 ../classes/column/post/author-name.php:35
625
+ msgid "First Name"
626
+ msgstr "Förnamn"
627
+
628
+ #: ../classes/settings.php:624
629
+ msgid "Your Email"
630
+ msgstr ""
631
+
632
+ #: ../classes/settings.php:635
633
  msgid "Support"
634
  msgstr "Support"
635
 
636
+ #: ../classes/settings.php:638
637
  msgid "Check the <strong>Help</strong> section in the top-right screen."
638
+ msgstr ""
639
+ "Kolla på <strong>Hjälp</strong> sektionen i den övre högra delen av skärmen."
640
 
641
+ #: ../classes/settings.php:641
642
  #, php-format
643
  msgid ""
644
  "For full documentation, bug reports, feature suggestions and other tips <a "
645
  "href='%s'>visit the Admin Columns website</a>"
646
+ msgstr ""
647
+ "För fullständig dokumentation, felrapporter, förslag på funktioner och andra "
648
+ "tips <a href='%s'>besök Admin Columns webbsida</a>"
649
 
650
+ #: ../classes/settings.php:669
651
  msgid "Drag and drop to reorder"
652
  msgstr "Drag och släpp för att ändra ordning"
653
 
654
+ #: ../classes/settings.php:672
655
  msgid "Add Column"
656
  msgstr "Lägg till kolumn"
657
 
658
+ #: ../classes/settings.php:720
659
  msgid "General Settings"
660
  msgstr "Allmänna inställningar"
661
 
662
+ #: ../classes/settings.php:721
663
  msgid "Customize your Admin Columns settings."
664
  msgstr "Anpassa dina Admin Columns inställningar."
665
 
666
+ #: ../classes/settings.php:734
667
  msgid "Show hidden custom fields. Default is <code>off</code>."
668
  msgstr "Visa dolda anpassade fält. Standard är <code>av</code>."
669
 
670
+ #: ../classes/settings.php:740
671
  msgid ""
672
  "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
673
+ msgstr ""
674
+ "Visa \"Redigera kolumner\" knappen på admin skärmen. Standard är <code>av</"
675
+ "code>."
676
 
677
+ #: ../classes/settings.php:747
678
  msgid "Save"
679
  msgstr "Spara"
680
 
681
+ #: ../classes/settings.php:787
682
  msgid "Restore Settings"
683
  msgstr "Återställ inställningar"
684
 
685
+ #: ../classes/settings.php:788
686
  msgid "This will delete all column settings and restore the default settings."
687
+ msgstr ""
688
+ "Detta kommer att radera alla kolumner inställningar och återställa till "
689
+ "standardinställningarna"
690
 
691
+ #: ../classes/settings.php:794
692
  msgid "Restore default settings"
693
  msgstr "Återställ till standardinställningar"
694
 
695
+ #: ../classes/settings.php:794
696
  msgid ""
697
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
698
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
699
+ msgstr ""
700
+ "Varning! ALLA sparade admin kolumners data kommer att radera. Detta kan inte "
701
+ "ångras. \\'OK\\' för att radera, \\'Cancel\\' för att avbryta "
702
 
703
+ #: ../classes/storage_model.php:181
704
  msgid "settings succesfully restored."
705
  msgstr "inställningar återställdes framgångsrikt."
706
 
707
+ #: ../classes/storage_model.php:198
708
  msgid "No columns settings available."
709
  msgstr "Inga inställningar för kolumner är tillgängliga."
710
 
711
+ #: ../classes/storage_model.php:221
712
  #, php-format
713
  msgid "You are trying to store the same settings for %s."
714
  msgstr "Du försöker lagra samma inställningar för %s."
715
 
716
+ #: ../classes/storage_model.php:225
717
  #, php-format
718
  msgid "Settings for %s updated succesfully."
719
  msgstr "Inställningar för %s uppdaterades med framgång."
720
 
721
+ #: ../classes/storage_model.php:604 ../classes/column/post/actions.php:64
722
  msgid "View"
723
  msgstr "Visa"
724
 
774
  msgid ""
775
  "Sorry. Something went wrong during the upgrade process. Please report this "
776
  "on the support forum."
777
+ msgstr ""
778
+ "Ursäkta. Något gick fel under uppgraderingen. Vänligen rapportera detta på "
779
+ "support forumet. "
780
 
781
+ #: ../classes/column/custom-field.php:71
782
+ msgid "Checkmark (true/false)"
783
+ msgstr "Checkmark (sant/falskt)"
784
+
785
+ #: ../classes/column/custom-field.php:77 ../classes/storage_model/media.php:13
786
  msgid "Media Library"
787
  msgstr "Mediabibliotek"
788
 
789
+ #: ../classes/column/custom-field.php:80
790
  msgid "Post Title (Post ID's)"
791
  msgstr "Titel"
792
 
793
+ #: ../classes/column/custom-field.php:81
794
  msgid "Username (User ID's)"
795
  msgstr "Användarnamn (Användar-ID)"
796
 
797
+ #: ../classes/column/custom-field.php:379
 
 
 
 
798
  msgid "Select your custom field."
799
  msgstr "Välj ditt anpassade fält."
800
 
801
+ #: ../classes/column/custom-field.php:389
802
  msgid "No custom fields available."
803
  msgstr "Inget anpassat fält är tillgängligt."
804
 
805
+ #: ../classes/column/custom-field.php:396
806
  msgid "Field Type"
807
  msgstr "Fälttyp"
808
 
809
+ #: ../classes/column/custom-field.php:396
810
  msgid "This will determine how the value will be displayed."
811
  msgstr "Detta avgör hur värdet kommer att visas."
812
 
813
+ #: ../classes/column/custom-field.php:439
814
  msgid "Before"
815
  msgstr "Innan"
816
 
817
+ #: ../classes/column/custom-field.php:439
818
  msgid "This text will appear before the custom field value."
819
  msgstr "Denna text kommer att visas innan det anpassade fältet värde."
820
 
821
+ #: ../classes/column/custom-field.php:445
822
  msgid "After"
823
  msgstr "Efter"
824
 
825
+ #: ../classes/column/custom-field.php:445
826
  msgid "This text will appear after the custom field value."
827
  msgstr "Denna text kommer att visas efter det anpassade fältet värde."
828
 
850
 
851
  #: ../classes/column/comment/actions.php:96
852
  #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
853
+ #: ../classes/column/user/actions.php:66
854
  msgid "Edit"
855
  msgstr "Redigera"
856
 
902
  msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
903
  msgstr "Skickad den <a href=\"%1$s\">%2$s vid %3$s</a>"
904
 
 
 
 
 
 
905
  #: ../classes/column/comment/reply-to.php:12
906
  msgid "In Reply To"
907
  msgstr "Som svar på"
916
  msgid ""
917
  "You are about to delete this link '%s'\n"
918
  " 'Cancel' to stop, 'OK' to delete."
919
+ msgstr ""
920
+ "Du är på väg att radera denna länk '%s'\n"
921
+ " 'Avbryt' för att avbryta, 'OK' för att radera"
922
 
923
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
924
  msgid "Delete"
925
  msgstr "Radera"
926
 
1049
 
1050
  #: ../classes/column/post/actions.php:55
1051
  #: ../classes/column/post/comment-count.php:34
1052
+ #: ../classes/column/post/status.php:37
1053
  msgid "Trash"
1054
  msgstr "Papperskorg"
1055
 
1083
  msgid "Display Author As"
1084
  msgstr "Visa som författare"
1085
 
1086
+ #: ../classes/column/post/author-name.php:34
1087
  msgid "Display Name"
1088
  msgstr "Visa namn"
1089
 
1090
+ #: ../classes/column/post/author-name.php:36
 
 
 
 
1091
  msgid "Last Name"
1092
  msgstr "Efternamn"
1093
 
1094
+ #: ../classes/column/post/author-name.php:37
1095
  #: ../classes/column/user/nickname.php:14
1096
  msgid "Nickname"
1097
  msgstr "Smeknamn"
1098
 
1099
+ #: ../classes/column/post/author-name.php:38
1100
  msgid "User Login"
1101
  msgstr "Användare Loggin"
1102
 
1103
+ #: ../classes/column/post/author-name.php:39
1104
  msgid "User Email"
1105
  msgstr "Användare Email"
1106
 
1107
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
1108
  msgid "User ID"
1109
  msgstr "Användar-ID"
1110
 
1111
+ #: ../classes/column/post/author-name.php:41
1112
  msgid "First and Last Name"
1113
  msgstr "Förnamn och efternamn"
1114
 
1115
+ #: ../classes/column/post/author-name.php:116
1116
  msgid "This is the format of the author name."
1117
  msgstr "Detta är formatet på författarens namn."
1118
 
1136
  msgid "Spam"
1137
  msgstr "Spam"
1138
 
1139
+ #: ../classes/column/post/comment-count.php:95
1140
  #: ../classes/column/post/comment-status.php:14
1141
  msgid "Comment status"
1142
  msgstr "Kommentarsstatus"
1143
 
1144
+ #: ../classes/column/post/comment-count.php:95
1145
  msgid "Select which comment status you like to display."
1146
  msgstr "Välj vilken kommentarsstatus du vill visa."
1147
 
1185
  msgid "Status"
1186
  msgstr "Status"
1187
 
1188
+ #: ../classes/column/post/status.php:32
1189
  msgid "Published"
1190
  msgstr "Publicerad"
1191
 
1192
+ #: ../classes/column/post/status.php:33
1193
  msgid "Draft"
1194
  msgstr "Utkast"
1195
 
1196
+ #: ../classes/column/post/status.php:34
1197
  msgid "Scheduled"
1198
  msgstr "Planerat"
1199
 
1200
+ #: ../classes/column/post/status.php:35
1201
  msgid "Private"
1202
  msgstr "Privat"
1203
 
1204
+ #: ../classes/column/post/status.php:36
1205
  msgid "Pending Review"
1206
  msgstr "Väntar på granskning"
1207
 
1210
  msgstr "Klistrad"
1211
 
1212
  #: ../classes/column/post/taxonomy.php:12
1213
+ #: ../classes/column/post/taxonomy.php:74
1214
  msgid "Taxonomy"
1215
  msgstr "Taxonomi"
1216
 
1230
  msgid "Post Count"
1231
  msgstr "Inläggsräknare"
1232
 
1233
+ #: ../classes/column/user/post-count.php:99
1234
  msgid "Post Type"
1235
  msgstr "Inläggstyp"
1236
 
languages/cpac-zh_CN.mo CHANGED
Binary file
languages/cpac-zh_CN.po CHANGED
@@ -1,4 +1,4 @@
1
- #
2
  # Translators:
3
  # XadillaX <admin@xcoder.in>, 2013
4
  msgid ""
@@ -6,9 +6,10 @@ msgstr ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
- "PO-Revision-Date: 2013-10-07 13:51+0000\n"
10
- "Last-Translator: codepress <info@codepress.nl>\n"
11
- "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/admin-columns/language/zh_CN/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -17,9 +18,9 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: __;_e\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPath-1: ..\n"
22
- "X-Poedit-SourceCharset: utf-8\n"
23
 
24
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
25
  msgid "Settings"
@@ -62,7 +63,9 @@ msgstr "例如:"
62
  msgid ""
63
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
64
  "date format here</a>."
65
- msgstr "留空将使用WordPress日期格式,你可以在 <a href=\"%s\">这里</a> 修改默认的日期格式。"
 
 
66
 
67
  #: ../classes/column.php:784
68
  msgid "Documentation on date and time formatting."
@@ -153,7 +156,9 @@ msgid ""
153
  "This plugin is for adding and removing additional columns to the "
154
  "administration screens for post(types), pages, media library, comments, "
155
  "links and users. Change the column's label and reorder them."
156
- msgstr "该插件用来从管理界面中添加或移除额外的列,比如文章(自定义文章类型)、页面、媒体库、评论、链接和用户的管理界面。修改列的标题和重新排序它们。"
 
 
157
 
158
  #: ../classes/settings.php:208
159
  msgid "Basics"
@@ -207,7 +212,9 @@ msgstr "自定义字段列使用文章和用户的自定义字段,你可以设
207
  msgid ""
208
  "Value: Can be either a string or array. Arrays will be flattened and values "
209
  "are seperated by a ',' comma."
210
- msgstr "值:可以是一个字符串或数组。数组将被压平(Arrays will be flattened),值之间用逗号“,”隔开。"
 
 
211
 
212
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
213
  #: ../classes/column/link/image.php:12
@@ -236,8 +243,7 @@ msgstr "多个值"
236
 
237
  #: ../classes/settings.php:227
238
  msgid ""
239
- "Value: should be an array. This will flatten any ( multi dimensional ) "
240
- "array."
241
  msgstr "值:应该是一个数组。这将被压平(多维)数组"
242
 
243
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
@@ -248,7 +254,9 @@ msgstr "数字"
248
  msgid ""
249
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
250
  "for sorting, so you can sort your posts on numeric (custom field) values."
251
- msgstr "值:只能是数字。<br/>如果你安装了“排序扩展”,这将用于排序,所以你可以通过这个数字(自定义字段)值来排序文章。"
 
 
252
 
253
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
254
  #: ../classes/column/comment/date.php:12
@@ -261,7 +269,9 @@ msgid ""
261
  "Value: Can be unix time stamp or a date format as described in the <a "
262
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
263
  "href='%s'>general settings</a> page."
264
- msgstr "值:可以是 Unix 时间戳或<a href='%s'>规则</a>中描述的一种日期格式。你可以在 <a href='%s'>常规设置</a> 页面修改输出的日期格式。"
 
 
265
 
266
  #: ../classes/settings.php:230
267
  msgid "Post Titles"
@@ -330,7 +340,9 @@ msgid ""
330
  "Addons are now activated by downloading and installing individual plugins. "
331
  "Although these plugins will not be hosted on the wordpress.org repository, "
332
  "each Add-on will continue to receive updates in the usual way."
333
- msgstr "通过下载和安装插件可以启用扩展。尽管这些扩展插件不再托管于 wordpress.org,但是它们都可以通过通常的方式获得更新。"
 
 
334
 
335
  #: ../classes/settings.php:400
336
  msgid ""
@@ -363,9 +375,11 @@ msgstr "数据库更改"
363
 
364
  #: ../classes/settings.php:419
365
  msgid ""
366
- "The database has been changed between versions 1 and 2. But we made sure you"
367
- " can still roll back to version 1x without any issues."
368
- msgstr "该数据库已在版本1和2之间进行了更改。但我们确信你仍然可以回滚到版本1x,这是没有任何问题的。"
 
 
369
 
370
  #: ../classes/settings.php:422
371
  msgid "Make sure you backup your database and then click"
@@ -381,10 +395,12 @@ msgstr "潜在问题"
381
 
382
  #: ../classes/settings.php:426
383
  msgid ""
384
- "Do to the sizable refactoring the code, surounding Addons and "
385
- "action/filters, your website may not operate correctly. It is important that"
386
- " you read the full"
387
- msgstr "做了相当大的代码重构,包括扩展和各类钩子,你的网站可能无法正常工作。强烈建议你阅读完整的 "
 
 
388
 
389
  #: ../classes/settings.php:426
390
  msgid "Migrating from v1 to v2"
@@ -399,7 +415,9 @@ msgstr "引导查看完整的更改列表。"
399
  msgid ""
400
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
401
  "can fix it in the next release."
402
- msgstr "当你发现了 bug,请 <a href=\"%s\">反馈给我们</a>,以便我们在下个版本进行修复。"
 
 
403
 
404
  #: ../classes/settings.php:429
405
  msgid "Important!"
@@ -435,8 +453,7 @@ msgstr "版本v2以后,所有扩展将作为单独的插件,需要单独下
435
 
436
  #: ../classes/settings.php:460
437
  msgid ""
438
- "This page will assist you in downloading and installing each available "
439
- "Addon."
440
  msgstr "该页面将帮助您下载和安装每个可用的扩展。"
441
 
442
  #: ../classes/settings.php:461
@@ -481,8 +498,8 @@ msgstr "使用浏览上传,选择和安装你的扩展(.zip文件)"
481
 
482
  #: ../classes/settings.php:490
483
  msgid ""
484
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin'"
485
- " link"
486
  msgstr "一旦插件已经上传和安装,点击“启用插件”链接。"
487
 
488
  #: ../classes/settings.php:491
@@ -514,9 +531,10 @@ msgstr "发布"
514
  #: ../classes/settings.php:589
515
  #, php-format
516
  msgid ""
517
- "Warning! The %s columns data will be deleted. This cannot be undone. "
518
- "\\'OK\\' to delete, \\'Cancel\\' to stop"
519
- msgstr "警告!%s 列的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将停止。"
 
520
 
521
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
522
  #: ../classes/column/post/actions.php:53
@@ -561,7 +579,10 @@ msgstr "查看右上角的 <strong>帮助</strong>"
561
  msgid ""
562
  "For full documentation, bug reports, feature suggestions and other tips <a "
563
  "href='%s'>visit the Admin Columns website</a>"
564
- msgstr "<a href='%s'>访问官方网站</a> 获取帮助文档,反馈Bug,提交建议和其他技巧。</p><p>本插件由 <a href=\"http://www.wpdaxue.com\" title=\"优秀的WordPress建站资源平台\" target=\"_blank\">WordPress大学</a> 提供简体中文支持。"
 
 
 
565
 
566
  #: ../classes/settings.php:642
567
  msgid "Drag and drop to reorder"
@@ -608,7 +629,9 @@ msgstr "恢复默认设置"
608
  msgid ""
609
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
610
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
611
- msgstr "警告!所有Admin Columns的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将停止。"
 
 
612
 
613
  #: ../classes/storage_model.php:167
614
  msgid "settings succesfully restored."
@@ -829,7 +852,9 @@ msgstr "字数"
829
  msgid ""
830
  "You are about to delete this link '%s'\n"
831
  " 'Cancel' to stop, 'OK' to delete."
832
- msgstr "你将要删除这个链接“%s”\n“取消”将停止,“确定”将删除。"
 
 
833
 
834
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
835
  msgid "Delete"
1
+ #
2
  # Translators:
3
  # XadillaX <admin@xcoder.in>, 2013
4
  msgid ""
6
  "Project-Id-Version: Admin Columns\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2013-08-26 16:51+0100\n"
9
+ "PO-Revision-Date: 2013-11-14 15:56+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"
18
  "X-Generator: Poedit 1.5.7\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
  #: ../codepress-admin-columns.php:227 ../classes/settings.php:535
26
  msgid "Settings"
63
  msgid ""
64
  "Leave empty for WordPress date format, change your <a href=\"%s\">default "
65
  "date format here</a>."
66
+ msgstr ""
67
+ "留空将使用WordPress日期格式,你可以在 <a href=\"%s\">这里</a> 修改默认的日期"
68
+ "格式。"
69
 
70
  #: ../classes/column.php:784
71
  msgid "Documentation on date and time formatting."
156
  "This plugin is for adding and removing additional columns to the "
157
  "administration screens for post(types), pages, media library, comments, "
158
  "links and users. Change the column's label and reorder them."
159
+ msgstr ""
160
+ "该插件用来从管理界面中添加或移除额外的列,比如文章(自定义文章类型)、页面、"
161
+ "媒体库、评论、链接和用户的管理界面。修改列的标题和重新排序它们。"
162
 
163
  #: ../classes/settings.php:208
164
  msgid "Basics"
212
  msgid ""
213
  "Value: Can be either a string or array. Arrays will be flattened and values "
214
  "are seperated by a ',' comma."
215
+ msgstr ""
216
+ "值:可以是一个字符串或数组。数组将被压平(Arrays will be flattened),值之间"
217
+ "用逗号“,”隔开。"
218
 
219
  #: ../classes/settings.php:225 ../classes/column/custom-field.php:73
220
  #: ../classes/column/link/image.php:12
243
 
244
  #: ../classes/settings.php:227
245
  msgid ""
246
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
 
247
  msgstr "值:应该是一个数组。这将被压平(多维)数组"
248
 
249
  #: ../classes/settings.php:228 ../classes/column/custom-field.php:77
254
  msgid ""
255
  "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
256
  "for sorting, so you can sort your posts on numeric (custom field) values."
257
+ msgstr ""
258
+ "值:只能是数字。<br/>如果你安装了“排序扩展”,这将用于排序,所以你可以通过这个"
259
+ "数字(自定义字段)值来排序文章。"
260
 
261
  #: ../classes/settings.php:229 ../classes/column/custom-field.php:78
262
  #: ../classes/column/comment/date.php:12
269
  "Value: Can be unix time stamp or a date format as described in the <a "
270
  "href='%s'>Codex</a>. You can change the outputted date format at the <a "
271
  "href='%s'>general settings</a> page."
272
+ msgstr ""
273
+ "值:可以是 Unix 时间戳或<a href='%s'>规则</a>中描述的一种日期格式。你可以在 "
274
+ "<a href='%s'>常规设置</a> 页面修改输出的日期格式。"
275
 
276
  #: ../classes/settings.php:230
277
  msgid "Post Titles"
340
  "Addons are now activated by downloading and installing individual plugins. "
341
  "Although these plugins will not be hosted on the wordpress.org repository, "
342
  "each Add-on will continue to receive updates in the usual way."
343
+ msgstr ""
344
+ "通过下载和安装插件可以启用扩展。尽管这些扩展插件不再托管于 wordpress.org,但"
345
+ "是它们都可以通过通常的方式获得更新。"
346
 
347
  #: ../classes/settings.php:400
348
  msgid ""
375
 
376
  #: ../classes/settings.php:419
377
  msgid ""
378
+ "The database has been changed between versions 1 and 2. But we made sure you "
379
+ "can still roll back to version 1x without any issues."
380
+ msgstr ""
381
+ "该数据库已在版本1和2之间进行了更改。但我们确信你仍然可以回滚到版本1x,这是没"
382
+ "有任何问题的。"
383
 
384
  #: ../classes/settings.php:422
385
  msgid "Make sure you backup your database and then click"
395
 
396
  #: ../classes/settings.php:426
397
  msgid ""
398
+ "Do to the sizable refactoring the code, surounding Addons and action/"
399
+ "filters, your website may not operate correctly. It is important that you "
400
+ "read the full"
401
+ msgstr ""
402
+ "做了相当大的代码重构,包括扩展和各类钩子,你的网站可能无法正常工作。强烈建议"
403
+ "你阅读完整的 "
404
 
405
  #: ../classes/settings.php:426
406
  msgid "Migrating from v1 to v2"
415
  msgid ""
416
  "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
417
  "can fix it in the next release."
418
+ msgstr ""
419
+ "当你发现了 bug,请 <a href=\"%s\">反馈给我们</a>,以便我们在下个版本进行修"
420
+ "复。"
421
 
422
  #: ../classes/settings.php:429
423
  msgid "Important!"
453
 
454
  #: ../classes/settings.php:460
455
  msgid ""
456
+ "This page will assist you in downloading and installing each available Addon."
 
457
  msgstr "该页面将帮助您下载和安装每个可用的扩展。"
458
 
459
  #: ../classes/settings.php:461
498
 
499
  #: ../classes/settings.php:490
500
  msgid ""
501
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
502
+ "link"
503
  msgstr "一旦插件已经上传和安装,点击“启用插件”链接。"
504
 
505
  #: ../classes/settings.php:491
531
  #: ../classes/settings.php:589
532
  #, php-format
533
  msgid ""
534
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
535
+ "\\' to delete, \\'Cancel\\' to stop"
536
+ msgstr ""
537
+ "警告!%s 列的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将停止。"
538
 
539
  #: ../classes/settings.php:590 ../classes/column/comment/actions.php:86
540
  #: ../classes/column/post/actions.php:53
579
  msgid ""
580
  "For full documentation, bug reports, feature suggestions and other tips <a "
581
  "href='%s'>visit the Admin Columns website</a>"
582
+ msgstr ""
583
+ "<a href='%s'>访问官方网站</a> 获取帮助文档,反馈Bug,提交建议和其他技巧。</"
584
+ "p><p>本插件由 <a href=\"http://www.wpdaxue.com\" title=\"优秀的WordPress建站"
585
+ "资源平台\" target=\"_blank\">WordPress大学</a> 提供简体中文支持。"
586
 
587
  #: ../classes/settings.php:642
588
  msgid "Drag and drop to reorder"
629
  msgid ""
630
  "Warning! ALL saved admin columns data will be deleted. This cannot be "
631
  "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
632
+ msgstr ""
633
+ "警告!所有Admin Columns的数据将被删除。该操作无法撤销。“确定”将删除,“取消”将"
634
+ "停止。"
635
 
636
  #: ../classes/storage_model.php:167
637
  msgid "settings succesfully restored."
852
  msgid ""
853
  "You are about to delete this link '%s'\n"
854
  " 'Cancel' to stop, 'OK' to delete."
855
+ msgstr ""
856
+ "你将要删除这个链接“%s”\n"
857
+ "“取消”将停止,“确定”将删除。"
858
 
859
  #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:63
860
  msgid "Delete"
languages/cpac.po ADDED
@@ -0,0 +1,1186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Codepress Admin Columns\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-14 15:44+0100\n"
6
+ "PO-Revision-Date: 2013-11-14 15:53+0100\n"
7
+ "Last-Translator: Codepress <info@codepress.nl>\n"
8
+ "Language-Team: Codepress <info@codepress.nl>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ "X-Poedit-SearchPath-1: ..\n"
18
+
19
+ #: ../codepress-admin-columns.php:236 ../classes/settings.php:534
20
+ msgid "Settings"
21
+ msgstr ""
22
+
23
+ #: ../codepress-admin-columns.php:357
24
+ msgid "Edit columns"
25
+ msgstr ""
26
+
27
+ #: ../classes/column.php:489
28
+ msgid "Thumbnail"
29
+ msgstr ""
30
+
31
+ #: ../classes/column.php:490
32
+ msgid "Medium"
33
+ msgstr ""
34
+
35
+ #: ../classes/column.php:491
36
+ msgid "Large"
37
+ msgstr ""
38
+
39
+ #: ../classes/column.php:492
40
+ msgid "Full"
41
+ msgstr ""
42
+
43
+ #: ../classes/column.php:784
44
+ msgid "Date Format"
45
+ msgstr ""
46
+
47
+ #: ../classes/column.php:785
48
+ msgid "This will determine how the date will be displayed."
49
+ msgstr ""
50
+
51
+ #: ../classes/column.php:791
52
+ msgid "Example:"
53
+ msgstr ""
54
+
55
+ #: ../classes/column.php:793
56
+ #, php-format
57
+ msgid ""
58
+ "Leave empty for WordPress date format, change your <a href=\"%s\">default "
59
+ "date format here</a>."
60
+ msgstr ""
61
+
62
+ #: ../classes/column.php:794
63
+ msgid "Documentation on date and time formatting."
64
+ msgstr ""
65
+
66
+ #: ../classes/column.php:811
67
+ msgid "Excerpt length"
68
+ msgstr ""
69
+
70
+ #: ../classes/column.php:812
71
+ msgid "Number of words"
72
+ msgstr ""
73
+
74
+ #: ../classes/column.php:834
75
+ msgid "Preview size"
76
+ msgstr ""
77
+
78
+ #: ../classes/column.php:851 ../classes/column.php:908
79
+ msgid "Custom"
80
+ msgstr ""
81
+
82
+ #: ../classes/column.php:854
83
+ msgid "width"
84
+ msgstr ""
85
+
86
+ #: ../classes/column.php:857
87
+ msgid "height"
88
+ msgstr ""
89
+
90
+ #: ../classes/column.php:909 ../classes/settings.php:222
91
+ #: ../classes/column/custom-field.php:70
92
+ msgid "Default"
93
+ msgstr ""
94
+
95
+ #: ../classes/column.php:934 ../classes/column.php:996
96
+ #: ../classes/column/user/actions.php:74
97
+ msgid "Remove"
98
+ msgstr ""
99
+
100
+ #: ../classes/column.php:953
101
+ msgid "Type"
102
+ msgstr ""
103
+
104
+ #: ../classes/column.php:953
105
+ msgid "Choose a column type."
106
+ msgstr ""
107
+
108
+ #: ../classes/column.php:953 ../classes/column/comment/ID.php:12
109
+ #: ../classes/column/link/ID.php:12 ../classes/column/media/ID.php:12
110
+ #: ../classes/column/post/ID.php:12
111
+ msgid "ID"
112
+ msgstr ""
113
+
114
+ #: ../classes/column.php:963
115
+ msgid "Label"
116
+ msgstr ""
117
+
118
+ #: ../classes/column.php:963
119
+ msgid "This is the name which will appear as the column header."
120
+ msgstr ""
121
+
122
+ #: ../classes/column.php:970 ../classes/column/media/width.php:12
123
+ msgid "Width"
124
+ msgstr ""
125
+
126
+ #: ../classes/column.php:972 ../classes/column.php:973
127
+ msgid "default"
128
+ msgstr ""
129
+
130
+ #: ../classes/column.php:997
131
+ msgid "type"
132
+ msgstr ""
133
+
134
+ #: ../classes/settings.php:64
135
+ msgid "Admin Columns Settings"
136
+ msgstr ""
137
+
138
+ #: ../classes/settings.php:64 ../classes/settings.php:533
139
+ #: ../classes/upgrade.php:89
140
+ msgid "Admin Columns"
141
+ msgstr ""
142
+
143
+ #: ../classes/settings.php:126
144
+ #, php-format
145
+ msgid "%s column is already present and can not be duplicated."
146
+ msgstr ""
147
+
148
+ #: ../classes/settings.php:182
149
+ msgid "Default settings succesfully restored."
150
+ msgstr ""
151
+
152
+ #: ../classes/settings.php:200 ../classes/settings.php:456
153
+ msgid "Overview"
154
+ msgstr ""
155
+
156
+ #: ../classes/settings.php:203
157
+ msgid ""
158
+ "This plugin is for adding and removing additional columns to the "
159
+ "administration screens for post(types), pages, media library, comments, "
160
+ "links and users. Change the column's label and reorder them."
161
+ msgstr ""
162
+
163
+ #: ../classes/settings.php:206
164
+ msgid "Basics"
165
+ msgstr ""
166
+
167
+ #: ../classes/settings.php:208
168
+ msgid "Change order"
169
+ msgstr ""
170
+
171
+ #: ../classes/settings.php:209
172
+ msgid ""
173
+ "By dragging the columns you can change the order which they will appear in."
174
+ msgstr ""
175
+
176
+ #: ../classes/settings.php:210
177
+ msgid "Change label"
178
+ msgstr ""
179
+
180
+ #: ../classes/settings.php:211
181
+ msgid ""
182
+ "By clicking on the triangle you will see the column options. Here you can "
183
+ "change each label of the columns heading."
184
+ msgstr ""
185
+
186
+ #: ../classes/settings.php:212
187
+ msgid "Change column width"
188
+ msgstr ""
189
+
190
+ #: ../classes/settings.php:213
191
+ msgid ""
192
+ "By clicking on the triangle you will see the column options. By using the "
193
+ "draggable slider you can set the width of the columns in percentages."
194
+ msgstr ""
195
+
196
+ #: ../classes/settings.php:217 ../classes/column/custom-field.php:16
197
+ #: ../classes/column/custom-field.php:379
198
+ msgid "Custom Field"
199
+ msgstr ""
200
+
201
+ #: ../classes/settings.php:219
202
+ msgid "'Custom Field' column"
203
+ msgstr ""
204
+
205
+ #: ../classes/settings.php:220
206
+ msgid ""
207
+ "The custom field colum uses the custom fields from posts and users. There "
208
+ "are 10 types which you can set."
209
+ msgstr ""
210
+
211
+ #: ../classes/settings.php:222
212
+ msgid ""
213
+ "Value: Can be either a string or array. Arrays will be flattened and values "
214
+ "are seperated by a ',' comma."
215
+ msgstr ""
216
+
217
+ #: ../classes/settings.php:223 ../classes/column/custom-field.php:76
218
+ #: ../classes/column/link/image.php:12
219
+ msgid "Image"
220
+ msgstr ""
221
+
222
+ #: ../classes/settings.php:223
223
+ msgid ""
224
+ "Value: should contain an image URL or Attachment IDs ( seperated by a ',' "
225
+ "comma )."
226
+ msgstr ""
227
+
228
+ #: ../classes/settings.php:224 ../classes/column/custom-field.php:75
229
+ #: ../classes/column/comment/excerpt.php:13
230
+ #: ../classes/column/post/excerpt.php:13
231
+ msgid "Excerpt"
232
+ msgstr ""
233
+
234
+ #: ../classes/settings.php:224
235
+ msgid "Value: This will show the first 20 words of the Post content."
236
+ msgstr ""
237
+
238
+ #: ../classes/settings.php:225 ../classes/column/custom-field.php:78
239
+ msgid "Multiple Values"
240
+ msgstr ""
241
+
242
+ #: ../classes/settings.php:225
243
+ msgid ""
244
+ "Value: should be an array. This will flatten any ( multi dimensional ) array."
245
+ msgstr ""
246
+
247
+ #: ../classes/settings.php:226 ../classes/column/custom-field.php:79
248
+ msgid "Numeric"
249
+ msgstr ""
250
+
251
+ #: ../classes/settings.php:226
252
+ msgid ""
253
+ "Value: Integers only.<br/>If you have the 'sorting addon' this will be used "
254
+ "for sorting, so you can sort your posts on numeric (custom field) values."
255
+ msgstr ""
256
+
257
+ #: ../classes/settings.php:227 ../classes/column/custom-field.php:74
258
+ #: ../classes/column/comment/date.php:12
259
+ msgid "Date"
260
+ msgstr ""
261
+
262
+ #: ../classes/settings.php:227
263
+ #, php-format
264
+ msgid ""
265
+ "Value: Can be unix time stamp or a date format as described in the <a "
266
+ "href='%s'>Codex</a>. You can change the outputted date format at the <a "
267
+ "href='%s'>general settings</a> page."
268
+ msgstr ""
269
+
270
+ #: ../classes/settings.php:228
271
+ msgid "Post Titles"
272
+ msgstr ""
273
+
274
+ #: ../classes/settings.php:228
275
+ msgid "Value: can be one or more Post ID's (seperated by ',')."
276
+ msgstr ""
277
+
278
+ #: ../classes/settings.php:229
279
+ msgid "Usernames"
280
+ msgstr ""
281
+
282
+ #: ../classes/settings.php:229
283
+ msgid "Value: can be one or more User ID's (seperated by ',')."
284
+ msgstr ""
285
+
286
+ #: ../classes/settings.php:230
287
+ msgid "Checkmark"
288
+ msgstr ""
289
+
290
+ #: ../classes/settings.php:230
291
+ msgid "Value: should be a 1 (one) or 0 (zero)."
292
+ msgstr ""
293
+
294
+ #: ../classes/settings.php:231 ../classes/column/custom-field.php:72
295
+ msgid "Color"
296
+ msgstr ""
297
+
298
+ #: ../classes/settings.php:231
299
+ msgid "Value: hex value color, such as #808080."
300
+ msgstr ""
301
+
302
+ #: ../classes/settings.php:232 ../classes/column/custom-field.php:73
303
+ msgid "Counter"
304
+ msgstr ""
305
+
306
+ #: ../classes/settings.php:232
307
+ msgid ""
308
+ "Value: Can be either a string or array. This will display a count of the "
309
+ "number of times the meta key is used by the item."
310
+ msgstr ""
311
+
312
+ #: ../classes/settings.php:376
313
+ msgid "Welcome to Admin Columns"
314
+ msgstr ""
315
+
316
+ #: ../classes/settings.php:379
317
+ msgid "Thank you for updating to the latest version!"
318
+ msgstr ""
319
+
320
+ #: ../classes/settings.php:380
321
+ msgid ""
322
+ "Admin Columns is more polished and enjoyable than ever before. We hope you "
323
+ "like it."
324
+ msgstr ""
325
+
326
+ #: ../classes/settings.php:385
327
+ msgid "What’s New"
328
+ msgstr ""
329
+
330
+ #: ../classes/settings.php:386
331
+ msgid "Changelog"
332
+ msgstr ""
333
+
334
+ #: ../classes/settings.php:388
335
+ msgid "Download Addons"
336
+ msgstr ""
337
+
338
+ #: ../classes/settings.php:394
339
+ msgid "Addons"
340
+ msgstr ""
341
+
342
+ #: ../classes/settings.php:396
343
+ msgid ""
344
+ "Addons are now activated by downloading and installing individual plugins. "
345
+ "Although these plugins will not be hosted on the wordpress.org repository, "
346
+ "each Add-on will continue to receive updates in the usual way."
347
+ msgstr ""
348
+
349
+ #: ../classes/settings.php:399
350
+ msgid ""
351
+ "This website uses the Sortorder Addon. This addon needs to be downloaded."
352
+ msgstr ""
353
+
354
+ #: ../classes/settings.php:402
355
+ msgid "Addons are seperate plugins which need to be downloaded."
356
+ msgstr ""
357
+
358
+ #: ../classes/settings.php:402
359
+ msgid "Download your Addons"
360
+ msgstr ""
361
+
362
+ #: ../classes/settings.php:408
363
+ msgid "This website does not use add-ons"
364
+ msgstr ""
365
+
366
+ #: ../classes/settings.php:408
367
+ msgid "See our website for the Pro-addon."
368
+ msgstr ""
369
+
370
+ #: ../classes/settings.php:415
371
+ msgid "Important"
372
+ msgstr ""
373
+
374
+ #: ../classes/settings.php:417
375
+ msgid "Database Changes"
376
+ msgstr ""
377
+
378
+ #: ../classes/settings.php:418
379
+ msgid ""
380
+ "The database has been changed between versions 1 and 2. But we made sure you "
381
+ "can still roll back to version 1x without any issues."
382
+ msgstr ""
383
+
384
+ #: ../classes/settings.php:421
385
+ msgid "Make sure you backup your database and then click"
386
+ msgstr ""
387
+
388
+ #: ../classes/settings.php:421 ../classes/upgrade.php:97
389
+ msgid "Upgrade Database"
390
+ msgstr ""
391
+
392
+ #: ../classes/settings.php:424
393
+ msgid "Potential Issues"
394
+ msgstr ""
395
+
396
+ #: ../classes/settings.php:425
397
+ msgid ""
398
+ "Do to the sizable refactoring the code, surounding Addons and action/"
399
+ "filters, your website may not operate correctly. It is important that you "
400
+ "read the full"
401
+ msgstr ""
402
+
403
+ #: ../classes/settings.php:425
404
+ msgid "Migrating from v1 to v2"
405
+ msgstr ""
406
+
407
+ #: ../classes/settings.php:425
408
+ msgid "guide to view the full list of changes."
409
+ msgstr ""
410
+
411
+ #: ../classes/settings.php:425
412
+ #, php-format
413
+ msgid ""
414
+ "When you have found a bug please <a href=\"%s\">report them to us</a> so we "
415
+ "can fix it in the next release."
416
+ msgstr ""
417
+
418
+ #: ../classes/settings.php:428
419
+ msgid "Important!"
420
+ msgstr ""
421
+
422
+ #: ../classes/settings.php:428
423
+ msgid ""
424
+ "If you updated the Admin Columns plugin without prior knowledge of such "
425
+ "changes, Please roll back to the latest"
426
+ msgstr ""
427
+
428
+ #: ../classes/settings.php:428
429
+ msgid "version 1"
430
+ msgstr ""
431
+
432
+ #: ../classes/settings.php:428
433
+ msgid "of this plugin."
434
+ msgstr ""
435
+
436
+ #: ../classes/settings.php:434
437
+ msgid "Changelog for"
438
+ msgstr ""
439
+
440
+ #: ../classes/settings.php:449
441
+ msgid "Learn more"
442
+ msgstr ""
443
+
444
+ #: ../classes/settings.php:458
445
+ msgid ""
446
+ "New to v2, all Addons act as separate plugins which need to be individually "
447
+ "downloaded, installed and updated."
448
+ msgstr ""
449
+
450
+ #: ../classes/settings.php:459
451
+ msgid ""
452
+ "This page will assist you in downloading and installing each available Addon."
453
+ msgstr ""
454
+
455
+ #: ../classes/settings.php:460
456
+ msgid "Available Addons"
457
+ msgstr ""
458
+
459
+ #: ../classes/settings.php:465
460
+ msgid "Name"
461
+ msgstr ""
462
+
463
+ #: ../classes/settings.php:466 ../classes/settings.php:474
464
+ msgid "Download"
465
+ msgstr ""
466
+
467
+ #: ../classes/settings.php:472
468
+ msgid "Pro Add-on (includes Sortorder add-on)"
469
+ msgstr ""
470
+
471
+ #: ../classes/settings.php:482
472
+ msgid "Installation"
473
+ msgstr ""
474
+
475
+ #: ../classes/settings.php:484
476
+ msgid "For each Add-on available, please perform the following:"
477
+ msgstr ""
478
+
479
+ #: ../classes/settings.php:486
480
+ msgid "Download the Addon plugin (.zip file) to your desktop"
481
+ msgstr ""
482
+
483
+ #: ../classes/settings.php:487
484
+ msgid "Navigate to"
485
+ msgstr ""
486
+
487
+ #: ../classes/settings.php:487
488
+ msgid "Plugins > Add New > Upload"
489
+ msgstr ""
490
+
491
+ #: ../classes/settings.php:488
492
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
493
+ msgstr ""
494
+
495
+ #: ../classes/settings.php:489
496
+ msgid ""
497
+ "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
498
+ "link"
499
+ msgstr ""
500
+
501
+ #: ../classes/settings.php:490
502
+ msgid "The Add-on is now installed and activated!"
503
+ msgstr ""
504
+
505
+ #: ../classes/settings.php:491
506
+ #, php-format
507
+ msgid ""
508
+ "For automatic updates make sure to <a href='%s'>enter your licence key</a>."
509
+ msgstr ""
510
+
511
+ #: ../classes/settings.php:501
512
+ msgid "Start using Admin Columns"
513
+ msgstr ""
514
+
515
+ #: ../classes/settings.php:575
516
+ msgid "Store settings"
517
+ msgstr ""
518
+
519
+ #: ../classes/settings.php:579
520
+ msgid "Update"
521
+ msgstr ""
522
+
523
+ #: ../classes/settings.php:579
524
+ msgid "Publish"
525
+ msgstr ""
526
+
527
+ #: ../classes/settings.php:583
528
+ #, php-format
529
+ msgid ""
530
+ "Warning! The %s columns data will be deleted. This cannot be undone. \\'OK"
531
+ "\\' to delete, \\'Cancel\\' to stop"
532
+ msgstr ""
533
+
534
+ #: ../classes/settings.php:584 ../classes/column/comment/actions.php:86
535
+ #: ../classes/column/post/actions.php:53
536
+ msgid "Restore"
537
+ msgstr ""
538
+
539
+ #: ../classes/settings.php:584
540
+ msgid "columns"
541
+ msgstr ""
542
+
543
+ #: ../classes/settings.php:597
544
+ msgid "Get the Pro Add-on"
545
+ msgstr ""
546
+
547
+ #: ../classes/settings.php:601
548
+ msgid "Add Sorting"
549
+ msgstr ""
550
+
551
+ #: ../classes/settings.php:602
552
+ msgid "Add Filtering"
553
+ msgstr ""
554
+
555
+ #: ../classes/settings.php:603
556
+ msgid "Add Import/Export"
557
+ msgstr ""
558
+
559
+ #: ../classes/settings.php:606
560
+ #, php-format
561
+ msgid "Check the <a href=\"%s\">Pro Add-on</a> for more details!"
562
+ msgstr ""
563
+
564
+ #: ../classes/settings.php:615
565
+ msgid "Subscribe to receive news &amp; updates below."
566
+ msgstr ""
567
+
568
+ #: ../classes/settings.php:618 ../classes/column/post/author-name.php:35
569
+ msgid "First Name"
570
+ msgstr ""
571
+
572
+ #: ../classes/settings.php:622
573
+ msgid "Your Email"
574
+ msgstr ""
575
+
576
+ #: ../classes/settings.php:633
577
+ msgid "Support"
578
+ msgstr ""
579
+
580
+ #: ../classes/settings.php:636
581
+ msgid "Check the <strong>Help</strong> section in the top-right screen."
582
+ msgstr ""
583
+
584
+ #: ../classes/settings.php:638
585
+ #, php-format
586
+ msgid ""
587
+ "For full documentation, bug reports, feature suggestions and other tips <a "
588
+ "href='%s'>visit the Admin Columns website</a>"
589
+ msgstr ""
590
+
591
+ #: ../classes/settings.php:665
592
+ msgid "Drag and drop to reorder"
593
+ msgstr ""
594
+
595
+ #: ../classes/settings.php:668
596
+ msgid "Add Column"
597
+ msgstr ""
598
+
599
+ #: ../classes/settings.php:716
600
+ msgid "General Settings"
601
+ msgstr ""
602
+
603
+ #: ../classes/settings.php:717
604
+ msgid "Customize your Admin Columns settings."
605
+ msgstr ""
606
+
607
+ #: ../classes/settings.php:730
608
+ msgid "Show hidden custom fields. Default is <code>off</code>."
609
+ msgstr ""
610
+
611
+ #: ../classes/settings.php:736
612
+ msgid ""
613
+ "Show \"Edit Columns\" button on admin screens. Default is <code>off</code>."
614
+ msgstr ""
615
+
616
+ #: ../classes/settings.php:743
617
+ msgid "Save"
618
+ msgstr ""
619
+
620
+ #: ../classes/settings.php:783
621
+ msgid "Restore Settings"
622
+ msgstr ""
623
+
624
+ #: ../classes/settings.php:784
625
+ msgid "This will delete all column settings and restore the default settings."
626
+ msgstr ""
627
+
628
+ #: ../classes/settings.php:790
629
+ msgid "Restore default settings"
630
+ msgstr ""
631
+
632
+ #: ../classes/settings.php:790
633
+ msgid ""
634
+ "Warning! ALL saved admin columns data will be deleted. This cannot be "
635
+ "undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
636
+ msgstr ""
637
+
638
+ #: ../classes/storage_model.php:181
639
+ msgid "settings succesfully restored."
640
+ msgstr ""
641
+
642
+ #: ../classes/storage_model.php:198
643
+ msgid "No columns settings available."
644
+ msgstr ""
645
+
646
+ #: ../classes/storage_model.php:221
647
+ #, php-format
648
+ msgid "You are trying to store the same settings for %s."
649
+ msgstr ""
650
+
651
+ #: ../classes/storage_model.php:225
652
+ #, php-format
653
+ msgid "Settings for %s updated succesfully."
654
+ msgstr ""
655
+
656
+ #: ../classes/storage_model.php:604 ../classes/column/post/actions.php:64
657
+ msgid "View"
658
+ msgstr ""
659
+
660
+ #: ../classes/upgrade.php:45
661
+ msgid "Upgrade"
662
+ msgstr ""
663
+
664
+ #: ../classes/upgrade.php:90
665
+ msgid "requires a database upgrade"
666
+ msgstr ""
667
+
668
+ #: ../classes/upgrade.php:93
669
+ msgid "why?"
670
+ msgstr ""
671
+
672
+ #: ../classes/upgrade.php:94
673
+ msgid "Please"
674
+ msgstr ""
675
+
676
+ #: ../classes/upgrade.php:95
677
+ msgid "backup your database"
678
+ msgstr ""
679
+
680
+ #: ../classes/upgrade.php:96
681
+ msgid "then click"
682
+ msgstr ""
683
+
684
+ #: ../classes/upgrade.php:304
685
+ msgid "Migrating Column Settings"
686
+ msgstr ""
687
+
688
+ #: ../classes/upgrade.php:340
689
+ msgid "No Upgrade Required"
690
+ msgstr ""
691
+
692
+ #: ../classes/upgrade.php:341
693
+ msgid "Return to welcome screen."
694
+ msgstr ""
695
+
696
+ #: ../classes/upgrade.php:359
697
+ msgid "Upgrade Complete!"
698
+ msgstr ""
699
+
700
+ #: ../classes/upgrade.php:359
701
+ msgid "Return to settings."
702
+ msgstr ""
703
+
704
+ #: ../classes/upgrade.php:360
705
+ msgid "Error"
706
+ msgstr ""
707
+
708
+ #: ../classes/upgrade.php:361
709
+ msgid ""
710
+ "Sorry. Something went wrong during the upgrade process. Please report this "
711
+ "on the support forum."
712
+ msgstr ""
713
+
714
+ #: ../classes/column/custom-field.php:71
715
+ msgid "Checkmark (true/false)"
716
+ msgstr ""
717
+
718
+ #: ../classes/column/custom-field.php:77 ../classes/storage_model/media.php:13
719
+ msgid "Media Library"
720
+ msgstr ""
721
+
722
+ #: ../classes/column/custom-field.php:80
723
+ msgid "Post Title (Post ID's)"
724
+ msgstr ""
725
+
726
+ #: ../classes/column/custom-field.php:81
727
+ msgid "Username (User ID's)"
728
+ msgstr ""
729
+
730
+ #: ../classes/column/custom-field.php:379
731
+ msgid "Select your custom field."
732
+ msgstr ""
733
+
734
+ #: ../classes/column/custom-field.php:389
735
+ msgid "No custom fields available."
736
+ msgstr ""
737
+
738
+ #: ../classes/column/custom-field.php:396
739
+ msgid "Field Type"
740
+ msgstr ""
741
+
742
+ #: ../classes/column/custom-field.php:396
743
+ msgid "This will determine how the value will be displayed."
744
+ msgstr ""
745
+
746
+ #: ../classes/column/custom-field.php:439
747
+ msgid "Before"
748
+ msgstr ""
749
+
750
+ #: ../classes/column/custom-field.php:439
751
+ msgid "This text will appear before the custom field value."
752
+ msgstr ""
753
+
754
+ #: ../classes/column/custom-field.php:445
755
+ msgid "After"
756
+ msgstr ""
757
+
758
+ #: ../classes/column/custom-field.php:445
759
+ msgid "This text will appear after the custom field value."
760
+ msgstr ""
761
+
762
+ #: ../classes/column/comment/actions.php:14
763
+ #: ../classes/column/link/actions.php:14
764
+ #: ../classes/column/media/actions.php:14
765
+ #: ../classes/column/post/actions.php:14 ../classes/column/user/actions.php:14
766
+ msgid "Actions"
767
+ msgstr ""
768
+
769
+ #: ../classes/column/comment/actions.php:73
770
+ #: ../classes/column/comment/actions.php:78
771
+ msgid "Unapprove"
772
+ msgstr ""
773
+
774
+ #: ../classes/column/comment/actions.php:75
775
+ #: ../classes/column/comment/actions.php:77
776
+ msgid "Approve"
777
+ msgstr ""
778
+
779
+ #: ../classes/column/comment/actions.php:90
780
+ #: ../classes/column/post/actions.php:57
781
+ msgid "Delete Permanently"
782
+ msgstr ""
783
+
784
+ #: ../classes/column/comment/actions.php:96
785
+ #: ../classes/column/link/actions.php:45 ../classes/column/post/actions.php:48
786
+ #: ../classes/column/user/actions.php:66
787
+ msgid "Edit"
788
+ msgstr ""
789
+
790
+ #: ../classes/column/comment/actions.php:97
791
+ #: ../classes/column/post/actions.php:49
792
+ msgid "Quick&nbsp;Edit"
793
+ msgstr ""
794
+
795
+ #: ../classes/column/comment/actions.php:98
796
+ msgid "Reply"
797
+ msgstr ""
798
+
799
+ #: ../classes/column/comment/agent.php:12
800
+ msgid "Agent"
801
+ msgstr ""
802
+
803
+ #: ../classes/column/comment/approved.php:12
804
+ #: ../classes/column/post/comment-count.php:31
805
+ msgid "Approved"
806
+ msgstr ""
807
+
808
+ #: ../classes/column/comment/author-avatar.php:12
809
+ msgid "Avatar"
810
+ msgstr ""
811
+
812
+ #: ../classes/column/comment/author-email.php:12
813
+ msgid "Author email"
814
+ msgstr ""
815
+
816
+ #: ../classes/column/comment/author-ip.php:12
817
+ msgid "Author IP"
818
+ msgstr ""
819
+
820
+ #: ../classes/column/comment/author-url.php:12
821
+ msgid "Author url"
822
+ msgstr ""
823
+
824
+ #: ../classes/column/comment/author.php:12
825
+ msgid "Author"
826
+ msgstr ""
827
+
828
+ #: ../classes/column/comment/date-gmt.php:12
829
+ msgid "Date GMT"
830
+ msgstr ""
831
+
832
+ #: ../classes/column/comment/date-gmt.php:25
833
+ #: ../classes/column/comment/date.php:25
834
+ #, php-format
835
+ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
836
+ msgstr ""
837
+
838
+ #: ../classes/column/comment/reply-to.php:12
839
+ msgid "In Reply To"
840
+ msgstr ""
841
+
842
+ #: ../classes/column/comment/word-count.php:12
843
+ #: ../classes/column/post/word-count.php:12
844
+ msgid "Word count"
845
+ msgstr ""
846
+
847
+ #: ../classes/column/link/actions.php:46
848
+ #, php-format
849
+ msgid ""
850
+ "You are about to delete this link '%s'\n"
851
+ " 'Cancel' to stop, 'OK' to delete."
852
+ msgstr ""
853
+
854
+ #: ../classes/column/link/actions.php:46 ../classes/column/user/actions.php:72
855
+ msgid "Delete"
856
+ msgstr ""
857
+
858
+ #: ../classes/column/link/description.php:12
859
+ #: ../classes/column/media/description.php:12
860
+ #: ../classes/column/user/description.php:14
861
+ msgid "Description"
862
+ msgstr ""
863
+
864
+ #: ../classes/column/link/length.php:12
865
+ msgid "Length"
866
+ msgstr ""
867
+
868
+ #: ../classes/column/link/notes.php:13
869
+ msgid "Notes"
870
+ msgstr ""
871
+
872
+ #: ../classes/column/link/owner.php:12
873
+ msgid "Owner"
874
+ msgstr ""
875
+
876
+ #: ../classes/column/link/rss.php:12
877
+ msgid "Rss"
878
+ msgstr ""
879
+
880
+ #: ../classes/column/link/target.php:12
881
+ msgid "Target"
882
+ msgstr ""
883
+
884
+ #: ../classes/column/media/alternate-text.php:12
885
+ msgid "Alt"
886
+ msgstr ""
887
+
888
+ #: ../classes/column/media/available-sizes.php:14
889
+ msgid "Available Sizes"
890
+ msgstr ""
891
+
892
+ #: ../classes/column/media/available-sizes.php:37
893
+ msgid "full size"
894
+ msgstr ""
895
+
896
+ #: ../classes/column/media/caption.php:12
897
+ #: ../classes/column/media/exif-data.php:36
898
+ msgid "Caption"
899
+ msgstr ""
900
+
901
+ #: ../classes/column/media/dimensions.php:12
902
+ msgid "Dimensions"
903
+ msgstr ""
904
+
905
+ #: ../classes/column/media/exif-data.php:12
906
+ msgid "EXIF data"
907
+ msgstr ""
908
+
909
+ #: ../classes/column/media/exif-data.php:33
910
+ msgid "Aperture"
911
+ msgstr ""
912
+
913
+ #: ../classes/column/media/exif-data.php:34
914
+ msgid "Credit"
915
+ msgstr ""
916
+
917
+ #: ../classes/column/media/exif-data.php:35
918
+ msgid "Camera"
919
+ msgstr ""
920
+
921
+ #: ../classes/column/media/exif-data.php:37
922
+ msgid "Timestamp"
923
+ msgstr ""
924
+
925
+ #: ../classes/column/media/exif-data.php:38
926
+ msgid "Copyright EXIF"
927
+ msgstr ""
928
+
929
+ #: ../classes/column/media/exif-data.php:39
930
+ msgid "Focal Length"
931
+ msgstr ""
932
+
933
+ #: ../classes/column/media/exif-data.php:40
934
+ msgid "ISO"
935
+ msgstr ""
936
+
937
+ #: ../classes/column/media/exif-data.php:41
938
+ msgid "Shutter Speed"
939
+ msgstr ""
940
+
941
+ #: ../classes/column/media/exif-data.php:42
942
+ msgid "Title"
943
+ msgstr ""
944
+
945
+ #: ../classes/column/media/file-name.php:12
946
+ msgid "File name"
947
+ msgstr ""
948
+
949
+ #: ../classes/column/media/file-size.php:12
950
+ msgid "File size"
951
+ msgstr ""
952
+
953
+ #: ../classes/column/media/full-path.php:12
954
+ msgid "Full path"
955
+ msgstr ""
956
+
957
+ #: ../classes/column/media/height.php:12
958
+ msgid "Height"
959
+ msgstr ""
960
+
961
+ #: ../classes/column/media/mime-type.php:12
962
+ msgid "Mime type"
963
+ msgstr ""
964
+
965
+ #: ../classes/column/post/actions.php:48
966
+ msgid "Edit this item"
967
+ msgstr ""
968
+
969
+ #: ../classes/column/post/actions.php:49
970
+ msgid "Edit this item inline"
971
+ msgstr ""
972
+
973
+ #: ../classes/column/post/actions.php:53
974
+ msgid "Restore this item from the Trash"
975
+ msgstr ""
976
+
977
+ #: ../classes/column/post/actions.php:55
978
+ msgid "Move this item to the Trash"
979
+ msgstr ""
980
+
981
+ #: ../classes/column/post/actions.php:55
982
+ #: ../classes/column/post/comment-count.php:34
983
+ #: ../classes/column/post/status.php:37
984
+ msgid "Trash"
985
+ msgstr ""
986
+
987
+ #: ../classes/column/post/actions.php:57
988
+ msgid "Delete this item permanently"
989
+ msgstr ""
990
+
991
+ #: ../classes/column/post/actions.php:62
992
+ #, php-format
993
+ msgid "Preview &#8220;%s&#8221;"
994
+ msgstr ""
995
+
996
+ #: ../classes/column/post/actions.php:62
997
+ msgid "Preview"
998
+ msgstr ""
999
+
1000
+ #: ../classes/column/post/actions.php:64
1001
+ #, php-format
1002
+ msgid "View &#8220;%s&#8221;"
1003
+ msgstr ""
1004
+
1005
+ #: ../classes/column/post/attachment-count.php:12
1006
+ msgid "No. of Attachments"
1007
+ msgstr ""
1008
+
1009
+ #: ../classes/column/post/attachment.php:12
1010
+ msgid "Attachment"
1011
+ msgstr ""
1012
+
1013
+ #: ../classes/column/post/author-name.php:12
1014
+ msgid "Display Author As"
1015
+ msgstr ""
1016
+
1017
+ #: ../classes/column/post/author-name.php:34
1018
+ msgid "Display Name"
1019
+ msgstr ""
1020
+
1021
+ #: ../classes/column/post/author-name.php:36
1022
+ msgid "Last Name"
1023
+ msgstr ""
1024
+
1025
+ #: ../classes/column/post/author-name.php:37
1026
+ #: ../classes/column/user/nickname.php:14
1027
+ msgid "Nickname"
1028
+ msgstr ""
1029
+
1030
+ #: ../classes/column/post/author-name.php:38
1031
+ msgid "User Login"
1032
+ msgstr ""
1033
+
1034
+ #: ../classes/column/post/author-name.php:39
1035
+ msgid "User Email"
1036
+ msgstr ""
1037
+
1038
+ #: ../classes/column/post/author-name.php:40 ../classes/column/user/ID.php:14
1039
+ msgid "User ID"
1040
+ msgstr ""
1041
+
1042
+ #: ../classes/column/post/author-name.php:41
1043
+ msgid "First and Last Name"
1044
+ msgstr ""
1045
+
1046
+ #: ../classes/column/post/author-name.php:116
1047
+ msgid "This is the format of the author name."
1048
+ msgstr ""
1049
+
1050
+ #: ../classes/column/post/before-moretag.php:14
1051
+ msgid "Before More Tag"
1052
+ msgstr ""
1053
+
1054
+ #: ../classes/column/post/comment-count.php:14
1055
+ msgid "Comment count"
1056
+ msgstr ""
1057
+
1058
+ #: ../classes/column/post/comment-count.php:30
1059
+ msgid "Total"
1060
+ msgstr ""
1061
+
1062
+ #: ../classes/column/post/comment-count.php:32
1063
+ msgid "Pending"
1064
+ msgstr ""
1065
+
1066
+ #: ../classes/column/post/comment-count.php:33
1067
+ msgid "Spam"
1068
+ msgstr ""
1069
+
1070
+ #: ../classes/column/post/comment-count.php:95
1071
+ #: ../classes/column/post/comment-status.php:14
1072
+ msgid "Comment status"
1073
+ msgstr ""
1074
+
1075
+ #: ../classes/column/post/comment-count.php:95
1076
+ msgid "Select which comment status you like to display."
1077
+ msgstr ""
1078
+
1079
+ #: ../classes/column/post/featured-image.php:14
1080
+ msgid "Featured Image"
1081
+ msgstr ""
1082
+
1083
+ #: ../classes/column/post/formats.php:14
1084
+ msgid "Post Format"
1085
+ msgstr ""
1086
+
1087
+ #: ../classes/column/post/modified.php:14
1088
+ msgid "Last modified"
1089
+ msgstr ""
1090
+
1091
+ #: ../classes/column/post/order.php:14
1092
+ msgid "Page Order"
1093
+ msgstr ""
1094
+
1095
+ #: ../classes/column/post/page-template.php:12
1096
+ msgid "Page Template"
1097
+ msgstr ""
1098
+
1099
+ #: ../classes/column/post/parent.php:12
1100
+ msgid "Parent"
1101
+ msgstr ""
1102
+
1103
+ #: ../classes/column/post/ping-status.php:14
1104
+ msgid "Ping status"
1105
+ msgstr ""
1106
+
1107
+ #: ../classes/column/post/roles.php:14
1108
+ msgid "Roles"
1109
+ msgstr ""
1110
+
1111
+ #: ../classes/column/post/slug.php:12
1112
+ msgid "Slug"
1113
+ msgstr ""
1114
+
1115
+ #: ../classes/column/post/status.php:14
1116
+ msgid "Status"
1117
+ msgstr ""
1118
+
1119
+ #: ../classes/column/post/status.php:32
1120
+ msgid "Published"
1121
+ msgstr ""
1122
+
1123
+ #: ../classes/column/post/status.php:33
1124
+ msgid "Draft"
1125
+ msgstr ""
1126
+
1127
+ #: ../classes/column/post/status.php:34
1128
+ msgid "Scheduled"
1129
+ msgstr ""
1130
+
1131
+ #: ../classes/column/post/status.php:35
1132
+ msgid "Private"
1133
+ msgstr ""
1134
+
1135
+ #: ../classes/column/post/status.php:36
1136
+ msgid "Pending Review"
1137
+ msgstr ""
1138
+
1139
+ #: ../classes/column/post/sticky.php:14
1140
+ msgid "Sticky"
1141
+ msgstr ""
1142
+
1143
+ #: ../classes/column/post/taxonomy.php:12
1144
+ #: ../classes/column/post/taxonomy.php:74
1145
+ msgid "Taxonomy"
1146
+ msgstr ""
1147
+
1148
+ #: ../classes/column/user/comment-count.php:14
1149
+ msgid "Comment Count"
1150
+ msgstr ""
1151
+
1152
+ #: ../classes/column/user/first-name.php:14
1153
+ msgid "First name"
1154
+ msgstr ""
1155
+
1156
+ #: ../classes/column/user/last-name.php:14
1157
+ msgid "Last name"
1158
+ msgstr ""
1159
+
1160
+ #: ../classes/column/user/post-count.php:14
1161
+ msgid "Post Count"
1162
+ msgstr ""
1163
+
1164
+ #: ../classes/column/user/post-count.php:99
1165
+ msgid "Post Type"
1166
+ msgstr ""
1167
+
1168
+ #: ../classes/column/user/registered.php:14
1169
+ msgid "Registered"
1170
+ msgstr ""
1171
+
1172
+ #: ../classes/column/user/url.php:14
1173
+ msgid "Url"
1174
+ msgstr ""
1175
+
1176
+ #: ../classes/storage_model/comment.php:13
1177
+ msgid "Comments"
1178
+ msgstr ""
1179
+
1180
+ #: ../classes/storage_model/link.php:13
1181
+ msgid "Links"
1182
+ msgstr ""
1183
+
1184
+ #: ../classes/storage_model/user.php:13
1185
+ msgid "Users"
1186
+ msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: plugins, wordpress, admin, column, columns, custom columns, custom fields, image, dashboard, sortable, filters, posts, media, users, pages, posttypes, manage columns, wp-admin
5
  Requires at least: 3.5
6
  Tested up to: 3.7.1
7
- Stable tag: 2.0.3
8
 
9
  Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
10
 
@@ -220,6 +220,9 @@ Here you will find an overview of filters and examples: http://www.codepresshq.c
220
 
221
  == Changelog ==
222
 
 
 
 
223
  = 2.0.3 =
224
  * [Updated] Danish translation - thanks to iosoftgame
225
  * [Updated] Spanish translation - thanks to redywebs
4
  Tags: plugins, wordpress, admin, column, columns, custom columns, custom fields, image, dashboard, sortable, filters, posts, media, users, pages, posttypes, manage columns, wp-admin
5
  Requires at least: 3.5
6
  Tested up to: 3.7.1
7
+ Stable tag: 2.1.0
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
 
220
 
221
  == Changelog ==
222
 
223
+ = 2.1.0 =
224
+ * [Updated] Improved overall performance for script loading and lowered memory usage
225
+
226
  = 2.0.3 =
227
  * [Updated] Danish translation - thanks to iosoftgame
228
  * [Updated] Spanish translation - thanks to redywebs
screenshot-1.png DELETED
Binary file
screenshot-2.png DELETED
Binary file
screenshot-3.png DELETED
Binary file
screenshot-4.png DELETED
Binary file
screenshot-5.png DELETED
Binary file
screenshot-6.png DELETED
Binary file
screenshot-7.png DELETED
Binary file
screenshot-8.png DELETED
Binary file