Advanced Custom Fields - Version 3.5.0

Version Description

  • [Fixed] Fix missing title of PHP registered field groups on the media edit page
  • [Added] Add revision support
  • [Added] Allow save draft to bypass validation
  • [Updated] Update Czech translation
  • [Fixed] Fix XML export issue with line break - http://support.advancedcustomfields.com/discussion/3219/export-and-import-problem-mixed-line-endings
  • [Fixed] Fix export to XML abspath issue - http://support.advancedcustomfields.com/discussion/2641/require-paths-in-export-php
  • Update location rules for post_type - http://support.advancedcustomfields.com/discussion/3251/fields-on-a-non-public-post-type
  • Add "revisions" to list of hide-able options
  • [Fixed] Fix bug with custom post_id param in acf_form - http://support.advancedcustomfields.com/discussion/2991/acf_form-outside-loop
  • [Fixed] Fix bug in has_sub_field function where new values are not loaded for different posts if the field name is the same - http://support.advancedcustomfields.com/discussion/3331/repeater-field-templating-help-categories
  • [Updated] Allow get_field to use field_key or field_name
  • [Fixed] Fix update_field bug with nested repeaters
  • [Updated] Update German translation files - thanks to Martin Lettner
Download this release

Release Info

Developer elliotcondon
Plugin Icon 128x128 Advanced Custom Fields
Version 3.5.0
Comparing to
See all releases

Code changes from version 3.4.3 to 3.5.0

acf.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: http://www.advancedcustomfields.com/
5
  Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
6
- Version: 3.4.3
7
  Author: Elliot Condon
8
  Author URI: http://www.elliotcondon.com/
9
  License: GPL
@@ -47,7 +47,7 @@ class Acf
47
  // vars
48
  $this->path = plugin_dir_path(__FILE__);
49
  $this->dir = plugins_url('',__FILE__);
50
- $this->version = '3.4.3';
51
  $this->upgrade_version = '3.4.1'; // this is the latest version which requires an upgrade
52
  $this->cache = array(); // basic array cache to hold data throughout the page load
53
 
@@ -74,7 +74,6 @@ class Acf
74
  add_action('wp_ajax_get_input_metabox_ids', array($this, 'get_input_metabox_ids'));
75
 
76
 
77
-
78
  return true;
79
  }
80
 
@@ -490,48 +489,29 @@ class Acf
490
 
491
  function get_acf_fields($post_id)
492
  {
493
- // registered or db
494
- if( ! is_numeric($post_id) )
495
- {
496
- $acfs = apply_filters('acf_register_field_group', array());
497
-
498
- if($acfs)
499
- {
500
- // loop through acfs
501
- foreach($acfs as $acf)
502
- {
503
- if( $acf['id'] != $post_id)
504
- {
505
- continue;
506
- }
507
-
508
- return $acf['fields'];
509
- }
510
- // foreach($acfs as $acf)
511
- }
512
- // if($acfs)
513
- }
514
-
515
-
516
  // vars
 
 
517
  $return = array();
518
- $keys = get_post_custom_keys($post_id);
519
 
520
- if($keys)
 
 
 
 
521
  {
522
- foreach($keys as $key)
523
  {
524
- if(strpos($key, 'field_') !== false)
525
- {
526
- $field = $this->get_acf_field($key, $post_id);
527
 
528
- $return[$field['order_no']] = $field;
529
- }
530
  }
531
 
532
  ksort($return);
533
  }
534
- // return fields
 
 
535
  return $return;
536
 
537
  }
@@ -541,34 +521,58 @@ class Acf
541
  *
542
  * get_acf_field
543
  * - returns a field
 
 
544
  *
545
  * @author Elliot Condon
546
  * @since 1.0.0
547
  *
548
  *-------------------------------------------------------------------------------------*/
549
 
550
- function get_acf_field($field_name, $post_id = false)
551
  {
 
 
 
 
 
 
 
 
552
  // vars
553
- $post_id = $post_id ? $post_id : $this->get_post_meta_post_id($field_name);
 
 
 
 
554
 
 
 
 
 
555
 
556
- // if this acf ($post_id) is trashed don't use it's fields
557
- if(get_post_status($post_id) != "trash")
 
 
558
  {
559
- $field = get_post_meta($post_id, $field_name, true);
560
 
561
 
562
- // if field group was duplicated, it may now be a serialized string!
563
- $field = maybe_unserialize($field);
564
-
565
-
566
- if( $field )
567
  {
568
- return $field;
569
- }
 
570
 
 
 
 
 
 
571
  }
 
572
 
573
 
574
  // hook to load in registered field groups
@@ -583,8 +587,11 @@ class Acf
583
  {
584
  foreach($acf['fields'] as $field)
585
  {
586
- if($field['key'] == $field_name)
587
  {
 
 
 
588
  return $field;
589
  }
590
  }
@@ -597,28 +604,6 @@ class Acf
597
 
598
 
599
  return null;
600
-
601
- }
602
-
603
-
604
- /*--------------------------------------------------------------------------------------
605
- *
606
- * get_post_meta_post_id
607
- * - returns the post_id for a meta_key
608
- *
609
- * @author Elliot Condon
610
- * @since 1.0.0
611
- *
612
- *-------------------------------------------------------------------------------------*/
613
-
614
- function get_post_meta_post_id($field_name)
615
- {
616
- global $wpdb;
617
- $post_id = $wpdb->get_var( $wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = %s", $field_name) );
618
-
619
- if($post_id) return (int)$post_id;
620
-
621
- return false;
622
  }
623
 
624
 
@@ -639,10 +624,15 @@ class Acf
639
  return false;
640
  }
641
 
 
642
  // defaults
643
- if(!isset($field['class'])) $field['class'] = $field['type'];
 
 
 
644
 
645
- $this->fields[$field['type']]->create_field($field);
 
646
  }
647
 
648
 
@@ -715,7 +705,7 @@ class Acf
715
  // defaults
716
  $options = array(
717
  'position' => 'normal',
718
- 'layout' => 'default',
719
  'hide_on_screen' => array(),
720
  );
721
 
@@ -778,7 +768,7 @@ class Acf
778
 
779
  function get_value_for_api($post_id, $field)
780
  {
781
- if(!isset($this->fields[$field['type']]) || !is_object($this->fields[$field['type']]))
782
  {
783
  return '';
784
  }
@@ -798,7 +788,10 @@ class Acf
798
 
799
  function update_value($post_id, $field, $value)
800
  {
801
- $this->fields[$field['type']]->update_value($post_id, $field, $value);
 
 
 
802
  }
803
 
804
 
@@ -975,7 +968,7 @@ class Acf
975
 
976
  }
977
 
978
-
979
  // WPML
980
  if( isset($overrides['lang']) )
981
  {
@@ -985,7 +978,8 @@ class Acf
985
 
986
 
987
  // create post object to match against
988
- $post = isset($overrides['post_id']) ? get_post($_POST['post_id']) : false;
 
989
 
990
  // find all acf objects
991
  $acfs = $this->get_field_groups();
@@ -1734,7 +1728,6 @@ class Acf
1734
  }
1735
 
1736
 
1737
-
1738
  /*
1739
  * acf_save_post
1740
  *
@@ -1771,6 +1764,7 @@ class Acf
1771
  }
1772
 
1773
 
 
1774
  /*
1775
  * get_post_language
1776
  *
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: http://www.advancedcustomfields.com/
5
  Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
6
+ Version: 3.5.0
7
  Author: Elliot Condon
8
  Author URI: http://www.elliotcondon.com/
9
  License: GPL
47
  // vars
48
  $this->path = plugin_dir_path(__FILE__);
49
  $this->dir = plugins_url('',__FILE__);
50
+ $this->version = '3.5.0';
51
  $this->upgrade_version = '3.4.1'; // this is the latest version which requires an upgrade
52
  $this->cache = array(); // basic array cache to hold data throughout the page load
53
 
74
  add_action('wp_ajax_get_input_metabox_ids', array($this, 'get_input_metabox_ids'));
75
 
76
 
 
77
  return true;
78
  }
79
 
489
 
490
  function get_acf_fields($post_id)
491
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
492
  // vars
493
+ global $wpdb;
494
+
495
  $return = array();
 
496
 
497
+
498
+ // get field from postmeta
499
+ $rows = $wpdb->get_results( $wpdb->prepare("SELECT meta_key FROM $wpdb->postmeta WHERE post_id = %d AND meta_key LIKE %s", $post_id, 'field\_%'), ARRAY_A);
500
+
501
+ if( $rows )
502
  {
503
+ foreach( $rows as $row )
504
  {
505
+ $field = $this->get_acf_field( $row['meta_key'], $post_id );
 
 
506
 
507
+ $return[ $field['order_no'] ] = $field;
 
508
  }
509
 
510
  ksort($return);
511
  }
512
+
513
+
514
+ // return
515
  return $return;
516
 
517
  }
521
  *
522
  * get_acf_field
523
  * - returns a field
524
+ * - $post_id can be passed to make sure the correct field is loaded. Eg: a duplicated
525
+ * field group may have the same field_key, but a different post_id
526
  *
527
  * @author Elliot Condon
528
  * @since 1.0.0
529
  *
530
  *-------------------------------------------------------------------------------------*/
531
 
532
+ function get_acf_field( $field_key, $post_id = false )
533
  {
534
+ // return cache
535
+ $cache = $this->get_cache('acf_field_' . $field_key);
536
+ if($cache != false)
537
+ {
538
+ return $cache;
539
+ }
540
+
541
+
542
  // vars
543
+ global $wpdb;
544
+
545
+
546
+ // get field from postmeta
547
+ $sql = $wpdb->prepare("SELECT post_id, meta_value FROM $wpdb->postmeta WHERE meta_key = %s", $field_key);
548
 
549
+ if( $post_id )
550
+ {
551
+ $sql .= $wpdb->prepare("AND post_id = %d", $post_id);
552
+ }
553
 
554
+ $row = $wpdb->get_results( $sql, ARRAY_A );
555
+
556
+
557
+ if( $row )
558
  {
559
+ $row = $row[0];
560
 
561
 
562
+ // return field if it is not in a trashed field group
563
+ if( get_post_status( $row['post_id'] ) != "trash" )
 
 
 
564
  {
565
+ $row['meta_value'] = maybe_unserialize( $row['meta_value'] );
566
+ $row['meta_value'] = maybe_unserialize( $row['meta_value'] ); // run again for WPML
567
+
568
 
569
+ // set cache
570
+ $this->set_cache('acf_field_' . $field_key, $row['meta_value']);
571
+
572
+ return $row['meta_value'];
573
+ }
574
  }
575
+
576
 
577
 
578
  // hook to load in registered field groups
587
  {
588
  foreach($acf['fields'] as $field)
589
  {
590
+ if($field['key'] == $field_key)
591
  {
592
+ // set cache
593
+ $this->set_cache('acf_field_' . $field_key, $field);
594
+
595
  return $field;
596
  }
597
  }
604
 
605
 
606
  return null;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
607
  }
608
 
609
 
624
  return false;
625
  }
626
 
627
+
628
  // defaults
629
+ if( !isset($field['class']) )
630
+ {
631
+ $field['class'] = $field['type'];
632
+ }
633
 
634
+
635
+ $this->fields[ $field['type'] ]->create_field($field);
636
  }
637
 
638
 
705
  // defaults
706
  $options = array(
707
  'position' => 'normal',
708
+ 'layout' => 'no_box',
709
  'hide_on_screen' => array(),
710
  );
711
 
768
 
769
  function get_value_for_api($post_id, $field)
770
  {
771
+ if( !isset($field['type'], $this->fields[ $field['type'] ]) )
772
  {
773
  return '';
774
  }
788
 
789
  function update_value($post_id, $field, $value)
790
  {
791
+ if( isset($field['type'], $this->fields[ $field['type'] ]) )
792
+ {
793
+ $this->fields[$field['type']]->update_value($post_id, $field, $value);
794
+ }
795
  }
796
 
797
 
968
 
969
  }
970
 
971
+
972
  // WPML
973
  if( isset($overrides['lang']) )
974
  {
978
 
979
 
980
  // create post object to match against
981
+ $post = isset($overrides['post_id']) ? get_post($overrides['post_id']) : false;
982
+
983
 
984
  // find all acf objects
985
  $acfs = $this->get_field_groups();
1728
  }
1729
 
1730
 
 
1731
  /*
1732
  * acf_save_post
1733
  *
1764
  }
1765
 
1766
 
1767
+
1768
  /*
1769
  * get_post_language
1770
  *
core/actions/export.php CHANGED
@@ -8,13 +8,20 @@
8
  *
9
  *-------------------------------------------------------------------------------------*/
10
 
11
- // includes
12
- require_once('../../../../../wp-load.php');
13
- require_once('../../../../../wp-admin/admin.php');
 
 
 
 
 
 
 
14
 
15
 
16
  // check for posts
17
- if(!isset($_POST['acf_posts']))
18
  {
19
  wp_die(__("No ACF groups selected",'acf'));
20
  }
@@ -206,7 +213,10 @@ echo '<?xml version="1.0" encoding="' . get_bloginfo('charset') . "\" ?>\n";
206
  <wp:post_type><?php echo $post->post_type; ?></wp:post_type>
207
  <wp:post_password><?php echo $post->post_password; ?></wp:post_password>
208
  <?php $postmeta = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->postmeta WHERE post_id = %d", $post->ID ) );
209
- foreach( $postmeta as $meta ) : if ( $meta->meta_key != '_edit_lock' ) : ?>
 
 
 
210
  <wp:postmeta>
211
  <wp:meta_key><?php echo $meta->meta_key; ?></wp:meta_key>
212
  <wp:meta_value><?php echo wxr_cdata( $meta->meta_value ); ?></wp:meta_value>
8
  *
9
  *-------------------------------------------------------------------------------------*/
10
 
11
+ // vars
12
+ $defaults = array(
13
+ 'acf_abspath' => '../../../../..',
14
+ 'acf_posts' => array()
15
+ );
16
+ $options = array_merge( $defaults, $_POST );
17
+
18
+
19
+ require_once( $options['acf_abspath'] . '/wp-load.php');
20
+ require_once( $options['acf_abspath'] . '/wp-admin/admin.php');
21
 
22
 
23
  // check for posts
24
+ if( !$options['acf_posts'] )
25
  {
26
  wp_die(__("No ACF groups selected",'acf'));
27
  }
213
  <wp:post_type><?php echo $post->post_type; ?></wp:post_type>
214
  <wp:post_password><?php echo $post->post_password; ?></wp:post_password>
215
  <?php $postmeta = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->postmeta WHERE post_id = %d", $post->ID ) );
216
+ foreach( $postmeta as $meta ) : if ( $meta->meta_key != '_edit_lock' ) :
217
+ $meta->meta_value = str_replace("\r\n", "\n", $meta->meta_value);
218
+ $meta->meta_value = str_replace("\r", "\n", $meta->meta_value);
219
+ ?>
220
  <wp:postmeta>
221
  <wp:meta_key><?php echo $meta->meta_key; ?></wp:meta_key>
222
  <wp:meta_value><?php echo wxr_cdata( $meta->meta_value ); ?></wp:meta_value>
core/api.php CHANGED
@@ -45,6 +45,16 @@ function get_fields($post_id = false)
45
  '\_%'
46
  ));
47
  }
 
 
 
 
 
 
 
 
 
 
48
  else
49
  {
50
  $keys = $wpdb->get_col($wpdb->prepare(
@@ -83,7 +93,7 @@ function get_fields($post_id = false)
83
  *
84
  *-------------------------------------------------------------------------------------*/
85
 
86
- function get_field($field_name, $post_id = false)
87
  {
88
  global $post, $acf;
89
 
@@ -101,7 +111,7 @@ function get_field($field_name, $post_id = false)
101
 
102
 
103
  // return cache
104
- $cache = wp_cache_get('acf_get_field_' . $post_id . '_' . $field_name);
105
  if($cache)
106
  {
107
  return $cache;
@@ -109,56 +119,54 @@ function get_field($field_name, $post_id = false)
109
 
110
  // default
111
  $value = "";
 
 
 
 
112
 
113
-
114
- // get value
115
- $field_key = "";
116
- if( is_numeric($post_id) )
117
- {
118
- $field_key = get_post_meta($post_id, '_' . $field_name, true);
119
- }
120
- elseif( strpos($post_id, 'user_') !== false )
121
- {
122
- $temp_post_id = str_replace('user_', '', $post_id);
123
- $field_key = get_user_meta($temp_post_id, '_' . $field_name, true);
124
- }
125
- else
126
- {
127
- $field_key = get_option('_' . $post_id . '_' . $field_name);
128
- }
129
-
130
 
131
- if($field_key != "")
132
- {
133
- // we can load the field properly!
134
- $field = $acf->get_acf_field($field_key);
135
- $value = $acf->get_value_for_api($post_id, $field);
136
- }
137
- else
138
- {
139
- // just load the text version
140
  if( is_numeric($post_id) )
141
  {
142
- $value = get_post_meta($post_id, $field_name, true);
143
  }
144
  elseif( strpos($post_id, 'user_') !== false )
145
  {
146
  $temp_post_id = str_replace('user_', '', $post_id);
147
- $value = get_post_meta($temp_post_id, $field_name, true);
148
  }
149
  else
150
  {
151
- $value = get_option($post_id . '_' . $field_name);
152
  }
153
-
154
- }
 
 
 
 
 
 
 
 
 
 
 
155
 
156
  // no value?
157
- if($value == "") $value = false;
 
 
 
 
158
 
159
  // update cache
160
- wp_cache_set('acf_get_field_' . $post_id . '_' . $field_name, $value);
161
 
 
162
  return $value;
163
 
164
  }
@@ -197,6 +205,13 @@ function the_field($field_name, $post_id = false)
197
 
198
  function has_sub_field($field_name, $post_id = false)
199
  {
 
 
 
 
 
 
 
200
 
201
  // empty?
202
  if( empty($GLOBALS['acf_field']) )
@@ -204,7 +219,8 @@ function has_sub_field($field_name, $post_id = false)
204
  $GLOBALS['acf_field'][] = array(
205
  'name' => $field_name,
206
  'value' => get_field($field_name, $post_id),
207
- 'row' => -1
 
208
  );
209
  }
210
 
@@ -214,7 +230,16 @@ function has_sub_field($field_name, $post_id = false)
214
  $name = $GLOBALS['acf_field'][$depth]['name'];
215
  $value = $GLOBALS['acf_field'][$depth]['value'];
216
  $row = $GLOBALS['acf_field'][$depth]['row'];
 
 
217
 
 
 
 
 
 
 
 
218
 
219
 
220
  // does the given $field_name match the current field?
@@ -226,7 +251,8 @@ function has_sub_field($field_name, $post_id = false)
226
  $GLOBALS['acf_field'][] = array(
227
  'name' => $field_name,
228
  'value' => $value[$row][$field_name],
229
- 'row' => -1
 
230
  );
231
  }
232
 
@@ -515,19 +541,25 @@ add_shortcode( 'acf', 'acf_shortcode' );
515
  function acf_form_head()
516
  {
517
  // global vars
518
- global $acf;
519
 
520
 
521
 
522
  // run database save first
523
- if(isset($_POST) && isset($_POST['acf_save']))
524
  {
525
  // $post_id to save against
526
  $post_id = $_POST['post_id'];
527
 
 
 
 
 
 
 
528
  do_action('acf_save_post', $post_id);
529
 
530
-
531
  // redirect
532
  if(isset($_POST['return']))
533
  {
@@ -621,7 +653,7 @@ function acf_form($options = null)
621
  {
622
  $options['field_groups'] = $acf->get_input_metabox_ids(array('post_id' => $options['post_id']), false);
623
  }
624
-
625
 
626
  // updated message
627
  if(isset($_GET['updated']) && $_GET['updated'] == 'true' && $options['updated_message'])
@@ -643,7 +675,7 @@ function acf_form($options = null)
643
  <?php
644
 
645
  // html before fields
646
- echo $defaults['html_before_fields'];
647
 
648
  $field_groups = $acf->get_field_groups();
649
  if($field_groups):
@@ -673,7 +705,7 @@ function acf_form($options = null)
673
  endif;
674
 
675
  // html after fields
676
- echo $defaults['html_after_fields'];
677
 
678
  ?>
679
  <!-- Submit -->
@@ -745,58 +777,93 @@ function update_field($field_key, $value, $post_id = false)
745
  return false;
746
  }
747
 
748
-
749
  // sub fields? They need formatted data
750
- if( isset($field['sub_fields']) )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
751
  {
752
- // define sub field keys
753
- $sub_field_keys = array();
754
- if( $field['sub_fields'] )
755
  {
756
- foreach( $field['sub_fields'] as $sub_field )
757
- {
758
- $sub_field_keys[ $sub_field['name'] ] = $sub_field['key'];
759
- }
760
  }
761
-
762
-
763
- // loop through the values and format the array to use sub field keys
764
- if( $value )
 
 
 
765
  {
766
- foreach( $value as $row_i => $row)
767
  {
768
- if( $row )
769
  {
770
- foreach( $row as $sub_field_name => $sub_field_value )
 
771
  {
772
-
773
- if( isset($sub_field_keys[$sub_field_name]) )
774
- {
775
- // change the array key from "sub_field_name" to "sub_field_key"
776
- $value[$row_i][ $sub_field_keys[$sub_field_name] ] = $sub_field_value;
777
-
778
- unset( $value[$row_i][$sub_field_name] );
779
- }
780
-
781
  }
782
- // foreach( $row as $sub_field_name => $sub_field_value )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
783
  }
784
- // if( $row )
785
  }
786
- // foreach( $value as $row_i => $row)
787
  }
788
- // if( $value )
789
-
790
  }
 
791
 
792
-
793
- $acf->update_value($post_id, $field, $value);
794
-
795
- return true;
796
 
 
 
797
  }
798
 
799
 
 
800
  /*--------------------------------------------------------------------------------------
801
  *
802
  * get_field_object
45
  '\_%'
46
  ));
47
  }
48
+ elseif( strpos($post_id, 'user_') !== false )
49
+ {
50
+ $user_id = str_replace('user_', '', $post_id);
51
+
52
+ $keys = $wpdb->get_col($wpdb->prepare(
53
+ "SELECT meta_key FROM $wpdb->usermeta WHERE user_id = %d and meta_key NOT LIKE %s",
54
+ $user_id,
55
+ '\_%'
56
+ ));
57
+ }
58
  else
59
  {
60
  $keys = $wpdb->get_col($wpdb->prepare(
93
  *
94
  *-------------------------------------------------------------------------------------*/
95
 
96
+ function get_field($field_key, $post_id = false)
97
  {
98
  global $post, $acf;
99
 
111
 
112
 
113
  // return cache
114
+ $cache = wp_cache_get('acf_get_field_' . $post_id . '_' . $field_key);
115
  if($cache)
116
  {
117
  return $cache;
119
 
120
  // default
121
  $value = "";
122
+ $field = array(
123
+ 'type' => 'text',
124
+ 'name' => $field_key
125
+ );
126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
 
128
+ // is $field_name a name? pre 3.4.0
129
+ if( strpos($field_key, "field_") === false )
130
+ {
131
+ // get field key
 
 
 
 
 
132
  if( is_numeric($post_id) )
133
  {
134
+ $field_key = get_post_meta($post_id, '_' . $field_key, true);
135
  }
136
  elseif( strpos($post_id, 'user_') !== false )
137
  {
138
  $temp_post_id = str_replace('user_', '', $post_id);
139
+ $field_key = get_user_meta($temp_post_id, '_' . $field_key, true);
140
  }
141
  else
142
  {
143
+ $field_key = get_option('_' . $post_id . '_' . $field_key);
144
  }
145
+ }
146
+
147
+
148
+ // get field
149
+ if( strpos($field_key, "field_") !== false )
150
+ {
151
+ $field = $acf->get_acf_field($field_key);
152
+ }
153
+
154
+
155
+ // load value
156
+ $value = $acf->get_value_for_api($post_id, $field);
157
+
158
 
159
  // no value?
160
+ if( $value == "" )
161
+ {
162
+ $value = false;
163
+ }
164
+
165
 
166
  // update cache
167
+ wp_cache_set('acf_get_field_' . $post_id . '_' . $field_key, $value);
168
 
169
+
170
  return $value;
171
 
172
  }
205
 
206
  function has_sub_field($field_name, $post_id = false)
207
  {
208
+ // needs a post_id
209
+ global $post;
210
+
211
+ if( !$post_id )
212
+ {
213
+ $post_id = $post->ID;
214
+ }
215
 
216
  // empty?
217
  if( empty($GLOBALS['acf_field']) )
219
  $GLOBALS['acf_field'][] = array(
220
  'name' => $field_name,
221
  'value' => get_field($field_name, $post_id),
222
+ 'row' => -1,
223
+ 'post_id' => $post_id,
224
  );
225
  }
226
 
230
  $name = $GLOBALS['acf_field'][$depth]['name'];
231
  $value = $GLOBALS['acf_field'][$depth]['value'];
232
  $row = $GLOBALS['acf_field'][$depth]['row'];
233
+ $id = $GLOBALS['acf_field'][$depth]['post_id'];
234
+
235
 
236
+ // if ID has changed, this is a new repeater / flexible field!
237
+ if( $post_id != $id )
238
+ {
239
+ // reset
240
+ $GLOBALS['acf_field'] = array();
241
+ return has_sub_field($field_name, $post_id);
242
+ }
243
 
244
 
245
  // does the given $field_name match the current field?
251
  $GLOBALS['acf_field'][] = array(
252
  'name' => $field_name,
253
  'value' => $value[$row][$field_name],
254
+ 'row' => -1,
255
+ 'post_id' => $post_id,
256
  );
257
  }
258
 
541
  function acf_form_head()
542
  {
543
  // global vars
544
+ global $acf, $post_id;
545
 
546
 
547
 
548
  // run database save first
549
+ if( isset($_POST['acf_save']) )
550
  {
551
  // $post_id to save against
552
  $post_id = $_POST['post_id'];
553
 
554
+
555
+ // allow for custom save
556
+ $post_id = apply_filters('acf_form_pre_save_post', $post_id);
557
+
558
+
559
+ // save the data
560
  do_action('acf_save_post', $post_id);
561
 
562
+
563
  // redirect
564
  if(isset($_POST['return']))
565
  {
653
  {
654
  $options['field_groups'] = $acf->get_input_metabox_ids(array('post_id' => $options['post_id']), false);
655
  }
656
+
657
 
658
  // updated message
659
  if(isset($_GET['updated']) && $_GET['updated'] == 'true' && $options['updated_message'])
675
  <?php
676
 
677
  // html before fields
678
+ echo $options['html_before_fields'];
679
 
680
  $field_groups = $acf->get_field_groups();
681
  if($field_groups):
705
  endif;
706
 
707
  // html after fields
708
+ echo $options['html_after_fields'];
709
 
710
  ?>
711
  <!-- Submit -->
777
  return false;
778
  }
779
 
780
+
781
  // sub fields? They need formatted data
782
+ $value = acf_convert_field_names_to_keys( $value, $field );
783
+
784
+ $acf->update_value($post_id, $field, $value);
785
+
786
+ return true;
787
+
788
+ }
789
+
790
+
791
+ /*--------------------------------------------------------------------------------------
792
+ *
793
+ * acf_convert_field_names_to_keys
794
+ *
795
+ * @description: Helper for the update_field function
796
+ * @created: 30/09/12
797
+ * @author Elliot Condon
798
+ * @since 3.5.0
799
+ *
800
+ *-------------------------------------------------------------------------------------*/
801
+
802
+ function acf_convert_field_names_to_keys( $value, $field )
803
+ {
804
+ // only if $field has sub fields
805
+ if( !isset($field['sub_fields']) )
806
+ {
807
+ return $value;
808
+ }
809
+
810
+
811
+ // define sub field keys
812
+ $sub_fields = array();
813
+ if( $field['sub_fields'] )
814
  {
815
+ foreach( $field['sub_fields'] as $sub_field )
 
 
816
  {
817
+ $sub_fields[ $sub_field['name'] ] = $sub_field;
 
 
 
818
  }
819
+ }
820
+
821
+
822
+ // loop through the values and format the array to use sub field keys
823
+ if( $value )
824
+ {
825
+ foreach( $value as $row_i => $row)
826
  {
827
+ if( $row )
828
  {
829
+ foreach( $row as $sub_field_name => $sub_field_value )
830
  {
831
+ // sub field must exist!
832
+ if( !isset($sub_fields[ $sub_field_name ]) )
833
  {
834
+ continue;
 
 
 
 
 
 
 
 
835
  }
836
+
837
+
838
+ // vars
839
+ $sub_field = $sub_fields[ $sub_field_name ];
840
+ $sub_field_value = acf_convert_field_names_to_keys( $sub_field_value, $sub_field );
841
+
842
+
843
+ // set new value
844
+ $value[$row_i][ $sub_field['key'] ] = $sub_field_value;
845
+
846
+
847
+ // unset old value
848
+ unset( $value[$row_i][$sub_field_name] );
849
+
850
+
851
  }
852
+ // foreach( $row as $sub_field_name => $sub_field_value )
853
  }
854
+ // if( $row )
855
  }
856
+ // foreach( $value as $row_i => $row)
 
857
  }
858
+ // if( $value )
859
 
 
 
 
 
860
 
861
+ return $value;
862
+
863
  }
864
 
865
 
866
+
867
  /*--------------------------------------------------------------------------------------
868
  *
869
  * get_field_object
core/controllers/everything_fields.php CHANGED
@@ -387,7 +387,14 @@ class acf_everything_fields
387
  // title
388
  if( $options['page_action'] == "edit" && $options['page_type'] != "media")
389
  {
390
- echo '<h3>' . get_the_title( $acf['id'] ) . '</h3>';
 
 
 
 
 
 
 
391
  echo '<table class="form-table">';
392
  }
393
 
387
  // title
388
  if( $options['page_action'] == "edit" && $options['page_type'] != "media")
389
  {
390
+ if ( is_numeric( $acf['id'] ) )
391
+ {
392
+ echo '<h3>' . get_the_title( $acf['id'] ) . '</h3>';
393
+ }
394
+ else
395
+ {
396
+ echo '<h3>' . apply_filters( 'the_title', $acf['title'] ) . '</h3>';
397
+ }
398
  echo '<table class="form-table">';
399
  }
400
 
core/controllers/field_group.php CHANGED
@@ -301,7 +301,10 @@ class acf_field_group
301
  {
302
  case "post_type":
303
 
304
- $choices = get_post_types(array('public' => true));
 
 
 
305
  unset($choices['attachment']);
306
 
307
  break;
301
  {
302
  case "post_type":
303
 
304
+ $choices = get_post_types(array(
305
+ 'public' => true
306
+ ));
307
+
308
  unset($choices['attachment']);
309
 
310
  break;
core/controllers/field_groups.php CHANGED
File without changes
core/controllers/input.php CHANGED
@@ -51,7 +51,8 @@ class acf_input
51
  add_action('acf_head-input', array($this, 'acf_head_input'));
52
  add_action('acf_print_scripts-input', array($this, 'acf_print_scripts_input'));
53
  add_action('acf_print_styles-input', array($this, 'acf_print_styles_input'));
54
-
 
55
 
56
  // ajax
57
  add_action('wp_ajax_acf_input', array($this, 'ajax_acf_input'));
@@ -208,6 +209,11 @@ class acf_input
208
  {
209
  // hide / show
210
  $show = in_array($acf['id'], $metabox_ids) ? "true" : "false";
 
 
 
 
 
211
 
212
  // add meta box
213
  add_meta_box(
@@ -216,9 +222,10 @@ class acf_input
216
  array($this, 'meta_box_input'),
217
  $typenow,
218
  $acf['options']['position'],
219
- 'core',
220
  array( 'fields' => $acf['fields'], 'options' => $acf['options'], 'show' => $show, 'post_id' => $post->ID )
221
  );
 
222
  }
223
  // foreach($acfs as $acf)
224
  }
@@ -285,6 +292,10 @@ class acf_input
285
  {
286
  $html .= '#postimagediv, #screen-meta label[for=postimagediv-hide] {display: none;} ';
287
  }
 
 
 
 
288
 
289
 
290
  break;
@@ -334,7 +345,7 @@ class acf_input
334
  $show = isset($args['args']['show']) ? $args['args']['show'] : "false";
335
  $post_id = isset($args['args']['post_id']) ? $args['args']['post_id'] : false;
336
 
337
-
338
  // defaults
339
  if(!$options)
340
  {
@@ -355,8 +366,6 @@ class acf_input
355
  }
356
  else
357
  {
358
-
359
-
360
  $this->parent->render_fields_for_input($fields, $post_id);
361
  }
362
  }
@@ -390,10 +399,20 @@ class acf_input
390
  die();
391
  }
392
 
393
- // get fields
394
- $fields = $this->parent->get_acf_fields($options['acf_id']);
395
-
396
- $this->parent->render_fields_for_input($fields, $options['post_id']);
 
 
 
 
 
 
 
 
 
 
397
 
398
  die();
399
 
@@ -422,10 +441,11 @@ class acf_input
422
  }
423
 
424
 
425
- // only save once! WordPress save's a revision as well.
426
- if( wp_is_post_revision($post_id) )
 
427
  {
428
- return $post_id;
429
  }
430
 
431
 
@@ -433,6 +453,57 @@ class acf_input
433
  }
434
 
435
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
436
  /*--------------------------------------------------------------------------------------
437
  *
438
  * acf_head_input
@@ -628,6 +699,95 @@ html.wp-toolbar {
628
  do_action('acf_head-edit_attachment');
629
  }
630
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
631
  }
632
 
633
  ?>
51
  add_action('acf_head-input', array($this, 'acf_head_input'));
52
  add_action('acf_print_scripts-input', array($this, 'acf_print_scripts_input'));
53
  add_action('acf_print_styles-input', array($this, 'acf_print_styles_input'));
54
+ add_action('wp_restore_post_revision', array($this, 'wp_restore_post_revision'), 10, 2 );
55
+ add_filter('_wp_post_revision_fields', array($this, 'wp_post_revision_fields') );
56
 
57
  // ajax
58
  add_action('wp_ajax_acf_input', array($this, 'ajax_acf_input'));
209
  {
210
  // hide / show
211
  $show = in_array($acf['id'], $metabox_ids) ? "true" : "false";
212
+ $priority = 'high';
213
+ if( $acf['options']['position'] == 'side' )
214
+ {
215
+ $priority = 'core';
216
+ }
217
 
218
  // add meta box
219
  add_meta_box(
222
  array($this, 'meta_box_input'),
223
  $typenow,
224
  $acf['options']['position'],
225
+ $priority,
226
  array( 'fields' => $acf['fields'], 'options' => $acf['options'], 'show' => $show, 'post_id' => $post->ID )
227
  );
228
+
229
  }
230
  // foreach($acfs as $acf)
231
  }
292
  {
293
  $html .= '#postimagediv, #screen-meta label[for=postimagediv-hide] {display: none;} ';
294
  }
295
+ if( in_array('revisions',$acf['options']['hide_on_screen']) )
296
+ {
297
+ $html .= '#revisionsdiv, #screen-meta label[for=revisionsdiv-hide] {display: none;} ';
298
+ }
299
 
300
 
301
  break;
345
  $show = isset($args['args']['show']) ? $args['args']['show'] : "false";
346
  $post_id = isset($args['args']['post_id']) ? $args['args']['post_id'] : false;
347
 
348
+
349
  // defaults
350
  if(!$options)
351
  {
366
  }
367
  else
368
  {
 
 
369
  $this->parent->render_fields_for_input($fields, $post_id);
370
  }
371
  }
399
  die();
400
  }
401
 
402
+ // get acfs
403
+ $acfs = $this->parent->get_field_groups();
404
+ if( $acfs )
405
+ {
406
+ foreach( $acfs as $acf )
407
+ {
408
+ if( $acf['id'] == $options['acf_id'] )
409
+ {
410
+ $this->parent->render_fields_for_input( $acf['fields'], $options['post_id']);
411
+
412
+ break;
413
+ }
414
+ }
415
+ }
416
 
417
  die();
418
 
441
  }
442
 
443
 
444
+ // Save revision (copy and paste of current metadata. ie: what it was)
445
+ $parent_id = wp_is_post_revision( $post_id );
446
+ if( $parent_id )
447
  {
448
+ $this->save_post_revision( $parent_id, $post_id );
449
  }
450
 
451
 
453
  }
454
 
455
 
456
+ /*
457
+ * save_post_revision
458
+ *
459
+ * @description: simple copy and paste of fields
460
+ * @since 3.4.4
461
+ * @created: 4/09/12
462
+ */
463
+
464
+ function save_post_revision( $parent_id, $revision_id )
465
+ {
466
+
467
+ // load from post
468
+ if( !isset($_POST['fields']) )
469
+ {
470
+ return false;
471
+ }
472
+
473
+
474
+ // field data was posted. Find all values (not references) and copy / paste them over.
475
+
476
+ global $wpdb;
477
+
478
+
479
+ // get field from postmeta
480
+ $rows = $wpdb->get_results( $wpdb->prepare(
481
+ "SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id = %d AND meta_key NOT LIKE %s",
482
+ $parent_id,
483
+ '\_%'
484
+ ), ARRAY_A);
485
+
486
+
487
+ if( $rows )
488
+ {
489
+ foreach( $rows as $row )
490
+ {
491
+ $wpdb->insert(
492
+ $wpdb->postmeta,
493
+ array(
494
+ 'post_id' => $revision_id,
495
+ 'meta_key' => $row['meta_key'],
496
+ 'meta_value' => $row['meta_value']
497
+ )
498
+ );
499
+ }
500
+ }
501
+
502
+ return true;
503
+ }
504
+
505
+
506
+
507
  /*--------------------------------------------------------------------------------------
508
  *
509
  * acf_head_input
699
  do_action('acf_head-edit_attachment');
700
  }
701
 
702
+
703
+ /*
704
+ * wp_restore_post_revision
705
+ *
706
+ * @description:
707
+ * @since 3.4.4
708
+ * @created: 4/09/12
709
+ */
710
+
711
+ function wp_restore_post_revision( $parent_id, $revision_id )
712
+ {
713
+ global $wpdb;
714
+
715
+
716
+ // get field from postmeta
717
+ $rows = $wpdb->get_results( $wpdb->prepare(
718
+ "SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id = %d AND meta_key NOT LIKE %s",
719
+ $revision_id,
720
+ '\_%'
721
+ ), ARRAY_A);
722
+
723
+
724
+ if( $rows )
725
+ {
726
+ foreach( $rows as $row )
727
+ {
728
+ update_post_meta( $parent_id, $row['meta_key'], $row['meta_value'] );
729
+ }
730
+ }
731
+
732
+ }
733
+
734
+
735
+ /*
736
+ * wp_post_revision_fields
737
+ *
738
+ * @description:
739
+ * @since 3.4.4
740
+ * @created: 4/09/12
741
+ */
742
+
743
+ function wp_post_revision_fields( $fields ) {
744
+
745
+ global $post, $wpdb, $revision, $left_revision, $right_revision, $pagenow;
746
+
747
+
748
+ if( $pagenow != "revision.php" )
749
+ {
750
+ return $fields;
751
+ }
752
+
753
+
754
+ // get field from postmeta
755
+ $rows = $wpdb->get_results( $wpdb->prepare(
756
+ "SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id = %d AND meta_key NOT LIKE %s",
757
+ $post->ID,
758
+ '\_%'
759
+ ), ARRAY_A);
760
+
761
+
762
+ if( $rows )
763
+ {
764
+ foreach( $rows as $row )
765
+ {
766
+ $fields[ $row['meta_key'] ] = ucwords( str_replace('_', ' ', $row['meta_key']) );
767
+
768
+
769
+ // left vs right
770
+ if( isset($_GET['left']) && isset($_GET['right']) )
771
+ {
772
+ $left_revision->$row['meta_key'] = get_metadata( 'post', $_GET['left'], $row['meta_key'], true );
773
+ $right_revision->$row['meta_key'] = get_metadata( 'post', $_GET['right'], $row['meta_key'], true );
774
+ }
775
+ else
776
+ {
777
+ $revision->$row['meta_key'] = get_metadata( 'post', $revision->ID, $row['meta_key'], true );
778
+ }
779
+
780
+ }
781
+ }
782
+
783
+
784
+ return $fields;
785
+
786
+ }
787
+
788
+
789
+
790
+
791
  }
792
 
793
  ?>
core/controllers/options_page.php CHANGED
File without changes
core/controllers/settings.php CHANGED
@@ -330,6 +330,7 @@ class acf_settings
330
  </th>
331
  <td>
332
  <form class="acf-export-form" method="post" action="<?php echo $this->parent->dir; ?>/core/actions/export.php">
 
333
  <?php
334
 
335
  $this->parent->create_field(array(
@@ -379,7 +380,7 @@ class acf_settings
379
 
380
  ?>
381
  <ul class="hl clearfix">
382
- <li class="right"><input type="submit" class="acf-button" value="<?php _e("Create PHP",'acf'); ?>" /></li>
383
  </ul>
384
  </form>
385
  </td>
@@ -483,7 +484,7 @@ class acf_settings
483
  <td valign="top">
484
  <div class="wp-box">
485
  <div class="inner">
486
- <pre><?php
487
 
488
  $acfs = array();
489
 
@@ -556,13 +557,30 @@ if(function_exists("register_field_group"))
556
  {
557
  _e("No field groups were selected",'acf');
558
  }
559
- ?></pre>
560
  </div>
561
  </div>
562
  </td>
563
  </tr>
564
  </tbody>
565
  </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
566
  <?php
567
  }
568
 
@@ -577,11 +595,12 @@ if(function_exists("register_field_group"))
577
 
578
  function html()
579
  {
580
-
581
  // vars
582
- $action = isset($_POST['action']) ? $_POST['action'] : "";
583
-
584
-
 
 
585
  ?>
586
  <div class="wrap">
587
 
@@ -589,7 +608,7 @@ if(function_exists("register_field_group"))
589
  <h2 style="margin: 4px 0 25px;"><?php _e("Advanced Custom Fields Settings",'acf'); ?></h2>
590
  <?php
591
 
592
- if($action == "export_php")
593
  {
594
  $this->html_php();
595
  }
@@ -602,7 +621,6 @@ if(function_exists("register_field_group"))
602
  </div>
603
  <?php
604
 
605
-
606
  return;
607
 
608
  }
330
  </th>
331
  <td>
332
  <form class="acf-export-form" method="post" action="<?php echo $this->parent->dir; ?>/core/actions/export.php">
333
+ <input type="hidden" name="acf_abspath" value="<?php echo ABSPATH; ?>" />
334
  <?php
335
 
336
  $this->parent->create_field(array(
380
 
381
  ?>
382
  <ul class="hl clearfix">
383
+ <li class="right"><input type="submit" class="acf-button" value="<?php esc_attr_e("Create PHP",'acf'); ?>" /></li>
384
  </ul>
385
  </form>
386
  </td>
484
  <td valign="top">
485
  <div class="wp-box">
486
  <div class="inner">
487
+ <textarea class="pre" readonly="true" onclick="this.focus();this.select()"><?php
488
 
489
  $acfs = array();
490
 
557
  {
558
  _e("No field groups were selected",'acf');
559
  }
560
+ ?></textarea>
561
  </div>
562
  </div>
563
  </td>
564
  </tr>
565
  </tbody>
566
  </table>
567
+ <script type="text/javascript">
568
+ (function($){
569
+
570
+ $('textarea.pre').live( 'keyup', function (){
571
+ $(this).height( 0 );
572
+ $(this).height( this.scrollHeight );
573
+ });
574
+
575
+
576
+ $(document).ready(function(){
577
+
578
+ $('textarea.pre').trigger('keyup');
579
+
580
+ });
581
+
582
+ })(jQuery);
583
+ </script>
584
  <?php
585
  }
586
 
595
 
596
  function html()
597
  {
 
598
  // vars
599
+ $defaults = array(
600
+ 'action' => ''
601
+ );
602
+ $options = array_merge($defaults, $_POST);
603
+
604
  ?>
605
  <div class="wrap">
606
 
608
  <h2 style="margin: 4px 0 25px;"><?php _e("Advanced Custom Fields Settings",'acf'); ?></h2>
609
  <?php
610
 
611
+ if( $options['action'] == "export_php" )
612
  {
613
  $this->html_php();
614
  }
621
  </div>
622
  <?php
623
 
 
624
  return;
625
 
626
  }
core/controllers/upgrade.php CHANGED
File without changes
core/fields/acf_field.php CHANGED
@@ -175,7 +175,7 @@ class acf_Field
175
  $value = get_post_meta( $post_id, $field['name'], false );
176
 
177
  // value is an array, check and assign the real value / default value
178
- if( empty($value) )
179
  {
180
  if( isset($field['default_value']) )
181
  {
@@ -198,7 +198,7 @@ class acf_Field
198
  $value = get_user_meta( $post_id, $field['name'], false );
199
 
200
  // value is an array, check and assign the real value / default value
201
- if( empty($value) )
202
  {
203
  if( isset($field['default_value']) )
204
  {
175
  $value = get_post_meta( $post_id, $field['name'], false );
176
 
177
  // value is an array, check and assign the real value / default value
178
+ if( !isset($value[0]) )
179
  {
180
  if( isset($field['default_value']) )
181
  {
198
  $value = get_user_meta( $post_id, $field['name'], false );
199
 
200
  // value is an array, check and assign the real value / default value
201
+ if( !isset($value[0]) )
202
  {
203
  if( isset($field['default_value']) )
204
  {
core/fields/file.php CHANGED
@@ -352,6 +352,15 @@ class acf_File extends acf_Field
352
 
353
  var id = $(this).attr('href');
354
 
 
 
 
 
 
 
 
 
 
355
  var data = {
356
  action: 'acf_select_file',
357
  id: id
@@ -365,7 +374,7 @@ class acf_File extends acf_Field
365
  return false;
366
  }
367
 
368
- self.parent.acf_div.find('input.value').val(id);
369
  self.parent.acf_div.find('.has-file').html(html);
370
  self.parent.acf_div.addClass('active');
371
 
@@ -423,7 +432,7 @@ class acf_File extends acf_Field
423
  return false;
424
  }
425
 
426
- self.parent.acf_div.find('input.value').val(this_id);
427
  self.parent.acf_div.find('.has-file').html(html);
428
  self.parent.acf_div.addClass('active');
429
 
352
 
353
  var id = $(this).attr('href');
354
 
355
+
356
+ // IE7 Fix
357
+ if( id.indexOf("/") != -1 )
358
+ {
359
+ var split = id.split("/");
360
+ id = split[split.length-1];
361
+ }
362
+
363
+
364
  var data = {
365
  action: 'acf_select_file',
366
  id: id
374
  return false;
375
  }
376
 
377
+ self.parent.acf_div.find('input.value').val(id).trigger('change');
378
  self.parent.acf_div.find('.has-file').html(html);
379
  self.parent.acf_div.addClass('active');
380
 
432
  return false;
433
  }
434
 
435
+ self.parent.acf_div.find('input.value').val(this_id).trigger('change');
436
  self.parent.acf_div.find('.has-file').html(html);
437
  self.parent.acf_div.addClass('active');
438
 
core/fields/image.php CHANGED
@@ -398,7 +398,7 @@ class acf_Image extends acf_Field
398
 
399
 
400
  // update acf_div
401
- div.find('input.value').val( item.id );
402
  div.find('img').attr( 'src', item.url );
403
  div.addClass('active');
404
 
@@ -458,7 +458,7 @@ class acf_Image extends acf_Field
458
  $.each(json, function(i ,item){
459
 
460
  // update acf_div
461
- self.parent.acf_div.find('input.value').val( item.id );
462
  self.parent.acf_div.find('img').attr('src', item.url );
463
  self.parent.acf_div.addClass('active');
464
 
398
 
399
 
400
  // update acf_div
401
+ div.find('input.value').val( item.id ).trigger('change');
402
  div.find('img').attr( 'src', item.url );
403
  div.addClass('active');
404
 
458
  $.each(json, function(i ,item){
459
 
460
  // update acf_div
461
+ self.parent.acf_div.find('input.value').val( item.id ).trigger('change');
462
  self.parent.acf_div.find('img').attr('src', item.url );
463
  self.parent.acf_div.addClass('active');
464
 
core/views/meta_box_options.php CHANGED
@@ -67,8 +67,8 @@ $options = $this->parent->get_acf_options($post->ID);
67
  'name' => 'options[layout]',
68
  'value' => $options['layout'],
69
  'choices' => array(
70
- 'default' => __("Standard Metabox",'acf'),
71
  'no_box' => __("No Metabox",'acf'),
 
72
  )
73
  ));
74
 
@@ -94,6 +94,7 @@ $options = $this->parent->get_acf_options($post->ID);
94
  'custom_fields' => __("Custom Fields"),
95
  'discussion' => __("Discussion"),
96
  'comments' => __("Comments"),
 
97
  'slug' => __("Slug"),
98
  'author' => __("Author"),
99
  'format' => __("Format"),
67
  'name' => 'options[layout]',
68
  'value' => $options['layout'],
69
  'choices' => array(
 
70
  'no_box' => __("No Metabox",'acf'),
71
+ 'default' => __("Standard Metabox",'acf'),
72
  )
73
  ));
74
 
94
  'custom_fields' => __("Custom Fields"),
95
  'discussion' => __("Discussion"),
96
  'comments' => __("Comments"),
97
+ 'revisions' => __("Revisions"),
98
  'slug' => __("Slug"),
99
  'author' => __("Author"),
100
  'format' => __("Format"),
css/acf.css CHANGED
@@ -139,10 +139,17 @@ body.custom-fields_page_acf-settings .wp-pointer-arrow {
139
  margin-left: 1.5em;
140
  }
141
 
142
- .acf-form-table pre {
 
143
  padding: 10px;
144
  margin: 0;
145
  font-family: Monaco,"Andale Mono","Courier New",monospace !important;
 
 
 
 
 
 
146
  }
147
 
148
  /*--------------------------------------------------------------------------------------------
139
  margin-left: 1.5em;
140
  }
141
 
142
+ .acf-form-table pre,
143
+ .acf-form-table .pre {
144
  padding: 10px;
145
  margin: 0;
146
  font-family: Monaco,"Andale Mono","Courier New",monospace !important;
147
+ resize: none;
148
+ height: auto;
149
+ width: 100%;
150
+ padding: 0;
151
+ border: 0 none;
152
+ border-radius: 0;
153
  }
154
 
155
  /*--------------------------------------------------------------------------------------------
js/input-actions.js CHANGED
@@ -81,6 +81,20 @@ var acf = {
81
  });
82
 
83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  /*
85
  * Submit form
86
  *
@@ -90,25 +104,31 @@ var acf = {
90
 
91
  $('form#post').live("submit", function(){
92
 
93
- // do validation
94
- do_validation();
95
-
96
- if(acf.validation == false)
97
  {
98
- // show message
99
- $(this).siblings('#message').remove();
100
- $(this).before('<div id="message" class="error"><p>' + acf.text.validation_error + '</p></div>');
101
-
102
 
103
- // hide ajax stuff on submit button
104
- $('#publish').removeClass('button-primary-disabled');
105
- $('#ajax-loading').attr('style','');
106
 
107
- return false;
 
 
 
 
 
 
 
 
 
 
 
 
108
  }
109
-
 
110
  $('.acf_postbox:hidden').remove();
111
 
 
112
  // submit the form
113
  return true;
114
 
@@ -376,7 +396,7 @@ var acf = {
376
  // vars
377
  var div = $(this).closest('.acf-file-uploader');
378
 
379
- div.removeClass('active').find('input.value').val('');
380
 
381
  return false;
382
 
@@ -433,7 +453,7 @@ var acf = {
433
  var div = $(this).closest('.acf-image-uploader');
434
 
435
  div.removeClass('active');
436
- div.find('input.value').val('');
437
  div.find('img').attr('src', '');
438
 
439
  return false;
81
  });
82
 
83
 
84
+ /*
85
+ * Save Draft
86
+ *
87
+ * @description:
88
+ * @created: 18/09/12
89
+ */
90
+ var save_post = false;
91
+ $('#save-post').live('click', function(){
92
+
93
+ save_post = true;
94
+
95
+ });
96
+
97
+
98
  /*
99
  * Submit form
100
  *
104
 
105
  $('form#post').live("submit", function(){
106
 
107
+ if( !save_post )
 
 
 
108
  {
109
+ // do validation
110
+ do_validation();
 
 
111
 
 
 
 
112
 
113
+ if(acf.validation == false)
114
+ {
115
+ // show message
116
+ $(this).siblings('#message').remove();
117
+ $(this).before('<div id="message" class="error"><p>' + acf.text.validation_error + '</p></div>');
118
+
119
+
120
+ // hide ajax stuff on submit button
121
+ $('#publish').removeClass('button-primary-disabled');
122
+ $('#ajax-loading').attr('style','');
123
+
124
+ return false;
125
+ }
126
  }
127
+
128
+
129
  $('.acf_postbox:hidden').remove();
130
 
131
+
132
  // submit the form
133
  return true;
134
 
396
  // vars
397
  var div = $(this).closest('.acf-file-uploader');
398
 
399
+ div.removeClass('active').find('input.value').val('').trigger('change');
400
 
401
  return false;
402
 
453
  var div = $(this).closest('.acf-image-uploader');
454
 
455
  div.removeClass('active');
456
+ div.find('input.value').val('').trigger('change');
457
  div.find('img').attr('src', '');
458
 
459
  return false;
lang/acf-cs_CZ.mo CHANGED
Binary file
lang/acf-cs_CZ.po CHANGED
@@ -4,122 +4,133 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
- "POT-Creation-Date: 2012-07-03 07:34:11+00:00\n"
 
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2012-07-05 19:22+0100\n"
12
- "Last-Translator: Jakub Machala <jakubmachala@webees.cz>\n"
13
- "Language-Team: webees.cz s.r.o. <jakubmachala@webees.cz>\n"
14
 
15
- #: acf.php:273
16
  #: core/views/meta_box_options.php:94
17
  msgid "Custom Fields"
18
  msgstr "Vlastní pole"
19
 
20
- #: acf.php:294
21
  msgid "Field&nbsp;Groups"
22
  msgstr "Skupiny&nbsp;polí"
23
 
24
- #: acf.php:295
25
- #: core/controllers/field_groups.php:153
26
  #: core/controllers/upgrade.php:70
27
  msgid "Advanced Custom Fields"
28
  msgstr "Pokročilá vlastní pole"
29
 
30
- #: acf.php:296
31
- #: core/fields/flexible_content.php:271
32
  msgid "Add New"
33
  msgstr "Přidat nové"
34
 
35
- #: acf.php:297
36
  msgid "Add New Field Group"
37
  msgstr "Přidat novou skupinu polí"
38
 
39
- #: acf.php:298
40
  msgid "Edit Field Group"
41
  msgstr "Upravit skupinu polí"
42
 
43
- #: acf.php:299
44
  msgid "New Field Group"
45
  msgstr "Nová skupina polí"
46
 
47
- #: acf.php:300
48
  msgid "View Field Group"
49
  msgstr "Prohlížet skupinu polí"
50
 
51
- #: acf.php:301
52
  msgid "Search Field Groups"
53
  msgstr "Hledat skupiny polí"
54
 
55
- #: acf.php:302
56
  msgid "No Field Groups found"
57
  msgstr "Nebyly nalezeny žádné skupiny polí"
58
 
59
- #: acf.php:303
60
  msgid "No Field Groups found in Trash"
61
  msgstr "V koši nebyly nalezeny žádné skupiny polí"
62
 
63
- #: acf.php:338
64
- #: acf.php:341
65
  msgid "Field group updated."
66
  msgstr "Skupina polí aktualizována"
67
 
68
- #: acf.php:339
69
  msgid "Custom field updated."
70
  msgstr "Vlastní pole aktualizováno."
71
 
72
- #: acf.php:340
73
  msgid "Custom field deleted."
74
  msgstr "Vlastní pole smazáno."
75
 
76
  #. translators: %s: date and time of the revision
77
- #: acf.php:343
78
  msgid "Field group restored to revision from %s"
79
  msgstr "Skupina polí obnovena z revize %s"
80
 
81
- #: acf.php:344
82
  msgid "Field group published."
83
  msgstr "Skupina polí publikována."
84
 
85
- #: acf.php:345
86
  msgid "Field group saved."
87
  msgstr "Skupina polí uložena."
88
 
89
- #: acf.php:346
90
  msgid "Field group submitted."
91
  msgstr "Skupina polí odeslána."
92
 
93
- #: acf.php:347
94
  msgid "Field group scheduled for."
95
  msgstr "Skupina polí naplánována."
96
 
97
- #: acf.php:348
98
  msgid "Field group draft updated."
99
  msgstr "Koncept skupiny polí aktualizován."
100
 
101
- #: acf.php:367
 
 
102
  msgid "Title"
103
  msgstr "Název"
104
 
105
- #: acf.php:589
106
  msgid "Error: Field Type does not exist!"
107
  msgstr "Chyba: Typ pole neexistuje!"
108
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  #: core/actions/export.php:19
110
  msgid "No ACF groups selected"
111
  msgstr "Nejsou vybrány žádné ACF skupiny"
112
 
113
- #: core/api.php:509
114
- #: core/controllers/everything_fields.php:198
115
- #: core/controllers/input.php:168
116
- #: core/controllers/options_page.php:161
117
- #: core/everything_fields.php:201
118
- #: core/options_page.php:178
119
- msgid "Validation Failed. One or more fields below are required."
120
- msgstr "Ověřování selhalo. Jedno nebo více polí níže je povinné."
121
-
122
  #: core/controllers/field_group.php:148
 
123
  msgid "Fields"
124
  msgstr "Pole"
125
 
@@ -132,274 +143,364 @@ msgid "Add Fields to Edit Screens"
132
  msgstr "Přidat pole na obrazovky úprav"
133
 
134
  #: core/controllers/field_group.php:150
135
- #: core/controllers/field_group.php:386
136
  #: core/controllers/options_page.php:62
137
  #: core/controllers/options_page.php:74
138
- #: core/options_page.php:62
139
- #: core/options_page.php:74
140
  #: core/views/meta_box_location.php:143
141
  msgid "Options"
142
- msgstr "Nastavení"
143
 
144
  #: core/controllers/field_group.php:150
145
  msgid "Customise the edit page"
146
  msgstr "Přizpůsobit stránku úprav"
147
 
148
- #: core/controllers/field_group.php:327
149
  msgid "Parent Page"
150
  msgstr "Rodičovská stránka"
151
 
152
- #: core/controllers/field_group.php:328
153
  msgid "Child Page"
154
  msgstr "Podstránka"
155
 
156
- #: core/controllers/field_group.php:336
157
  msgid "Default Template"
158
  msgstr "Výchozí šablona"
159
 
160
- #: core/controllers/field_group.php:410
161
- #: core/controllers/field_group.php:431
162
- #: core/controllers/field_group.php:438
163
- #: core/fields/page_link.php:202
164
- #: core/fields/post_object.php:215
165
- #: core/fields/post_object.php:239
166
- #: core/fields/relationship.php:251
167
- #: core/fields/relationship.php:302
168
  msgid "All"
169
  msgstr "Vše"
170
 
171
- #: core/controllers/field_groups.php:155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  msgid "Changelog"
173
  msgstr "Seznam změn"
174
 
175
- #: core/controllers/field_groups.php:156
176
  msgid "See what's new in"
177
  msgstr "Co je nového v"
178
 
179
- #: core/controllers/field_groups.php:158
180
  msgid "Resources"
181
  msgstr "Zdroje"
182
 
183
- #: core/controllers/field_groups.php:159
184
  msgid "Read documentation, learn the functions and find some tips &amp; tricks for your next web project."
185
- msgstr "Přečtěte si dokzmentaci, naučte se funkce a objevte zajímavé tipy &amp; triky pro váš další webový projekt."
186
 
187
- #: core/controllers/field_groups.php:160
188
- msgid "View the ACF website"
189
- msgstr "Prohlížet web ACF"
190
 
191
- #: core/controllers/field_groups.php:165
192
  msgid "Created by"
193
  msgstr "Vytvořil"
194
 
195
- #: core/controllers/field_groups.php:168
196
  msgid "Vote"
197
  msgstr "Hlasujte"
198
 
199
- #: core/controllers/field_groups.php:169
200
  msgid "Follow"
201
  msgstr "Následujte"
202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  #: core/controllers/options_page.php:140
204
- #: core/options_page.php:157
205
  msgid "Options Updated"
206
  msgstr "Nastavení aktualizováno"
207
 
208
- #: core/controllers/options_page.php:253
209
- #: core/options_page.php:271
210
  msgid "No Custom Field Group found for the options page"
211
- msgstr "Žádná vlastní skupina polí nebyla pro stránku nastavení nalezena"
212
 
213
- #: core/controllers/options_page.php:253
214
- #: core/options_page.php:271
215
  msgid "Create a Custom Field Group"
216
  msgstr "Vytvořit vlastní skupinu polí"
217
 
218
- #: core/controllers/options_page.php:264
219
- #: core/options_page.php:282
220
  msgid "Publish"
221
  msgstr "Publikovat"
222
 
 
 
 
 
223
  #: core/controllers/settings.php:49
224
  msgid "Settings"
225
  msgstr "Nastavení"
226
 
227
- #: core/controllers/settings.php:80
228
  msgid "Repeater field deactivated"
229
  msgstr "Opakovací pole deaktivováno"
230
 
231
- #: core/controllers/settings.php:84
232
  msgid "Options page deactivated"
233
- msgstr "Stránka nastavení deaktivována"
234
 
235
- #: core/controllers/settings.php:88
236
  msgid "Flexible Content field deactivated"
237
  msgstr "Pole flexibilního pole deaktivováno"
238
 
239
- #: core/controllers/settings.php:92
240
- msgid "Everything Fields deactivated"
241
- msgstr "Všechna pole deaktivována"
242
 
243
- #: core/controllers/settings.php:116
244
  msgid "Repeater field activated"
245
  msgstr "Opakovací pole aktivováno"
246
 
247
- #: core/controllers/settings.php:120
248
  msgid "Options page activated"
249
- msgstr "Stránka nastavení aktivována"
250
 
251
- #: core/controllers/settings.php:124
252
  msgid "Flexible Content field activated"
253
  msgstr "Pole flexibilního obsahu aktivováno"
254
 
255
- #: core/controllers/settings.php:128
256
- msgid "Everything Fields activated"
257
- msgstr "Všechna pole aktivována"
258
 
259
- #: core/controllers/settings.php:133
260
  msgid "License key unrecognised"
261
  msgstr "Licenční klíč nebyl rozpoznán"
262
 
263
- #: core/controllers/settings.php:167
264
- msgid "Advanced Custom Fields Settings"
265
- msgstr "Nastavení Pokročilých vlastních polí"
266
-
267
- #: core/controllers/settings.php:184
268
  msgid "Activate Add-ons."
269
  msgstr "Aktivovat přídavky."
270
 
271
- #: core/controllers/settings.php:188
272
- #: core/fields/flexible_content.php:326
273
- #: core/fields/flexible_content.php:402
274
- #: core/fields/repeater.php:231
275
- #: core/fields/repeater.php:307
 
 
 
 
 
 
 
 
276
  #: core/views/meta_box_fields.php:63
277
  #: core/views/meta_box_fields.php:136
278
  msgid "Field Type"
279
  msgstr "Typ pole"
280
 
281
- #: core/controllers/settings.php:189
282
  msgid "Status"
283
  msgstr "Stav"
284
 
285
- #: core/controllers/settings.php:190
286
  msgid "Activation Code"
287
  msgstr "Aktivační kód"
288
 
289
- #: core/controllers/settings.php:195
290
  msgid "Repeater Field"
291
  msgstr "Opakovací pole"
292
 
293
- #: core/controllers/settings.php:196
294
- #: core/controllers/settings.php:215
295
- #: core/controllers/settings.php:234
 
296
  msgid "Active"
297
  msgstr "Aktivní"
298
 
299
- #: core/controllers/settings.php:196
300
- #: core/controllers/settings.php:215
301
- #: core/controllers/settings.php:234
 
302
  msgid "Inactive"
303
  msgstr "Neaktivní"
304
 
305
- #: core/controllers/settings.php:214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
  msgid "Flexible Content Field"
307
  msgstr "Pole flexibilního obsahu"
308
 
309
- #: core/controllers/settings.php:233
 
 
 
 
310
  #: core/views/meta_box_location.php:74
311
  msgid "Options Page"
312
- msgstr "Stránka nastavení"
313
-
314
- #: core/controllers/settings.php:256
315
- msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
316
- msgstr "Přídavky mohou být odemčeny zakoupením licenčního klíče. Každý klíč může být použit na více webech."
317
-
318
- #: core/controllers/settings.php:256
319
- msgid "Find Add-ons"
320
- msgstr "Hledat přídavky"
321
 
322
- #: core/controllers/settings.php:274
323
  msgid "Export Field Groups to XML"
324
  msgstr "Exportovat skupiny polí do XML"
325
 
326
- #: core/controllers/settings.php:307
327
  msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
328
  msgstr "ACF vytvoří soubor .xml exportu, který je kompatibilní s originálním importním pluginem WP."
329
 
330
- #: core/controllers/settings.php:310
331
- msgid "Export XML"
332
- msgstr "Exportovat XML"
333
-
334
  #: core/controllers/settings.php:316
 
 
 
 
 
335
  msgid "Import Field Groups"
336
  msgstr "Importovat skupiny polí"
337
 
338
- #: core/controllers/settings.php:318
339
- msgid "Navigate to the"
340
- msgstr "Běžte na"
341
 
342
- #: core/controllers/settings.php:318
343
- msgid "Import Tool"
344
- msgstr "Nástroj importu"
345
 
346
- #: core/controllers/settings.php:318
347
- msgid "and select WordPress"
348
- msgstr "a vyberte WordPress"
349
 
350
- #: core/controllers/settings.php:319
 
 
 
 
351
  msgid "Install WP import plugin if prompted"
352
  msgstr "Nainstalujte importní WP plugin, pokud jste o to požádáni"
353
 
354
- #: core/controllers/settings.php:320
355
  msgid "Upload and import your exported .xml file"
356
  msgstr "Nahrajte a importujte váš exportovaný .xml soubor"
357
 
358
- #: core/controllers/settings.php:321
359
  msgid "Select your user and ignore Import Attachments"
360
  msgstr "Vyberte vašeho uživatele a ignorujte možnost Importovat přílohy"
361
 
362
- #: core/controllers/settings.php:322
363
  msgid "That's it! Happy WordPressing"
364
  msgstr "To je vše! Veselé WordPressování!"
365
 
366
- #: core/controllers/settings.php:341
 
 
 
 
367
  msgid "Export Field Groups to PHP"
368
  msgstr "Exportujte skupiny polí do PHP"
369
 
370
- #: core/controllers/settings.php:374
371
- msgid "ACF will create the PHP code to include in your theme"
372
- msgstr "ACF vytvoří PHP kód pro vložení do vaší šablony"
373
 
374
- #: core/controllers/settings.php:377
375
- msgid "Create PHP"
376
- msgstr "Vytvořit PHP"
 
 
 
 
 
 
 
 
 
 
 
377
 
378
- #: core/controllers/settings.php:383
379
- #: core/controllers/settings.php:411
380
- msgid "Register Field Groups with PHP"
381
- msgstr "Registrovat skupinu polí s PHP"
382
 
383
- #: core/controllers/settings.php:385
384
- #: core/controllers/settings.php:413
385
  msgid "Copy the PHP code generated"
386
  msgstr "Zkopírujte vygenerovaný PHP kód"
387
 
388
- #: core/controllers/settings.php:386
389
- #: core/controllers/settings.php:414
390
  msgid "Paste into your functions.php file"
391
  msgstr "Vložte jej do vašeho souboru functions.php"
392
 
393
- #: core/controllers/settings.php:387
394
- #: core/controllers/settings.php:415
395
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
396
  msgstr "K aktivací kteréhokoli přídavku upravte a použijte kód na prvních několika řádcích."
397
 
398
- #: core/controllers/settings.php:408
 
 
 
 
399
  msgid "Back to settings"
400
  msgstr "Zpět na nastavení"
401
 
402
- #: core/controllers/settings.php:436
403
  msgid ""
404
  "/**\n"
405
  " * Activate Add-ons\n"
@@ -417,7 +518,7 @@ msgstr ""
417
  " * Tento kód můžete vložit dovnitř IF konstrukce, která proběhne pouze po aktivaci šablony.\n"
418
  " */"
419
 
420
- #: core/controllers/settings.php:449
421
  msgid ""
422
  "/**\n"
423
  " * Register field groups\n"
@@ -433,10 +534,14 @@ msgstr ""
433
  " * Tento kód musí proběhnout při každém čtení souboru functions.php\n"
434
  " */"
435
 
436
- #: core/controllers/settings.php:479
437
  msgid "No field groups were selected"
438
  msgstr "Nebyly vybrány žádné skupiny polí"
439
 
 
 
 
 
440
  #: core/controllers/upgrade.php:51
441
  msgid "Upgrade"
442
  msgstr "Aktualizovat"
@@ -465,10 +570,14 @@ msgstr "a pak klikněte"
465
  msgid "Upgrade Database"
466
  msgstr "Aktualizovat databázi"
467
 
468
- #: core/controllers/upgrade.php:590
469
  msgid "Modifying field group options 'show on page'"
470
  msgstr "Úprava možnosti skupiny polí 'zobrazit na stránce'"
471
 
 
 
 
 
472
  #: core/fields/checkbox.php:21
473
  msgid "Checkbox"
474
  msgstr "Zaškrtávátko"
@@ -529,47 +638,72 @@ msgstr "Formát data"
529
 
530
  #: core/fields/date_picker/date_picker.php:83
531
  msgid "eg. dd/mm/yy. read more about"
532
- msgstr "např. dd/mm/yy. přečtě si více"
533
 
534
  #: core/fields/file.php:20
535
  msgid "File"
536
  msgstr "Soubor"
537
 
538
- #: core/fields/file.php:60
539
- msgid "Remove File"
540
- msgstr "Odstranit soubor"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
541
 
542
- #: core/fields/file.php:165
543
  msgid "No File Selected"
544
  msgstr "Nebyl vybrán žádný soubor"
545
 
546
- #: core/fields/file.php:165
547
  msgid "Add File"
548
  msgstr "Přidat soubor"
549
 
550
- #: core/fields/file.php:194
551
- #: core/fields/image.php:178
552
  msgid "Return Value"
553
  msgstr "Vrátit hodnotu"
554
 
555
- #: core/fields/file.php:238
556
- #: core/fields/image.php:258
 
 
 
 
 
 
 
 
557
  msgid "Media attachment updated."
558
- msgstr "Vložení médií aktualizováno."
559
 
560
- #: core/fields/file.php:363
561
  msgid "No files selected"
562
  msgstr "Nebyly vybrány žádné soubory."
563
 
564
- #: core/fields/file.php:458
565
  msgid "Add Selected Files"
566
  msgstr "Přidat vybrané soubory"
567
 
568
- #: core/fields/file.php:488
569
  msgid "Select File"
570
  msgstr "Vybrat soubor"
571
 
572
- #: core/fields/file.php:491
573
  msgid "Update File"
574
  msgstr "Aktualizovat soubor"
575
 
@@ -578,294 +712,323 @@ msgid "Flexible Content"
578
  msgstr "Flexibilní obsah"
579
 
580
  #: core/fields/flexible_content.php:38
581
- #: core/fields/flexible_content.php:232
582
  msgid "+ Add Row"
583
  msgstr "+ Přidat řádek"
584
 
585
- #: core/fields/flexible_content.php:259
586
- #: core/fields/repeater.php:202
587
  #: core/views/meta_box_fields.php:25
588
  msgid "New Field"
589
  msgstr "Nové pole"
590
 
591
- #: core/fields/flexible_content.php:268
592
  #: core/fields/radio.php:144
593
- #: core/fields/repeater.php:370
594
  msgid "Layout"
595
  msgstr "Typ zobrazení"
596
 
597
- #: core/fields/flexible_content.php:270
598
  msgid "Reorder Layout"
599
- msgstr "Změnit pořadí typu zobrazení"
600
 
601
- #: core/fields/flexible_content.php:270
602
  msgid "Reorder"
603
  msgstr "Změnit pořadí"
604
 
605
- #: core/fields/flexible_content.php:271
606
  msgid "Add New Layout"
607
  msgstr "Přidat nový typ zobrazení"
608
 
609
- #: core/fields/flexible_content.php:272
610
  msgid "Delete Layout"
611
  msgstr "Smazat typ zobrazení"
612
 
613
- #: core/fields/flexible_content.php:272
614
- #: core/fields/flexible_content.php:356
615
- #: core/fields/repeater.php:260
616
  #: core/views/meta_box_fields.php:90
617
  msgid "Delete"
618
  msgstr "Smazat"
619
 
620
- #: core/fields/flexible_content.php:282
621
  msgid "Label"
622
- msgstr "Nápis"
623
 
624
- #: core/fields/flexible_content.php:292
625
  msgid "Name"
626
  msgstr "Jméno"
627
 
628
- #: core/fields/flexible_content.php:302
629
  msgid "Display"
630
  msgstr "Zobrazovat"
631
 
632
- #: core/fields/flexible_content.php:309
633
  msgid "Table"
634
  msgstr "Tabulka"
635
 
636
- #: core/fields/flexible_content.php:310
637
- #: core/fields/repeater.php:381
638
  msgid "Row"
639
  msgstr "Řádek"
640
 
641
- #: core/fields/flexible_content.php:323
642
- #: core/fields/repeater.php:228
643
  #: core/views/meta_box_fields.php:60
644
  msgid "Field Order"
645
  msgstr "Pořadí pole"
646
 
647
- #: core/fields/flexible_content.php:324
648
- #: core/fields/flexible_content.php:371
649
- #: core/fields/repeater.php:229
650
- #: core/fields/repeater.php:276
651
  #: core/views/meta_box_fields.php:61
652
  #: core/views/meta_box_fields.php:105
653
  msgid "Field Label"
654
- msgstr "Nápis pole"
655
 
656
- #: core/fields/flexible_content.php:325
657
- #: core/fields/flexible_content.php:387
658
- #: core/fields/repeater.php:230
659
- #: core/fields/repeater.php:292
660
  #: core/views/meta_box_fields.php:62
661
  #: core/views/meta_box_fields.php:121
662
  msgid "Field Name"
663
  msgstr "Jméno pole"
664
 
665
- #: core/fields/flexible_content.php:334
666
- #: core/fields/repeater.php:239
667
  msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
668
  msgstr "Žádná pole. Klikněte na tlačítko \"+ Přidat podpole\" pro vytvoření prvního pole."
669
 
670
- #: core/fields/flexible_content.php:350
671
- #: core/fields/flexible_content.php:353
672
- #: core/fields/repeater.php:254
673
- #: core/fields/repeater.php:257
674
  #: core/views/meta_box_fields.php:84
675
  #: core/views/meta_box_fields.php:87
676
  msgid "Edit this Field"
677
  msgstr "Upravit toto pole"
678
 
679
- #: core/fields/flexible_content.php:353
680
- #: core/fields/repeater.php:257
681
- #: core/views/meta_box_fields.php:87
682
- msgid "Edit"
683
- msgstr "Upravit"
684
-
685
- #: core/fields/flexible_content.php:354
686
- #: core/fields/repeater.php:258
687
  #: core/views/meta_box_fields.php:88
688
  msgid "Read documentation for this field"
689
  msgstr "Přečtěte si dokumentaci pro toto pole"
690
 
691
- #: core/fields/flexible_content.php:354
692
- #: core/fields/repeater.php:258
693
  #: core/views/meta_box_fields.php:88
694
  msgid "Docs"
695
  msgstr "Dokumenty"
696
 
697
- #: core/fields/flexible_content.php:355
698
- #: core/fields/repeater.php:259
699
  #: core/views/meta_box_fields.php:89
700
  msgid "Duplicate this Field"
701
  msgstr "Duplikovat toto pole"
702
 
703
- #: core/fields/flexible_content.php:355
704
- #: core/fields/repeater.php:259
705
  #: core/views/meta_box_fields.php:89
706
  msgid "Duplicate"
707
  msgstr "Duplikovat"
708
 
709
- #: core/fields/flexible_content.php:356
710
- #: core/fields/repeater.php:260
711
  #: core/views/meta_box_fields.php:90
712
  msgid "Delete this Field"
713
  msgstr "Smazat toto pole"
714
 
715
- #: core/fields/flexible_content.php:372
716
- #: core/fields/repeater.php:277
717
  #: core/views/meta_box_fields.php:106
718
  msgid "This is the name which will appear on the EDIT page"
719
- msgstr "Toto je jmeno, které se zobrazí na stránce úprav"
720
 
721
- #: core/fields/flexible_content.php:388
722
- #: core/fields/repeater.php:293
723
  #: core/views/meta_box_fields.php:122
724
  msgid "Single word, no spaces. Underscores and dashes allowed"
725
  msgstr "Jedno slovo, bez mezer. Podtržítka a pomlčky jsou povoleny."
726
 
727
- #: core/fields/flexible_content.php:422
728
- #: core/fields/repeater.php:327
729
  msgid "Save Field"
730
  msgstr "Uložit pole"
731
 
732
- #: core/fields/flexible_content.php:427
733
- #: core/fields/repeater.php:332
734
  #: core/views/meta_box_fields.php:188
735
  msgid "Close Field"
736
  msgstr "Zavřít pole"
737
 
738
- #: core/fields/flexible_content.php:427
739
- #: core/fields/repeater.php:332
740
  msgid "Close Sub Field"
741
  msgstr "Zavřít podpole"
742
 
743
- #: core/fields/flexible_content.php:441
744
- #: core/fields/repeater.php:347
745
  #: core/views/meta_box_fields.php:201
746
  msgid "Drag and drop to reorder"
747
  msgstr "Chytněte a táhněte pro změnu pořadí"
748
 
749
- #: core/fields/flexible_content.php:442
750
- #: core/fields/repeater.php:348
751
  msgid "+ Add Sub Field"
752
  msgstr "+ Přidat podpole"
753
 
754
- #: core/fields/flexible_content.php:449
755
- #: core/fields/repeater.php:389
756
  msgid "Button Label"
757
  msgstr "Nápis tlačítka"
758
 
759
- #: core/fields/image.php:21
760
- msgid "Image"
761
- msgstr "Obrázek"
762
 
763
- #: core/fields/image.php:154
764
- msgid "No image selected"
765
- msgstr "Není vybrán žádný obrázek"
 
766
 
767
- #: core/fields/image.php:154
768
- msgid "Add Image"
769
- msgstr "Přidat obrázek"
 
770
 
771
- #: core/fields/image.php:188
772
- msgid "Image URL"
773
- msgstr "Adresa obrázku"
 
774
 
775
- #: core/fields/image.php:189
776
- msgid "Attachment ID"
777
- msgstr "ID přílohy"
778
-
779
- #: core/fields/image.php:197
780
  msgid "Preview Size"
781
  msgstr "Velikost náhledu"
782
 
783
- #: core/fields/image.php:203
784
- msgid "Thumbnail"
785
- msgstr "Miniatura"
786
 
787
- #: core/fields/image.php:204
788
- msgid "Medium"
789
- msgstr "Střední"
790
 
791
- #: core/fields/image.php:205
792
- msgid "Large"
793
- msgstr "Velký"
 
 
794
 
795
- #: core/fields/image.php:206
796
- #: core/fields/wysiwyg.php:85
797
- msgid "Full"
798
- msgstr "Plný"
799
 
800
- #: core/fields/image.php:402
 
 
 
 
 
801
  msgid "No images selected"
802
  msgstr "Není vybrán žádný obrázek"
803
 
804
- #: core/fields/image.php:498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
805
  msgid "Add selected Images"
806
  msgstr "Přidat vybrané obrázky"
807
 
808
- #: core/fields/image.php:527
809
  msgid "Select Image"
810
  msgstr "Vybrat obrázek"
811
 
812
- #: core/fields/image.php:530
813
- msgid "Update Image"
814
- msgstr "Aktualizovat obrázek"
815
-
816
  #: core/fields/page_link.php:21
817
  msgid "Page Link"
818
  msgstr "Odkaz stránky"
819
 
820
- #: core/fields/page_link.php:71
821
- #: core/fields/post_object.php:64
822
- #: core/fields/select.php:21
823
- msgid "Select"
824
- msgstr "Vybrat"
825
-
826
- #: core/fields/page_link.php:196
827
- #: core/fields/post_object.php:211
828
- #: core/fields/relationship.php:247
829
  #: core/views/meta_box_location.php:48
830
  msgid "Post Type"
831
  msgstr "Typ příspěvku"
832
 
833
- #: core/fields/page_link.php:197
834
- msgid ""
835
- "Filter posts by selecting a post type<br />\n"
836
- "\t\t\t\tTip: deselect all post types to show all post type's posts"
837
- msgstr ""
838
- "Filtrovat příspěvky výběrem typu příspěvku<br />\n"
839
- "\t\t\t\tTip: zrušte výběr všech typů příspěvku pro zobrazení příspěvků všech typů příspěvků"
840
-
841
- #: core/fields/page_link.php:225
842
- #: core/fields/post_object.php:283
843
  #: core/fields/select.php:194
844
  msgid "Allow Null?"
845
  msgstr "Povolit prázdné?"
846
 
847
- #: core/fields/page_link.php:234
848
- #: core/fields/page_link.php:253
849
- #: core/fields/post_object.php:292
850
- #: core/fields/post_object.php:311
851
  #: core/fields/select.php:203
852
  #: core/fields/select.php:222
853
  #: core/fields/wysiwyg.php:104
 
854
  msgid "Yes"
855
  msgstr "Ano"
856
 
857
- #: core/fields/page_link.php:235
858
- #: core/fields/page_link.php:254
859
- #: core/fields/post_object.php:293
860
- #: core/fields/post_object.php:312
861
  #: core/fields/select.php:204
862
  #: core/fields/select.php:223
863
  #: core/fields/wysiwyg.php:105
 
864
  msgid "No"
865
  msgstr "Ne"
866
 
867
- #: core/fields/page_link.php:244
868
- #: core/fields/post_object.php:302
869
  #: core/fields/select.php:213
870
  msgid "Select multiple values?"
871
  msgstr "Vybrat více hodnot?"
@@ -874,8 +1037,8 @@ msgstr "Vybrat více hodnot?"
874
  msgid "Post Object"
875
  msgstr "Objekt příspěvku"
876
 
877
- #: core/fields/post_object.php:233
878
- #: core/fields/relationship.php:296
879
  msgid "Filter from Taxonomy"
880
  msgstr "Filtrovat z taxonomie"
881
 
@@ -902,39 +1065,43 @@ msgstr "Horizontální"
902
  msgid "Relationship"
903
  msgstr "Vztah"
904
 
905
- #: core/fields/relationship.php:135
906
  msgid "Search"
907
  msgstr "Hledat"
908
 
909
- #: core/fields/relationship.php:319
910
  msgid "Maximum posts"
911
  msgstr "Maximum příspěvků"
912
 
913
- #: core/fields/relationship.php:320
914
- msgid "Set to -1 for infinite"
915
- msgstr "Nastavte na -1 pro nekonečno"
916
-
917
  #: core/fields/repeater.php:21
918
  msgid "Repeater"
919
  msgstr "Opakovač"
920
 
921
- #: core/fields/repeater.php:64
922
- #: core/fields/repeater.php:197
923
  msgid "Add Row"
924
  msgstr "Přidat řádek"
925
 
926
- #: core/fields/repeater.php:220
927
  msgid "Repeater Fields"
928
  msgstr "Opakovací pole"
929
 
930
- #: core/fields/repeater.php:356
931
- msgid "Row Limit"
932
- msgstr "Limit řádků"
933
 
934
- #: core/fields/repeater.php:380
 
 
 
 
935
  msgid "Table (default)"
936
  msgstr "Tabulka (výchozí)"
937
 
 
 
 
 
938
  #: core/fields/text.php:21
939
  msgid "Text"
940
  msgstr "Text"
@@ -999,6 +1166,10 @@ msgstr "Základní"
999
  msgid "Show Media Upload Buttons?"
1000
  msgstr "Zobrazit tlačítka nahrávání médií?"
1001
 
 
 
 
 
1002
  #: core/views/meta_box_fields.php:47
1003
  msgid "Move to trash. Are you sure?"
1004
  msgstr "Přesunout do koše. Jste si jistí?"
@@ -1117,11 +1288,11 @@ msgstr "z uvedeného"
1117
 
1118
  #: core/views/meta_box_location.php:144
1119
  msgid "Unlock options add-on with an activation code"
1120
- msgstr "Odemkněte přídavek nastavení s aktivačním kódem"
1121
 
1122
  #: core/views/meta_box_options.php:23
1123
  msgid "Order No."
1124
- msgstr "Číslo pořadí"
1125
 
1126
  #: core/views/meta_box_options.php:24
1127
  msgid "Field groups are created in order <br />from lowest to highest."
@@ -1131,26 +1302,10 @@ msgstr "Skupiny polí jsou vytvořeny v pořadí <br /> od nejnižšího k nejvy
1131
  msgid "Position"
1132
  msgstr "Pozice"
1133
 
1134
- #: core/views/meta_box_options.php:50
1135
- msgid "Normal"
1136
- msgstr "Normální"
1137
-
1138
- #: core/views/meta_box_options.php:51
1139
- msgid "Side"
1140
- msgstr "Na straně"
1141
-
1142
  #: core/views/meta_box_options.php:60
1143
  msgid "Style"
1144
  msgstr "Styl"
1145
 
1146
- #: core/views/meta_box_options.php:70
1147
- msgid "Standard Metabox"
1148
- msgstr "Standardní metabox"
1149
-
1150
- #: core/views/meta_box_options.php:71
1151
- msgid "No Metabox"
1152
- msgstr "Žádný metabox"
1153
-
1154
  #: core/views/meta_box_options.php:80
1155
  msgid "Hide on screen"
1156
  msgstr "Skrýt na obrazovce"
@@ -1161,7 +1316,7 @@ msgstr "<b>Vybrat</b> položky pro <b>skrytí</b> z obrazovky úprav"
1161
 
1162
  #: core/views/meta_box_options.php:82
1163
  msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
1164
- msgstr "Pokud se na obrzovce úprav objeví několik skupin polí, bude použito nastavení první skupiny. (s nejžším pořadovým číslem)"
1165
 
1166
  #: core/views/meta_box_options.php:92
1167
  msgid "Content Editor"
@@ -1195,3 +1350,31 @@ msgstr "Formát"
1195
  msgid "Featured Image"
1196
  msgstr "Uživatelský obrázek"
1197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
+ "POT-Creation-Date: 2012-08-11 08:33:20+00:00\n"
8
+ "PO-Revision-Date: 2012-09-18 17:39+0100\n"
9
+ "Last-Translator: Jakub Machala <jakubmachala@webees.cz>\n"
10
+ "Language-Team: webees.cz s.r.o. <jakubmachala@webees.cz>\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
 
 
 
14
 
15
+ #: acf.php:281
16
  #: core/views/meta_box_options.php:94
17
  msgid "Custom Fields"
18
  msgstr "Vlastní pole"
19
 
20
+ #: acf.php:302
21
  msgid "Field&nbsp;Groups"
22
  msgstr "Skupiny&nbsp;polí"
23
 
24
+ #: acf.php:303
25
+ #: core/controllers/field_groups.php:283
26
  #: core/controllers/upgrade.php:70
27
  msgid "Advanced Custom Fields"
28
  msgstr "Pokročilá vlastní pole"
29
 
30
+ #: acf.php:304
31
+ #: core/fields/flexible_content.php:325
32
  msgid "Add New"
33
  msgstr "Přidat nové"
34
 
35
+ #: acf.php:305
36
  msgid "Add New Field Group"
37
  msgstr "Přidat novou skupinu polí"
38
 
39
+ #: acf.php:306
40
  msgid "Edit Field Group"
41
  msgstr "Upravit skupinu polí"
42
 
43
+ #: acf.php:307
44
  msgid "New Field Group"
45
  msgstr "Nová skupina polí"
46
 
47
+ #: acf.php:308
48
  msgid "View Field Group"
49
  msgstr "Prohlížet skupinu polí"
50
 
51
+ #: acf.php:309
52
  msgid "Search Field Groups"
53
  msgstr "Hledat skupiny polí"
54
 
55
+ #: acf.php:310
56
  msgid "No Field Groups found"
57
  msgstr "Nebyly nalezeny žádné skupiny polí"
58
 
59
+ #: acf.php:311
60
  msgid "No Field Groups found in Trash"
61
  msgstr "V koši nebyly nalezeny žádné skupiny polí"
62
 
63
+ #: acf.php:346
64
+ #: acf.php:349
65
  msgid "Field group updated."
66
  msgstr "Skupina polí aktualizována"
67
 
68
+ #: acf.php:347
69
  msgid "Custom field updated."
70
  msgstr "Vlastní pole aktualizováno."
71
 
72
+ #: acf.php:348
73
  msgid "Custom field deleted."
74
  msgstr "Vlastní pole smazáno."
75
 
76
  #. translators: %s: date and time of the revision
77
+ #: acf.php:351
78
  msgid "Field group restored to revision from %s"
79
  msgstr "Skupina polí obnovena z revize %s"
80
 
81
+ #: acf.php:352
82
  msgid "Field group published."
83
  msgstr "Skupina polí publikována."
84
 
85
+ #: acf.php:353
86
  msgid "Field group saved."
87
  msgstr "Skupina polí uložena."
88
 
89
+ #: acf.php:354
90
  msgid "Field group submitted."
91
  msgstr "Skupina polí odeslána."
92
 
93
+ #: acf.php:355
94
  msgid "Field group scheduled for."
95
  msgstr "Skupina polí naplánována."
96
 
97
+ #: acf.php:356
98
  msgid "Field group draft updated."
99
  msgstr "Koncept skupiny polí aktualizován."
100
 
101
+ #: acf.php:375
102
+ #: core/fields/gallery.php:66
103
+ #: core/fields/gallery.php:229
104
  msgid "Title"
105
  msgstr "Název"
106
 
107
+ #: acf.php:597
108
  msgid "Error: Field Type does not exist!"
109
  msgstr "Chyba: Typ pole neexistuje!"
110
 
111
+ #: acf.php:1599
112
+ msgid "Thumbnail"
113
+ msgstr "Miniatura"
114
+
115
+ #: acf.php:1600
116
+ msgid "Medium"
117
+ msgstr "Střední"
118
+
119
+ #: acf.php:1601
120
+ msgid "Large"
121
+ msgstr "Velký"
122
+
123
+ #: acf.php:1602
124
+ #: core/fields/wysiwyg.php:85
125
+ msgid "Full"
126
+ msgstr "Plný"
127
+
128
  #: core/actions/export.php:19
129
  msgid "No ACF groups selected"
130
  msgstr "Nejsou vybrány žádné ACF skupiny"
131
 
 
 
 
 
 
 
 
 
 
132
  #: core/controllers/field_group.php:148
133
+ #: core/controllers/field_groups.php:190
134
  msgid "Fields"
135
  msgstr "Pole"
136
 
143
  msgstr "Přidat pole na obrazovky úprav"
144
 
145
  #: core/controllers/field_group.php:150
146
+ #: core/controllers/field_group.php:400
147
  #: core/controllers/options_page.php:62
148
  #: core/controllers/options_page.php:74
 
 
149
  #: core/views/meta_box_location.php:143
150
  msgid "Options"
151
+ msgstr "Konfigurace"
152
 
153
  #: core/controllers/field_group.php:150
154
  msgid "Customise the edit page"
155
  msgstr "Přizpůsobit stránku úprav"
156
 
157
+ #: core/controllers/field_group.php:328
158
  msgid "Parent Page"
159
  msgstr "Rodičovská stránka"
160
 
161
+ #: core/controllers/field_group.php:329
162
  msgid "Child Page"
163
  msgstr "Podstránka"
164
 
165
+ #: core/controllers/field_group.php:337
166
  msgid "Default Template"
167
  msgstr "Výchozí šablona"
168
 
169
+ #: core/controllers/field_group.php:424
170
+ #: core/controllers/field_group.php:445
171
+ #: core/controllers/field_group.php:452
172
+ #: core/fields/page_link.php:76
173
+ #: core/fields/post_object.php:222
174
+ #: core/fields/post_object.php:250
175
+ #: core/fields/relationship.php:320
176
+ #: core/fields/relationship.php:349
177
  msgid "All"
178
  msgstr "Vše"
179
 
180
+ #: core/controllers/field_groups.php:243
181
+ #: core/views/meta_box_options.php:50
182
+ msgid "Normal"
183
+ msgstr "Normální"
184
+
185
+ #: core/controllers/field_groups.php:244
186
+ #: core/views/meta_box_options.php:51
187
+ msgid "Side"
188
+ msgstr "Na straně"
189
+
190
+ #: core/controllers/field_groups.php:254
191
+ #: core/views/meta_box_options.php:70
192
+ msgid "Standard Metabox"
193
+ msgstr "Standardní metabox"
194
+
195
+ #: core/controllers/field_groups.php:255
196
+ #: core/views/meta_box_options.php:71
197
+ msgid "No Metabox"
198
+ msgstr "Žádný metabox"
199
+
200
+ #: core/controllers/field_groups.php:285
201
  msgid "Changelog"
202
  msgstr "Seznam změn"
203
 
204
+ #: core/controllers/field_groups.php:286
205
  msgid "See what's new in"
206
  msgstr "Co je nového v"
207
 
208
+ #: core/controllers/field_groups.php:288
209
  msgid "Resources"
210
  msgstr "Zdroje"
211
 
212
+ #: core/controllers/field_groups.php:289
213
  msgid "Read documentation, learn the functions and find some tips &amp; tricks for your next web project."
214
+ msgstr "Přečtěte si dokumentaci, naučte se funkce a objevte zajímavé tipy &amp; triky pro váš další webový projekt."
215
 
216
+ #: core/controllers/field_groups.php:290
217
+ msgid "Visit the ACF website"
218
+ msgstr "Navštívit web ACF"
219
 
220
+ #: core/controllers/field_groups.php:295
221
  msgid "Created by"
222
  msgstr "Vytvořil"
223
 
224
+ #: core/controllers/field_groups.php:298
225
  msgid "Vote"
226
  msgstr "Hlasujte"
227
 
228
+ #: core/controllers/field_groups.php:299
229
  msgid "Follow"
230
  msgstr "Následujte"
231
 
232
+ #: core/controllers/input.php:449
233
+ msgid "Validation Failed. One or more fields below are required."
234
+ msgstr "Ověřování selhalo. Jedno nebo více polí níže je povinné."
235
+
236
+ #: core/controllers/input.php:450
237
+ msgid "Add File to Field"
238
+ msgstr "+ Přidat soubor do pole"
239
+
240
+ #: core/controllers/input.php:451
241
+ msgid "Edit File"
242
+ msgstr "Upravit soubor"
243
+
244
+ #: core/controllers/input.php:452
245
+ msgid "Add Image to Field"
246
+ msgstr "Přidat obrázek do pole"
247
+
248
+ #: core/controllers/input.php:453
249
+ #: core/controllers/input.php:456
250
+ msgid "Edit Image"
251
+ msgstr "Upravit obrázek"
252
+
253
+ #: core/controllers/input.php:454
254
+ msgid "Maximum values reached ( {max} values )"
255
+ msgstr "Dosaženo maximálního množství hodnot ( {max} hodnot )"
256
+
257
+ #: core/controllers/input.php:455
258
+ msgid "Add Image to Gallery"
259
+ msgstr "Přidat obrázek do galerie"
260
+
261
+ #: core/controllers/input.php:546
262
+ msgid "Attachment updated"
263
+ msgstr "Příloha aktualizována."
264
+
265
  #: core/controllers/options_page.php:140
 
266
  msgid "Options Updated"
267
  msgstr "Nastavení aktualizováno"
268
 
269
+ #: core/controllers/options_page.php:249
 
270
  msgid "No Custom Field Group found for the options page"
271
+ msgstr "Žádná vlastní skupina polí nebyla pro stránku konfigurace nalezena"
272
 
273
+ #: core/controllers/options_page.php:249
 
274
  msgid "Create a Custom Field Group"
275
  msgstr "Vytvořit vlastní skupinu polí"
276
 
277
+ #: core/controllers/options_page.php:260
 
278
  msgid "Publish"
279
  msgstr "Publikovat"
280
 
281
+ #: core/controllers/options_page.php:263
282
+ msgid "Save Options"
283
+ msgstr "Uložit nastavení"
284
+
285
  #: core/controllers/settings.php:49
286
  msgid "Settings"
287
  msgstr "Nastavení"
288
 
289
+ #: core/controllers/settings.php:111
290
  msgid "Repeater field deactivated"
291
  msgstr "Opakovací pole deaktivováno"
292
 
293
+ #: core/controllers/settings.php:115
294
  msgid "Options page deactivated"
295
+ msgstr "Stránka konfigurace deaktivována"
296
 
297
+ #: core/controllers/settings.php:119
298
  msgid "Flexible Content field deactivated"
299
  msgstr "Pole flexibilního pole deaktivováno"
300
 
301
+ #: core/controllers/settings.php:123
302
+ msgid "Gallery field deactivated"
303
+ msgstr "Pole galerie deaktivováno"
304
 
305
+ #: core/controllers/settings.php:147
306
  msgid "Repeater field activated"
307
  msgstr "Opakovací pole aktivováno"
308
 
309
+ #: core/controllers/settings.php:151
310
  msgid "Options page activated"
311
+ msgstr "Stránka konfigurace aktivována"
312
 
313
+ #: core/controllers/settings.php:155
314
  msgid "Flexible Content field activated"
315
  msgstr "Pole flexibilního obsahu aktivováno"
316
 
317
+ #: core/controllers/settings.php:159
318
+ msgid "Gallery field activated"
319
+ msgstr "Pole galerie aktivováno"
320
 
321
+ #: core/controllers/settings.php:164
322
  msgid "License key unrecognised"
323
  msgstr "Licenční klíč nebyl rozpoznán"
324
 
325
+ #: core/controllers/settings.php:216
 
 
 
 
326
  msgid "Activate Add-ons."
327
  msgstr "Aktivovat přídavky."
328
 
329
+ #: core/controllers/settings.php:217
330
+ msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
331
+ msgstr "Přídavky mohou být odemčeny zakoupením licenčního klíče. Každý klíč může být použit na více webech."
332
+
333
+ #: core/controllers/settings.php:218
334
+ msgid "Find Add-ons"
335
+ msgstr "Hledat přídavky"
336
+
337
+ #: core/controllers/settings.php:225
338
+ #: core/fields/flexible_content.php:380
339
+ #: core/fields/flexible_content.php:456
340
+ #: core/fields/repeater.php:288
341
+ #: core/fields/repeater.php:364
342
  #: core/views/meta_box_fields.php:63
343
  #: core/views/meta_box_fields.php:136
344
  msgid "Field Type"
345
  msgstr "Typ pole"
346
 
347
+ #: core/controllers/settings.php:226
348
  msgid "Status"
349
  msgstr "Stav"
350
 
351
+ #: core/controllers/settings.php:227
352
  msgid "Activation Code"
353
  msgstr "Aktivační kód"
354
 
355
+ #: core/controllers/settings.php:232
356
  msgid "Repeater Field"
357
  msgstr "Opakovací pole"
358
 
359
+ #: core/controllers/settings.php:233
360
+ #: core/controllers/settings.php:252
361
+ #: core/controllers/settings.php:271
362
+ #: core/controllers/settings.php:290
363
  msgid "Active"
364
  msgstr "Aktivní"
365
 
366
+ #: core/controllers/settings.php:233
367
+ #: core/controllers/settings.php:252
368
+ #: core/controllers/settings.php:271
369
+ #: core/controllers/settings.php:290
370
  msgid "Inactive"
371
  msgstr "Neaktivní"
372
 
373
+ #: core/controllers/settings.php:239
374
+ #: core/controllers/settings.php:258
375
+ #: core/controllers/settings.php:277
376
+ #: core/controllers/settings.php:296
377
+ msgid "Deactivate"
378
+ msgstr "Deaktivovat"
379
+
380
+ #: core/controllers/settings.php:245
381
+ #: core/controllers/settings.php:264
382
+ #: core/controllers/settings.php:283
383
+ #: core/controllers/settings.php:302
384
+ msgid "Activate"
385
+ msgstr "Aktivovat"
386
+
387
+ #: core/controllers/settings.php:251
388
  msgid "Flexible Content Field"
389
  msgstr "Pole flexibilního obsahu"
390
 
391
+ #: core/controllers/settings.php:270
392
+ msgid "Gallery Field"
393
+ msgstr "Pole galerie"
394
+
395
+ #: core/controllers/settings.php:289
396
  #: core/views/meta_box_location.php:74
397
  msgid "Options Page"
398
+ msgstr "Stránka konfigurace"
 
 
 
 
 
 
 
 
399
 
400
+ #: core/controllers/settings.php:314
401
  msgid "Export Field Groups to XML"
402
  msgstr "Exportovat skupiny polí do XML"
403
 
404
+ #: core/controllers/settings.php:315
405
  msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
406
  msgstr "ACF vytvoří soubor .xml exportu, který je kompatibilní s originálním importním pluginem WP."
407
 
 
 
 
 
408
  #: core/controllers/settings.php:316
409
+ #: core/controllers/settings.php:354
410
+ msgid "Instructions"
411
+ msgstr "Instrukce"
412
+
413
+ #: core/controllers/settings.php:318
414
  msgid "Import Field Groups"
415
  msgstr "Importovat skupiny polí"
416
 
417
+ #: core/controllers/settings.php:319
418
+ msgid "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites."
419
+ msgstr "Importované skupiny polí <b>budou</b> zobrazeny v seznamu upravitelných skupin polí. Toto je užitečné pro přesouvání skupin polí mezi WP weby."
420
 
421
+ #: core/controllers/settings.php:321
422
+ msgid "Select field group(s) from the list and click \"Export XML\""
423
+ msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Export XML\""
424
 
425
+ #: core/controllers/settings.php:322
426
+ msgid "Save the .xml file when prompted"
427
+ msgstr "Uložte .xml soubor při požádání"
428
 
429
+ #: core/controllers/settings.php:323
430
+ msgid "Navigate to Tools &raquo; Import and select WordPress"
431
+ msgstr "Otevřete Nástroje &raquo; Import a vyberte WordPress"
432
+
433
+ #: core/controllers/settings.php:324
434
  msgid "Install WP import plugin if prompted"
435
  msgstr "Nainstalujte importní WP plugin, pokud jste o to požádáni"
436
 
437
+ #: core/controllers/settings.php:325
438
  msgid "Upload and import your exported .xml file"
439
  msgstr "Nahrajte a importujte váš exportovaný .xml soubor"
440
 
441
+ #: core/controllers/settings.php:326
442
  msgid "Select your user and ignore Import Attachments"
443
  msgstr "Vyberte vašeho uživatele a ignorujte možnost Importovat přílohy"
444
 
445
+ #: core/controllers/settings.php:327
446
  msgid "That's it! Happy WordPressing"
447
  msgstr "To je vše! Veselé WordPressování!"
448
 
449
+ #: core/controllers/settings.php:345
450
+ msgid "Export XML"
451
+ msgstr "Exportovat XML"
452
+
453
+ #: core/controllers/settings.php:352
454
  msgid "Export Field Groups to PHP"
455
  msgstr "Exportujte skupiny polí do PHP"
456
 
457
+ #: core/controllers/settings.php:353
458
+ msgid "ACF will create the PHP code to include in your theme."
459
+ msgstr "ACF vytvoří PHP kód pro vložení do vaší šablony."
460
 
461
+ #: core/controllers/settings.php:356
462
+ #: core/controllers/settings.php:473
463
+ msgid "Register Field Groups"
464
+ msgstr "Registrovat skupiny polí"
465
+
466
+ #: core/controllers/settings.php:357
467
+ #: core/controllers/settings.php:474
468
+ msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
469
+ msgstr "Registrované skupiny polí <b>nebudou</b> zobrazeny v seznamu upravitelných skupin polí. Toto je užitečné při používání polí v šablonách."
470
+
471
+ #: core/controllers/settings.php:358
472
+ #: core/controllers/settings.php:475
473
+ msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the origional field group to the trash or remove the code from your functions.php file."
474
+ msgstr "Mějte prosím na paměti, že pokud exportujete a registrujete skupiny polí v rámci stejného WordPressu, uvidíte na obrazovkách úprav duplikovaná pole. Pro nápravu prosím přesuňte původní skupinu polí do koše nebo odstraňte kód ze souboru functions.php."
475
 
476
+ #: core/controllers/settings.php:360
477
+ msgid "Select field group(s) from the list and click \"Create PHP\""
478
+ msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Vytvořit PHP\""
 
479
 
480
+ #: core/controllers/settings.php:361
481
+ #: core/controllers/settings.php:477
482
  msgid "Copy the PHP code generated"
483
  msgstr "Zkopírujte vygenerovaný PHP kód"
484
 
485
+ #: core/controllers/settings.php:362
486
+ #: core/controllers/settings.php:478
487
  msgid "Paste into your functions.php file"
488
  msgstr "Vložte jej do vašeho souboru functions.php"
489
 
490
+ #: core/controllers/settings.php:363
491
+ #: core/controllers/settings.php:479
492
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
493
  msgstr "K aktivací kteréhokoli přídavku upravte a použijte kód na prvních několika řádcích."
494
 
495
+ #: core/controllers/settings.php:382
496
+ msgid "Create PHP"
497
+ msgstr "Vytvořit PHP"
498
+
499
+ #: core/controllers/settings.php:468
500
  msgid "Back to settings"
501
  msgstr "Zpět na nastavení"
502
 
503
+ #: core/controllers/settings.php:503
504
  msgid ""
505
  "/**\n"
506
  " * Activate Add-ons\n"
518
  " * Tento kód můžete vložit dovnitř IF konstrukce, která proběhne pouze po aktivaci šablony.\n"
519
  " */"
520
 
521
+ #: core/controllers/settings.php:518
522
  msgid ""
523
  "/**\n"
524
  " * Register field groups\n"
534
  " * Tento kód musí proběhnout při každém čtení souboru functions.php\n"
535
  " */"
536
 
537
+ #: core/controllers/settings.php:557
538
  msgid "No field groups were selected"
539
  msgstr "Nebyly vybrány žádné skupiny polí"
540
 
541
+ #: core/controllers/settings.php:589
542
+ msgid "Advanced Custom Fields Settings"
543
+ msgstr "Nastavení Pokročilých vlastních polí"
544
+
545
  #: core/controllers/upgrade.php:51
546
  msgid "Upgrade"
547
  msgstr "Aktualizovat"
570
  msgid "Upgrade Database"
571
  msgstr "Aktualizovat databázi"
572
 
573
+ #: core/controllers/upgrade.php:598
574
  msgid "Modifying field group options 'show on page'"
575
  msgstr "Úprava možnosti skupiny polí 'zobrazit na stránce'"
576
 
577
+ #: core/controllers/upgrade.php:651
578
+ msgid "Modifying field option 'taxonomy'"
579
+ msgstr "Úprava možností pole 'taxonomie'"
580
+
581
  #: core/fields/checkbox.php:21
582
  msgid "Checkbox"
583
  msgstr "Zaškrtávátko"
638
 
639
  #: core/fields/date_picker/date_picker.php:83
640
  msgid "eg. dd/mm/yy. read more about"
641
+ msgstr "např. dd/mm/yy. přečtěte si více"
642
 
643
  #: core/fields/file.php:20
644
  msgid "File"
645
  msgstr "Soubor"
646
 
647
+ #: core/fields/file.php:48
648
+ msgid "File Updated."
649
+ msgstr "Soubor aktualizován."
650
+
651
+ #: core/fields/file.php:89
652
+ #: core/fields/flexible_content.php:407
653
+ #: core/fields/gallery.php:251
654
+ #: core/fields/gallery.php:281
655
+ #: core/fields/image.php:187
656
+ #: core/fields/repeater.php:314
657
+ #: core/views/meta_box_fields.php:87
658
+ msgid "Edit"
659
+ msgstr "Upravit"
660
+
661
+ #: core/fields/file.php:90
662
+ #: core/fields/gallery.php:250
663
+ #: core/fields/gallery.php:280
664
+ #: core/fields/image.php:186
665
+ msgid "Remove"
666
+ msgstr "Odstranit"
667
 
668
+ #: core/fields/file.php:195
669
  msgid "No File Selected"
670
  msgstr "Nebyl vybrán žádný soubor"
671
 
672
+ #: core/fields/file.php:195
673
  msgid "Add File"
674
  msgstr "Přidat soubor"
675
 
676
+ #: core/fields/file.php:224
677
+ #: core/fields/image.php:223
678
  msgid "Return Value"
679
  msgstr "Vrátit hodnotu"
680
 
681
+ #: core/fields/file.php:234
682
+ msgid "File URL"
683
+ msgstr "Adresa souboru"
684
+
685
+ #: core/fields/file.php:235
686
+ msgid "Attachment ID"
687
+ msgstr "ID přílohy"
688
+
689
+ #: core/fields/file.php:268
690
+ #: core/fields/image.php:291
691
  msgid "Media attachment updated."
692
+ msgstr "Příloha aktualizována."
693
 
694
+ #: core/fields/file.php:393
695
  msgid "No files selected"
696
  msgstr "Nebyly vybrány žádné soubory."
697
 
698
+ #: core/fields/file.php:488
699
  msgid "Add Selected Files"
700
  msgstr "Přidat vybrané soubory"
701
 
702
+ #: core/fields/file.php:518
703
  msgid "Select File"
704
  msgstr "Vybrat soubor"
705
 
706
+ #: core/fields/file.php:521
707
  msgid "Update File"
708
  msgstr "Aktualizovat soubor"
709
 
712
  msgstr "Flexibilní obsah"
713
 
714
  #: core/fields/flexible_content.php:38
715
+ #: core/fields/flexible_content.php:286
716
  msgid "+ Add Row"
717
  msgstr "+ Přidat řádek"
718
 
719
+ #: core/fields/flexible_content.php:313
720
+ #: core/fields/repeater.php:261
721
  #: core/views/meta_box_fields.php:25
722
  msgid "New Field"
723
  msgstr "Nové pole"
724
 
725
+ #: core/fields/flexible_content.php:322
726
  #: core/fields/radio.php:144
727
+ #: core/fields/repeater.php:440
728
  msgid "Layout"
729
  msgstr "Typ zobrazení"
730
 
731
+ #: core/fields/flexible_content.php:324
732
  msgid "Reorder Layout"
733
+ msgstr "Změnit pořadí typů zobrazení"
734
 
735
+ #: core/fields/flexible_content.php:324
736
  msgid "Reorder"
737
  msgstr "Změnit pořadí"
738
 
739
+ #: core/fields/flexible_content.php:325
740
  msgid "Add New Layout"
741
  msgstr "Přidat nový typ zobrazení"
742
 
743
+ #: core/fields/flexible_content.php:326
744
  msgid "Delete Layout"
745
  msgstr "Smazat typ zobrazení"
746
 
747
+ #: core/fields/flexible_content.php:326
748
+ #: core/fields/flexible_content.php:410
749
+ #: core/fields/repeater.php:317
750
  #: core/views/meta_box_fields.php:90
751
  msgid "Delete"
752
  msgstr "Smazat"
753
 
754
+ #: core/fields/flexible_content.php:336
755
  msgid "Label"
756
+ msgstr "Název"
757
 
758
+ #: core/fields/flexible_content.php:346
759
  msgid "Name"
760
  msgstr "Jméno"
761
 
762
+ #: core/fields/flexible_content.php:356
763
  msgid "Display"
764
  msgstr "Zobrazovat"
765
 
766
+ #: core/fields/flexible_content.php:363
767
  msgid "Table"
768
  msgstr "Tabulka"
769
 
770
+ #: core/fields/flexible_content.php:364
771
+ #: core/fields/repeater.php:451
772
  msgid "Row"
773
  msgstr "Řádek"
774
 
775
+ #: core/fields/flexible_content.php:377
776
+ #: core/fields/repeater.php:285
777
  #: core/views/meta_box_fields.php:60
778
  msgid "Field Order"
779
  msgstr "Pořadí pole"
780
 
781
+ #: core/fields/flexible_content.php:378
782
+ #: core/fields/flexible_content.php:425
783
+ #: core/fields/repeater.php:286
784
+ #: core/fields/repeater.php:333
785
  #: core/views/meta_box_fields.php:61
786
  #: core/views/meta_box_fields.php:105
787
  msgid "Field Label"
788
+ msgstr "Název pole"
789
 
790
+ #: core/fields/flexible_content.php:379
791
+ #: core/fields/flexible_content.php:441
792
+ #: core/fields/repeater.php:287
793
+ #: core/fields/repeater.php:349
794
  #: core/views/meta_box_fields.php:62
795
  #: core/views/meta_box_fields.php:121
796
  msgid "Field Name"
797
  msgstr "Jméno pole"
798
 
799
+ #: core/fields/flexible_content.php:388
800
+ #: core/fields/repeater.php:296
801
  msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
802
  msgstr "Žádná pole. Klikněte na tlačítko \"+ Přidat podpole\" pro vytvoření prvního pole."
803
 
804
+ #: core/fields/flexible_content.php:404
805
+ #: core/fields/flexible_content.php:407
806
+ #: core/fields/repeater.php:311
807
+ #: core/fields/repeater.php:314
808
  #: core/views/meta_box_fields.php:84
809
  #: core/views/meta_box_fields.php:87
810
  msgid "Edit this Field"
811
  msgstr "Upravit toto pole"
812
 
813
+ #: core/fields/flexible_content.php:408
814
+ #: core/fields/repeater.php:315
 
 
 
 
 
 
815
  #: core/views/meta_box_fields.php:88
816
  msgid "Read documentation for this field"
817
  msgstr "Přečtěte si dokumentaci pro toto pole"
818
 
819
+ #: core/fields/flexible_content.php:408
820
+ #: core/fields/repeater.php:315
821
  #: core/views/meta_box_fields.php:88
822
  msgid "Docs"
823
  msgstr "Dokumenty"
824
 
825
+ #: core/fields/flexible_content.php:409
826
+ #: core/fields/repeater.php:316
827
  #: core/views/meta_box_fields.php:89
828
  msgid "Duplicate this Field"
829
  msgstr "Duplikovat toto pole"
830
 
831
+ #: core/fields/flexible_content.php:409
832
+ #: core/fields/repeater.php:316
833
  #: core/views/meta_box_fields.php:89
834
  msgid "Duplicate"
835
  msgstr "Duplikovat"
836
 
837
+ #: core/fields/flexible_content.php:410
838
+ #: core/fields/repeater.php:317
839
  #: core/views/meta_box_fields.php:90
840
  msgid "Delete this Field"
841
  msgstr "Smazat toto pole"
842
 
843
+ #: core/fields/flexible_content.php:426
844
+ #: core/fields/repeater.php:334
845
  #: core/views/meta_box_fields.php:106
846
  msgid "This is the name which will appear on the EDIT page"
847
+ msgstr "Toto je jméno, které se zobrazí na stránce úprav"
848
 
849
+ #: core/fields/flexible_content.php:442
850
+ #: core/fields/repeater.php:350
851
  #: core/views/meta_box_fields.php:122
852
  msgid "Single word, no spaces. Underscores and dashes allowed"
853
  msgstr "Jedno slovo, bez mezer. Podtržítka a pomlčky jsou povoleny."
854
 
855
+ #: core/fields/flexible_content.php:476
856
+ #: core/fields/repeater.php:384
857
  msgid "Save Field"
858
  msgstr "Uložit pole"
859
 
860
+ #: core/fields/flexible_content.php:481
861
+ #: core/fields/repeater.php:389
862
  #: core/views/meta_box_fields.php:188
863
  msgid "Close Field"
864
  msgstr "Zavřít pole"
865
 
866
+ #: core/fields/flexible_content.php:481
867
+ #: core/fields/repeater.php:389
868
  msgid "Close Sub Field"
869
  msgstr "Zavřít podpole"
870
 
871
+ #: core/fields/flexible_content.php:495
872
+ #: core/fields/repeater.php:404
873
  #: core/views/meta_box_fields.php:201
874
  msgid "Drag and drop to reorder"
875
  msgstr "Chytněte a táhněte pro změnu pořadí"
876
 
877
+ #: core/fields/flexible_content.php:496
878
+ #: core/fields/repeater.php:405
879
  msgid "+ Add Sub Field"
880
  msgstr "+ Přidat podpole"
881
 
882
+ #: core/fields/flexible_content.php:503
883
+ #: core/fields/repeater.php:459
884
  msgid "Button Label"
885
  msgstr "Nápis tlačítka"
886
 
887
+ #: core/fields/gallery.php:25
888
+ msgid "Gallery"
889
+ msgstr "Galerie"
890
 
891
+ #: core/fields/gallery.php:70
892
+ #: core/fields/gallery.php:233
893
+ msgid "Alternate Text"
894
+ msgstr "Alternativní text"
895
 
896
+ #: core/fields/gallery.php:74
897
+ #: core/fields/gallery.php:237
898
+ msgid "Caption"
899
+ msgstr "Popisek"
900
 
901
+ #: core/fields/gallery.php:78
902
+ #: core/fields/gallery.php:241
903
+ msgid "Description"
904
+ msgstr "Popis"
905
 
906
+ #: core/fields/gallery.php:117
907
+ #: core/fields/image.php:243
 
 
 
908
  msgid "Preview Size"
909
  msgstr "Velikost náhledu"
910
 
911
+ #: core/fields/gallery.php:118
912
+ msgid "Thumbnail is advised"
913
+ msgstr "Je doporučen náhled"
914
 
915
+ #: core/fields/gallery.php:179
916
+ msgid "Image Updated"
917
+ msgstr "Obrázek aktualizován"
918
 
919
+ #: core/fields/gallery.php:262
920
+ #: core/fields/gallery.php:642
921
+ #: core/fields/image.php:193
922
+ msgid "Add Image"
923
+ msgstr "Přidat obrázek"
924
 
925
+ #: core/fields/gallery.php:263
926
+ msgid "Grid"
927
+ msgstr "Mřížka"
 
928
 
929
+ #: core/fields/gallery.php:264
930
+ msgid "List"
931
+ msgstr "Seznam"
932
+
933
+ #: core/fields/gallery.php:266
934
+ #: core/fields/image.php:428
935
  msgid "No images selected"
936
  msgstr "Není vybrán žádný obrázek"
937
 
938
+ #: core/fields/gallery.php:266
939
+ msgid "1 image selected"
940
+ msgstr "1 vybraný obrázek"
941
+
942
+ #: core/fields/gallery.php:266
943
+ msgid "{count} images selected"
944
+ msgstr "{count} vybraných obrázků"
945
+
946
+ #: core/fields/gallery.php:585
947
+ msgid "Image already exists in gallery"
948
+ msgstr "Obrázek v galerii už existuje"
949
+
950
+ #: core/fields/gallery.php:591
951
+ msgid "Image Added"
952
+ msgstr "Obrázek přidán"
953
+
954
+ #: core/fields/gallery.php:645
955
+ #: core/fields/image.php:556
956
+ msgid "Update Image"
957
+ msgstr "Aktualizovat obrázek"
958
+
959
+ #: core/fields/image.php:21
960
+ msgid "Image"
961
+ msgstr "Obrázek"
962
+
963
+ #: core/fields/image.php:49
964
+ msgid "Image Updated."
965
+ msgstr "Obrázek aktualizován."
966
+
967
+ #: core/fields/image.php:193
968
+ msgid "No image selected"
969
+ msgstr "Není vybrán žádný obrázek"
970
+
971
+ #: core/fields/image.php:233
972
+ msgid "Image Object"
973
+ msgstr "Objekt obrázku"
974
+
975
+ #: core/fields/image.php:234
976
+ msgid "Image URL"
977
+ msgstr "Adresa obrázku"
978
+
979
+ #: core/fields/image.php:235
980
+ msgid "Image ID"
981
+ msgstr "ID obrázku"
982
+
983
+ #: core/fields/image.php:524
984
  msgid "Add selected Images"
985
  msgstr "Přidat vybrané obrázky"
986
 
987
+ #: core/fields/image.php:553
988
  msgid "Select Image"
989
  msgstr "Vybrat obrázek"
990
 
 
 
 
 
991
  #: core/fields/page_link.php:21
992
  msgid "Page Link"
993
  msgstr "Odkaz stránky"
994
 
995
+ #: core/fields/page_link.php:70
996
+ #: core/fields/post_object.php:216
997
+ #: core/fields/relationship.php:314
 
 
 
 
 
 
998
  #: core/views/meta_box_location.php:48
999
  msgid "Post Type"
1000
  msgstr "Typ příspěvku"
1001
 
1002
+ #: core/fields/page_link.php:98
1003
+ #: core/fields/post_object.php:267
 
 
 
 
 
 
 
 
1004
  #: core/fields/select.php:194
1005
  msgid "Allow Null?"
1006
  msgstr "Povolit prázdné?"
1007
 
1008
+ #: core/fields/page_link.php:107
1009
+ #: core/fields/page_link.php:126
1010
+ #: core/fields/post_object.php:276
1011
+ #: core/fields/post_object.php:295
1012
  #: core/fields/select.php:203
1013
  #: core/fields/select.php:222
1014
  #: core/fields/wysiwyg.php:104
1015
+ #: core/views/meta_box_fields.php:170
1016
  msgid "Yes"
1017
  msgstr "Ano"
1018
 
1019
+ #: core/fields/page_link.php:108
1020
+ #: core/fields/page_link.php:127
1021
+ #: core/fields/post_object.php:277
1022
+ #: core/fields/post_object.php:296
1023
  #: core/fields/select.php:204
1024
  #: core/fields/select.php:223
1025
  #: core/fields/wysiwyg.php:105
1026
+ #: core/views/meta_box_fields.php:171
1027
  msgid "No"
1028
  msgstr "Ne"
1029
 
1030
+ #: core/fields/page_link.php:117
1031
+ #: core/fields/post_object.php:286
1032
  #: core/fields/select.php:213
1033
  msgid "Select multiple values?"
1034
  msgstr "Vybrat více hodnot?"
1037
  msgid "Post Object"
1038
  msgstr "Objekt příspěvku"
1039
 
1040
+ #: core/fields/post_object.php:244
1041
+ #: core/fields/relationship.php:343
1042
  msgid "Filter from Taxonomy"
1043
  msgstr "Filtrovat z taxonomie"
1044
 
1065
  msgid "Relationship"
1066
  msgstr "Vztah"
1067
 
1068
+ #: core/fields/relationship.php:236
1069
  msgid "Search"
1070
  msgstr "Hledat"
1071
 
1072
+ #: core/fields/relationship.php:366
1073
  msgid "Maximum posts"
1074
  msgstr "Maximum příspěvků"
1075
 
 
 
 
 
1076
  #: core/fields/repeater.php:21
1077
  msgid "Repeater"
1078
  msgstr "Opakovač"
1079
 
1080
+ #: core/fields/repeater.php:66
1081
+ #: core/fields/repeater.php:248
1082
  msgid "Add Row"
1083
  msgstr "Přidat řádek"
1084
 
1085
+ #: core/fields/repeater.php:277
1086
  msgid "Repeater Fields"
1087
  msgstr "Opakovací pole"
1088
 
1089
+ #: core/fields/repeater.php:412
1090
+ msgid "Minimum Rows"
1091
+ msgstr "Minimum řádků"
1092
 
1093
+ #: core/fields/repeater.php:426
1094
+ msgid "Maximum Rows"
1095
+ msgstr "Maximum řádků"
1096
+
1097
+ #: core/fields/repeater.php:450
1098
  msgid "Table (default)"
1099
  msgstr "Tabulka (výchozí)"
1100
 
1101
+ #: core/fields/select.php:21
1102
+ msgid "Select"
1103
+ msgstr "Vybrat"
1104
+
1105
  #: core/fields/text.php:21
1106
  msgid "Text"
1107
  msgstr "Text"
1166
  msgid "Show Media Upload Buttons?"
1167
  msgstr "Zobrazit tlačítka nahrávání médií?"
1168
 
1169
+ #: core/views/meta_box_fields.php:26
1170
+ msgid "new_field"
1171
+ msgstr "nove_pole"
1172
+
1173
  #: core/views/meta_box_fields.php:47
1174
  msgid "Move to trash. Are you sure?"
1175
  msgstr "Přesunout do koše. Jste si jistí?"
1288
 
1289
  #: core/views/meta_box_location.php:144
1290
  msgid "Unlock options add-on with an activation code"
1291
+ msgstr "Odemkněte přídavek konfigurace s aktivačním kódem"
1292
 
1293
  #: core/views/meta_box_options.php:23
1294
  msgid "Order No."
1295
+ msgstr "Pořadí"
1296
 
1297
  #: core/views/meta_box_options.php:24
1298
  msgid "Field groups are created in order <br />from lowest to highest."
1302
  msgid "Position"
1303
  msgstr "Pozice"
1304
 
 
 
 
 
 
 
 
 
1305
  #: core/views/meta_box_options.php:60
1306
  msgid "Style"
1307
  msgstr "Styl"
1308
 
 
 
 
 
 
 
 
 
1309
  #: core/views/meta_box_options.php:80
1310
  msgid "Hide on screen"
1311
  msgstr "Skrýt na obrazovce"
1316
 
1317
  #: core/views/meta_box_options.php:82
1318
  msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
1319
+ msgstr "Pokud se na obrazovce úprav objeví několik skupin polí, bude použito nastavení první skupiny. (s nejžším pořadovým číslem)"
1320
 
1321
  #: core/views/meta_box_options.php:92
1322
  msgid "Content Editor"
1350
  msgid "Featured Image"
1351
  msgstr "Uživatelský obrázek"
1352
 
1353
+ #~ msgid "Everything Fields deactivated"
1354
+ #~ msgstr "Všechna pole deaktivována"
1355
+
1356
+ #~ msgid "Everything Fields activated"
1357
+ #~ msgstr "Všechna pole aktivována"
1358
+
1359
+ #~ msgid "Navigate to the"
1360
+ #~ msgstr "Běžte na"
1361
+
1362
+ #~ msgid "Import Tool"
1363
+ #~ msgstr "Nástroj importu"
1364
+
1365
+ #~ msgid "and select WordPress"
1366
+ #~ msgstr "a vyberte WordPress"
1367
+
1368
+ #~ msgid ""
1369
+ #~ "Filter posts by selecting a post type<br />\n"
1370
+ #~ "\t\t\t\tTip: deselect all post types to show all post type's posts"
1371
+ #~ msgstr ""
1372
+ #~ "Filtrovat příspěvky výběrem typu příspěvku<br />\n"
1373
+ #~ "\t\t\t\tTip: zrušte výběr všech typů příspěvku pro zobrazení příspěvků "
1374
+ #~ "všech typů příspěvků"
1375
+
1376
+ #~ msgid "Set to -1 for infinite"
1377
+ #~ msgstr "Nastavte na -1 pro nekonečno"
1378
+
1379
+ #~ msgid "Row Limit"
1380
+ #~ msgstr "Limit řádků"
lang/acf-de_DE.mo ADDED
Binary file
lang/acf-de_DE.po CHANGED
@@ -1,15253 +1,1372 @@
1
- # Translation of WordPress 3.3 in German
2
- # This file is distributed under the same license as the WordPress 3.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2012-04-20 16:30:50+0000\n"
 
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: WordPress 3.3\n"
12
 
13
- #: wp-admin/user-edit.php:230
14
- msgid "Show Toolbar when viewing site"
15
- msgstr "Werkzeuge für mich auf der Website anzeigen"
16
-
17
- #: wp-admin/credits.php:147
18
- msgid "Contributing Developers"
19
- msgstr "Mitwirkende Entwickler"
20
-
21
- #: wp-admin/nav-menus.php:453
22
- msgid "Custom menus may contain links to pages, categories, custom links or other content types (use the Screen Options tab to decide which ones to show on the screen). You can specify a different navigation label for a menu item as well as other attributes. You can create multiple menus. If your theme includes more than one menu, you can choose which custom menu to associate with each. You can also use custom menus in conjunction with the Custom Menus widget."
23
- msgstr ""
24
- "Hier kannst du individuelle Menüs für deine Website erstellen. Du kannst verschiedene Elemente wie Seiten, Kategorien, Links oder Artikel einfügen. Wirf auch einen Blick in <em>Optionen einblenden</em>, um eventuell versteckte Elementtypen einzublenden. (Beachte, dass der Link <em>Optionen einblenden</em> nur sichtbar ist, wenn du die Hilfe wieder geschlossen hast.) \n"
25
- "Du kannst einzelnen Elementen beziehungsweise Menüpunkten auch individuelle Titel zuweisen, mit der sie im Menü angezeigt werden. Du kannst erstellte Menüs auch über das Widget \"Individuelles Menü\" in deine Website einbinden."
26
-
27
- #: wp-admin/export.php:128
28
- msgid "Once you&#8217;ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site."
29
- msgstr "Nach dem Speichern der Datei kannst du die Importfunktion eines anderen WordPress-Blogs benutzen, um die Inhalte dieses Blogs zu importieren."
30
-
31
- #: wp-admin/users.php:32
32
- msgid "Screen Display"
33
- msgstr "Bildschirmanzeige"
34
 
35
- #: wp-admin/options-writing.php:21
36
- msgid "You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links."
37
- msgstr "Es gibt verschiedene Wege, neue Inhalte zu veröffentlichen. In dieser Einstellungsseite sind alle entsprechenden Optionen aufgeführt. Der erste Teil dieser Seite behandelt den Beitragseditor und das drumherum und der zweite Teil andere Methoden, wie zum Beispiel das Schreiben neuer Texte mit externen Programmen. Weitere Informationen findest du in den weiterführenden Links."
38
 
39
- #: wp-admin/update-core.php:386 wp-admin/includes/update-core.php:627
40
- msgid "Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click <a href=\"%s\">here</a>."
41
- msgstr "Willkommen bei WordPress %1$s. Du wirst nun zur Seite \"Über WordPress\" weitergeleitet. Falls nicht, klicke <a href=\"%s\">hier</a>."
 
42
 
43
- #: wp-admin/freedoms.php:22 wp-admin/about.php:22 wp-admin/credits.php:53
44
- msgid "Thank you for updating to the latest version! Using WordPress %s will improve your looks, personality, and web publishing experience. Okay, just the last one, but still. :)"
45
- msgstr "Danke für das Aktualisieren auf die neueste Version! WordPress %s wird dir ein neues Web-Publishing-Erlebnis bieten."
46
 
47
- #: wp-admin/nav-menus.php:454
48
- msgid "If your theme does not support the custom menus feature yet (the default themes, Twenty Eleven and Twenty Ten, do), you can learn about adding this support by following the Documentation link to the side."
49
- msgstr "Falls dein aktuell verwendetes Themes keine individuellen Menüs unterstützt (die Standardthemes Twenty Eleven und Twenty Ten unterstützen es), kannst du diese Funktion auch nachrüsten oder das entsprechende Widget verwenden. Klicke für weitere Informationen einfach auf den Link zur Dokumentation."
50
 
51
- #: wp-admin/options-permalink.php:29
52
- msgid "Many people choose to use &#8220;pretty permalinks,&#8221; URLs that contain useful information such as the post title rather than generic post ID numbers. You can choose from any of the permalink formats under Common Settings, or can craft your own if you select Custom Structure."
53
- msgstr "Viele Leute benutzen \"sprechende Permalinks\". Dies sind Internetadressen (URLs) welche bereits einige Informationen zum Inhalt geben, welcher über diese Adresse erreichbar ist. Du kannst aus Vorlagen wählen oder eine eigene Permalink-Struktur festlegen."
54
 
55
- #: wp-admin/options-permalink.php:28 wp-admin/options-permalink.php:193
56
- msgid "Common Settings"
57
- msgstr "Gebräuchliche Einstellungen"
58
 
59
- #: wp-admin/options-permalink.php:22
60
- msgid "This screen allows you to choose your default permalink structure. You can choose from common settings or create custom URL structures."
61
- msgstr "Auf dieser Seite kannst du deine gewünschte Permalinkstruktur einstellen. Du kannst entweder aus üblichen Vorlagen wählen oder eine eigene Struktur definieren."
62
 
63
- #: wp-admin/options-permalink.php:21
64
- msgid "Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change &#8212; hence the name permalink."
65
- msgstr "Permalinks sind dauerhafte Adressen für einzelne Artikel, Seiten, Kategorien usw. . Sie sollten eindeutig sein und sich niemals ändern. Sonst wären es keine Permalinks."
66
 
67
- #: wp-admin/options-permalink.php:37
68
- msgid "Custom Structures"
69
- msgstr "Individuelle Strukturen"
70
 
71
- #: wp-admin/plugins.php:330
72
- msgid "Troubleshooting"
73
- msgstr "Problembehandlung"
74
 
75
- #: wp-admin/edit-tags.php:229
76
- msgid "Adding Categories"
77
- msgstr "Kategorien hinzufügen"
78
 
79
- #: wp-admin/media-upload.php:67
80
- msgid "You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:"
81
- msgstr ""
82
- "Hier kannst du Dateien hochladen, ohne dabei einen Artikel erstellen zu müssen. Du kannst dann auch nachträglich Dateien mit Artikeln verknüpfen, so als ob du sie direkt in einem Artikel hochgeladen hättest. \n"
83
- "Zum Hochladen stehen dir drei Möglichkeiten zur Verfügung:"
84
-
85
- #: wp-admin/nav-menus.php:452
86
- msgid "This feature allows you to use a custom menu in place of your theme&#8217;s default menus."
87
- msgstr "Diese Funktion erlaubt Dir das Standardmenü deines Themes durch ein angepasstes zu ersetzen. "
88
-
89
- #: wp-admin/about.php:121
90
- msgid "Changing themes often requires widget re-configuration based on the number and position of sidebars. Now if you change back to a previous theme, the widgets will automatically go back to how you had them arranged in that theme. <em>Note: if you&#8217;ve added new widgets since the switch, you&#8217;ll need to rescue them from the Inactive Widgets area.</em>"
91
- msgstr "Wenn du häufig Themes wechselst, musstest du bisher immer die Widgets nach jedem Wechsel neu anordnen. Dies bleibt dir nun erspart, wenn du innerhalb einer Woche wieder zu einem vorher benutzten Theme zurück wechselst. <em>Hinweis: Falls du in der Zwischenzeit ein neues Widget installiert hast, musst du es aus dem Bereich \"Inaktive Widgets\" in deine Sidebar ziehen.</em>"
92
-
93
- #: wp-admin/upload.php:163
94
- msgid "Attaching Files"
95
- msgstr "Dateien anhängen"
96
-
97
- #: wp-admin/users.php:46
98
- msgid "Remove allows you to remove a user from your site. It does not delete their posts. You can also remove multiple users at once by using Bulk Actions."
99
- msgstr "\"Entfernen\"erlaubt dir, einen Benutzer zu entfernen. Seine Inhalte (Artikel usw.) werden jedoch nicht gelöscht. Du kannst auch mehrere Benutzer auf einmal entfernen."
100
-
101
- #: wp-admin/about.php:152
102
- msgid "WordPress has a nice new API for working with admin screens. Create rich screens, add help documentation, adapt to screen contexts, and more."
103
- msgstr "WordPress hat eine neue API (Programmierschnittstelle) für die Seiten im Administrationsbereich. Es können nun u.a. einfacher das Aussehen verändert und Hilfetexte hinzugefügt werden."
104
-
105
- #: wp-admin/about.php:165
106
- msgid "Return to Updates"
107
- msgstr "Zurück zu Aktualisierungen"
108
-
109
- #: wp-admin/about.php:179
110
- msgid "Maintenance Release"
111
- msgid_plural "Maintenance Releases"
112
- msgstr[0] "Wartungs-Update"
113
- msgstr[1] "Wartungs-Updates"
114
-
115
- #: wp-admin/includes/dashboard.php:1351
116
- msgid "Use the current theme &mdash; %1$s &mdash; or <a href=\"%2$s\">choose a new one</a>."
117
- msgstr "Benutze das aktuelle Theme &mdash; %1$s &mdash; oder <a href=\"%2$s\">wähle ein neues</a>."
118
-
119
- #: wp-admin/widgets.php:58
120
- msgid "When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive area, where all your widgets and their settings will have been saved."
121
- msgstr "Wenn du Themes wechselst, gibt es häufig Unterschiede in der Anzahl und Benennung der Widgetbereiche. Dies kann den Übergang etwas schwierig machen. Wenn du nach einem Themewechsel ein Widget vermisst, dann schaue im Bereich \"inaktive Widgets\", wo alle Widgets und ihre Einstellungen gespeichert sind."
122
-
123
- #: wp-admin/edit-tags.php:229
124
- msgid "Adding Tags"
125
- msgstr "Schlagwörter hinzufügen"
126
-
127
- #: wp-admin/users.php:48
128
- msgid "Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their posts. You can also delete multiple users at once by using Bulk Actions."
129
- msgstr "\"Löschen\" führt dich auf eine Seite, auf welcher du das Löschen bestätigen kannst. Damit wird dann der Benutzer und alle seine Inhalte gelöscht. Du kannst über die Massenbearbeitung auch mehrere Benutzer auf einmal löschen."
130
-
131
- #: wp-admin/options-writing.php:33
132
- msgid "Due to security issues, you cannot use Post By Email on Multisite Installs."
133
- msgstr "Aus Sicherheitsgründen kann das Veröffentlichen von Artikeln via E-Mail im Blognetzwerk nicht benutzt werden."
134
-
135
- #: wp-admin/options-writing.php:35
136
- msgid "Post via email settings allow you to send your WordPress install an email with the content of your post. You must set up a secret e-mail account with POP3 access to use this, and any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret."
137
- msgstr "Um Artikel in WordPress via E-Mail zu veröffentlichen, musst du ein geheimes E-Mail-Konto mit POP3-Zugang einrichten. Jede E-Mail, die an diese Adresse geschickt wird, wird auf deiner Seite veröffentlicht. Halte deshalb diese Adresse strengstens geheim."
138
-
139
- #: wp-admin/options-writing.php:40
140
- msgid "Post Via Email"
141
- msgstr "Via E-Mail Schreiben"
142
-
143
- #: wp-admin/options-writing.php:47
144
- msgid "Remote Publishing allows you to use an external editor (like the iOS or Android app) to write your posts."
145
- msgstr "\"Fernveröffentlichen\" ermöglicht es dir, mit externen Editoren oder Smartphone-Apps Artikel zu veröffentlichen."
146
-
147
- #: wp-admin/options-writing.php:53
148
- msgid "If desired, WordPress will automatically alert various services of your new posts."
149
- msgstr "Wenn gewünscht, kann WordPress diverse Dienste automatisch beim Veröffentlichen neuer Artikel benachrichtigen."
150
-
151
- #: wp-admin/update-core.php:387 wp-admin/includes/update-core.php:628
152
- msgid "Welcome to WordPress %1$s. <a href=\"%2$s\">Learn more</a>."
153
- msgstr "Willkommen zu WordPress %1$s. <a href=\"%2$s\">Mehr erfahren</a>."
154
-
155
- #: wp-admin/update-core.php:438
156
- msgid "This screen lets you update to the latest version of WordPress as well as update your themes and plugins from the WordPress.org repository. When updates are available, the number of available updates will appear in a bubble on the left hand menu as a notification."
157
- msgstr "Auf dieser Seite kannst du sowohl deine WordPress Installation, als auch deine verwendeten Themes und Plugins aus dem WordPress.org Plugin- oder Themeverzeichnis aktualisieren lassen. Wenn neue Aktualisierungen (Updates) verfügbar sind, erscheint im Menü auf der linken Seite eine entsprechende Benachrichtigung die anzeigt, wieviele neue Updates verfügbar sind."
158
-
159
- #: wp-admin/update-core.php:439
160
- msgid "It is very important to keep your WordPress installation up to date for security reasons, so when you see a number appear, make sure you take the time to update, which is an easy process."
161
- msgstr "Es ist aus Sicherheitsgründen sehr wichtig, WordPress, Themes und Plugins aktuell zu halten, also solltest du mit einem Update nicht unbedingt zögern."
162
-
163
- #: wp-admin/update-core.php:444
164
- msgid "How to Update"
165
- msgstr "Wie aktualisiere ich WordPress?"
166
-
167
- #: wp-admin/freedoms.php:28 wp-admin/about.php:28 wp-admin/credits.php:59
168
- msgid "What&#8217;s New"
169
- msgstr "Was gibt's Neues"
170
-
171
- #: wp-admin/about.php:180
172
- msgid "Security Release"
173
- msgid_plural "Security Releases"
174
- msgstr[0] "Sicherheitsupdate"
175
- msgstr[1] "Sicherheitsupdates"
176
-
177
- #: wp-admin/about.php:181
178
- msgid "Maintenance and Security Release"
179
- msgid_plural "Maintenance and Security Releases"
180
- msgstr[0] "Wartungs- und Sicherheitsupdate"
181
- msgstr[1] "Wartungs- und Sicherheitsupdates"
182
-
183
- #: wp-admin/about.php:184
184
- msgid "<strong>Version %1$s</strong> addressed a security issue."
185
- msgid_plural "<strong>Version %1$s</strong> addressed some security issues."
186
- msgstr[0] "<strong>Version %1$s</strong> hat eine Sicherheitslücke behoben."
187
- msgstr[1] "<strong>Version %1$s</strong> hat ein paar Sicherheitslücken behoben."
188
-
189
- #: wp-admin/about.php:188
190
- msgid "<strong>Version %1$s</strong> addressed %2$s bug."
191
- msgid_plural "<strong>Version %1$s</strong> addressed %2$s bugs."
192
- msgstr[0] "<strong>Version %1$s</strong> hat %2$s Fehler behoben."
193
- msgstr[1] "<strong>Version %1$s</strong> hat %2$s Fehler behoben."
194
-
195
- #: wp-admin/about.php:192
196
- msgid "<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug."
197
- msgid_plural "<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs."
198
- msgstr[0] "<strong>Version %1$s</strong> behob eine Sicherheitslücke sowie %2$s Fehler."
199
- msgstr[1] "<strong>Version %1$s</strong> behob eine Sicherheitslücke sowie %2$s Fehler."
200
-
201
- #: wp-admin/about.php:196
202
- msgid "<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug."
203
- msgid_plural "<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs."
204
- msgstr[0] "<strong>Version %1$s</strong> behob Sicherheitslücken sowie %2$s Fehler."
205
- msgstr[1] "<strong>Version %1$s</strong> behob Sicherheitslücken sowie %2$s Fehler."
206
-
207
- #: wp-admin/about.php:199
208
- msgid "For more information, see <a href=\"%s\">the release notes</a>."
209
- msgstr "Weitere Informationen findest du in den <a href=\"%s\">Veröffentlichtungsmitteilungen</a>."
210
-
211
- #: wp-admin/edit.php:186
212
- msgid "You can also edit or move multiple posts to the trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply."
213
- msgstr "Es können auch mehrere Artikel auf einmal bearbeiten werden. Markiere dazu die gewünschten Artikel, wähle im Auswahlmenü \"Aktion wählen\" die gewünschte Aktion und klicke anschließend auf den Button \"Übernehmen\"."
214
-
215
- #: wp-admin/edit.php:162
216
- msgid "You can customize the display of this screen&#8217;s contents in a number of ways:"
217
- msgstr "Du kannst das Aussehen dieser Seite auf verschiedene Weise ändern:"
218
-
219
- #: wp-admin/edit.php:160
220
- msgid "Screen Content"
221
- msgstr "Bildschirminhalt"
222
-
223
- #: wp-admin/options-media.php:27
224
- msgid "Uploading Files allows you to choose the folder and path for storing your uploaded files."
225
- msgstr "Dateien Hochladen erlaubt den Ordner und Pfad für die Speicherung deine hochgeladenen Dateien zu bestimmen."
226
-
227
- #: wp-admin/tools.php:23
228
- msgid "The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, return to this screen and the link will take you to a screen where you can choose to convert tags into categories or vice versa."
229
- msgstr "Wenn du auf den Link des Kategorie- und Schlagwort-Konverters klickst, wirst du auf eine Seite geleitet, auf welcher du den Konverter als Plugin installieren kannst. Sobald der Konverter als Plugin installiert wurde, kannst du ihn benutzen, indem du auf dieser Seite erneut auf den Link des Konverters klickst. Anschließend kannst du Kategorien in Schlagwörter umwandeln (oder umgekehrt)."
230
-
231
- #: wp-includes/admin-bar.php:510
232
- msgctxt "admin bar menu group label"
233
- msgid "New"
234
- msgstr "Neu"
235
-
236
- #: wp-admin/plugin-install.php:46
237
- msgid "Adding Plugins"
238
- msgstr "Plugins hinzufügen"
239
-
240
- #: wp-admin/user-new.php:169
241
- msgid "Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content."
242
- msgstr "Abonennten können nur Kommentare lesen und abgeben, aber keine eigenen Inhalte erstellen."
243
-
244
- #: wp-admin/user-new.php:167
245
- msgid "Authors can publish and manage their own posts, and are able to upload files."
246
- msgstr "Autoren können ihre eigenen Artikel veröffentlichen und verwalten sowie Dateien hochladen."
247
-
248
- #: wp-admin/user-new.php:163
249
- msgid "Here is a basic overview of the different user roles and the permissions associated with each one:"
250
- msgstr "Hier ist ein grober Überblick über die verschiedenen Benutzerrollen und die jeweils damit verknüpften Berechtigungen:"
251
-
252
- #: wp-admin/user-new.php:162
253
- msgid "User Roles"
254
- msgstr "Benutzerrollen"
255
-
256
- #: wp-admin/user-new.php:152
257
- msgid "Remember to click the Add New User button at the bottom of this screen when you are finished."
258
- msgstr "Vergiss nicht, unten auf dieser Seite auf Neuen Benutzer hinzufügen zu klicken, wenn Du fertig bist. "
259
-
260
- #: wp-admin/user-new.php:142
261
- msgid "To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom."
262
- msgstr "Um einen neuen Benutzer zu deinem Blog hinzuzufügen, fülle das Formular auf dieser Seite aus, und klicke unten auf Neuen Benutzer hinzufügen."
263
-
264
- #: wp-admin/index.php:31
265
- msgid "Welcome to your WordPress Dashboard! This is the screen you will see when you log in to your site, and gives you access to all the site management features of WordPress. You can get help for any screen by clicking the Help tab in the upper corner."
266
- msgstr "Willkommen in deinem WordPress Dashboard! Diese Seite wird immer angezeigt, wenn Du dich in deinem Blog einloggst, und gibt Dir den Zugang zu allen Einstellungsmöglichkeiten von WordPress. Hilfe bekommst Du auf jeder Seite, in dem Du auf die Registerkarte \"Hilfe\" in der oberen rechten Ecke klickst."
267
-
268
- #: wp-admin/options-general.php:66
269
- msgid "If you want site visitors to be able to register themselves, as opposed to by the site administrator, check the membership box. A default user role can be set for all new users, whether self-registered or registered by the site admin."
270
- msgstr "Wenn du willst, dass sich Benutzer selber registrieren dürfen, dann aktiviere dazu die entsprechende Checkbox. Du kannst auch festlegen, welche Benutzerrolle neu registrierte Benutzer automatisch zugewiesen bekommen."
271
-
272
- #: wp-admin/themes.php:51
273
- msgid "Installing themes on Multisite can only be done from the Network Admin section."
274
- msgstr "In einem Blog-Netzwerk können neue Themes nur im Netzwerk-Administrator-Bereich installiert werden."
275
-
276
- #: wp-admin/themes.php:58
277
- msgid "Adding Themes"
278
- msgstr "Themes hinzufügen"
279
-
280
- #: wp-admin/options-discussion.php:21
281
- msgid "This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they won&#8217;t all fit here! :) Use the documentation links to get information on what each discussion setting does."
282
- msgstr "Auf dieser Einstellungsseite hast du umfangreiche Möglichkeiten, das Kommentieren auf deiner Website zu regeln. Beachte, dass das Aktivieren von bestimmten Optionen die Wirkung einer anderen Option aufheben oder einschränken kann."
283
-
284
- #: wp-admin/plugin-install.php:42
285
- msgid "Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official <a href=\"%s\" target=\"_blank\">WordPress.org Plugin Directory</a> are compatible with the license WordPress uses. You can find new plugins to install by searching or browsing the Directory right here in your own Plugins section."
286
- msgstr "Plugins binden sich in WordPress ein, um neue Funktionen einzubringen. Plugins werden unabhängig von vielen verschiedenen Entwicklern auf der ganzen Welt entwickelt. Alle Plugins im offiziellen <a href=\"%s\" target=\"_blank\">WordPress.org Plugin-Verzeichnis</a> sind kostenlos und sind kompatibel mit der von WordPress verwendeten Lizenz (GPL). Du kannst neue Plugins direkt aus deinem WordPress heraus suchen und installieren."
287
-
288
- #: wp-admin/plugin-install.php:50
289
- msgid "If you want to install a plugin that you&#8217;ve downloaded elsewhere, click the Upload in the upper left. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin."
290
- msgstr "Falls du schon woanders ein Plugin runtergeladen hast, dann klicke auf den Link <em>Hochladen</em> im oberen Teil der Seite. Du wirst dann aufgefordert, die ZIP-Datei hochzuladen. Das ZIP-Archiv wird dann automatisch auf dem Server entpackt und das Plugin kann aktiviert werden."
291
-
292
- #: wp-admin/options-privacy.php:21
293
- msgid "You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the radio button next to &#8220;Ask search engines not to index this site&#8221; and click the Save Changes button at the bottom of the screen. Note that your privacy is not complete; your site is still visible on the web."
294
- msgstr "Du kannst hier auswählen, ob du Suchmaschinen oder sonstige Crawler bitten möchtest, deine Website nicht zu indexieren und somit zum Beispiel nicht in Suchergebnissen zu erscheinen. Beachte aber, dass trotz Aktivieren dieser Option, deine Website weiterhin öffentlich im Internet erreichbar ist."
295
-
296
- #: wp-admin/tools.php:22
297
- msgid "Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierachy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content."
298
- msgstr "Kategorien sind hierarchisch, das heißt, du kannst Unter- und Unterunterkategorien anlegen. Schlagwörter sind hierarchielos und können deshalb nicht verschachtelt werden."
299
 
300
- #: wp-admin/tools.php:61
301
- msgid "If you want to convert your categories to tags (or vice versa), use the <a href=\"%s\">Categories and Tags Converter</a> available from the Import screen."
302
- msgstr "Wenn Du deine Kategorien in Schlagworte umwandeln willst (oder umgekehrt), benutze den <a href=\"%s\">Kategorie-in-Schlagwort-Konverter</a> der unter Werkzeuge &#8594; Daten importieren verfügbar ist."
303
 
304
- #: wp-admin/edit-form-advanced.php:173
305
- msgid "<strong>Post editor</strong> - Enter the text for your post. There are two modes of editing: Visual and HTML. Choose the mode by clicking on the appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon in the row to get a second row of controls. The HTML mode allows you to enter raw HTML along with your post text. You can insert media files by clicking the icons above the post editor and following the directions. You can go to the distraction-free writing screen via the Fullscreen icon in Visual mode (second to last in the top row) or the Fullscreen button in HTML mode (last in the row). Once there, you can make buttons visible by hovering over the top area. Exit Fullscreen back to the regular post editor."
306
- msgstr ""
307
- "<strong>Editorfeld</strong> – Hier schreibst du den eigentlichen Inhalt deines Artikels. Es gibt dabei zwei Möglichkeiten: Visuell und HTML. Visuell bietet einen WYSIWYG-Editor der Formatierungen und Inhalt in etwa so anzeigt, wie sie später auf der Website zu sehen sind. Du kannst dir übrigens weitere Formatierungsoptionen anzeigen lassen, in dem du in der Werkzeugleiste auf das letzte Symbol klickst. \n"
308
- "Der HTML-Editor ermöglicht es, direkt HTML zur Formatierung zu benutzen. Dies dürfte vor allem für fortgeschrittene Anwender interessant sein, die mehr Kontrolle über die Codeauszeichnung haben möchten. \n"
309
- "Wenn du Dateien oder Bilder hochladen möchtest, so findest du direkt über der Werkzeugleiste dafür die entsprechenden anzuklickenden Symbole.\n"
310
- "Seit WordPress 3.2 gibt es einen neuen Editor im Vollbildmodus, den du über das entsprechende Symbol erreichen kannst. Im Vollbildmodus verschwinden automatisch die Schaltflächen beim Schreiben. Sie werden jedoch wieder sichtbar, wenn du den Mauszeiger in den oberen Bereich der Vollbildfläche bewegst."
311
 
312
- #: wp-admin/edit-form-advanced.php:214
313
- msgid "Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and HTML modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box:"
314
- msgstr "Eine Seite zu erstellen ist fast genauso, wie einen neuen Artikel zu schreiben. Seit WordPress 3.2 gibt es einen neuen Vollbildmodus für ablenkungsfreies Schreiben. Du findest hier ebenfalls verschiedene Module, wobei manche nur speziell bei Seiten zu nutzen sind, weshalb du sie nur hier siehst:"
315
 
316
- #: wp-admin/import.php:133
317
- msgid "If the importer you need is not listed, <a href=\"%s\">search the plugin directory</a> to see if an importer is available."
318
- msgstr "Falls der von dir benötigte Importer hier nicht gelistet ist, <a href=\"%s\">durchsuche das Plugin-Verzeichnis</a>, um zu schauen, ob ein Importer verfügbar ist."
319
 
320
- #: wp-admin/custom-background.php:89
321
- msgid "You can also choose a background color. If you know the hexadecimal code for the color you want, enter it in the Background Color field. If not, click on the Select a Color link, and a color picker will allow you to choose the exact shade you want."
322
- msgstr "Du kannst auch eine Hintergrundfarbe auswählen. Falls du den hexadezimalen Farbcode kannst, kannst du ihn direkt eingeben. Andernfalls klicke auf <em>Wähle eine Farbe</em>, um eine Farbpalette angezeigt zu bekommen."
323
 
324
- #: wp-admin/options-media.php:22
325
- msgid "If you do not set the maximum embed size, it will be automatically sized to fit into your content area."
326
- msgstr "Wenn die Maximale Anhang-Größe nicht gesetzt ist, wird es automatisch auf die Größe gebracht, so dass es in deinen Inhaltsbereich passt. "
327
 
328
- #: wp-admin/edit.php:156
329
- msgid "This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow."
330
- msgstr "Auf dieser Seite siehst du all deine Artikel. Du kannst über \"Optionen einblenden\" die Darstellung an deine Bedürfnisse anpassen."
331
 
332
- #: wp-admin/edit.php:172 wp-admin/upload.php:157
333
- msgid "Available Actions"
334
- msgstr "Verfügbare Aktionen"
335
 
336
- #: wp-includes/admin-bar.php:151
337
- msgid "My Account"
338
- msgstr "Mein Benutzerprofil"
339
 
340
- #: wp-admin/user-new.php:148
341
- msgid "You must assign a password to the new user, which they can change after logging in. The username, however, cannot be changed."
342
- msgstr "Du musst dem neuen Benutzer ein Passwort zuweisen, welches er aber jederzeit selber ändern kann. Der Benutzername kann jedoch später nicht geändert werden."
343
 
344
- #: wp-admin/edit-comments.php:122
345
- msgid "Moderating Comments"
346
- msgstr "Kommentare moderieren"
347
 
348
- #: wp-admin/edit.php:187
349
- msgid "When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the x next to its name in the Bulk Edit area that appears."
350
- msgstr "Beim Massenbearbeiten von Artikeln kannst du für mehrere Artikel auf einmal z. B. die Kategoriezuordnung, Schlagwörter, Autor, Veröffentlichungsstatus und mehr verändern. Um einen Artikel nachträglich von der Massenbearbeitung zu entfernen, klicke auf das kleine X-Symbol neben dem Titel."
351
 
352
- #: wp-admin/nav-menus.php:458
353
- msgid "Create Menus"
354
- msgstr "Menüs erstellen"
355
 
356
- #: wp-admin/media-upload.php:73
357
- msgid "Basic image editing is available after upload is complete. Make sure you click Save before leaving this screen."
358
- msgstr "Grundlegende Möglichkeiten der Bildbearbeitung (Drehen, Zuschneiden etc.) sind nach dem Hochladen verfügbar. Vergiss nicht, zum Schluss jeweils auf <em>Alle Änderungen speichern</em> zu klicken."
359
 
360
- #: wp-admin/media-upload.php:71
361
- msgid "Clicking <strong>Select Files</strong> opens a navigation window showing you files in your operating system. Selecting <strong>Open</strong> after clicking on the file you want activates a progress bar on the uploader screen."
362
- msgstr "Klicke auf <strong>Dateien auswählen</strong>, um Dateien von deinem Computer auszuwählen, die du hochladen möchtest, in dem du nach dem Auswählen im Dateidialog auf <em>Öffnen</em> klickst. Anschließend werden die Dateien hochgeladen (<em>Verarbeiten …</em>), verarbeitet und Vorschaubilder erstellt."
 
363
 
364
- #: wp-admin/media-upload.php:70
365
- msgid "<strong>Select Files</strong> will open the multi-file uploader, or you can use the <strong>Browser Uploader</strong>."
366
- msgstr "<strong>Dateien auswählen</strong> öffnet ein Fenster, in welchem du die Dateien zum Hochladen auswählen kannst. Falls das nicht klappt, kannst du alternativ den <strong>Browser Upload</strong> verwenden."
367
 
368
- #: wp-admin/media-upload.php:69
369
- msgid "<strong>Drag and drop</strong> your files into the area below. Multiple files are allowed."
370
- msgstr "<strong>Markiere eine Datei und ziehe sie</strong> bei gedrückter Maustaste in den Bereich unterhalb. Du kannst auch mehrere Dateien auswählen und bewegen."
 
 
371
 
372
- #: wp-admin/edit-tags.php:198
373
- msgid "You can delete Link Categories in the Bulk Action pulldown, but that action does not delete the links within the category. Instead, it moves them to the default Link Category."
374
- msgstr "Du kannst Linkkategorien durch Benutzung der Massenverarbeitung auch wieder löschen. Sind in der zu löschenden Kategorie noch Links enthalten, so werden diese nicht gelöscht, sondern in die Standardlinkkategorie verschoben."
375
 
376
- #: wp-admin/edit-tags.php:195
377
- msgid "You can assign keywords to your posts using <strong>tags</strong>. Unlike categories, tags have no hierarchy, meaning there&#8217;s no relationship from one tag to another."
378
- msgstr "Du kannst deinen Artikeln <strong>Schlagwörter</strong> hinzufügen, um sie mit relevanten Stichworten zu versehen. Schlagwörter haben, anders als Kategorien, keine Hierarchie."
379
 
380
- #: wp-admin/widgets.php:119
381
- msgid "Drag widgets here to remove them from the sidebar but keep their settings."
382
- msgstr "Willst du Widgets entfernen, aber ihre Einstellungen behalten, ziehe sie hierher."
383
 
384
- #: wp-admin/user-edit.php:41
385
- msgid "You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens."
386
- msgstr ""
387
- "Du kannst unter anderem dein Passwort ändern, Tastaturkürzel für die Kommentarmoderation aktivieren, das Farbschema verwalten oder den visuellen Editor deaktivieren.\n"
388
- "Du kannst auch in der Blogansicht die Werkzeugleiste (vorher Adminleiste genannt) für dich ein- oder ausblenden."
 
389
 
390
- #: wp-admin/widgets.php:102
391
- msgid "This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar."
392
- msgstr "Diese Sidebar steht nicht mehr zur Verfügung und wird auch nicht mehr angezeigt. Entferne alle noch in dieser Sidebar eingetragenen Widgets um diese inaktive Sidebar komplett zu entfernen."
393
 
394
- #: wp-admin/widgets.php:47
395
- msgid "Removing and Reusing"
396
- msgstr "Entfernen und Wiederherstellen"
397
 
398
- #: wp-admin/widgets.php:55
399
- msgid "Missing Widgets"
400
- msgstr "Fehlende Widgets"
401
 
402
- #: wp-admin/widgets.php:99
403
- msgid "Inactive Sidebar (not used)"
404
- msgstr "Inaktive Sidebar (ungenutzt)"
405
 
406
- #: wp-admin/edit-tags.php:193
407
- msgid "You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts."
408
- msgstr "Du kannst Links in einzelne Gruppen ordnen, indem du Linkkategorien verwendest. Linkkategorien haben mit den normalen Kategorien für Artikel nichts zu tun und sind getrennt von diesen."
409
 
410
- #: wp-admin/upload.php:159
411
- msgid "Hovering over a row reveals action links: Edit, Delete Permanently, and View. Clicking Edit or on the media file&#8217;s name displays a simple screen to edit that individual file&#8217;s metadata. Clicking Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached). View will take you to the display page for that file."
412
- msgstr ""
413
- "Wenn du mit der Maus über eine Datei in der Liste fährst, werden zusätzliche Optionen angezeigt:\n"
414
- "\n"
415
- "<em>Bearbeiten</em>, <em>endgültig löschen</em> und <em>Ansehen</em>.\n"
416
- "\n"
417
- "Beim Klick auf <em>Bearbeiten</em> werden die Metadaten der Datei angezeigt und können auch bearbeitet werden. Ein Klick auf <em>Endgültig löschen</em>, löscht eine Datei aus der Mediathek und allen Artikeln, in der sie verwendet wurde. <em>Ansehen</em> öffnet eine Seite auf welcher die Datei angezeigt wird."
418
 
419
- #: wp-admin/upload.php:165
420
- msgid "If a media file has not been attached to any post, you will see that in the Attached To column, and can click on Attach File to launch a small popup that will allow you to search for a post and attach the file."
421
- msgstr "Falls eine Datei in keinem Artikel oder Seite verwendet wird, so wird dies in der Spalte <em>Verwendet in</em> kenntlich gemacht. Mit einem Klick auf <em>Verknüpfen</em> kannst du Artikel oder Seiten suchen, mit denen du die Datei verknüpfen möchtest."
422
 
423
- #: wp-admin/users.php:43
424
- msgid "Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username."
425
- msgstr "<em>Bearbeiten</em> führt dich zur bearbeitbaren Profilansicht des ausgewählten Benutzers. Du kannst alternativ auch einfach den Benutzernamen des Nutzers anklicken."
426
-
427
- #: wp-admin/users.php:41
428
- msgid "Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:"
429
- msgstr "Wenn du mit der Maus über einen Eintrag in der Benutzerliste fährst, werden zusätzliche Optionen angezeigt:"
430
-
431
- #: wp-admin/users.php:37
432
- msgid "You can view all posts made by a user by clicking on the number under the Posts column."
433
- msgstr "Du kannst dir alle Artikels eines bestimmten Benutzers anschauen, in dem du auf die Zahl unter der Artikelspalte klickst."
434
-
435
- #: wp-admin/edit.php:208
436
- msgid "You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk Actions menu to edit the metadata for multiple pages at once."
437
- msgstr "Du kannst auch die gleichen Aktionen ausführen und zum Beispiel Filter anwenden, den Massenbearbeitungsmodus nutzen oder weitere Bearbeitungslinks sehen, wenn du mit der Maus über eine Seite fährst."
438
-
439
- #: wp-admin/edit.php:207
440
- msgid "Managing pages is very similar to managing posts, and the screens can be customized in the same way."
441
- msgstr "Seiten zu verwalten ist genauso einfach wie das Verwalten von Artikeln und du hast ebenso die Möglichkeit, über <em>Optionen einblenden</em> die Ansichtseinstellungen zu ändern."
442
-
443
- #: wp-admin/edit.php:205
444
- msgid "Managing Pages"
445
- msgstr "Seiten verwalten"
446
-
447
- #: wp-admin/edit.php:179
448
- msgid "<strong>Preview</strong> will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post&#8217;s status."
449
- msgstr "<em>Vorschau</em> zeigt, wie der Artikel aussehen würde, wenn du ihn veröffentlichst. Es wird dafür ein neues Fenster geöffnet und du siehst den Artikel direkt auf deiner Website. Der Button <em>Ansehen</em> ermöglicht das Gleiche, wird aber nicht bei jedem Artikelstatus angezeigt."
450
-
451
- #: wp-admin/edit.php:178
452
- msgid "<strong>Trash</strong> removes your post from this list and places it in the trash, from which you can permanently delete it."
453
- msgstr "<strong>Papierkorb</strong> verschiebt einen Artikel in den Papierkorb, womit dieser Artikel dann nicht mehr auf der Website sichtbar ist. Du kannst Artikel aus dem Papierkorb zu jeder Zeit wiederherstellen oder auch endgültig aus dem Papierkorb löschen."
454
-
455
- #: wp-admin/edit.php:177
456
- msgid "<strong>Quick Edit</strong> provides inline access to the metadata of your post, allowing you to update post details without leaving this screen."
457
- msgstr "<strong>QuickEdit</strong> öffnet direkt in der Übersicht einen kleinen Bereich, in welchem du bestimmte Eigenschaften des Artikels anpassen und speichern kannst."
458
-
459
- #: wp-admin/edit-comments.php:129
460
- msgid "Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more."
461
- msgstr "Nutze Tastaturkürzel, um Kommentare schneller zu moderieren. Die entsprechenden Kürzel sind in der <em>Keyboard Shortcuts Documentation</em> hinterlegt."
462
-
463
- #: wp-admin/edit-comments.php:128
464
- msgid "In the <strong>In Response To</strong> column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows how many comments that post has received. If the bubble is gray, you have moderated all comments for that post. If it is blue, there are pending comments. Clicking the bubble will filter the comments screen to show only comments on that post."
465
- msgstr "In der letzten Spalte (<strong>Antwort auf</strong>) wird angezeigt, zu welchem Artikel der Kommentar abgegeben wurde. Mit einem Klick auf \"Artikel ansehen\" wirst du direkt zum Kommentar auf der Website weitergeleitet. Falls das kleine Feld mit der Zahl blau ist, gibt es freizuschaltende Kommentare zu diesem Artikel. Klicke dann auf das Feld oder den angezeigten Artikelnamen, um alle Kommentare zu diesem Artikel zu sehen."
466
-
467
- #: wp-admin/edit-comments.php:127
468
- msgid "In the <strong>Comment</strong> column, above each comment it says &#8220;Submitted on,&#8221; followed by the date and time the comment was left on your site. Clicking on the date/time link will take you to that comment on your live site. Hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment."
469
- msgstr "Wenn du in der Spalte <strong>Kommentar</strong> auf das angezeigte Datum klickst, kannst du den Kommentar direkt auf der Website ansehen. Beim überfahren eines Kommentars mit der Maus werden weitere Optionen zum Löschen, Bearbeiten etc. angezeigt. Du kannst auch mehrere Kommentare auf einmal verwalten, in dem du in der ganz linken Spalte die Auswahlbox anklickst und dann bei <em>Aktion wählen</em> eine Aktion wählst und auf <em>Übernehmen</em> klickst."
470
-
471
- #: wp-admin/edit-comments.php:126
472
- msgid "In the <strong>Author</strong> column, in addition to the author&#8217;s name, email address, and blog URL, the commenter&#8217;s IP address is shown. Clicking on this link will show you all the comments made from this IP address."
473
- msgstr "In der Spalte <strong>Autor</strong> werden Daten wie der Name, E-Mail-Adresse, Blog-Adresse und IP-Adresse des Kommentierenden angezeigt. Klickst du auf die IP-Adresse, siehst du alle Kommentare, die mit dieser IP-Adresse abgegeben wurden."
474
-
475
- #: wp-admin/edit-comments.php:118
476
- msgid "You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the Bulk Actions."
477
- msgstr "Du kannst Kommentare auf die gleiche Art und Weise verwalten, wie du es zum Beispiel auch mit Artikeln tust. Diese Seite und die Anzahl der auf einmal anzuzeigenden Kommentare ist über <em>Optionen einblenden</em> einstellbar. Beim überfahren eines Kommentars mit der Maus werden weitere Optionen zum Löschen, Bearbeiten etc. angezeigt. Du kannst auch mehrere Kommentare auf einmal verwalten, in dem du in der ganz linken Spalte die Auswahlbox anklickst und dann bei <em>Aktion wählen</em> eine Aktion wählst und auf <em>Übernehmen</em> klickst."
478
-
479
- #: wp-admin/import.php:23
480
- msgid "In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently."
481
- msgstr "In früheren Versionen von WordPress waren die Importer direkt eingebaut. Da die meisten Leute die Importer, wenn überhaupt, nur einmal nutzen, wurden diese nun als Plugins ausgelagert und können optional installiert werden."
482
-
483
- #: wp-admin/edit.php:176
484
- msgid "<strong>Edit</strong> takes you to the editing screen for that post. You can also reach that screen by clicking on the post title."
485
- msgstr "<strong>Bearbeiten</strong> führt dich zur Seite \"Artikel bearbeiten\" für diesen Artikel. Einen Artikel kannst du auch bearbeiten, indem du direkt auf den Titel eines Artikels klickst."
486
-
487
- #: wp-admin/edit.php:201
488
- msgid "Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the &#8220;Parent&#8221; of the other, creating a group of pages."
489
- msgstr "Seiten sind Artikeln recht ähnlich. Sie haben einen Titel, Inhalt und weitere Metadaten. Sie erscheinen jedoch nicht im chronologischen Ablauf der Blogartikel und können auch nicht mit Kategorien und Schlagwörtern verknüpft werden. Dafür können Seiten hierarchisch angeordnet beziehungsweise verschachtelt werden, in dem einer Seite Eltern verpasst werden, also eine andere Seite als übergeordnete Seite festgelegt wird."
490
-
491
- #: wp-admin/upload.php:152
492
- msgid "All the files you&#8217;ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen."
493
- msgstr "Alle über die Oberfläche von WordPress hochgeladenen Dateien werden in der Mediathek angezeigt. Standardmäßig werden die zuletzt hochgeladenen Dateien zuerst angezeigt. Nutze <em>Optionen einblenden</em> um diese Seite für dich anzupassen."
494
-
495
- #: wp-admin/users.php:36
496
- msgid "You can filter the list of users by User Role using the text links in the upper left to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed."
497
- msgstr "Du kannst die Benutzerliste nach Benutzerrollen filtern in dem du die entsprechenden Links in der links-oberen Ecke benutzt. Standardmäßig werden alle Benutzer angezeigt und unbenutzte Rollen nicht gelistet."
498
-
499
- #: wp-admin/users.php:35
500
- msgid "You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab."
501
- msgstr "Über <em>Optionen einblenden</em> kannst Du Spalten je nach deinen persönlichen Wünschen anzeigen oder verbergen lassen und bestimmen, wie viele Benutzer pro Bildschirm aufgelistet werden sollen."
502
-
503
- #: wp-admin/update-core.php:183
504
- msgid "<a href=\"%s\">Learn more about WordPress %s</a>."
505
- msgstr "<a href=\"%s\">Erfahre mehr über WordPress %s</a>."
506
-
507
- #: wp-admin/includes/template.php:1829
508
- msgid "Likely direct inclusion of wp-admin/includes/template.php in order to use add_meta_box(). This is very wrong. Hook the add_meta_box() call into the add_meta_boxes action instead."
509
- msgstr "Das direkte Einbinden von wp-admin/includes/template.php um add_meta_box() zu nutzen ist falsch. Rufe stattdessen den Hook add_meta_box() im der Action add_meta_boxes auf."
510
-
511
- #: wp-admin/about.php:141
512
- msgid "WordPress now includes the entire jQuery UI stack and the latest version of jQuery: %s."
513
- msgstr "WordPress enthält jetzt den kompletten jQuery UI stack und die aktuellste Version von jQuery: %s."
514
-
515
- #: wp-admin/link-manager.php:53
516
- msgid "Deleting Links"
517
- msgstr "Links löschen"
518
-
519
- #: wp-admin/link-manager.php:48
520
- msgid "Links may be separated into Link Categories; these are different than the categories used on your posts."
521
- msgstr "Links können in verschiedene Kategorien einsortiert werden. Es sind jedoch nicht die gleichen Kategorien wie für Artikel und müssen daher separat erstellt werden."
522
-
523
- #: wp-admin/link-manager.php:45 wp-admin/user-new.php:156 wp-admin/index.php:35
524
- #: wp-admin/edit-link-form.php:44 wp-admin/options-general.php:74
525
- #: wp-admin/themes.php:45 wp-admin/media.php:72 wp-admin/custom-header.php:104
526
- #: wp-admin/options-discussion.php:20 wp-admin/plugin-editor.php:115
527
- #: wp-admin/plugin-install.php:40 wp-admin/options-privacy.php:20
528
- #: wp-admin/theme-editor.php:25 wp-admin/comment.php:50
529
- #: wp-admin/edit-comments.php:116 wp-admin/import.php:21
530
- #: wp-admin/custom-background.php:85 wp-admin/options-media.php:34
531
- #: wp-admin/edit.php:154 wp-admin/edit.php:199 wp-admin/upload.php:150
532
- #: wp-admin/export.php:43 wp-admin/theme-install.php:47 wp-admin/users.php:25
533
- #: wp-admin/options-writing.php:20 wp-admin/update-core.php:436
534
- #: wp-admin/options-reading.php:46 wp-admin/includes/screen.php:669
535
- #: wp-admin/options-permalink.php:20 wp-admin/user-edit.php:48
536
- #: wp-admin/widgets.php:40 wp-admin/plugins.php:323 wp-admin/edit-tags.php:204
537
- #: wp-admin/media-upload.php:65 wp-admin/nav-menus.php:450
538
- msgid "Overview"
539
- msgstr "Übersicht"
540
-
541
- #: wp-admin/user-new.php:145
542
- msgid "Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user&#8217;s name to Edit the user profile under Network Admin > All Users."
543
- msgstr "Da dies ein Blog-Netzwerk (Multisite) ist, kannst du in anderen Blogs dieses Netzwerks existierende Benutzer einfach hinzufügen, in dem du ihren Nutzernamen oder E-Mail-Adresse angibst, sowie ihre Benutzerrolle festlegst. Für weitere Optionen (wie Passwörter festlegen) musst du blogübergreifender Administrator sein. Du kannst dann über Netzwerkadministrator &gt; Alle Benutzer das Profil des Benutzers verändern."
544
-
545
- #: wp-admin/user-new.php:146
546
- msgid "New users will receive an email letting them know they&#8217;ve been added as a user for your site. This email will also contain their password. Check the box if you don&#8217;t want the user to recieve a welcome email."
547
- msgstr "Neue Benutzer bekommen eine E-Mail, in welcher ihnen mitgeteilt wird, dass sie als Benutzer dieser Website registriert wurden. Diese E-Mail enthält auch das Passwort. Markiere die Checkbox, wenn der Benutzer keine Willkommensemail bekommen soll. "
548
-
549
- #: wp-admin/index.php:42
550
- msgid "Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information."
551
- msgstr "Die Links in der Leiste in der oberen Bildschirmhälfte verbinden das Dashboard mit der Blogansicht und bieten Zugang zu deinem Profil und Hilfefunktionen."
552
-
553
- #: wp-admin/user-edit.php:166
554
- msgid "Profile updated."
555
- msgstr "Profil aktualisiert."
556
-
557
- #: wp-admin/credits.php:80
558
- msgid "WordPress is created by a worldwide team of passionate individuals."
559
- msgstr "WordPress wird von einem weltumspannenden Team passionierter Leute entwickelt."
560
-
561
- #: wp-admin/credits.php:144
562
- msgid "Core Developers"
563
- msgstr "Entwickler"
564
-
565
- #: wp-admin/credits.php:151
566
- msgid "Core Developer"
567
- msgstr "Entwickler"
568
-
569
- #: wp-admin/menu.php:63
570
- msgctxt "admin menu"
571
- msgid "All Links"
572
- msgstr "Alle Links"
573
-
574
- #: wp-load.php:56
575
- msgid "<p>There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started.</p> <p>Need more help? <a href='http://codex.wordpress.org/Editing_wp-config.php'>We got it</a>.</p> <p>You can create a <code>wp-config.php</code> file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file.</p><p><a href='%ssetup-config.php' class='button'>Create a Configuration File</a></p>"
576
- msgstr "<p>Es scheint so, als wäre die Datei <code>wp-config.php</code> nicht vorhanden. Diese Datei wird aber benötigt um, fortzufahren.</p><p> Benötigst du weitere Hilfe? <a href='http://codex.wordpress.org/Editing_wp-config.php'>Hier findest du sie</a>.</p><p>Du kannst die Datei <code>wp-config.php</code> über ein Web-Interface erstellen, das funktioniert allerdings nicht unter allen Systemen. Am sichersten ist es, wenn die Datei manuell erstellt wird.</p><p><a href='%ssetup-config.php' class='button'>Konfigurationsdatei erstellen</a></p>"
577
-
578
- #: wp-admin/about.php:99
579
- msgid "Dashboard Welcome"
580
- msgstr "Dashboard Begrüßung"
581
-
582
- #: wp-admin/about.php:120
583
- msgid "Widget Improvements"
584
- msgstr "Verbesserungen bei Widgets"
585
-
586
- #: wp-admin/about.php:117
587
- msgid "Want to import content from Tumblr to WordPress? No problem! Go to <span class=\"no-break\">Tools &rarr; Import</span> to get the new Tumblr Importer, which maps your Tumblog posts to the matching WordPress post formats. Tip: Choose a theme designed to display post formats to get the greatest benefit from the importer."
588
- msgstr "Möchtest du Inhalte von Tumblr in WordPress importieren? Kein Problem. Über den Menüpunkt <span class=\"no-break\">Werkzeuge &rarr; Import</span> kannst du den neuen Tumblr-Importer installieren, welcher Inhalte von Tumblr in entsprechende Artikel mit den passenden Formatvorlagen umwandelt."
589
-
590
- #: wp-admin/about.php:116
591
- msgid "Tumblr Importer"
592
- msgstr "Tumblr-Importer"
593
-
594
- #: wp-admin/about.php:113
595
- msgid "Have you ever gone to edit a post after someone else has finished with it, only to get an alert that tells you the other person is still editing the post? From now on, you&#8217;ll only get that alert if another person is still on the editing screen &mdash; no more time lag."
596
- msgstr "Ist es dir schon mal passiert, dass du einen Artikel bearbeiten wolltest, nachdem jemand ihn fertiggestellt hat, nur um eine Warnung zu bekommen, die dir sagt, dass eine andere Person diesen Artikel immer noch bearbeitet? Ab jetzt wirst du nur noch eine Warnung bekommen, wenn eine andere Person noch im Bearbeitungsfenster ist &mdash; Keine Zeitverzögerung mehr."
597
-
598
- #: wp-admin/about.php:111
599
- msgid "Better Co-Editing"
600
- msgstr "Besseres kooperatives Schreiben"
601
-
602
- #: wp-admin/about.php:107
603
- msgid "Content Tools"
604
- msgstr "Werkzeuge für den Inhalt"
605
-
606
- #: wp-admin/about.php:100
607
- msgid "The dashboard home screen will have a Welcome area that displays when a new WordPress installation is accessed for the first time, prompting the site owner to complete various setup tasks. Once dismissed, this welcome can be accessed via the dashboard home screen options tab."
608
- msgstr "Die Hauptseite des Dashboards wird einen Willkommensbereich haben, der angezeigt wird, wenn zum ersten Mal auf eine neue WordPress Installation zugegriffen wird, und den Seitenbetreiber dazu auffordern, verschiedene Einstellungen zu vervollständigen. Wenn er einmal ausgeblendet worden ist, kann dieser Willkommensbereich jederzeit über das die Registerkarte \"Optionen einblenden\" der Hauptseite des Dashboards aufgerufen werden."
609
-
610
- #: wp-admin/about.php:97
611
- msgid "This screen! From now on when you update WordPress, you&#8217;ll be brought to this screen &mdash; also accessible any time from the W logo in the corner of the toolbar &mdash; to get an overview of what&#8217;s changed."
612
- msgstr "Diese Seite! Wann immer du WordPress aktualisierst, wirst du in Zukunft auf diese Seite weitergeleitet um zu sehen, was es neues in dieser WordPress-Version gibt. Du kannst sie auch erreichen in dem du auf das \"W\" in der Ecke der Werkzeugleiste klickst. "
613
-
614
- #: wp-admin/about.php:96
615
- msgid "Post-update Changelog"
616
- msgstr "Aktualisierungshinweise"
617
-
618
- #: wp-admin/user-new.php:76
619
  msgid ""
620
- "Hi,\n"
621
- "\n"
622
- "You've been invited to join '%1$s' at\n"
623
- "%2$s with the role of %3$s.\n"
624
- "\n"
625
- "Please click the following link to confirm the invite:\n"
626
- "%4$s"
627
  msgstr ""
628
- "Hallo,\n"
629
- "\n"
630
- "du wurdest eingeladen, %1$s (%2$s) als %3$s beizutreten.\n"
631
- "Bitte klicke auf den folgenden Link, um die Einladung zu bestätigen:\n"
632
- "%4$s"
633
-
634
- #: wp-admin/about.php:94
635
- msgid "When we add new features, move navigation, or do anything else with the dashboard that might throw you for a loop when you update your WordPress site, we&#8217;ll let you know about it with new feature pointers explaining the change."
636
- msgstr "Wenn wir neue Funktionen einbauten, das Dashboard oder die Navigationsmenüs änderten, dann musstest du bisher immer einen Rundgang durch dein WordPress starten um zu schauen, was sich geändert hat. Dies ist jetzt nicht mehr nötig, da wir dich nun gezielt über die wichtigsten Änderungen informieren."
637
-
638
- #: wp-admin/about.php:93
639
- msgid "New Feature Pointers"
640
- msgstr "Hinweise zu neuen Funktionen"
641
-
642
- #: wp-admin/about.php:85
643
- msgid "Feels Like the First Time"
644
- msgstr "Fühlt sich an wie das erste Mal"
645
-
646
- #: wp-admin/about.php:79
647
- msgid "The Help tabs located in the upper corner of the dashboard screens below your name have gotten a facelift. Help content is broken into smaller sections for easier access, with links to relevant documentation and the support forums always visible."
648
- msgstr "Der Reiter \"Hilfe\" in der oberen Ecke des Bildschirms hat eine Verschönerung bekommen. Der Hilfeinhalt wird nun in kleinere Sektionen unterteilt um einen einfacheren Zugriff zu ermöglichen und enthält Links zur offiziellen Dokumentation und zu den Hilfeforen."
649
-
650
- #: wp-admin/about.php:78
651
- msgid "Help Tabs"
652
- msgstr "Hilfe-Reiter"
653
-
654
- #: wp-admin/about.php:66
655
- msgid "To save space and increase efficiency, we&#8217;ve combined the admin bar and the old Dashboard header into one persistent toolbar. Hovering over the toolbar items will reveal submenus when available for quick access. "
656
- msgstr "Um Platz zu sparen und die Effizienz zu erhöhen, wurden die ehemalige Adminleiste und die Kopfzeile des Dashboards zu einer neuen und dauerhaft eingeblendeten Werkzeugleiste vereint. Wenn du die Maus über einzelne Einträge des Menüs bewegst, so werden dir weitere Unteroptionen angezeigt."
657
-
658
- #: wp-admin/about.php:65
659
- msgid "Header + Admin Bar = Toolbar"
660
- msgstr "Kopfzeile + Adminleiste = Werkzeugleiste"
661
-
662
- #: wp-admin/about.php:74
663
- msgid "Certain dashboard screens have been updated to look better at various sizes, including improved iPad/tablet support."
664
- msgstr "Viele Seiten im Adminbereich wurden modernisiert, um auf unterschiedlichen Bildschirmgrößen besser auszusehen. Auch iPads und andere Tabletts werden dadurch besser unterstützt."
665
-
666
- #: wp-admin/about.php:73
667
- msgid "Responsive Design"
668
- msgstr "Bedarfsabhängiges Design"
669
-
670
- #: wp-admin/about.php:62
671
- msgid "Speed up navigating the dashboard and reduce repetitive clicking with our new flyout submenus. As you hover over each main menu item in your dashboard navigation, the submenus will magically appear, providing single-click access to any dashboard screen."
672
- msgstr "Bewege dich schneller im Dashboard mit weniger Klicks durch die Nutzung des neuen Ausklappmenüs. Sobald du über einen Menüpunkt des Menüs im Dashboard fährst, klappen die weiteren Untermenüpunkte auf und können ausgewählt werden."
673
-
674
- #: wp-admin/about.php:61
675
- msgid "Flyout Menus"
676
- msgstr "Ausklappmenüs"
677
-
678
- #: wp-admin/about.php:58
679
- msgid "Dashboard Design"
680
- msgstr "Dashboard Design"
681
-
682
- #: wp-admin/about.php:52
683
- msgid "We&#8217;ve added the rar and 7z file formats to the list of allowed file types in the uploader."
684
- msgstr "Es dürfen nun auch Archive im RAR und 7z-Format hochgeladen werden."
685
-
686
- #: wp-admin/comment.php:77
687
- msgid "This comment is marked as Spam. Please mark it as Not Spam if you want to edit it."
688
- msgstr "Dieser Kommentar wurde als SPAM eingestuft. Falls du ihn bearbeiten willst, musst du die SPAM-Markierung entfernen."
689
-
690
- #: wp-admin/about.php:51
691
- msgid "More File Formats"
692
- msgstr "Mehr Dateiformate"
693
-
694
- #: wp-admin/about.php:49
695
- msgid "Adding photos or other files to posts and pages just got easier. Drag files from your desktop and drop them into the uploader. Add one file at a time, or many at once."
696
- msgstr "Fotos und andere Dateien hochzuladen ist nun noch einfacher geworden. Nutze einfach Drag&Drop (Dateien mit gedrückter Maustaste vom Computer in das Hochladefeld ziehen) um eine oder mehrere Dateien einzubinden."
697
-
698
- #: wp-admin/about.php:48
699
- msgid "Drag-and-Drop Media Uploader"
700
- msgstr "Dateien hochladen per Drag&Drop"
701
-
702
- #: wp-admin/about.php:46
703
- msgid "We&#8217;ve streamlined things! Instead of needing to click on a specific upload icon based on your file type, now there&#8217;s just one. Once your file is uploaded, the appropriate fields will be displayed for entering information based on the file type."
704
- msgstr "Wir haben Dinge vereinfacht! Du musst nicht mehr auf ein deinem Dateityp zugeordneten Uploadsymbol klicken, ab jetzt gibt es nur noch Eines für alle. Sobald deine Datei hochgeladen ist werden die passenden Felder für den jeweiligen Dateityp angezeigt, um die Informationen eingeben zu können."
705
-
706
- #: wp-admin/about.php:45
707
- msgid "File Type Detection"
708
- msgstr "Dateityperkennung"
709
-
710
- #: wp-admin/about.php:37
711
- msgid "Easier Uploading"
712
- msgstr "Einfacheres Hochladen"
713
-
714
- #: wp-admin/freedoms.php:20 wp-admin/about.php:20 wp-admin/credits.php:51
715
- msgid "Welcome to WordPress %s"
716
- msgstr "Willkommen bei WordPress %s"
717
-
718
- #: wp-admin/includes/dashboard.php:393
719
- msgid "ERROR: The themes directory is either empty or doesn&#8217;t exist. Please check your installation."
720
- msgstr "FEHLER: Das Theme-Verzeichnis ist entweder leer oder existiert nicht. Bitte überprüfe deine Installation."
721
-
722
- #: wp-admin/includes/dashboard.php:1294
723
- msgid "If you need help getting started, check out our documentation on <a href=\"http://codex.wordpress.org/First_Steps_With_WordPress\">First Steps with WordPress</a>. If you&#8217;d rather dive right in, here are a few things most people do first when they set up a new WordPress site. If you need help, use the Help tabs in the upper right corner to get information on how to use your current screen and where to go for more assistance."
724
- msgstr "Falls du Starthilfe benötigst, solltest du die offizielle (englischsprachige) <a href=\"http://codex.wordpress.org/First_Steps_With_WordPress\">Dokumentation</a> oder das deutschsprachgige <a href=\"http://forum.wpde.org\">Forum</a> konsultieren. Falls du direkt einsteigen willst, findest du hier ein paar Dinge, welche die meisten Leute nach der Installation von WordPress tun. Weitere Hilfe findest du auch in der Registerkarte <em>Hilfe</em> in der oberen rechten Ecke des Bildschirms."
725
-
726
- #: wp-admin/includes/dashboard.php:1293
727
- msgid "Welcome to your new WordPress site! "
728
- msgstr "Willkommen auf deiner neuen WordPress-Installation!"
729
-
730
- #: wp-admin/includes/media.php:1393
731
- msgid "Your browser has some limitations uploading large files with the multi-file uploader. Please use the browser uploader for files over 100MB."
732
- msgstr "Dein Browser kann auf Grund von Limitierungen keine grossen Dateien hochladen. Nutze bitte den alternativen \"Browser-Upload\" um Dateien mit einer Grösse von über 100 MB hochzuladen."
733
-
734
- #: wp-admin/includes/media.php:1371
735
- msgctxt "Uploader: Drop files here - or - Select Files"
736
- msgid "or"
737
- msgstr "oder"
738
-
739
- #: wp-admin/includes/media.php:781
740
- msgid "Attachment Post URL"
741
- msgstr "URL des Anhangs"
742
-
743
- #: wp-admin/includes/media.php:1370
744
- msgid "Drop files here"
745
- msgstr "Dateien hierher ziehen"
746
-
747
- #: wp-admin/includes/media.php:2057
748
- msgid "You are using the browser&#8217;s built-in file uploader. The new WordPress uploader includes multiple file selection and drag and drop capability. <a href=\"#\">Switch to the new uploader</a>."
749
- msgstr "Du nutzt momentan die Hochladefunktion deines Browsers. Der neue WordPress-Uploader erlaubt es dir, mehrere Dateien auf einmal hochzuladen und Drag&Drop zu verwenden. <a href=\"#\">Aktiviere die bessere Hochladefunktion von WordPress</a>."
750
-
751
- #: wp-admin/includes/media.php:2043
752
- msgid "You are using the multi-file uploader. Problems? Try the <a href=\"#\">browser uploader</a> instead."
753
- msgstr "Du benutzt den Mehrdateienuploader. Treten Probleme auf? Benutze dann stattdessen den <a href=\"#\">Browser Uploader</a>."
754
-
755
- #: wp-admin/includes/plugin-install.php:108
756
- msgid "%s plugin"
757
- msgstr "%s Plugin"
758
 
759
- #: wp-admin/includes/template.php:1798
760
- msgid "If you change your mind and revert to your previous theme, we&#8217;ll put the widgets back the way you had them."
761
- msgstr "Wenn Du deine Meinung änderst und auf dein vorheriges Theme zurücksetzen willst, werden die Widgets so zurückgesetzt, wie sie vorher waren."
762
 
763
- #: wp-admin/includes/template.php:1797
764
- msgid "New Feature: Saving Widgets"
765
- msgstr "Neue Funktion: Widgets speichern"
766
 
767
- #: wp-admin/includes/template.php:1783
768
- msgid "The single media icon now launches the uploader for all file types, and the new drag and drop interface makes uploading a breeze."
769
- msgstr "Das einzige Medien Symbol startet jetzt den Uploader für alle Dateitypen und das neue Drag and Drop Interface macht hochladen zum Kinderspiel."
770
 
771
- #: wp-admin/includes/template.php:1782
772
- msgid "Updated Media Uploader"
773
- msgstr "Verbesserter Datei-/Medienupload"
774
 
775
- #: wp-admin/includes/template.php:1768
776
- msgid "Network Admin is now located in the My Sites menu."
777
- msgstr "Netzwerkadministrator befindet sich jetzt im Meine Blogs Menü."
778
 
779
- #: wp-admin/includes/template.php:1765
780
- msgid "We&#8217;ve combined the admin bar and the old Dashboard header into one persistent toolbar. Hover over the toolbar items to see what&#8217;s new."
781
- msgstr "Wir haben die alte Adminleiste und die Kopfzeile des Dashboards in eine neue Werkzeugleiste vereint. Bewege deinen Mauszeiger einfach mal über die verschiedenen Einträge in der Werkzeugleiste um zu sehen, was sie bietet."
782
 
783
- #: wp-admin/includes/template.php:1764
784
- msgid "New Feature: Toolbar"
785
- msgstr "Neue Funktion: Werkzeugleiste"
786
 
787
- #: wp-admin/includes/class-wp-upgrader.php:55
788
- msgid "The package could not be installed."
789
- msgstr "Das Paket konnte nicht installiert werden."
790
 
791
- #: wp-admin/includes/class-wp-upgrader.php:196
792
- msgid "The plugin contains no files."
793
- msgstr "Dieses Plugin enthält keinerlei Dateien."
794
-
795
- #: wp-admin/includes/class-wp-upgrader.php:565
796
- msgid "No valid plugins were found."
797
- msgstr "Es wurden keine funktionsfähigen Plugins gefunden."
798
 
799
- #: wp-admin/includes/class-wp-upgrader.php:839
800
- msgid "The theme is missing the <code>style.css</code> stylesheet."
801
- msgstr "Dem Theme fehlt das <code>style.css</code> Stylesheet."
802
 
803
- #: wp-admin/about.php:128
804
- msgid "Under the Hood"
805
- msgstr "Unter der Haube"
806
 
807
- #: wp-admin/about.php:132
808
- msgid "Flexible Permalinks"
809
- msgstr "Flexible Permalinks"
810
 
811
- #: wp-admin/about.php:133
812
- msgid "You have more freedom when choosing a post permalink structure. Skip the date information or add a category slug without a performance penalty."
813
- msgstr "Die Permalinkstruktur erlaubt mehr Freiheiten. Lass die Datumsangabe außer Acht oder füge eine Titelform hinzu, ohne Performanceeinbußen zu haben."
814
 
815
- #: wp-admin/about.php:136
816
- msgid "Post Slugs: Less Funky"
817
- msgstr "Titelform: Weniger leicht zu verwirren"
818
 
819
- #: wp-admin/about.php:137
820
- msgid "Funky characters in post titles (e.g. curly quotes from a word processor) will no longer result in garbled post slugs."
821
- msgstr "Exotische Zeichen im Titel von Artikeln entstellen nicht mehr die Titelform (\"Slug\") in Permalinks."
822
 
823
- #: wp-admin/about.php:140
824
- msgid "jQuery and jQuery UI"
825
- msgstr "jQuery und jQuery UI"
826
 
827
- #: wp-admin/about.php:148
828
- msgid "This handy method will tell you if a <code>WP_Query</code> object is the main WordPress query or a secondary query."
829
- msgstr "Diese bequeme Methode zeigt auf, ob sich bei einem <code>WP_Query</code> Objekt um die Haupt - WordPress Query handelt."
830
 
831
- #: wp-admin/about.php:151
832
- msgid "WP_Screen API"
833
- msgstr "WP_Screen API"
834
 
835
- #: wp-admin/about.php:155
836
- msgid "Editor API Overhaul"
837
- msgstr "Editor API Verbesserungen"
838
 
839
- #: wp-admin/about.php:156
840
- msgid "The new editor API automatically pulls in all the JS and CSS goodness for the editor. It even supports multiple editors on the same page."
841
- msgstr "Die neue Editor API besorgt sich automatisch die ganzen Vorteile von JS und CSS für den Editor. Es unterstützt sogar mehrere Editoren auf derselben Seite. "
842
 
843
- #: wp-admin/about.php:165
844
- msgid "Return to Dashboard &rarr; Updates"
845
- msgstr "Zu Dashboard &rarr; Aktualisierungen zurückkehren"
846
 
847
- #: wp-admin/about.php:168
848
- msgid "Go to Dashboard &rarr; Home"
849
- msgstr "Gehe zu Dashboard &rarr; Startseite"
850
 
851
- #: wp-admin/includes/dashboard.php:1297
852
- msgid "Basic Settings"
853
- msgstr "Grundlegende Einstellungen"
854
 
855
- #: wp-admin/includes/dashboard.php:1298
856
- msgid "Here are a few easy things you can do to get your feet wet. Make sure to click Save on each Settings screen."
857
- msgstr "Hier sind ein paar einfache Dinge, die Du machen kannst, um auszuprobieren. Stelle sicher, dass Du auf jedem Einstellungsbildschirm speichern klickst."
858
 
859
- #: wp-admin/includes/dashboard.php:1300
860
- msgid "<a href=\"%s\">Choose your privacy setting</a>"
861
- msgstr "<a href=\"%s\">Privatsphäreneinstellungen auswählen</a>"
862
 
863
- #: wp-admin/includes/dashboard.php:1301
864
- msgid "<a href=\"%s\">Select your tagline and time zone</a>"
865
- msgstr "<a href=\"%s\">Untertitel und Zeitzone verwalten</a>"
866
 
867
- #: wp-admin/includes/dashboard.php:1302
868
- msgid "<a href=\"%s\">Turn comments on or off</a>"
869
- msgstr "<a href=\"%s\">Kommentare an- oder abschalten</a>"
870
 
871
- #: wp-admin/includes/dashboard.php:1303
872
- msgid "<a href=\"%s\">Fill in your profile</a>"
873
- msgstr "<a href=\"%s\">Dein Profil vervollständigen</a>"
874
 
875
- #: wp-admin/includes/dashboard.php:1307
876
- msgid "Add Real Content"
877
- msgstr "Echten Inhalt hinzufügen"
 
 
 
 
878
 
879
- #: wp-admin/includes/dashboard.php:1308
880
- msgid "Check out the sample page & post editors to see how it all works, then delete the default content and write your own!"
881
- msgstr "Schau dir die Beispielseite & Artikeleditoren an, um herauszufinden, wie alles funktioniert. Dann lösche den Inhalt und schreibe deinen eigenen!"
882
 
883
- #: wp-admin/includes/dashboard.php:1310
884
- msgid "View the <a href=\"%1$s\">sample page</a> and <a href=\"%2$s\">post</a>"
885
- msgstr "Zeige die <a href=\"%1$s\">Beispielseite</a> und den <a href=\"%2$s\">Beispielartikel</a>"
 
 
 
886
 
887
- #: wp-admin/includes/dashboard.php:1311
888
- msgid "Delete the <a href=\"%1$s\">sample page</a> and <a href=\"%2$s\">post</a>"
889
- msgstr "Lösche die <a href=\"%1$s\">Beispielseite</a> und den <a href=\"%2$s\">Beispielartikel</a>"
890
 
891
- #: wp-admin/includes/dashboard.php:1312
892
- msgid "<a href=\"%s\">Create an About Me page</a>"
893
- msgstr "Erstelle eine <a href=\"%s\">\"Über mich\"-Seite</a>"
894
 
895
- #: wp-admin/includes/dashboard.php:1313
896
- msgid "<a href=\"%s\">Write your first post</a>"
897
- msgstr "<a href=\"%s\">Schreibe deinen ersten Artikel</a>"
898
 
899
- #: wp-admin/includes/dashboard.php:1317
900
- msgid "Customize Your Site"
901
- msgstr "Dein WordPress individualisieren"
902
-
903
- #: wp-admin/includes/dashboard.php:1322
904
- msgid "<a href=\"%s\">Install a theme</a> to get started customizing your site."
905
- msgstr "<a href=\"%s\">Installiere ein anderes Design</a> um dein WordPress individuell herzurichten."
906
-
907
- #: wp-admin/includes/dashboard.php:1340
908
- msgid "Use the current theme &mdash; %1$s &mdash; or <a href=\"%2$s\">choose a new one</a>. If you stick with %3$s, here are a few ways to make your site look unique."
909
- msgstr "Benutze das aktuelle Theme &mdash; %1$s &mdash; oder <a href=\"%2$s\">wähle ein Neues aus</a>. Wenn Du bei %3$s bleiben willst, sind hier ein paar Einstellungsmöglichkeiten um deine Seite einzigartig aussehen zu lassen."
910
-
911
- #: wp-admin/includes/dashboard.php:1327
912
- msgid "<a href=\"%s\">Choose light or dark</a>"
913
- msgstr "<a href=\"%s\">Wähle zwischen hell oder dunkel</a>"
914
-
915
- #: wp-admin/includes/dashboard.php:1330
916
- msgid "<a href=\"%s\">Set a background color</a>"
917
- msgstr "<a href=\"%s\">Hintergrundfarbe festlegen</a>"
918
-
919
- #: wp-admin/includes/dashboard.php:1333
920
- msgid "<a href=\"%s\">Select a new header image</a>"
921
- msgstr "<a href=\"%s\">Ein neues Kopfzeilen-Bild auswählen</a>"
922
-
923
- #: wp-admin/includes/dashboard.php:1336
924
- msgid "<a href=\"%s\">Add some widgets</a>"
925
- msgstr "<a href=\"%s\">Füge Widgets hinzu</a>"
926
-
927
- #: wp-admin/includes/dashboard.php:1357
928
- msgid "Already know what you&#8217;re doing? <a href=\"%s\">Dismiss this message</a>."
929
- msgstr "Weisst Du schon, was Du tust? <a href=\"%s\">Diese Nachricht nicht mehr anzeigen</a>."
930
-
931
- #: wp-admin/includes/plugin-install.php:108
932
- msgid "%s plugins"
933
- msgstr "%s Plugins"
934
-
935
- #: wp-admin/includes/class-wp-upgrader.php:843
936
- msgid "The <code>style.css</code> stylesheet doesn't contain a valid theme header."
937
- msgstr "Das <code>style.css</code> Stylesheet enthält keinen gültigen Theme Header."
938
-
939
- #: wp-admin/includes/class-wp-upgrader.php:846
940
- msgid "The theme is missing the <code>index.php</code> file."
941
- msgstr "Dem Theme fehlt die <code>index.php</code> Datei."
942
-
943
- #: wp-includes/script-loader.php:205
944
- msgid "%s exceeds the maximum upload size for the multi-file uploader when used in your browser."
945
- msgstr "%s übersteigt das Uploadlimit für den Mehrdateienuploader."
946
-
947
- #: wp-includes/script-loader.php:204
948
- msgid "Please try uploading this file with the %1$sbrowser uploader%2$s."
949
- msgstr "Bitte versuche diese Datei mit dem %1$sBrowser Uploader%2$s hochzuladen."
950
-
951
- #: wp-includes/script-loader.php:213
952
- msgid "&#8220;%s&#8221; has failed to upload."
953
- msgstr "&#8220;%s&#8221; konnte nicht hochgeladen werden."
954
-
955
- #: wp-includes/admin-bar.php:322
956
- msgid "Visit Network"
957
- msgstr "Zum Netzwerk gehen"
958
-
959
- #: wp-includes/admin-bar.php:115
960
- msgid "http://wordpress.org/support/"
961
- msgstr "http://wordpress.org/support/"
962
-
963
- #: wp-includes/default-widgets.php:108 wp-includes/default-widgets.php:143
964
- msgctxt "links widget"
965
- msgid "All Links"
966
- msgstr "Alle Links"
967
-
968
- #: wp-includes/formatting.php:42
969
- msgctxt "em dash"
970
- msgid "&#8212;"
971
- msgstr "&#8212;"
972
-
973
- #: wp-includes/formatting.php:40
974
- msgctxt "en dash"
975
- msgid "&#8211;"
976
- msgstr "&#8211;"
977
-
978
- #: wp-includes/class-wp-editor.php:622
979
- #: wp-includes/js/tinymce/langs/wp-langs.php:286
980
- msgid "Blockquote (Alt + Shift + Q)"
981
- msgstr "Zitat (ALT + UMSCHALT + Q)"
982
-
983
- #: wp-includes/admin-bar.php:80 wp-includes/admin-bar.php:89
984
- msgid "About WordPress"
985
- msgstr "Über WordPress"
986
-
987
- #: wp-includes/admin-bar.php:99
988
- msgid "http://wordpress.org"
989
- msgstr "http://wordpress.org"
990
-
991
- #: wp-includes/admin-bar.php:107
992
- msgid "http://codex.wordpress.org"
993
- msgstr "http://codex.wordpress.org"
994
-
995
- #: wp-includes/admin-bar.php:123
996
- msgid "http://wordpress.org/support/forum/requests-and-feedback"
997
- msgstr "http://wordpress.org/support/forum/requests-and-feedback"
998
-
999
- #: wp-includes/admin-bar.php:544
1000
- msgid "%s comment awaiting moderation"
1001
- msgid_plural "%s comments awaiting moderation"
1002
- msgstr[0] "%s Kommentar wartet auf Moderation"
1003
- msgstr[1] "%s Kommentare warten auf Moderation"
1004
-
1005
- #: wp-includes/js/tinymce/langs/wp-langs.php:265
1006
- msgid "Redo (Ctrl + Y)"
1007
- msgstr "Wiederholen (STRG + Y)"
1008
-
1009
- #: wp-includes/js/tinymce/langs/wp-langs.php:264
1010
- msgid "Undo (Ctrl + Z)"
1011
- msgstr "Rückgängig (STRG + Z)"
1012
-
1013
- #: wp-includes/js/tinymce/langs/wp-langs.php:259
1014
- msgid "Align Full (Alt + Shift + J)"
1015
- msgstr "Blocksatz (ALT + UMSCHALT + J)"
1016
-
1017
- #: wp-includes/js/tinymce/langs/wp-langs.php:258
1018
- msgid "Align Right (Alt + Shift + R)"
1019
- msgstr "Rechtsbündig (ALT + UMSCHALT + R)"
1020
-
1021
- #: wp-includes/js/tinymce/langs/wp-langs.php:257
1022
- msgid "Align Center (Alt + Shift + C)"
1023
- msgstr "Zentrieren (ALT + UMSCHALT + C)"
1024
-
1025
- #: wp-includes/js/tinymce/langs/wp-langs.php:182
1026
- msgid "Toggle fullscreen mode (Alt + Shift + G)"
1027
- msgstr "Vollbildmodus aktivieren (ALT + UMSCHALT + G)"
1028
-
1029
- #: wp-includes/js/tinymce/langs/wp-langs.php:198
1030
- msgid "Toggle spellchecker (Alt + Shift + N)"
1031
- msgstr "Rechtschreibprüfung aktivieren (ALT + UMSCHALT + N)"
1032
-
1033
- #: wp-includes/js/tinymce/langs/wp-langs.php:256
1034
- msgid "Align Left (Alt + Shift + L)"
1035
- msgstr "Linksbündig (ALT + UMSCHALT + L)"
1036
-
1037
- #: wp-includes/js/tinymce/langs/wp-langs.php:255
1038
- msgid "Strikethrough (Alt + Shift + D)"
1039
- msgstr "Durchstreichen (ALT + UMSCHALT + D)"
1040
-
1041
- #: wp-includes/js/tinymce/langs/wp-langs.php:465
1042
- msgid "Insert Page break (Alt + Shift + P)"
1043
- msgstr "Seitenumbruch einfügen (ALT + UMSCHALT + P)"
1044
-
1045
- #: wp-includes/js/tinymce/langs/wp-langs.php:464
1046
- msgid "Insert More Tag (Alt + Shift + T)"
1047
- msgstr "\"Weiterlesen\"-Link einfügen (ALT + UMSCHALT + T)"
1048
-
1049
- #: wp-includes/js/tinymce/langs/wp-langs.php:463
1050
- msgid "Show/Hide Kitchen Sink (Alt + Shift + Z)"
1051
- msgstr "Werkzeugleiste anzeigen/verstecken (Alt + Shift + Z)"
1052
-
1053
- #: wp-includes/class-wp-admin-bar.php:88
1054
- msgid "The menu ID should not be empty."
1055
- msgstr "Die Menü ID darf nicht leer sein. "
1056
-
1057
- #: wp-includes/script-loader.php:193
1058
- msgid "%s exceeds the maximum upload size for this site."
1059
- msgstr "%s überschreitet das Uploadlimit."
1060
-
1061
- #: wp-admin/maint/repair.php:84
1062
- msgid "Failed to optimize the %1$s table. Error: %2$s"
1063
- msgstr "Konnte die Tabelle %1$s nicht optimieren. Fehler: %2$s"
1064
-
1065
- #: wp-admin/maint/repair.php:81
1066
- msgid "Successfully optimized the %s table."
1067
- msgstr "Tabelle %s wurde erfolgreich optimiert."
1068
-
1069
- #: wp-admin/maint/repair.php:74
1070
- msgid "The %s table is already optimized."
1071
- msgstr "Die Tabelle %s ist schon optimiert. "
1072
-
1073
- #: wp-admin/maint/repair.php:62
1074
- msgid "Failed to repair the %1$s table. Error: %2$s"
1075
- msgstr "Konnte Tabelle %1$s nicht reparieren. Fehler: %2$s"
1076
-
1077
- #: wp-admin/maint/repair.php:59
1078
- msgid "Successfully repaired the %s table."
1079
- msgstr "Die Tabelle %s wurde erfolgreich repariert. "
1080
-
1081
- #: wp-admin/maint/repair.php:52
1082
- msgid "The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table&hellip;"
1083
- msgstr "Die Tabelle %1$s ist nicht in Ordnung. Es gibt folgenden Fehler: %2$s. WordPress wird versuchen diese Tabelle zu reparieren&hellip;"
1084
-
1085
- #: wp-admin/maint/repair.php:49
1086
- msgid "The %s table is okay."
1087
- msgstr "Die Tabelle %s ist in Ordnung."
1088
-
1089
- #: wp-admin/import.php:42
1090
- msgid "Install the Tumblr importer to import posts &amp; media from Tumblr using their API."
1091
- msgstr "Installiere den Tumblr Importer um Artikel &amp; Medien von Tumblr über deren API zu importieren."
1092
-
1093
- #: wp-admin/import.php:42
1094
- msgid "Tumblr"
1095
- msgstr "Tumblr"
1096
-
1097
- #: wp-admin/update-core.php:264
1098
- msgid "View version %1$s details"
1099
- msgstr "Zeige Details von Version %1$s"
1100
-
1101
- #: wp-admin/includes/schema.php:560
1102
- msgctxt "User role"
1103
- msgid "Administrator"
1104
- msgstr "Administrator"
1105
-
1106
- #: wp-admin/includes/schema.php:562
1107
- msgctxt "User role"
1108
- msgid "Editor"
1109
- msgstr "Redakteur"
1110
 
1111
- #: wp-admin/includes/schema.php:564
1112
- msgctxt "User role"
1113
- msgid "Author"
1114
- msgstr "Autor"
1115
 
1116
- #: wp-admin/includes/schema.php:566
1117
- msgctxt "User role"
1118
- msgid "Contributor"
1119
- msgstr "Mitarbeiter"
1120
 
1121
- #: wp-admin/includes/schema.php:568
1122
- msgctxt "User role"
1123
- msgid "Subscriber"
1124
- msgstr "Abonnent"
1125
 
1126
- #: wp-admin/includes/schema.php:818
1127
- msgid "You must provide a domain name."
1128
- msgstr "Du musst einen Domainnamen angeben."
1129
 
1130
- #: wp-admin/includes/schema.php:820
1131
- msgid "You must provide a name for your network of sites."
1132
- msgstr "Du musst einen Namen für dein Netzwerk angeben."
1133
 
1134
- #: wp-admin/includes/schema.php:824
1135
- msgid "The network already exists."
1136
- msgstr "Das Netzwerk existiert bereits."
1137
 
1138
- #: wp-admin/includes/schema.php:828
1139
- msgid "You must provide a valid e-mail address."
1140
- msgstr "Du musst eine gültige E-Mail-Adresse angeben."
1141
 
1142
- #: wp-admin/includes/schema.php:862
1143
  msgid ""
1144
- "Dear User,\n"
1145
- "\n"
1146
- "Your new SITE_NAME site has been successfully set up at:\n"
1147
- "BLOG_URL\n"
1148
- "\n"
1149
- "You can log in to the administrator account with the following information:\n"
1150
- "Username: USERNAME\n"
1151
- "Password: PASSWORD\n"
1152
- "Log in here: BLOG_URLwp-login.php\n"
1153
- "\n"
1154
- "We hope you enjoy your new site. Thanks!\n"
1155
- "\n"
1156
- "--The Team @ SITE_NAME"
1157
  msgstr ""
1158
- "Hallo,\n"
1159
- "\n"
1160
- "dein neuer Blog SITE_NAME wurde erfolgreich angelegt und ist nun unter folgender Adresse zu erreichen:\n"
1161
- "BLOG_URL\n"
1162
- "\n"
1163
- "Du kannst dich mit folgenden Daten als Administrator einloggen:\n"
1164
- "Benutzername: USERNAME\n"
1165
- "Passwort: PASSWORD\n"
1166
- "Login unter: BLOG_URLwp-login.php\n"
1167
- "\n"
1168
- "Viel Spaß mit deinem neuen Blog!\n"
1169
- "\n"
1170
- "--Das Team von SITE_NAME"
1171
-
1172
- #: wp-admin/includes/schema.php:948
1173
- msgid "Warning! Wildcard DNS may not be configured correctly!"
1174
- msgstr "Warnung! Wildcard DNS wurde eventuell nicht korrekt konfiguriert!"
1175
-
1176
- #: wp-admin/includes/schema.php:949
1177
- msgid "The installer attempted to contact a random hostname (<code>%1$s</code>) on your domain."
1178
- msgstr "Die Subdomain-Installation versuchte, einen zufälligen Hostname (<code>%1$s</code>) deiner Domain zu kontaktieren."
1179
-
1180
- #: wp-admin/includes/schema.php:951
1181
- msgid "This resulted in an error message: %s"
1182
- msgstr "Dabei trat eine Fehlermeldung auf: %s"
1183
-
1184
- #: wp-admin/includes/schema.php:953
1185
- msgid "To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a <code>*</code> hostname record pointing at your web server in your DNS configuration tool."
1186
- msgstr "Um Subdomains für Blogadressen nutzen zu können, musst du einen Wildcard DNS-Eintrag haben. Dies geschieht üblicherweise durch das Einfügen von <code>*</code> als Hostname-Eintrag, welcher dann auf deinen Webserver zeigt. Dies musst du im DNS-Konfigurationstool deines Servers bzw. deiner Domain tun."
1187
-
1188
- #: wp-admin/includes/schema.php:954
1189
- msgid "You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message."
1190
- msgstr "Du kannst deinen Blog weiterhin benutzen, nur wird jede angelegte Subdomain möglicherweise nicht erreichbar sein. Wenn du weißt, dass deine DNS-Einstellungen korrekt sind, kannst du diesen Hinweis ignorieren."
1191
-
1192
- #: wp-admin/includes/class-wp-links-list-table.php:42
1193
- msgid "No links found."
1194
- msgstr "Keine Links gefunden."
1195
-
1196
- #: wp-admin/includes/class-wp-links-list-table.php:83
1197
- msgid "Relationship"
1198
- msgstr "Beziehung"
1199
 
1200
- #: wp-admin/includes/class-wp-links-list-table.php:84
1201
- msgid "Visible"
1202
- msgstr "Sichtbar"
1203
 
1204
- #: wp-admin/includes/class-wp-links-list-table.php:85
1205
- #: wp-admin/includes/meta-boxes.php:904
1206
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:143
1207
- msgid "Rating"
1208
- msgstr "Bewertung"
1209
 
1210
- #: wp-admin/includes/class-wp-links-list-table.php:140
1211
- #: wp-admin/includes/meta-boxes.php:642
1212
  msgid ""
1213
- "You are about to delete this link '%s'\n"
1214
- " 'Cancel' to stop, 'OK' to delete."
1215
  msgstr ""
1216
- "Link '%s' wird gelöscht.\n"
1217
- "'Abbrechen' zum Stoppen, 'OK' zum Löschen."
1218
-
1219
- #: wp-admin/includes/class-wp-links-list-table.php:146
1220
- msgid "Visit %s"
1221
- msgstr "Besuche %s"
1222
-
1223
- #: wp-admin/includes/theme.php:102
1224
- msgid "Unable to locate WordPress theme directory."
1225
- msgstr "Das WordPress Themeverzeichnis konnte nicht gefunden werden."
1226
-
1227
- #: wp-admin/includes/theme.php:109
1228
- msgid "Could not fully remove the theme %s."
1229
- msgstr "Das Theme %s konnte nicht vollständig entfernt werden."
1230
-
1231
- #: wp-admin/includes/theme.php:256
1232
- msgid "Updating this theme will lose any customizations you have made. 'Cancel' to stop, 'OK' to update."
1233
- msgstr "Eine Aktualisierung des Themes wird alle Anpassungen löschen, die du vorgenommen hast. 'Abbrechen' zum stoppen oder 'OK' zum aktualisieren."
1234
-
1235
- #: wp-admin/includes/theme.php:260
1236
- msgid "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox\" title=\"%1$s\">View version %3$s details</a>."
1237
- msgstr "Eine neue Version von %1$s ist erschienen. <a href=\"%2$s\" class=\"thickbox\" title=\"%1$s\">Details der Version %3$s ansehen</a>."
1238
-
1239
- #: wp-admin/includes/theme.php:262
1240
- msgid "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox\" title=\"%1$s\">View version %3$s details</a>. <em>Automatic update is unavailable for this theme.</em>"
1241
- msgstr "Eine neue Version von %1$s ist erschienen. <a href=\"%2$s\" class=\"thickbox\" title=\"%1$s\">Details der Version %3$s ansehen</a>. <em>Ein automatisches Update für dieses Theme ist nicht verfügbar.</em>"
1242
-
1243
- #: wp-admin/includes/theme.php:264
1244
- msgid "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox\" title=\"%1$s\">View version %3$s details</a> or <a href=\"%4$s\" %5$s>update automatically</a>."
1245
- msgstr "Eine neue Version von %1$s ist erschienen. <a href=\"%2$s\" class=\"thickbox\" title=\"%1$s\">Details der Version %3$s ansehen</a> oder <a href=\"%4$s\" %5$s>automatisch aktualisieren</a>."
1246
-
1247
- #: wp-admin/includes/theme.php:279 wp-admin/includes/theme.php:356
1248
- msgid "Colors"
1249
- msgstr "Farben"
1250
-
1251
- #: wp-admin/includes/theme.php:290
1252
- msgid "Tan"
1253
- msgstr "Hellbraun"
1254
-
1255
- #: wp-admin/includes/theme.php:293
1256
- msgid "Dark"
1257
- msgstr "Dunkel"
1258
-
1259
- #: wp-admin/includes/theme.php:294
1260
- msgid "Light "
1261
- msgstr "Hell"
1262
-
1263
- #: wp-admin/includes/theme.php:297 wp-admin/includes/theme.php:356
1264
- msgid "Columns"
1265
- msgstr "Spalten"
1266
-
1267
- #: wp-admin/includes/theme.php:298
1268
- msgid "One Column"
1269
- msgstr "Eine Spalte"
1270
 
1271
- #: wp-admin/includes/theme.php:299
1272
- msgid "Two Columns"
1273
- msgstr "Zwei Spalten"
1274
-
1275
- #: wp-admin/includes/theme.php:300
1276
- msgid "Three Columns"
1277
- msgstr "Drei Spalten"
1278
-
1279
- #: wp-admin/includes/theme.php:301
1280
- msgid "Four Columns"
1281
- msgstr "Vier Spalten"
1282
-
1283
- #: wp-admin/includes/theme.php:302
1284
- msgid "Left Sidebar"
1285
- msgstr "Sidebar links"
1286
-
1287
- #: wp-admin/includes/theme.php:303
1288
- msgid "Right Sidebar"
1289
- msgstr "Sidebar rechts"
1290
-
1291
- #: wp-admin/includes/theme.php:307
1292
- msgid "Fixed Width"
1293
- msgstr "Feste Breite"
1294
-
1295
- #: wp-admin/includes/theme.php:308
1296
- msgid "Flexible Width"
1297
- msgstr "Flexible Breite"
1298
-
1299
- #: wp-admin/includes/theme.php:311 wp-admin/includes/theme.php:357
1300
- msgid "Features"
1301
- msgstr "Funktionen"
1302
-
1303
- #: wp-admin/includes/theme.php:313
1304
- msgid "BuddyPress"
1305
- msgstr "BuddyPress"
1306
-
1307
- #: wp-admin/includes/theme.php:315
1308
- msgid "Custom Colors"
1309
- msgstr "Benutzerdefinierte Farben"
1310
-
1311
- #: wp-admin/includes/theme.php:318
1312
- msgid "Editor Style"
1313
- msgstr "Stylesheet für WYSIWYG-Editor"
1314
-
1315
- #: wp-admin/includes/theme.php:319
1316
- msgid "Featured Image Header"
1317
- msgstr "Individuelles Kopfzeilenbild je Seite"
1318
-
1319
- #: wp-admin/includes/theme.php:320
1320
- msgid "Featured Images"
1321
- msgstr "Artikelbilder"
1322
-
1323
- #: wp-admin/includes/theme.php:321
1324
- msgid "Front Page Posting"
1325
- msgstr "Artikel direkt auf der Blog-Startseite verfassen"
1326
-
1327
- #: wp-admin/includes/theme.php:322
1328
- msgid "Full Width Template"
1329
- msgstr "Seitentemplate für volle Seitenbreite"
1330
-
1331
- #: wp-admin/includes/theme.php:323
1332
- msgid "Microformats"
1333
- msgstr "Mikroformate"
1334
-
1335
- #: wp-admin/includes/theme.php:324
1336
- msgid "Post Formats"
1337
- msgstr "Artikel-Formatvorlagen"
1338
-
1339
- #: wp-admin/includes/theme.php:325
1340
- msgid "RTL Language Support"
1341
- msgstr "Unterstützung für semitische Sprachen (Leserichtung Rechts-nach-Links)"
1342
-
1343
- #: wp-admin/includes/theme.php:326
1344
- msgid "Sticky Post"
1345
- msgstr "Artikel oben halten"
1346
-
1347
- #: wp-admin/includes/theme.php:327
1348
- msgid "Theme Options"
1349
- msgstr "Theme-Einstellungen"
1350
-
1351
- #: wp-admin/includes/theme.php:328
1352
- msgid "Threaded Comments"
1353
- msgstr "Verschachtelte Kommentare"
1354
-
1355
- #: wp-admin/includes/theme.php:329
1356
- msgid "Translation Ready"
1357
- msgstr "Übersetzbar"
1358
-
1359
- #: wp-admin/includes/theme.php:332 wp-admin/includes/theme.php:357
1360
- msgid "Subject"
1361
- msgstr "Thema"
1362
-
1363
- #: wp-admin/includes/theme.php:333
1364
- msgid "Holiday"
1365
- msgstr "Feiertage"
1366
-
1367
- #: wp-admin/includes/theme.php:334
1368
- msgid "Photoblogging"
1369
- msgstr "Fotoblog"
1370
-
1371
- #: wp-admin/includes/theme.php:335
1372
- msgid "Seasonal"
1373
- msgstr "Jahreszeitlich"
1374
-
1375
- #: wp-admin/includes/meta-boxes.php:42
1376
- msgid "Preview Changes"
1377
- msgstr "Vorschau der Änderungen"
1378
-
1379
- #: wp-admin/includes/meta-boxes.php:111
1380
- msgid "Visibility:"
1381
- msgstr "Sichtbarkeit:"
1382
-
1383
- #: wp-admin/includes/meta-boxes.php:142
1384
- msgid "Stick this post to the front page"
1385
- msgstr "Diesen Artikel auf der Startseite halten"
1386
 
1387
- #: wp-admin/includes/meta-boxes.php:162
1388
- msgid "Scheduled for: <b>%1$s</b>"
1389
- msgstr "Geplant für: <b>%1$s</b>"
1390
 
1391
- #: wp-admin/includes/meta-boxes.php:164
1392
- msgid "Published on: <b>%1$s</b>"
1393
- msgstr "Veröffentlicht am: <b>%1$s</b>"
1394
 
1395
- #: wp-admin/includes/meta-boxes.php:166 wp-admin/includes/meta-boxes.php:174
1396
- msgid "Publish <b>immediately</b>"
1397
- msgstr "<b>Sofort</b> veröffentlichen"
1398
 
1399
- #: wp-admin/includes/meta-boxes.php:168
1400
- msgid "Schedule for: <b>%1$s</b>"
1401
- msgstr "Planen für: <b>%1$s</b>"
1402
 
1403
- #: wp-admin/includes/meta-boxes.php:170
1404
- msgid "Publish on: <b>%1$s</b>"
1405
- msgstr "Veröffentlichen am: <b>%1$s</b>"
1406
 
1407
- #: wp-admin/includes/meta-boxes.php:351 wp-admin/press-this.php:526
1408
- msgid "+ %s"
1409
- msgstr "+ %s"
1410
 
1411
- #: wp-admin/includes/meta-boxes.php:383
1412
- msgid "Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href=\"http://codex.wordpress.org/Excerpt\" target=\"_blank\">Learn more about manual excerpts.</a>"
1413
- msgstr "Ein Auszug ist eine von dir erstellte Zusammenfassung deines Textes. Du kannst <a href=\"http://codex.wordpress.org/Excerpt\" target=\"_blank\">Auszüge in deinem Template verwenden</a>"
1414
 
1415
- #: wp-admin/includes/meta-boxes.php:398
1416
- msgid "Already pinged:"
1417
- msgstr "Bereits gepingt:"
1418
 
1419
- #: wp-admin/includes/meta-boxes.php:407
1420
- msgid "Send trackbacks to:"
1421
- msgstr "Sende Trackbacks an:"
1422
 
1423
- #: wp-admin/includes/meta-boxes.php:407
1424
- msgid "Separate multiple URLs with spaces"
1425
- msgstr "Mehrere URLs durch Leerzeichen trennen"
1426
 
1427
- #: wp-admin/includes/meta-boxes.php:408
1428
- msgid "Trackbacks are a way to notify legacy blog systems that you&#8217;ve linked to them. If you link other WordPress sites they&#8217;ll be notified automatically using <a href=\"http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments\" target=\"_blank\">pingbacks</a>, no other action necessary."
1429
- msgstr "Mittels Trackbacks teilst du älteren Blogsystemen mit, dass du diese verlinkt hast. Wenn du andere WordPress-Blogs verlinkst, erfahren diese davon automatisch durch <a href=\"http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments\" target=\"_blank\">Pingbacks</a>, du musst dann gar nichts weiter tun. "
 
 
1430
 
1431
- #: wp-admin/includes/meta-boxes.php:435
1432
- msgid "Custom fields can be used to add extra metadata to a post that you can <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">use in your theme</a>."
1433
- msgstr "Benutzerdefinierte Felder dienen der Anreicherung von Beiträgen mit Metadaten; du kannst sie <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">in deinem Theme</a> einsetzen."
 
 
 
 
1434
 
1435
- #: wp-admin/includes/meta-boxes.php:451
1436
- msgid "Allow comments."
1437
- msgstr "Kommentare erlauben."
 
1438
 
1439
- #: wp-admin/includes/meta-boxes.php:452
1440
- msgid "Allow <a href=\"%s\" target=\"_blank\">trackbacks and pingbacks</a> on this page."
1441
- msgstr "Erlaube <a href=\"%s\" target=\"_blank\">Trackbacks und Pingbacks</a> auf dieser Seite."
1442
 
1443
- #: wp-admin/includes/meta-boxes.php:452
1444
- msgid "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments"
1445
- msgstr "http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments"
1446
 
1447
- #: wp-admin/includes/meta-boxes.php:493
1448
- msgid "Show comments"
1449
- msgstr "Kommentare zeigen"
1450
 
1451
- #: wp-admin/includes/meta-boxes.php:568
1452
- msgid "(no parent)"
1453
- msgstr "Hauptseite (keine Übergeordnete)"
1454
 
1455
- #: wp-admin/includes/meta-boxes.php:595
1456
- msgid "Need help? Use the Help tab in the upper right of your screen."
1457
- msgstr "Benötigst du Hilfe? Klicke auf die Registerkarte \"Hilfe\" in der rechten oberen Ecke des Bildschirms."
1458
 
1459
- #: wp-admin/includes/meta-boxes.php:623
1460
- msgid "Visit Link"
1461
- msgstr "Link besuchen"
 
 
 
 
 
 
 
 
 
 
 
1462
 
1463
- #: wp-admin/includes/meta-boxes.php:631
1464
- msgid "Keep this link private"
1465
- msgstr "Diesen Link als Privat markieren"
 
 
 
 
 
 
 
 
1466
 
1467
- #: wp-admin/includes/meta-boxes.php:693 wp-admin/includes/meta-boxes.php:695
1468
- msgid "+ Add New Category"
1469
- msgstr "+ Neue Kategorie hinzufügen"
1470
 
1471
- #: wp-admin/includes/meta-boxes.php:696
1472
- msgid "New category name"
1473
- msgstr "Neuer Kategoriename"
1474
 
1475
- #: wp-admin/includes/meta-boxes.php:717
1476
- msgid "<code>_blank</code> &mdash; new window or tab."
1477
- msgstr "<code>_blank</code> – neues Fenster oder neuer Tab."
1478
 
1479
- #: wp-admin/includes/meta-boxes.php:720
1480
- msgid "<code>_top</code> &mdash; current window or tab, with no frames."
1481
- msgstr "<code>_top</code> &mdash; aktuelles Fenster oder aktueller Tab, ohne Frames."
1482
 
1483
- #: wp-admin/includes/meta-boxes.php:723
1484
- msgid "<code>_none</code> &mdash; same window or tab."
1485
- msgstr "<code>_none</code> – dasselbe Fenster oder derselbe Tab."
1486
 
1487
- #: wp-admin/includes/meta-boxes.php:725
1488
- msgid "Choose the target frame for your link."
1489
- msgstr "Wähle das Ziel für deine Links."
1490
 
1491
- #: wp-admin/includes/meta-boxes.php:772
1492
- msgid "rel:"
1493
- msgstr "Beziehung"
1494
 
1495
- #: wp-admin/includes/meta-boxes.php:779 wp-admin/includes/meta-boxes.php:780
1496
- msgid "identity"
1497
- msgstr "Identität"
1498
 
1499
- #: wp-admin/includes/meta-boxes.php:783
1500
- msgid "another web address of mine"
1501
- msgstr "eine weitere meiner Webadressen"
1502
 
1503
- #: wp-admin/includes/meta-boxes.php:787 wp-admin/includes/meta-boxes.php:788
1504
- msgid "friendship"
1505
- msgstr "Freundschaft"
1506
 
1507
- #: wp-admin/includes/meta-boxes.php:790
1508
- msgid "contact"
1509
- msgstr "Kontakt"
1510
 
1511
- #: wp-admin/includes/meta-boxes.php:792
1512
- msgid "acquaintance"
1513
- msgstr "Bekannschaft"
1514
 
1515
- #: wp-admin/includes/meta-boxes.php:794
1516
- msgid "friend"
1517
- msgstr "Freund"
1518
 
1519
- #: wp-admin/includes/meta-boxes.php:796 wp-admin/includes/meta-boxes.php:829
1520
- #: wp-admin/includes/meta-boxes.php:852
1521
- msgid "none"
1522
- msgstr "keine"
1523
 
1524
- #: wp-admin/includes/meta-boxes.php:800 wp-admin/includes/meta-boxes.php:801
1525
- msgid "physical"
1526
- msgstr "reale Welt"
 
1527
 
1528
- #: wp-admin/includes/meta-boxes.php:804
1529
- msgid "met"
1530
- msgstr "getroffen"
 
1531
 
1532
- #: wp-admin/includes/meta-boxes.php:808 wp-admin/includes/meta-boxes.php:809
1533
- msgid "professional"
1534
- msgstr "beruflich"
 
1535
 
1536
- #: wp-admin/includes/meta-boxes.php:812
1537
- msgid "co-worker"
1538
- msgstr "Mitarbeiter"
 
1539
 
1540
- #: wp-admin/includes/meta-boxes.php:815
1541
- msgid "colleague"
1542
- msgstr "Kollege"
 
1543
 
1544
- #: wp-admin/includes/meta-boxes.php:819 wp-admin/includes/meta-boxes.php:820
1545
- msgid "geographical"
1546
- msgstr "Umfeld"
 
1547
 
1548
- #: wp-admin/includes/meta-boxes.php:823
1549
- msgid "co-resident"
1550
- msgstr "Mitbewohner"
1551
 
1552
- #: wp-admin/includes/meta-boxes.php:826
1553
- msgid "neighbor"
1554
- msgstr "Nachbar"
 
 
 
1555
 
1556
- #: wp-admin/includes/meta-boxes.php:833 wp-admin/includes/meta-boxes.php:834
1557
- msgid "family"
1558
- msgstr "Familie"
1559
 
1560
- #: wp-admin/includes/meta-boxes.php:837
1561
- msgid "child"
1562
- msgstr "Kind"
1563
 
1564
- #: wp-admin/includes/meta-boxes.php:840
1565
- msgid "kin"
1566
- msgstr "Angehörige"
1567
 
1568
- #: wp-admin/includes/meta-boxes.php:843
1569
- msgid "parent"
1570
- msgstr "Eltern"
 
 
 
1571
 
1572
- #: wp-admin/includes/meta-boxes.php:846
1573
- msgid "sibling"
1574
- msgstr "Geschwister"
 
1575
 
1576
- #: wp-admin/includes/meta-boxes.php:849
1577
- msgid "spouse"
1578
- msgstr "Partner"
1579
 
1580
- #: wp-admin/includes/meta-boxes.php:856 wp-admin/includes/meta-boxes.php:857
1581
- msgid "romantic"
1582
- msgstr "Verhältnis"
1583
 
1584
- #: wp-admin/includes/meta-boxes.php:860
1585
- msgid "muse"
1586
- msgstr "Muse"
1587
 
1588
- #: wp-admin/includes/meta-boxes.php:863
1589
- msgid "crush"
1590
- msgstr "verrückt nach"
1591
 
1592
- #: wp-admin/includes/meta-boxes.php:866
1593
- msgid "date"
1594
- msgstr "Verabredung"
1595
-
1596
- #: wp-admin/includes/meta-boxes.php:869
1597
- msgid "sweetheart"
1598
- msgstr "Liebling"
1599
-
1600
- #: wp-admin/includes/meta-boxes.php:876
1601
- msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out <a href=\"http://gmpg.org/xfn/\">XFN</a>."
1602
- msgstr "Wenn der Link zu einer Person führt, kannst du hier eure Beziehung angeben. Wenn dich das interessiert, erfährst du mehr unter <a href=\"http://gmpg.org/xfn/\">XFN</a>."
1603
-
1604
- #: wp-admin/includes/meta-boxes.php:892
1605
- msgid "Image Address"
1606
- msgstr "Bild-Adresse"
1607
-
1608
- #: wp-admin/includes/meta-boxes.php:896
1609
- msgid "RSS Address"
1610
- msgstr "RSS-Adresse"
1611
-
1612
- #: wp-admin/includes/meta-boxes.php:900
1613
- msgid "Notes"
1614
- msgstr "Notizen"
1615
-
1616
- #: wp-admin/includes/meta-boxes.php:913
1617
- msgid "(Leave at 0 for no rating.)"
1618
- msgstr "(Bei 0 belassen, wenn es keine Bewertung geben soll.)"
1619
-
1620
- #: wp-admin/includes/menu.php:226
1621
- msgid "You do not have sufficient permissions to access this page."
1622
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diese Seite zuzugreifen."
1623
 
1624
- #: wp-admin/includes/update.php:100
1625
- msgid "You are using a development version (%1$s). Cool! Please <a href=\"%2$s\">stay updated</a>."
1626
- msgstr "Du benutzt eine Entwicklerversion (%1$s). Cool! Halte dich <a href=\"%2$s\">auf dem Laufenden</a>."
1627
 
1628
- #: wp-admin/includes/update.php:104
1629
- msgid "<a href=\"%1$s\">Get Version %2$s</a>"
1630
- msgstr "<a href=\"%1$s\">Version %2$s herunterladen</a>"
1631
 
1632
- #: wp-admin/includes/update.php:130
1633
- msgid "<a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> is available! <a href=\"%2$s\">Please update now</a>."
1634
- msgstr "<a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> ist verfügbar! <a href=\"%2$s\">Bitte aktualisiere jetzt</a>."
1635
 
1636
- #: wp-admin/includes/update.php:132
1637
- msgid "<a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> is available! Please notify the site administrator."
1638
- msgstr "<a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> ist verfügbar! Bitte benachrichtige den Administrator."
1639
 
1640
- #: wp-admin/includes/update.php:140
1641
- msgid "You are using <span class=\"b\">WordPress %s</span>."
1642
- msgstr "Du nutzt <span class=\"b\">WordPress %s</span>."
1643
 
1644
- #: wp-admin/includes/update.php:146
1645
- msgid "Update to %s"
1646
- msgstr "Auf %s aktualisieren"
1647
 
1648
- #: wp-admin/includes/update.php:146
1649
- msgid "Latest"
1650
- msgstr "Letztes"
1651
 
1652
- #: wp-admin/includes/update.php:198 wp-admin/includes/update.php:273
1653
- msgid "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">View version %4$s details</a>."
1654
- msgstr "Eine neue Version von %1$s ist erschienen. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">Details der Version %4$s ansehen</a>."
1655
 
1656
- #: wp-admin/includes/update.php:200 wp-admin/includes/update.php:275
1657
- msgid "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">View version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
1658
- msgstr "Eine neue Version von %1$s ist erschienen. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">Details der Version %4$s ansehen</a>. <em>Eine automatische Aktualisierung ist für dieses Plugin nicht verfügbar.</em>"
 
1659
 
1660
- #: wp-admin/includes/update.php:202 wp-admin/includes/update.php:277
1661
- msgid "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">View version %4$s details</a> or <a href=\"%5$s\">update automatically</a>."
1662
- msgstr "Eine neue Version von %1$s ist erschienen. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">Details der Version %4$s ansehen</a> oder <a href=\"%5$s\">automatisch aktualisieren</a>."
 
1663
 
1664
- #: wp-admin/includes/update.php:300
1665
- msgid "An automated WordPress update has failed to complete - <a href=\"%s\">please attempt the update again now</a>."
1666
- msgstr "Ein automatisches Update konnte nicht beendet werden – <a href=\"%s\">Bitte starte das Update jetzt erneut</a>."
1667
 
1668
- #: wp-admin/includes/update.php:302
1669
- msgid "An automated WordPress update has failed to complete! Please notify the site administrator."
1670
- msgstr "Ein automatisches Update konnte nicht beendet werden! Bitte informiere den Seitenadministrator."
1671
 
1672
- #: wp-admin/includes/bookmark.php:192
1673
- msgid "Could not update link in the database"
1674
- msgstr "Der Link konnte nicht in der Datenbank aktualisiert werden"
1675
 
1676
- #: wp-admin/includes/bookmark.php:199
1677
- msgid "Could not insert link into the database"
1678
- msgstr "Der Link konnte nicht in die Datenbank eingefügt werden"
1679
 
1680
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:33
1681
- msgctxt "Plugin Installer"
1682
- msgid "Featured"
1683
- msgstr "Empfohlen"
1684
-
1685
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:34
1686
- msgctxt "Plugin Installer"
1687
- msgid "Popular"
1688
- msgstr "Populär"
1689
-
1690
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:35
1691
- msgctxt "Plugin Installer"
1692
- msgid "Newest"
1693
- msgstr "Neuste"
1694
-
1695
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:36
1696
- msgctxt "Plugin Installer"
1697
- msgid "Recently Updated"
1698
- msgstr "Kürzlich aktualisiert"
1699
 
1700
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:97
1701
- msgid "No plugins match your request."
1702
- msgstr "Es passen keine Plugins zu deiner Anfrage."
1703
 
1704
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:141
1705
- msgctxt "plugin name"
1706
  msgid "Name"
1707
  msgstr "Name"
1708
 
1709
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:192
1710
- msgid "More information about %s"
1711
- msgstr "Weitere Informationen über %s"
1712
-
1713
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:200
1714
- msgid "Install %s"
1715
- msgstr "Installiere %s"
1716
-
1717
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:204
1718
- msgid "Update to version %s"
1719
- msgstr "Aktualisiere auf Version %s"
1720
-
1721
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:208
1722
- msgid "This plugin is already installed and is up to date"
1723
- msgstr "Das Plugin ist aktuell und bereits aktiviert"
1724
-
1725
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:208
1726
- msgid "Installed"
1727
- msgstr "Installiert"
1728
-
1729
- #: wp-admin/press-this.php:127
1730
- msgid "Embed Code"
1731
- msgstr "Code einbinden"
1732
-
1733
- #: wp-admin/press-this.php:130
1734
- msgid "Insert Video"
1735
- msgstr "Video einfügen"
1736
-
1737
- #: wp-admin/press-this.php:156
1738
- msgid "Click to insert."
1739
- msgstr "Zum Einfügen klicken."
1740
-
1741
- #: wp-admin/press-this.php:230
1742
- msgid "Unable to retrieve images or no images on page."
1743
- msgstr "Es können keine Bilder empfangen werden oder es sind keine auf der Seite."
1744
-
1745
- #: wp-admin/press-this.php:291
1746
- msgid "Add Photos"
1747
- msgstr "Fotos hinzufügen"
1748
-
1749
- #: wp-admin/press-this.php:291
1750
- msgid "click images to select"
1751
- msgstr "Zum Auswählen Bild anklicken"
1752
-
1753
- #: wp-admin/press-this.php:291
1754
- msgid "Add from URL"
1755
- msgstr "Von URL hinzufügen"
1756
-
1757
- #: wp-admin/press-this.php:291
1758
- msgid "Refresh"
1759
- msgstr "Neu laden"
1760
-
1761
- #: wp-admin/press-this.php:594
1762
- msgid "Loading..."
1763
- msgstr "Lade …"
1764
 
1765
- #: wp-admin/press-this.php:483
1766
- msgid "Post Format:"
1767
- msgstr "Formatvorlage:"
1768
 
1769
- #: wp-admin/press-this.php:520
1770
- msgid "You cannot modify this Taxonomy."
1771
- msgstr "Du kannst diese Taxonomie nicht verändern."
1772
-
1773
- #: wp-admin/press-this.php:581
1774
- msgid "Your post has been saved."
1775
- msgstr "Dein Artikel wurde gespeichert."
1776
-
1777
- #: wp-admin/press-this.php:582
1778
- msgid "View post"
1779
- msgstr "Artikel ansehen"
1780
-
1781
- #: wp-admin/press-this.php:584
1782
- msgid "Close Window"
1783
- msgstr "Fenster schließen"
1784
-
1785
- #: wp-admin/press-this.php:614
1786
- msgid "via "
1787
- msgstr "via "
1788
-
1789
- #: wp-admin/press-this.php:622
1790
- msgid "Add:"
1791
- msgstr "Hinzufügen:"
1792
-
1793
- #: wp-admin/press-this.php:626 wp-admin/press-this.php:627
1794
- msgid "Insert an Image"
1795
- msgstr "Ein Bild einfügen"
1796
-
1797
- #: wp-admin/press-this.php:631
1798
- msgid "Embed a Video"
1799
- msgstr "Ein Video einbinden"
1800
-
1801
- #: wp-admin/link-add.php:13
1802
- msgid "You do not have sufficient permissions to add links to this site."
1803
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Links hinzuzufügen."
1804
-
1805
- #: wp-admin/link-add.php:15
1806
- msgid "Add New Link"
1807
- msgstr "Link hinzufügen"
1808
 
1809
- #: wp-admin/post.php:135 wp-admin/edit-tags.php:128 wp-admin/edit-tags.php:143
1810
- msgid "You attempted to edit an item that doesn&#8217;t exist. Perhaps it was deleted?"
1811
- msgstr "Du versuchst ein Element zu bearbeiten, welches nicht existiert. Vermutlich wurde es gelöscht."
 
 
 
 
 
 
 
 
 
 
 
 
 
1812
 
1813
- #: wp-admin/post.php:141
1814
- msgid "You can&#8217;t edit this item because it is in the Trash. Please restore it and try again."
1815
- msgstr "Du kannst dieses Element nicht bearbeiten, da es im Papierkorb liegt. Stelle es wieder her und versuche es dann erneut."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1816
 
1817
- #: wp-admin/post.php:221
1818
- msgid "You are not allowed to move this item out of the Trash."
1819
- msgstr "Du verfügst nicht über ausreichende Rechte, um dieses Element aus dem Papierkorb wiederherzustellen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1820
 
1821
- #: wp-admin/post.php:240 wp-admin/post.php:243
1822
- msgid "Error in deleting."
1823
- msgstr "Beim Löschen ist ein Fehler aufgetreten."
1824
 
1825
- #: wp-admin/options-permalink.php:15
1826
- msgid "Permalink Settings"
1827
- msgstr "Einstellungen &rsaquo; Permalinks"
 
1828
 
1829
- #: wp-admin/options-permalink.php:30
1830
- msgid "If you pick an option other than Default, your general URL path with structure tags, terms surrounded by <code>%</code>, will also appear in the custom structure field and your path can be further modified there."
1831
- msgstr "Falls du eine andere Struktur als <em>Standard</em> auswählst, wird diese direkt ins Feld <em>Benutzerdefinierte Struktur</em> übertragen, damit du sie auf Wunsch noch weiter anpassen kannst."
1832
 
1833
- #: wp-admin/options-permalink.php:31
1834
- msgid "When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes <code>%category%</code> or <code>%tag%</code>."
1835
- msgstr "Wenn du <code>category</code> oder <code>tag</code> verwendest, dann beachte folgendes: Wenn einem Artikel mehrere Kategorien oder Schlagwörter zugewiesen wurden, so erscheint nur eine im Permalink – die Kategorie oder das Schlagwort mit der niedrigsten ID."
 
1836
 
1837
- #: wp-admin/options-permalink.php:38
1838
- msgid "The Optional fields let you customize the &#8220;category&#8221; and &#8220;tag&#8221; base names that will appear in archive URLs. For example, the page listing all posts in the &#8220;Uncategorized&#8221; category could be <code>/topics/uncategorized</code> instead of <code>/category/uncategorized</code>."
1839
- msgstr "Bei Bedarf kannst du individuelle Basen für deine Kategorie- und Schlagwörter-URLs eingeben. Wenn du zum Beispiel <code>topics</code> als deine Kategorie-Basis eingibst, erhältst du Kategorie-Links à la <code>http://example.org/topics/uncategorized/</code>. Wenn du nichts eingibst, werden die Standardwerte benutzt."
1840
 
1841
- #: wp-admin/options-permalink.php:44
1842
- msgid "<a href=\"http://codex.wordpress.org/Settings_Permalinks_Screen\" target=\"_blank\">Documentation on Permalinks Settings</a>"
1843
- msgstr "<a href=\"http://codex.wordpress.org/Settings_Permalinks_Screen\" target=\"_blank\">Documentation on Permalinks Settings (engl.)</a>"
1844
 
1845
- #: wp-admin/options-permalink.php:45
1846
- msgid "<a href=\"http://codex.wordpress.org/Using_Permalinks\" target=\"_blank\">Documentation on Using Permalinks</a>"
1847
- msgstr "<a href=\"http://codex.wordpress.org/Using_Permalinks\" target=\"_blank\">Documentation on Using Permalinks (engl.)</a>"
1848
 
1849
- #: wp-admin/options-permalink.php:151
1850
- msgid "You should update your web.config now"
1851
- msgstr "Du solltest jetzt deine web.config aktualisieren."
1852
 
1853
- #: wp-admin/options-permalink.php:153
1854
- msgid "Permalink structure updated. Remove write access on web.config file now!"
1855
- msgstr "Die Permalink-Struktur wurde aktualisiert. Entferne jetzt die Schreibrechte für web.config!"
1856
 
1857
- #: wp-admin/options-permalink.php:155
1858
- msgid "Permalink structure updated"
1859
- msgstr "Permalink-Struktur aktualisiert"
1860
 
1861
- #: wp-admin/options-permalink.php:158
1862
- msgid "You should update your .htaccess now."
1863
- msgstr "Du solltest jetzt deine .htaccess aktualisieren."
1864
 
1865
- #: wp-admin/options-permalink.php:160 wp-admin/options-permalink.php:163
1866
- msgid "Permalink structure updated."
1867
- msgstr "Permalink-Struktur aktualisiert."
1868
 
1869
- #: wp-admin/options-permalink.php:176
1870
- msgid "By default WordPress uses web <abbr title=\"Universal Resource Locator\">URL</abbr>s which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A <a href=\"http://codex.wordpress.org/Using_Permalinks\">number of tags are available</a>, and here are some examples to get you started."
1871
- msgstr "In den Grundeinstellungen von WordPress werden <abbr title=\"Universal Resource Locator\">URL</abbr>s verwendet, die eine Menge Fragezeichen und Zahlen beinhalten. Du hast aber auch die Möglichkeit, die URL-Struktur für Permalinks und Archive anzupassen. Dieses kann die Benutzerfreundlichkeit und Ästhetik deiner Links heraufsetzen. Eine <a href=\"http://codex.wordpress.org/Using_Permalinks\">Vielzahl von Tags ist erhältlich</a>, und hier findest du für den Anfang ein paar Beispiele."
1872
 
1873
- #: wp-admin/options-permalink.php:189 wp-admin/options-permalink.php:209
1874
- msgctxt "sample permalink base"
1875
- msgid "archives"
1876
- msgstr "archive"
1877
-
1878
- #: wp-admin/options-permalink.php:200
1879
- msgid "Day and name"
1880
- msgstr "Tag und Name"
1881
-
1882
- #: wp-admin/options-permalink.php:201 wp-admin/options-permalink.php:205
1883
- #: wp-admin/options-permalink.php:213
1884
- msgctxt "sample permalink structure"
1885
- msgid "sample-post"
1886
- msgstr "Beispielartikel"
1887
-
1888
- #: wp-admin/options-permalink.php:204
1889
- msgid "Month and name"
1890
- msgstr "Monat und Name"
1891
-
1892
- #: wp-admin/options-permalink.php:208
1893
- msgid "Numeric"
1894
- msgstr "Numerisch"
1895
-
1896
- #: wp-admin/options-permalink.php:212
1897
- msgid "Post name"
1898
- msgstr "Artikelname"
1899
-
1900
- #: wp-admin/options-permalink.php:218
1901
- msgid "Custom Structure"
1902
- msgstr "Benutzerdefinierte Struktur"
1903
-
1904
- #: wp-admin/options-permalink.php:228
1905
- msgid "Optional"
1906
- msgstr "Optional"
1907
-
1908
- #: wp-admin/options-permalink.php:230
1909
- msgid "If you like, you may enter custom structures for your category and tag <abbr title=\"Universal Resource Locator\">URL</abbr>s here. For example, using <kbd>topics</kbd> as your category base would make your category links like <code>http://example.org/topics/uncategorized/</code>. If you leave these blank the defaults will be used."
1910
- msgstr "Bei Bedarf gib individuelle Basen für deine Kategorie- und Tag-<abbr title=\"Universal Resource Locator\">URL</abbr>s hier ein. Wenn du zum Beispiel <code>topics</code> als deine Kategorie-Basis eingibst, erhältst du Kategorie-Links &agrave; la <code>http://example.org/topics/uncategorized/</code>. Wenn du nichts eingibst, werden die Standardwerte benutzt."
1911
-
1912
- #: wp-admin/options-permalink.php:232
1913
- msgid "If you like, you may enter custom structures for your category and tag <abbr title=\"Universal Resource Locator\">URL</abbr>s here. For example, using <code>topics</code> as your category base would make your category links like <code>http://example.org/index.php/topics/uncategorized/</code>. If you leave these blank the defaults will be used."
1914
- msgstr "Bei Bedarf gib individuelle Basen für deine Kategorie- und Tag-<abbr title=\"Universal Resource Locator\">URL</abbr>s hier ein. Wenn du zum Beispiel <code>topics</code> als deine Kategorie-Basis eingibst, erhältst du Kategorie-Links &agrave; la <code>http://example.org/index.php/topics/uncategorized/</code>. Wenn du nichts eingibst, werden die Standardwerte benutzt."
1915
-
1916
- #: wp-admin/options-permalink.php:237
1917
- msgid "Category base"
1918
- msgstr "Kategorie-Basis"
1919
-
1920
- #: wp-admin/options-permalink.php:241
1921
- msgid "Tag base"
1922
- msgstr "Schlagwort-Basis"
1923
-
1924
- #: wp-admin/options-permalink.php:255
1925
- msgid "If your <code>web.config</code> file were <a href=\"http://codex.wordpress.org/Changing_File_Permissions\">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your <code>web.config</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this rule inside of the <code>/&lt;configuration&gt;/&lt;system.webServer&gt;/&lt;rewrite&gt;/&lt;rules&gt;</code> element in <code>web.config</code> file."
1926
- msgstr "Wenn deine <code>web.config</code>-Datei <a href=\"http://codex.wordpress.org/Changing_File_Permissions\">beschreibbar</a> wäre, könnte WordPress sie automatisch bearbeiten. Das ist nicht der Fall. Darum findest du hier die mod_rewrite-Regeln, die du manuell in deine <code>web.config</code>-Datei einfügen musst. Klick in das Feld und verwende <kbd>Strg+A</kbd>, um alles auszuwählen. Speichere diese Regel dann im <code>/&lt;configuration&gt;/&lt;system.webServer&gt;/&lt;rewrite&gt;/&lt;rules&gt;</code>-Element deiner <code>web.config</code>-Datei."
1927
-
1928
- #: wp-admin/options-permalink.php:260
1929
- msgid "If you temporarily make your <code>web.config</code> file writable for us to generate rewrite rules automatically, do not forget to revert the permissions after rule has been saved."
1930
- msgstr "Wenn du deine <code>web.config</code> zeitweise beschreibbar machst, um die rewrite-Regeln automatisch schreiben zu lassen, vergiss nicht die Berechtigungen, nachdem die Regeln gespeichert worden sind, zurückzusetzen."
1931
-
1932
- #: wp-admin/options-permalink.php:262
1933
- msgid "If the root directory of your site were <a href=\"http://codex.wordpress.org/Changing_File_Permissions\">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your <code>web.config</code> file. Create a new file, called <code>web.config</code> in the root directory of your site. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this code into the <code>web.config</code> file."
1934
- msgstr "Wenn das Hauptverzeichnis deiner Seite <a href=\"http://codex.wordpress.org/Changing_File_Permissions\">beschreibbar</a> wäre, könnten wir das automatisch machen. So musst du die <em>URL rewrite rules</em> manuell einfügen. Lege in deinem Hauptverzeichnis eine neue Datei an und nenne sie <code>web.config</code>. Kopiere die nachfolgenden Zeilen (<kbd>CTRL + a</kbd>) und füge diese in die <code>web.config</code>-Datei ein."
1935
-
1936
- #: wp-admin/options-permalink.php:267
1937
- msgid "If you temporarily make your site&#8217;s root directory writable for us to generate the <code>web.config</code> file automatically, do not forget to revert the permissions after the file has been created."
1938
- msgstr "Wenn du via FTP das Verzeichnis deines Blogs kurzfristig beschreibbar machst, können wir die Datei <code>web.config</code> automatisch erstellen. Bitte vergiss nicht, die Schreibrechte wieder zurückzusetzen, wenn die Datei erstellt wurde."
1939
-
1940
- #: wp-admin/options-permalink.php:272
1941
- msgid "If your <code>.htaccess</code> file were <a href=\"http://codex.wordpress.org/Changing_File_Permissions\">writable</a>, we could do this automatically, but it isn&#8217;t so these are the mod_rewrite rules you should have in your <code>.htaccess</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all."
1942
- msgstr "Wenn deine <code>.htaccess</code>-Datei <a href=\"http://codex.wordpress.org/Changing_File_Permissions\">beschreibbar</a> wäre, könnte WordPress sie automatisch bearbeiten. Das ist nicht der Fall. Darum findest du hier die mod_rewrite-Regeln, die du manuell in deine <code>.htaccess</code>-Datei einfügen musst. Klick in das Feld und verwende <kbd>Strg+A</kbd>, um alles auszuwählen."
1943
-
1944
- #: wp-admin/user-edit.php:22 wp-admin/user-edit.php:24
1945
- msgid "Invalid user ID."
1946
- msgstr "Ungültige Benutzer-ID."
1947
-
1948
- #: wp-admin/user-edit.php:28
1949
- msgid "Edit User"
1950
- msgstr "Benutzer bearbeiten"
1951
-
1952
- #: wp-admin/user-edit.php:40
1953
- msgid "Your profile contains information about you (your &#8220;account&#8221;) as well as some personal options related to using WordPress."
1954
- msgstr "Dein Profil enthält die Informationen deines Benutzerkontos und ein paar persönliche Einstellungen für die Benutzung von WordPress."
1955
-
1956
- #: wp-admin/user-edit.php:42
1957
- msgid "Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts."
1958
- msgstr "Der Benutzername kann nicht geändert werden, jedoch können die anderen Felder ausgefüllt und anschließend ausgewählt werden, welcher Name (Benutzername, Realname, Spitzname) öffentlich – zum Beispiel in Artikeln – angezeigt werden soll."
1959
-
1960
- #: wp-admin/user-edit.php:43
1961
- msgid "Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so."
1962
- msgstr "Obligatorisch auszufüllende Eingabefelder werden als solche markiert. Die Eingaben unter \"Kontaktinfo\" oder \"Über dich\" werden nur angezeigt, falls das verwendete Theme entsprechend eingerichtet ist. Für gewöhnlich ist das nicht der Fall."
1963
-
1964
- #: wp-admin/user-edit.php:44
1965
- msgid "Remember to click the Update Profile button when you are finished."
1966
- msgstr "Vergiss nicht, zum Schluss auf die Schaltfläche \"Profil aktualisieren\" zu klicken."
1967
-
1968
- #: wp-admin/user-edit.php:54
1969
- msgid "<a href=\"http://codex.wordpress.org/Users_Your_Profile_Screen\" target=\"_blank\">Documentation on User Profiles</a>"
1970
- msgstr "<a href=\"http://codex.wordpress.org/Users_Your_Profile_Screen\" target=\"_blank\">Documentation on User Profiles (engl.)</a>"
1971
-
1972
- #: wp-admin/user-edit.php:72
1973
- msgid "Use https"
1974
- msgstr "Benutze https"
1975
-
1976
- #: wp-admin/user-edit.php:73
1977
- msgid "Always use https when visiting the admin"
1978
- msgstr "Nutze immer https, wenn du den Adminbereich aufrufst"
1979
-
1980
- #: wp-admin/user-edit.php:81 wp-admin/user-edit.php:108
1981
- #: wp-admin/user-edit.php:155
1982
- msgid "You do not have permission to edit this user."
1983
- msgstr "Du verfügst nicht über ausreichende Rechte, um diesen Benutzer zu bearbeiten."
1984
 
1985
- #: wp-admin/user-edit.php:161
1986
- msgid "Important:"
1987
- msgstr "Wichtig:"
1988
 
1989
- #: wp-admin/user-edit.php:161
1990
- msgid "This user has super admin privileges."
1991
- msgstr "Dieser Benutzer hat Superadministrator-Privilegien."
1992
 
1993
- #: wp-admin/user-edit.php:168
1994
- msgid "User updated."
1995
- msgstr "Benutzer aktualisiert."
1996
 
1997
- #: wp-admin/user-edit.php:171
1998
- msgid "&larr; Back to Users"
1999
- msgstr "&larr; Zurück zu Benutzer"
2000
 
2001
- #: wp-admin/user-edit.php:203
2002
- msgid "Personal Options"
2003
- msgstr "Persönliche Optionen"
2004
 
2005
- #: wp-admin/user-edit.php:208
2006
- msgid "Visual Editor"
2007
- msgstr "Visueller Editor"
2008
 
2009
- #: wp-admin/user-edit.php:209
2010
- msgid "Disable the visual editor when writing"
2011
- msgstr "Beim Schreiben den WYSIWYG-Editor <u>nicht</u> benutzen"
2012
 
2013
- #: wp-admin/user-edit.php:222
2014
- msgid "Enable keyboard shortcuts for comment moderation."
2015
- msgstr "Tastaturkürzel für die Kommentarmoderation aktivieren."
2016
 
2017
- #: wp-admin/user-edit.php:222
2018
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
2019
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information (engl.)</a>"
2020
 
2021
- #: wp-admin/user-edit.php:246
2022
- msgid "Usernames cannot be changed."
2023
- msgstr "Benutzernamen können nicht geändert werden."
2024
 
2025
- #: wp-admin/user-edit.php:250
2026
- msgid "Role:"
2027
- msgstr "Rolle:"
2028
 
2029
- #: wp-admin/user-edit.php:263 wp-admin/user-edit.php:265
2030
- msgid "&mdash; No role for this site &mdash;"
2031
- msgstr "&mdash; Keine Benutzerrolle in diesem Blog &mdash;"
2032
 
2033
- #: wp-admin/user-edit.php:271
2034
- msgid "Super Admin"
2035
- msgstr "Blog-Netzwerk"
2036
 
2037
- #: wp-admin/user-edit.php:274
2038
- msgid "Grant this user super admin privileges for the Network."
2039
- msgstr "Mache diesen Nutzer zum Blogübergreifenden Administrator für das gesamte Blog-Netzwerk."
2040
 
2041
- #: wp-admin/user-edit.php:276
2042
- msgid "Super admin privileges cannot be removed because this user has the network admin email."
2043
- msgstr "Diesem Benutzer können nicht die Rechte als Blogübergreifenden Administrator entzogen werden, da dieser Benutzer als E-Mail-Adresse die des Blognetzwerk-Admins hat."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2044
 
2045
- #: wp-admin/user-edit.php:292
2046
- msgid "Nickname"
2047
- msgstr "Spitzname"
 
 
 
 
2048
 
2049
- #: wp-admin/user-edit.php:297
2050
- msgid "Display name publicly as"
2051
- msgstr "Öffentlicher Name"
 
2052
 
2053
- #: wp-admin/user-edit.php:333
2054
- msgid "Contact Info"
2055
- msgstr "Kontaktinfo"
2056
 
2057
- #: wp-admin/user-edit.php:343
2058
- msgid "There is a pending change of your e-mail to <code>%1$s</code>. <a href=\"%2$s\">Cancel</a>"
2059
- msgstr "Es gibt eine ausstehende Änderung deiner E-Mail-Adresse zu <code>%1$s</code>. <a href=\"%2$s\">Abbrechen</a>"
2060
 
2061
- #: wp-admin/user-edit.php:366
2062
- msgid "About Yourself"
2063
- msgstr "Über Dich"
2064
 
2065
- #: wp-admin/user-edit.php:366
2066
- msgid "About the user"
2067
- msgstr "Über den Benutzer"
2068
 
2069
- #: wp-admin/user-edit.php:370
2070
- msgid "Biographical Info"
2071
- msgstr "Biographische Angaben"
2072
 
2073
- #: wp-admin/user-edit.php:372
2074
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2075
- msgstr "Sag der Welt, wer du bist. Das, was du hier hinein schreibst, wird dann später für alle anderen Benutzer dieses Blogs sichtbar sein."
2076
 
2077
- #: wp-admin/user-edit.php:380
2078
- msgid "New Password"
2079
- msgstr "Neues Passwort"
2080
 
2081
- #: wp-admin/user-edit.php:381
2082
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
2083
- msgstr "Wenn du das Passwort ändern möchtest, trage hier ein Neues ein. Ansonsten kannst du die Felder leer lassen."
2084
 
2085
- #: wp-admin/user-edit.php:382
2086
- msgid "Type your new password again."
2087
- msgstr "Gib dein neues Passwort nochmals ein."
2088
 
2089
- #: wp-admin/user-edit.php:401
2090
- msgid "Additional Capabilities"
2091
- msgstr "Zusätzliche Befugnisse"
2092
 
2093
- #: wp-admin/user-edit.php:420
2094
- msgid "Update Profile"
2095
- msgstr "Profil aktualisieren"
2096
 
2097
- #: wp-admin/user-edit.php:420
2098
- msgid "Update User"
2099
- msgstr "Benutzer aktualisieren"
2100
 
2101
- #: wp-admin/widgets.php:42
2102
- msgid "Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them."
2103
- msgstr "Widgets sind Module, die bestimmte Funktionen bieten und Ausgaben erzeugen und einfach per Drag & Drop (Klicken und Ziehen) auf vorgesehene Flächen im Theme platziert werden können. Viele Themes bieten mehrere Sidebars (Flächen für Navigation etc.) oder Widgetbereiche. Standardmäßig ist nur der erste Widgetbereich aufgeklappt. Nutze einfach die Pfeile im Titel der anderen Widgetflächen, um sie aufzuklappen, die enthaltenen Widgets zu sehen und neue hinzuzufügen."
2104
 
2105
- #: wp-admin/widgets.php:43
2106
- msgid "The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget."
2107
- msgstr "Im Bereich <em>Verfügbare Widgets</em> siehst du alle Widgets, die du benutzen kannst, in dem du sie einfach auf eine Sidebar bzw. Widgetbereich ziehst. Mit einem Klick auf den Pfeil im Widgettitel werden alle Optionen des Widgets angezeigt. Vergiss nicht, nach den Änderungen eines Widgets auf <em>Speichern</em> zu klicken. Mit einem Klick auf <em>Löschen</em> wird das Widget und seine Einstellungen entfernt."
2108
 
2109
- #: wp-admin/widgets.php:49
2110
- msgid "If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas."
2111
- msgstr "Falls du ein Widget nur temporär nicht mehr benutzen möchtest, dann ziehe es in den Bereich <em>Inaktive Widgets</em>. Die Einstellungen des Widgets bleiben dann erhalten."
2112
 
2113
- #: wp-admin/widgets.php:50
2114
- msgid "Widgets may be used multiple times. You can give each widget a title, to display on your site, but it&#8217;s not required."
2115
- msgstr "Widgets können auch mehrfach verwendet werden. Du kannst Widgets auch Titel geben, die dann auf der Website angezeigt werden."
2116
 
2117
- #: wp-admin/widgets.php:51
2118
- msgid "Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop."
2119
- msgstr "Du kannst über <em>Optionen einblenden</em> auch den Zugänglichkeitsmodus aktivieren, wenn du lieber Schaltflächen zum Hinzufügen und Entfernen, anstatt Drag&Drop verwenden möchtest."
2120
 
2121
- #: wp-admin/widgets.php:57
2122
- msgid "Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area."
2123
- msgstr "Viele Themes zeigen bereits von Haus aus bestimmte Widgetähnliche Navigationselemente in den Navigationsbereichen (Sidebar). Diese werden oft deaktivert, sobald du eigene Widgets hinzufügst. Du kannst jedoch einfach die ursprünglich benutzten Widgets erneut hinzufügen."
2124
 
2125
- #: wp-admin/widgets.php:63
2126
- msgid "<a href=\"http://codex.wordpress.org/Appearance_Widgets_Screen\" target=\"_blank\">Documentation on Widgets</a>"
2127
- msgstr "<a href=\"http://codex.wordpress.org/Appearance_Widgets_Screen\" target=\"_blank\">Documentation on Widgets (engl.)</a>"
2128
 
2129
- #: wp-admin/widgets.php:116
2130
- msgid "Inactive Widgets"
2131
- msgstr "Inaktive Widgets"
2132
 
2133
- #: wp-admin/widgets.php:76
2134
- msgid "No Sidebars Defined"
2135
- msgstr "Es wurde keine Sidebar definiert"
2136
 
2137
- #: wp-admin/widgets.php:78
2138
- msgid "The theme you are currently using isn&#8217;t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please <a href=\"http://codex.wordpress.org/Widgetizing_Themes\">follow these instructions</a>."
2139
- msgstr "Dein aktuell genutztes Theme unterstützt keine Widgets. Das bedeutet, dass es keine Sidebar gibt, die du ändern könntest. Was du machen musst, damit dein Theme Widgets unterstützt, kannst du <a href=\"http://codex.wordpress.org/Widgetizing_Themes\">hier nachlesen</a>."
2140
 
2141
- #: wp-admin/widgets.php:240
2142
- msgid "Widget %s"
2143
- msgstr "Widget %s"
2144
 
2145
- #: wp-admin/widgets.php:251
2146
- msgid "Select both the sidebar for this widget and the position of the widget in that sidebar."
2147
- msgstr "Wähle die Sidebar für das Widget und seine Position darin."
2148
 
2149
- #: wp-admin/widgets.php:291
2150
- msgid "Save Widget"
2151
- msgstr "Widget speichern"
2152
 
2153
- #: wp-admin/widgets.php:307
2154
- msgid "Changes saved."
2155
- msgstr "Änderungen gespeichert."
2156
 
2157
- #: wp-admin/widgets.php:311
2158
- msgid "Error while saving."
2159
- msgstr "Fehler beim Speichern."
2160
 
2161
- #: wp-admin/widgets.php:312
2162
- msgid "Error in displaying the widget settings form."
2163
- msgstr "Fehler beim Anzeigen des Einstellungsformular für Widgets."
2164
 
2165
- #: wp-admin/widgets.php:335
2166
- msgid "Available Widgets"
2167
- msgstr "Verfügbare Widgets"
2168
 
2169
- #: wp-admin/widgets.php:335
2170
- msgctxt "removing-widget"
2171
- msgid "Deactivate"
2172
- msgstr "Deaktivieren"
2173
 
2174
- #: wp-admin/widgets.php:337
2175
- msgid "Drag widgets from here to a sidebar on the right to activate them. Drag widgets back here to deactivate them and delete their settings."
2176
- msgstr "Ziehe Widgets, die du aktivieren möchtest, von hier in die Sidebar rechts. Ziehe Widgets hierher, um sie zu deaktivieren und ihre Einstellungen zu löschen."
2177
 
2178
- #: wp-admin/credits.php:72
2179
- msgid "WordPress is created by a <a href=\"%1$s\">worldwide team</a> of passionate individuals. <a href=\"%2$s\">Get involved in WordPress</a>."
2180
- msgstr "WordPress wird von einem <a href=\"%1$s\">weltumspannenden Team</a> passionierter Leute entwickelt. <a href=\"%2$s\">Bringe dich in WordPress ein</a>."
2181
 
2182
- #: wp-admin/credits.php:75 wp-admin/credits.php:132
2183
- msgid "http://codex.wordpress.org/Contributing_to_WordPress"
2184
- msgstr "http://codex.wordpress.org/Contributing_to_WordPress"
2185
 
2186
- #: wp-admin/credits.php:88
2187
- msgctxt "Translate this to be the equivalent of English Translators in your language for the credits page Translators section"
2188
- msgid "Translators"
2189
- msgstr "Übersetzer ins Deutsche: Olaf Baumann, Benjamin Bedekovic, Markus Gräbner, Thomas Gutzmer, Julian Jöris, Olaf A. Schmitz, sowie:"
2190
 
2191
- #: wp-admin/credits.php:130
2192
- msgid "Want to see your name in lights on this page? <a href=\"%s\">Get involved in WordPress</a>."
2193
- msgstr "Wenn du willst, dass auch dein Name auf dieser Seite erscheint, dann <a href=\"%s\">bring dich ein bei WordPress</a>."
2194
-
2195
- #: wp-admin/credits.php:142
2196
- msgid "Project Leaders"
2197
- msgstr "Projektleiter"
2198
-
2199
- #: wp-admin/credits.php:143
2200
- msgid "Extended Core Team"
2201
- msgstr "Erweitertes Entwickler-Team"
2202
-
2203
- #: wp-admin/credits.php:145
2204
- msgid "Recent Rockstars"
2205
- msgstr "Neue Talente"
2206
-
2207
- #: wp-admin/credits.php:146
2208
- msgid "Core Contributors to WordPress %s"
2209
- msgstr "Mitwirkende am Code von WordPress %s"
2210
-
2211
- #: wp-admin/credits.php:148
2212
- msgid "Cofounder, Project Lead"
2213
- msgstr "Mitgründer, Projektleitung"
2214
-
2215
- #: wp-admin/credits.php:149
2216
- msgid "Lead Developer"
2217
- msgstr "Leitender Entwickler"
2218
-
2219
- #: wp-admin/credits.php:150
2220
- msgid "User Experience Lead"
2221
- msgstr "Leitung Nutzungserlebnis"
2222
-
2223
- #: wp-admin/credits.php:152
2224
- msgid "Core Committer"
2225
- msgstr "Code-Entwickler"
2226
-
2227
- #: wp-admin/credits.php:153
2228
- msgid "Guest Committer"
2229
- msgstr "Gastentwickler"
2230
-
2231
- #: wp-admin/credits.php:154
2232
- msgid "Developer"
2233
- msgstr "Entwickler"
2234
-
2235
- #: wp-admin/credits.php:155
2236
- msgid "Designer"
2237
- msgstr "Designer"
2238
-
2239
- #: wp-admin/credits.php:157
2240
- msgid "Internationalization"
2241
- msgstr "Internationalisierung"
2242
-
2243
- #: wp-admin/credits.php:158
2244
- msgid "External Libraries"
2245
- msgstr "Externe Bibliotheken"
2246
-
2247
- #: wp-admin/credits.php:159
2248
- msgid "Icon Design"
2249
- msgstr "Piktogramm-Design"
2250
-
2251
- #: wp-admin/admin-header.php:27
2252
- msgid "Global Dashboard"
2253
- msgstr "Globales Dashboard"
2254
-
2255
- #: wp-admin/admin-header.php:32
2256
- msgid "%1$s &#8212; WordPress"
2257
- msgstr "%1$s &#8212; WordPress"
2258
-
2259
- #: wp-admin/admin-header.php:34
2260
- msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
2261
- msgstr "%1$s &lsaquo; %2$s &#8212; WordPress"
2262
-
2263
- #: wp-admin/plugins.php:20
2264
- msgid "You do not have sufficient permissions to manage plugins for this site."
2265
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Plugins zu aktivieren."
2266
-
2267
- #: wp-admin/plugins.php:41 wp-admin/plugins.php:71 wp-admin/plugins.php:131
2268
- msgid "You do not have sufficient permissions to activate plugins for this site."
2269
- msgstr "Du hast nicht ausreichend Rechte, um das Plugin für diesen Blog zu aktivieren."
2270
-
2271
- #: wp-admin/plugins.php:154 wp-admin/plugins.php:167
2272
- msgid "You do not have sufficient permissions to deactivate plugins for this site."
2273
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Plugins zu deaktivieren."
2274
-
2275
- #: wp-admin/plugins.php:190
2276
- msgid "You do not have sufficient permissions to delete plugins for this site."
2277
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Plugins zu löschen."
2278
-
2279
- #: wp-admin/plugins.php:247
2280
- msgid "Delete Plugin"
2281
- msgid_plural "Delete Plugins"
2282
- msgstr[0] "Plugin löschen"
2283
- msgstr[1] "Plugins löschen"
2284
-
2285
- #: wp-admin/plugins.php:250
2286
- msgid "This plugin may be active on other sites in the network."
2287
- msgid_plural "These plugins may be active on other sites in the network."
2288
- msgstr[0] "Dieses Plugin könnte in anderen Blogs dieses Blog-Netzwerks aktiv sein."
2289
- msgstr[1] "Diese Plugins könnten in anderen Blogs dieses Blog-Netzwerks aktiv sein."
2290
-
2291
- #: wp-admin/plugins.php:252
2292
- msgid "You are about to remove the following plugin:"
2293
- msgid_plural "You are about to remove the following plugins:"
2294
- msgstr[0] "Du bist dabei das folgende Plugin zu entfernen:"
2295
- msgstr[1] "Du bist dabei die folgenden Plugins zu entfernen:"
2296
-
2297
- #: wp-admin/plugins.php:259
2298
- msgid "<strong>%1$s</strong> by <em>%2$s</em> (will also <strong>delete its data</strong>)"
2299
- msgstr "<strong>%1$s</strong> von <em>%2$s</em> (es werden <strong>alle Daten des Plugins gelöscht</strong>)"
2300
-
2301
- #: wp-admin/plugins.php:263
2302
- msgid "<strong>%1$s</strong> by <em>%2$s</em>"
2303
- msgstr "<strong>%1$s</strong> von <em>%2$s</em>"
2304
-
2305
- #: wp-admin/plugins.php:270
2306
- msgid "Are you sure you wish to delete these files and data?"
2307
- msgstr "Bist du sicher, dass du diese Dateien und Daten löschen möchtest?"
2308
-
2309
- #: wp-admin/plugins.php:272
2310
- msgid "Are you sure you wish to delete these files?"
2311
- msgstr "Bist du sicher, dass du diese Dateien löschen möchtest?"
2312
-
2313
- #: wp-admin/plugins.php:282
2314
- msgid "Yes, Delete these files and data"
2315
- msgstr "Ja, lösche diese Dateien und Daten"
2316
-
2317
- #: wp-admin/plugins.php:282
2318
- msgid "Yes, Delete these files"
2319
- msgstr "Ja, diese Dateien löschen"
2320
-
2321
- #: wp-admin/plugins.php:285
2322
- msgid "No, Return me to the plugin list"
2323
- msgstr "Nein. Zurück zur Pluginliste"
2324
-
2325
- #: wp-admin/plugins.php:288
2326
- msgid "Click to view entire list of files which will be deleted"
2327
- msgstr "Klicke, um die ganze Liste der zu löschenden Dateien zusehen"
2328
-
2329
- #: wp-admin/plugins.php:319
2330
- msgctxt "plugins per page (screen options)"
2331
- msgid "Plugins"
2332
- msgstr "Plugins"
2333
-
2334
- #: wp-admin/plugins.php:325
2335
- msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here."
2336
- msgstr "Plugins vergrößern und erweitern den Funktionsumfang von WordPress. Sobald ein Plugin installiert ist, kannst du es auf dieser Seite aktivieren oder auch wieder deaktivieren."
2337
-
2338
- #: wp-admin/plugins.php:326
2339
- msgid "You can find additional plugins for your site by using the <a href=\"%1$s\">Plugin Browser/Installer</a> functionality or by browsing the <a href=\"%2$s\" target=\"_blank\">WordPress Plugin Directory</a> directly and installing new plugins manually. To manually install a plugin you generally just need to upload the plugin file into your <code>/wp-content/plugins</code> directory. Once a plugin has been installed, you can activate it here."
2340
- msgstr "Du kannst weitere Plugins suchen und installieren, indem du auf <a href=\"%1$s\">Plugins installieren</a> klickst oder direkt im <a href=\"%2$s\" target=\"_blank\">WordPress.org Plugin-Verzeichnis</a> suchst. Falls du ein Plugin manuell installieren willst, musst du es zuerst entpacken und dann per FTP in das Verzeichnis <code>/wp-content/plugins/</code> laden. Anschließend kannst du es auf dieser Seite aktivieren."
2341
-
2342
- #: wp-admin/plugins.php:332
2343
- msgid "Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin&#8217;s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue."
2344
  msgstr ""
2345
- "Die meisten Plugins arbeiten hervorragend mit WordPress und anderen Plugins zusammen. Es kann jedoch passieren, dass ein Plugin Probleme unterschiedlicher Ausprägung verursachen kann. Wenn du sowas beobachtest, solltest du das zuletzt aktivierte Plugin deaktivieren. Manchmal ist es auch ratsam, testweise alle Plugins zu deaktivieren und schrittweise wieder zu reaktivieren und genau zu beobachten, ob die Probleme wieder auftreten.\n"
2346
- "Falls ein Pluginfehler deine Website so sehr beeinflusst, dass du gar keine Möglichkeit mehr hast, es auf normalem Wege zu deaktivieren, so kannst du es einfach über deinen FTP-Zugang löschen. Deine Plugins liegen im Verzeichnis <code>/wp-content/plugins/</code>."
2347
-
2348
- #: wp-admin/plugins.php:333
2349
- msgid "If something goes wrong with a plugin and you can&#8217;t use WordPress, delete or rename that file in the <code>%s</code> directory and it will be automatically deactivated."
2350
- msgstr "Wenn etwas mit einem Plugin falsch läuft und du WordPress nicht mehr einwandfrei benutzen kannst, dann benenne das Plugin im Verzeichnis <code>%s</code> um oder lösche es. Dadurch wird es automatisch deaktiviert."
2351
-
2352
- #: wp-admin/plugins.php:338
2353
- msgid "<a href=\"http://codex.wordpress.org/Managing_Plugins#Plugin_Management\" target=\"_blank\">Documentation on Managing Plugins</a>"
2354
- msgstr "<a href=\"http://codex.wordpress.org/Managing_Plugins#Plugin_Management\" target=\"_blank\">Documentation on Managing Plugins (engl.)</a>"
2355
-
2356
- #: wp-admin/plugins.php:350
2357
- msgid "The plugin <code>%s</code> has been <strong>deactivated</strong> due to an error: %s"
2358
- msgstr "Das Plugin <code>%s</code> wurde in Folge eines Fehlers <strong>deaktiviert</strong>: %s"
2359
-
2360
- #: wp-admin/plugins.php:356
2361
- msgid "You cannot delete a plugin while it is active on the main site."
2362
- msgstr "Du kannst ein Plugin nicht löschen, so lang es noch im Hauptblog aktiv ist."
2363
-
2364
- #: wp-admin/plugins.php:358
2365
- msgid "The plugin generated %d characters of <strong>unexpected output</strong> during activation. If you notice &#8220;headers already sent&#8221; messages, problems with syndication feeds or other issues, try deactivating or removing this plugin."
2366
- msgstr "Das Plugin hat <strong>unerwartet</strong> %d Zeichen während der Aktivierung erzeugt. Falls du Meldungen &#8220;headers already sent&#8221; siehst oder dein Feed nicht funktioniert, solltest du das Plugin deaktivieren oder löschen."
2367
-
2368
- #: wp-admin/plugins.php:360
2369
- msgid "Plugin could not be activated because it triggered a <strong>fatal error</strong>."
2370
- msgstr "Das Plugin kann nicht aktiviert werden, da es einen <strong>fatalen Fehler</strong> erzeugt."
2371
-
2372
- #: wp-admin/plugins.php:375
2373
- msgid "Plugin could not be deleted due to an error: %s"
2374
- msgstr "Das Plugin konnte aufgrund eines Fehlers nicht gelöscht werden: %s"
2375
-
2376
- #: wp-admin/plugins.php:377
2377
- msgid "The selected plugins have been <strong>deleted</strong>."
2378
- msgstr "Die ausgewählten Plugins wurden <strong>gelöscht</strong>."
2379
-
2380
- #: wp-admin/plugins.php:380
2381
- msgid "Plugin <strong>activated</strong>."
2382
- msgstr "Plugin <strong>aktiviert</strong>."
2383
-
2384
- #: wp-admin/plugins.php:382
2385
- msgid "Selected plugins <strong>activated</strong>."
2386
- msgstr "Ausgewählte Plugins wurden <strong>aktiviert</strong>."
2387
-
2388
- #: wp-admin/plugins.php:384
2389
- msgid "Plugin <strong>deactivated</strong>."
2390
- msgstr "Plugin <strong>deaktiviert</strong>."
2391
-
2392
- #: wp-admin/plugins.php:386
2393
- msgid "Selected plugins <strong>deactivated</strong>."
2394
- msgstr "Ausgewählte Plugins wurden <strong>deaktiviert</strong>."
2395
-
2396
- #: wp-admin/plugins.php:388
2397
- msgid "No out of date plugins were selected."
2398
- msgstr "Es wurden keine veralteten Plugins ausgewählt."
2399
 
2400
- #: wp-admin/plugins.php:406
2401
- msgid "Search Installed Plugins"
2402
- msgstr "Installiertes Plugin suchen"
2403
-
2404
- #: wp-admin/edit-tags.php:191
2405
- msgid "You can use categories to define sections of your site and group related posts. The default category is &#8220;Uncategorized&#8221; until you change it in your <a href=\"%s\">writing settings</a>."
2406
- msgstr "Du kannst Artikel gruppieren und ordnen, in dem du Kategorien verwendest. Als Standardkategorie wird <em>Allgemein</em> verwendet, was du aber <a href=\"%s\">ändern kannst</a>."
2407
-
2408
- #: wp-admin/edit-tags.php:200
2409
- msgid "What&#8217;s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index."
2410
  msgstr ""
2411
- "Worin besteht der Unterschied zwischen Schlagwörtern und Kategorien? \n"
2412
- "Kategorien können hierarchisch angeordnet und verschachtelt werden und dienen der generellen und eher groben Einordnung von Artikeln. Schlagwörter werden direkt beim Erstellen des Artikels eingegeben – und nicht bloß ausgewählt – und schlüsseln viel feiner den Inhalt eines Artikels in Stichworten auf. Verglichen mit einem Buch, entsprechen Kategorien dem Inhaltsverzeichnis und Schlagwörter dem Stichwortverzeichnis."
2413
-
2414
- #: wp-admin/edit-tags.php:210
2415
- msgid "When adding a new category on this screen, you&#8217;ll fill in the following fields:"
2416
- msgstr "Wenn du eine neue Kategorie anlegst, musst du folgende Eingabefelder ausfüllen:"
2417
 
2418
- #: wp-admin/edit-tags.php:212
2419
- msgid "When adding a new tag on this screen, you&#8217;ll fill in the following fields:"
2420
- msgstr "Wenn du neue Schlagwörter erstellen willst, musst du folgende Eingaben tätigen:"
2421
-
2422
- #: wp-admin/edit-tags.php:215
2423
- msgid "<strong>Name</strong> - The name is how it appears on your site."
2424
- msgstr "<strong>Name</strong> – Der Name, unter dem das Schlagwort überall angezeigt wird."
2425
 
2426
- #: wp-admin/edit-tags.php:218
2427
- msgid "<strong>Slug</strong> - The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
2428
- msgstr "<strong>Titelform</strong> – Die “Titelform (in URLs)” ist die URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen."
2429
 
2430
- #: wp-admin/edit-tags.php:221
2431
- msgid "<strong>Parent</strong> - Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown."
2432
- msgstr "<strong>Übergeordnet</strong> Kategorien können im Gegensatz zu Schlagwörtern hierarchisch angeordnet werden. Du kannst zum Beispiel eine Kategorie <em>Jazz</em> anlegen, sowie die Kategorien <em>Bebop</em> und <em>Big Band</em>. Da die beiden letzteren Verfeinerungen der Kategorie <em>Jazz</em> darstellen, wählst du für beide die Kategorie <em>Jazz</em> als übergeordnete Kategorie. Wir zwingen dich jedoch nicht, dies zu tun :-)"
 
 
 
2433
 
2434
- #: wp-admin/edit-tags.php:223
2435
- msgid "<strong>Description</strong> - The description is not prominent by default; however, some themes may display it."
2436
- msgstr "<strong>Beschreibung</strong> – Die Beschreibung wird normalerweise nicht angezeigt. In manchen Themes kann das aber eventuell der Fall sein."
 
2437
 
2438
- #: wp-admin/edit-tags.php:225
2439
- msgid "You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table."
2440
- msgstr "Du kannst über <em>Optionen einblenden</em> steuern, wieviele Elemente auf einmal angezeigt werden sollen und welche Eigenschaften du sehen willst."
 
2441
 
2442
- #: wp-admin/edit-tags.php:237
2443
- msgid "<a href=\"http://codex.wordpress.org/Posts_Categories_Screen\" target=\"_blank\">Documentation on Categories</a>"
2444
- msgstr "<a href=\"http://codex.wordpress.org/Posts_Categories_Screen\" target=\"_blank\">Documentation on Categories (engl.)</a>"
2445
 
2446
- #: wp-admin/edit-tags.php:239
2447
- msgid "<a href=\"http://codex.wordpress.org/Links_Link_Categories_Screen\" target=\"_blank\">Documentation on Link Categories</a>"
2448
- msgstr "<a href=\"http://codex.wordpress.org/Links_Link_Categories_Screen\" target=\"_blank\">Documentation on Link Categories (engl.)</a>"
2449
 
2450
- #: wp-admin/edit-tags.php:241
2451
- msgid "<a href=\"http://codex.wordpress.org/Posts_Tags_Screen\" target=\"_blank\">Documentation on Tags</a>"
2452
- msgstr "<a href=\"http://codex.wordpress.org/Posts_Tags_Screen\" target=\"_blank\">Dokumentation über Tags</a>"
 
 
 
 
2453
 
2454
- #: wp-admin/edit-tags.php:255
2455
- msgid "Item added."
2456
- msgstr "Element hinzufügt."
2457
 
2458
- #: wp-admin/edit-tags.php:256
2459
- msgid "Item deleted."
2460
- msgstr "Element wurde gelöscht."
2461
 
2462
- #: wp-admin/edit-tags.php:257
2463
- msgid "Item updated."
2464
- msgstr "Elemente wurden aktualisiert."
2465
 
2466
- #: wp-admin/edit-tags.php:258
2467
- msgid "Item not added."
2468
- msgstr "Element wurde nicht hinzugefügt."
 
 
 
 
2469
 
2470
- #: wp-admin/edit-tags.php:260
2471
- msgid "Items deleted."
2472
- msgstr "Elemente gelöscht."
2473
 
2474
- #: wp-admin/edit-tags.php:301
2475
- msgid "<strong>Note:</strong><br />Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category <strong>%s</strong>."
2476
- msgstr "<strong>Hinweis:</strong><br />Beim Löschen einer Kategorie bleiben die Artikel, die sich darin befanden, erhalten. Die Artikel werden dann automatisch der Kategorie <strong>%s</strong> zugeordnet."
2477
 
2478
- #: wp-admin/edit-tags.php:303
2479
- msgid "Categories can be selectively converted to tags using the <a href=\"%s\">category to tag converter</a>."
2480
- msgstr "Kategorien können mit Hilfe des <a href=\"%s\">Kategorie-in-Schlagwort-Konverters</a> wahlweise in Schlagwörter umgewandelt werden."
2481
 
2482
- #: wp-admin/edit-tags.php:308
2483
- msgid "Tags can be selectively converted to categories using the <a href=\"%s\">tag to category converter</a>"
2484
- msgstr "Ausgewählte Schlagwörter können zu Kategorien umgewandelt werden, in dem du den <a href=\"%s\">Schlagwörter-in-Kategorien-Konverter</a> verwendest."
2485
 
2486
- #: wp-admin/edit-tags.php:360 wp-admin/edit-tag-form.php:40
2487
- msgctxt "Taxonomy Name"
2488
- msgid "Name"
2489
- msgstr "Name"
 
 
 
2490
 
2491
- #: wp-admin/edit-tags.php:362 wp-admin/edit-tag-form.php:42
2492
- msgid "The name is how it appears on your site."
2493
- msgstr "Dieser Name wird dann auf der Website angezeigt."
2494
 
2495
- #: wp-admin/edit-tags.php:366 wp-admin/edit-tag-form.php:46
2496
- msgctxt "Taxonomy Slug"
2497
- msgid "Slug"
2498
- msgstr "Slug"
2499
 
2500
- #: wp-admin/edit-tags.php:368 wp-admin/edit-tag-form.php:48
2501
- msgid "The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
2502
- msgstr "Die &#8220;Titelform (in URLs)&#8221; ist die URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen."
2503
 
2504
- #: wp-admin/edit-tags.php:373 wp-admin/edit-tag-form.php:53
2505
- msgctxt "Taxonomy Parent"
2506
- msgid "Parent"
2507
- msgstr "Übergeordnet"
2508
 
2509
- #: wp-admin/edit-tags.php:376 wp-admin/edit-tag-form.php:57
2510
- msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional."
2511
- msgstr "Kategorien können, im Gegensatz zu Schlagwörtern, hierarchisch angeordnet werden. Du kannst z.Bsp. eine Kategorie Musik anlegen, welche die Unterkategorien Schlager und Jazz enthält."
2512
 
2513
- #: wp-admin/edit-tags.php:381 wp-admin/edit-tag-form.php:63
2514
- msgctxt "Taxonomy Description"
2515
- msgid "Description"
2516
- msgstr "Beschreibung"
2517
 
2518
- #: wp-admin/edit-tags.php:383
2519
- msgid "The description is not prominent by default; however, some themes may show it."
2520
- msgstr "Die Beschreibung wird nicht immer angezeigt. Bei dem ein oder anderen Theme mag sie angezeigt werden."
2521
 
2522
- #: wp-admin/media-upload.php:34
2523
- msgid "You are not allowed to be here"
2524
- msgstr "Du darfst hier nicht sein"
2525
 
2526
- #: wp-admin/media-upload.php:61
2527
- msgid "Upload New Media"
2528
- msgstr "Neue Dateien hochladen"
2529
 
2530
- #: wp-admin/media-upload.php:77
2531
- msgid "<a href=\"http://codex.wordpress.org/Media_Add_New_Screen\" target=\"_blank\">Documentation on Uploading Media Files</a>"
2532
- msgstr "<a href=\"http://codex.wordpress.org/Media_Add_New_Screen\" target=\"_blank\">Documentation on Uploading Media Files (engl.)</a>"
2533
 
2534
- #: wp-admin/edit-form-comment.php:17
2535
- msgid "Editing Comment # %s"
2536
- msgstr "Kommentar Nr. %s bearbeitet"
2537
 
2538
- #: wp-admin/edit-form-comment.php:42
2539
- msgid "View Comment"
2540
- msgstr "Kommentar ansehen"
2541
 
2542
- #: wp-admin/edit-form-comment.php:51
2543
- msgctxt "adjective"
2544
- msgid "Pending"
2545
- msgstr "Offen"
2546
 
2547
- #: wp-admin/edit-form-comment.php:59
2548
- msgid "Submitted on: <b>%1$s</b>"
2549
- msgstr "Eingereicht am: <b>%1$s</b>"
2550
 
2551
- #: wp-admin/edit-form-comment.php:91
2552
- msgid "Name:"
2553
- msgstr "Name:"
2554
 
2555
- #: wp-admin/edit-form-comment.php:98
2556
- msgid "E-mail (%s):"
2557
- msgstr "E-Mail (%s):"
2558
 
2559
- #: wp-admin/edit-form-comment.php:98
2560
- msgid "send e-mail"
2561
- msgstr "E-Mail senden"
2562
 
2563
- #: wp-admin/edit-form-comment.php:100
2564
- msgid "E-mail:"
2565
- msgstr "E-Mail"
2566
 
2567
- #: wp-admin/edit-form-comment.php:109
2568
- msgid "visit site"
2569
- msgstr "Seite ansehen"
2570
 
2571
- #: wp-admin/edit-form-comment.php:110
2572
- msgid "URL (%s):"
2573
- msgstr "URL (%s):"
2574
 
2575
- #: wp-admin/edit-form-comment.php:112
2576
- msgid "URL:"
2577
- msgstr "URL:"
2578
 
2579
- #: wp-admin/edit-tag-form.php:14
2580
- msgid "You did not select an item for editing."
2581
- msgstr "Du hast nichts zum Bearbeiten ausgewählt."
2582
 
2583
- #: wp-admin/edit-tag-form.php:65
2584
- msgid "The description is not prominent by default, however some themes may show it."
2585
- msgstr "Dieses Feld dient der Beschreibung dieser Kategorie. Dieser Text wird normalerweise nicht angezeigt, aber es besteht die Möglichkeit, diese Beschreibung im Theme anzuzeigen."
2586
 
2587
- #: wp-admin/menu.php:83
2588
- msgid "Comments %s"
2589
- msgstr "Kommentare %s"
 
 
2590
 
2591
- #: wp-admin/menu.php:86
2592
- msgid "All Comments"
2593
- msgstr "Alle Kommentare"
2594
 
2595
- #: wp-admin/menu.php:143
2596
- msgctxt "theme editor"
2597
- msgid "Editor"
2598
- msgstr "Editor"
2599
 
2600
- #: wp-admin/menu.php:155
2601
- msgid "Plugins %s"
2602
- msgstr "Plugins %s"
2603
 
2604
- #: wp-admin/menu.php:162
2605
- msgctxt "plugin editor"
2606
- msgid "Editor"
2607
- msgstr "Editor"
2608
 
2609
- #: wp-admin/update.php:24 wp-admin/update.php:50 wp-admin/update.php:69
2610
- msgid "You do not have sufficient permissions to update plugins for this site."
2611
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Plugins zu aktualisieren."
 
 
2612
 
2613
- #: wp-admin/update.php:78
2614
- msgid "Plugin Reactivation"
2615
- msgstr "Pluginreaktivierung"
2616
 
2617
- #: wp-admin/update.php:80
2618
- msgid "Plugin reactivated successfully."
2619
- msgstr "Das Plugin wurde erfolgreich reaktiviert."
2620
 
2621
- #: wp-admin/update.php:83
2622
- msgid "Plugin failed to reactivate due to a fatal error."
2623
- msgstr "Das Plugin konnte aufgrund eines fatalen Fehlers nicht reaktiviert werden."
2624
 
2625
- #: wp-admin/update.php:93 wp-admin/update.php:124
2626
- msgid "You do not have sufficient permissions to install plugins for this site."
2627
- msgstr "Du hast nicht genügend Rechte, um Plugins für diesen Blog zu installieren."
2628
 
2629
- #: wp-admin/update.php:108
2630
- msgid "Installing Plugin: %s"
2631
- msgstr "Installiere Plugin: %s"
2632
 
2633
- #: wp-admin/update.php:130
2634
- msgid "Upload Plugin"
2635
- msgstr "Plugin hochladen"
2636
 
2637
- #: wp-admin/update.php:135
2638
- msgid "Installing Plugin from uploaded file: %s"
2639
- msgstr "Installiere Plugin aus Datei: %s"
2640
 
2641
- #: wp-admin/update.php:151 wp-admin/update.php:171
2642
- msgid "You do not have sufficient permissions to update themes for this site."
2643
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Themes zu aktualisieren."
2644
 
2645
- #: wp-admin/update.php:197 wp-admin/update.php:227
2646
- msgid "You do not have sufficient permissions to install themes for this site."
2647
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Themes zu installieren."
2648
-
2649
- #: wp-admin/update.php:214
2650
- msgid "Installing Theme: %s"
2651
- msgstr "Installiere Theme: %s"
2652
-
2653
- #: wp-admin/update.php:233
2654
- msgid "Upload Theme"
2655
- msgstr "Theme hochladen"
2656
-
2657
- #: wp-admin/update.php:240
2658
- msgid "Installing Theme from uploaded file: %s"
2659
- msgstr "Installiere Theme aus Datei: %s"
2660
-
2661
- #: wp-admin/admin.php:154
2662
- msgid "Invalid plugin page"
2663
- msgstr "Ungültige Pluginseite"
2664
-
2665
- #: wp-admin/admin.php:158
2666
- msgid "Cannot load %s."
2667
- msgstr "%s kann nicht geladen werden."
2668
-
2669
- #: wp-admin/admin.php:179
2670
- msgid "You are not allowed to import."
2671
- msgstr "Du hast nicht die nötigen Rechte, um zu importieren."
2672
-
2673
- #: wp-admin/nav-menus.php:19
2674
- msgid "Your theme does not support navigation menus or widgets."
2675
- msgstr "Das verwendete Theme unterstützt keine Menüs oder Widgets."
2676
-
2677
- #: wp-admin/nav-menus.php:233
2678
- msgid "The menu item has been successfully deleted."
2679
- msgstr "Der Menüpunkt wurde erfolgreich gelöscht."
2680
-
2681
- #: wp-admin/nav-menus.php:252
2682
- msgid "The menu has been successfully deleted."
2683
- msgstr "Das Menü wurde erfolgreich gelöscht."
2684
-
2685
- #: wp-admin/nav-menus.php:292
2686
- msgid "The <strong>%s</strong> menu has been successfully created."
2687
- msgstr "Das Menü <strong>%s</strong> wurde erfolgreich angelegt."
2688
-
2689
- #: wp-admin/nav-menus.php:295 wp-admin/nav-menus.php:305
2690
- msgid "Please enter a valid menu name."
2691
- msgstr "Bitte gib einen gültigen Menünamen an."
2692
-
2693
- #: wp-admin/nav-menus.php:381
2694
- msgid "The <strong>%s</strong> menu has been updated."
2695
- msgstr "Das <strong>%s</strong> Menü wurde aktualisiert."
2696
-
2697
- #: wp-admin/nav-menus.php:460
2698
- msgid "To create a new custom menu, click on the + tab, give the menu a name, and click Create Menu. Next, add menu items from the appropriate boxes. You&#8217;ll be able to edit the information for each menu item, and can drag and drop to put them in order. You can also drag a menu item a little to the right to make it a submenu, to create menus with hierarchy. Drop the item into its new nested placement when the dotted rectangle target shifts over, also a little to the right. Don&#8217;t forget to click Save when you&#8217;re finished."
2699
- msgstr "Um ein neues individuelles Menü zu erstellen, klicke einfach den Registerreiter <strong>+</strong>. Anschließend kannst du dem Menü einen Namen geben und Elemente einfügen und sie in ihrer Reihenfolge verändern. Wenn du ein Element im Menü mit der Maus ein wenig nach rechts ziehst, kannst du hierarchisch angeordnete Menüs mit Untermenüpunkten erstellen. Vergiss nicht, nach allen Änderungen auf <em>Menü speichern</em> zu klicken."
2700
-
2701
- #: wp-admin/nav-menus.php:465
2702
- msgid "<a href=\"http://codex.wordpress.org/Appearance_Menus_Screen\" target=\"_blank\">Documentation on Menus</a>"
2703
- msgstr "<a href=\"http://codex.wordpress.org/Appearance_Menus_Screen\" target=\"_blank\">Documentation on Menus (engl.)</a>"
2704
-
2705
- #: wp-admin/nav-menus.php:502
2706
- msgid "Add New Menu"
2707
- msgstr "Neues Menü hinzufügen"
2708
-
2709
- #: wp-admin/nav-menus.php:527 wp-admin/nav-menus.php:537
2710
- msgid "Add menu"
2711
- msgstr "Menü hinzufügen"
2712
-
2713
- #: wp-admin/nav-menus.php:547
2714
- msgid "Menu Name"
2715
- msgstr "Name des Menüs"
2716
-
2717
- #: wp-admin/nav-menus.php:548
2718
- msgid "Enter menu name here"
2719
- msgstr "Gib hier den Namen des Menüs ein"
2720
-
2721
- #: wp-admin/nav-menus.php:562
2722
- msgid "Automatically add new top-level pages"
2723
- msgstr "Neue Seiten automatisch zum Menü hinzufügen (gilt nicht für untergeordnete Seiten)"
2724
-
2725
- #: wp-admin/nav-menus.php:567
2726
- msgid "Create Menu"
2727
- msgstr "Menü erstellen"
2728
-
2729
- #: wp-admin/nav-menus.php:567 wp-admin/nav-menus.php:606
2730
- msgid "Save Menu"
2731
- msgstr "Menü speichern"
2732
-
2733
- #: wp-admin/nav-menus.php:572
2734
- msgid "Delete Menu"
2735
- msgstr "Menü löschen"
2736
-
2737
- #: wp-admin/nav-menus.php:593
2738
- msgid "To create a custom menu, give it a name above and click Create Menu. Then choose items like pages, categories or custom links from the left column to add to this menu."
2739
- msgstr "Um ein individuelles Menü zu erstellen, gib ihm einen Namen und klicke auf \"Menü erstellen\". Anschließend kannst du aus der linken Spalte Elemente wie Seiten, Kategorien oder eigene Links zum Menü hinzufügen. "
2740
-
2741
- #: wp-admin/nav-menus.php:594
2742
- msgid "After you have added your items, drag and drop to put them in the order you want. You can also click each item to reveal additional configuration options."
2743
- msgstr "Nachdem du Elemente hinzugefügt hast, kannst du sie durch klicken, ziehen und wieder loslassen (Drag&Drop) in deine gewünschte Reihenfolge bringen. Klickst du ein einzelnes Element an, so werden weitere zusätzliche Optionen angezeigt."
2744
-
2745
- #: wp-admin/nav-menus.php:595
2746
- msgid "When you have finished building your custom menu, make sure you click the Save Menu button."
2747
- msgstr "Vergiss nicht, den \"Menü speichern\"-Button anzuklicken, wenn du dein Menü fertig erstellt oder geändert hast."
2748
-
2749
- #: wp-admin/options.php:113
2750
- msgid "<strong>ERROR</strong>: options page not found."
2751
- msgstr "<strong>FEHLER</strong>: Die Einstellungsseite wurde nicht gefunden."
2752
-
2753
- #: wp-admin/options.php:117
2754
- msgid "You do not have sufficient permissions to modify unregistered settings for this site."
2755
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog unregistrierte Einstellungen zu bearbeiten."
2756
-
2757
- #: wp-admin/options.php:140
2758
- msgid "The <code>%1$s</code> setting is unregistered. Unregistered settings are deprecated. See http://codex.wordpress.org/Settings_API"
2759
- msgstr "Die Einstellung <code>%1$s</code> ist nicht in WordPress registriert. Unregistrierte Einstellungen werden offiziell nicht unterstüzt. Details erfährst du unter http://codex.wordpress.org/Settings_API"
2760
-
2761
- #: wp-admin/options.php:173
2762
- msgid "All Settings"
2763
- msgstr "Einstellungen"
2764
-
2765
- #: wp-app.php:288
2766
- msgid "AtomPub services are disabled on this site. An admin user can enable them at %s"
2767
- msgstr "AtomPub-Dienste wurden deaktiviert. Ein Administrator kann sie hier aktivieren: %s"
2768
-
2769
- #: wp-app.php:325 wp-app.php:366
2770
- msgid "Sorry, you do not have the right to access this site."
2771
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesen Blog zuzugreifen."
2772
-
2773
- #: wp-app.php:421
2774
- msgid "Sorry, you do not have the right to edit/publish new posts."
2775
- msgstr "Du verfügst nicht über ausreichende Rechte, um Artikel zu veröffentlichen oder zu bearbeiten."
2776
-
2777
- #: wp-app.php:473
2778
- msgid "Sorry, you do not have the right to access this post."
2779
- msgstr "Du verfügst nicht über ausreichende Rechte, um diesen Artikel zu betrachten."
2780
-
2781
- #: wp-app.php:578
2782
- msgid "Sorry, you do not have permission to upload files."
2783
- msgstr "Du verfügst nicht über ausreichende Rechte, um Dateien hochzuladen."
2784
-
2785
- #: wp-app.php:716 wp-app.php:753 wp-app.php:805
2786
- msgid "Error occurred while accessing post metadata for file location."
2787
- msgstr "Es trat ein Fehler beim Zugriff auf die Metadaten des Artikels auf. Der Speicherort der Datei konnte daher nicht ermittelt werden."
2788
-
2789
- #: wp-mail.php:14
2790
- msgid "This action has been disabled by the administrator."
2791
- msgstr "Diese Aktion wurde vom Administrator deaktiviert."
2792
-
2793
- #: wp-mail.php:29
2794
- msgid "Slow down cowboy, no need to check for new mails so often!"
2795
- msgstr "Ruhe bewahren, es gibt keinen Grund so oft nach neuen Mails zu schauen."
2796
-
2797
- #: wp-mail.php:49
2798
- msgid "There doesn&#8217;t seem to be any new mail."
2799
- msgstr "Da scheint keine neue E-Mail zu sein."
2800
-
2801
- #: wp-mail.php:115
2802
- msgid "Author is %s"
2803
- msgstr "Der Autor ist %s"
2804
-
2805
- #: wp-mail.php:221
2806
- msgid "<strong>Author:</strong> %s"
2807
- msgstr "<strong>Autor:</strong> %s"
2808
-
2809
- #: wp-mail.php:222
2810
- msgid "<strong>Posted title:</strong> %s"
2811
- msgstr "<strong>Vergebener Titel:</strong> %s"
2812
-
2813
- #: wp-mail.php:225
2814
- msgid "Oops: %s"
2815
- msgstr "Oops: %s"
2816
-
2817
- #: wp-mail.php:229
2818
- msgid "Mission complete. Message <strong>%s</strong> deleted."
2819
- msgstr "Mission erfüllt. Nachricht <strong>%s</strong> gelöscht."
2820
-
2821
- #: wp-comments-post.php:36
2822
- msgid "Sorry, comments are closed for this item."
2823
- msgstr "Die Kommentarfunktion wurde für diesen Artikel deaktiviert."
2824
-
2825
- #: wp-comments-post.php:71
2826
- msgid "Sorry, you must be logged in to post a comment."
2827
- msgstr "Um einen Kommentar zu hinterlassen, musst du angemeldet sein."
2828
-
2829
- #: wp-comments-post.php:78
2830
- msgid "<strong>ERROR</strong>: please fill the required fields (name, email)."
2831
- msgstr "<strong>FEHLER</strong>: Bitte fülle die erforderlichen Felder aus (Name, E-Mail-Adresse).\t"
2832
-
2833
- #: wp-comments-post.php:80
2834
- msgid "<strong>ERROR</strong>: please enter a valid email address."
2835
- msgstr "<strong>FEHLER</strong>: Bitte gib eine gültige E-Mail-Adresse ein."
2836
-
2837
- #: wp-comments-post.php:84
2838
- msgid "<strong>ERROR</strong>: please type a comment."
2839
- msgstr "<strong>FEHLER</strong>: Bitte gib einen Kommentar ein."
2840
-
2841
- #: wp-content/plugins/akismet/akismet.php:266
2842
- msgid "Akismet caught this comment as spam"
2843
- msgstr "Akismet hat diesen Kommentar als Spam erkannt"
2844
-
2845
- #: wp-content/plugins/akismet/akismet.php:268
2846
- #: wp-content/plugins/akismet/akismet.php:276
2847
- msgid "Comment status was changed to %s"
2848
- msgstr "Kommentarstatus wurde geändert zu %s"
2849
-
2850
- #: wp-content/plugins/akismet/akismet.php:271
2851
- msgid "Akismet cleared this comment"
2852
- msgstr "Akismet hat diesen Kommentar blockiert"
2853
-
2854
- #: wp-content/plugins/akismet/akismet.php:274
2855
- msgid "Comment was caught by wp_blacklist_check"
2856
- msgstr "Kommentar wurde als Spam markiert, da er einen Begriff aus der Kommentar-Blacklist enthält."
2857
-
2858
- #: wp-content/plugins/akismet/akismet.php:281
2859
- msgid "Akismet was unable to check this comment (response: %s), will automatically retry again later."
2860
- msgstr "Akismet war es nicht möglich, diesen Kommentar zu überprüfen (Antwort: %s). Akismet wird später eine erneute Überprüfung durchführen."
2861
-
2862
- #: wp-content/plugins/akismet/akismet.php:459
2863
- msgid "Akismet caught this comment as spam during an automatic retry."
2864
- msgstr "Akismet hat diesen Kommentar durch eine erneute Überprüfung als Spam erkannt."
2865
-
2866
- #: wp-content/plugins/akismet/akismet.php:461
2867
- msgid "Akismet cleared this comment during an automatic retry."
2868
- msgstr "Akismet hat diesen Kommentar durch eine erneute Überprüfung als frei von Spam erkannt. "
2869
-
2870
- #: wp-content/plugins/akismet/widget.php:15
2871
- msgid "%1$s%2$s%3$s %4$sspam comment%5$s %6$sblocked by%7$s<br />%8$sAkismet%9$s"
2872
- msgid_plural "%1$s%2$s%3$s %4$sspam comments%5$s %6$sblocked by%7$s<br />%8$sAkismet%9$s"
2873
- msgstr[0] "%1$s%2$s%3$s %4$sSpam-Kommentar%5$s %6$sblockiert von%7$s<br />%8$sAkismet%9$s"
2874
- msgstr[1] "%1$s%2$s%3$s %4$sSpam-Kommentare%5$s %6$sblockiert von%7$s<br />%8$sAkismet%9$s"
2875
-
2876
- #: wp-content/plugins/akismet/widget.php:43
2877
- msgid "Spam Blocked"
2878
- msgstr "Spam wurde blockiert"
2879
-
2880
- #: wp-content/plugins/akismet/widget.php:89
2881
- msgid "<div id=\"akismetwrap\"><div id=\"akismetstats\"><a id=\"aka\" href=\"http://akismet.com\" title=\"\"><div id=\"akismet1\"><span id=\"akismetcount\">%1$s</span> <span id=\"akismetsc\">spam comment</span></div> <div id=\"akismet2\"><span id=\"akismetbb\">blocked by</span><br /><span id=\"akismeta\">Akismet</span></div></a></div></div>"
2882
- msgid_plural "<div id=\"akismetwrap\"><div id=\"akismetstats\"><a id=\"aka\" href=\"http://akismet.com\" title=\"\"><div id=\"akismet1\"><span id=\"akismetcount\">%1$s</span> <span id=\"akismetsc\">spam comments</span></div> <div id=\"akismet2\"><span id=\"akismetbb\">blocked by</span><br /><span id=\"akismeta\">Akismet</span></div></a></div></div>"
2883
- msgstr[0] "<div id=\"akismetwrap\"><div id=\"akismetstats\"><a id=\"aka\" href=\"http://akismet.com\" title=\"\"><div id=\"akismet1\"><span id=\"akismetcount\">%1$s</span> <span id=\"akismetsc\">Spam-Kommentar</span></div> <div id=\"akismet2\"><span id=\"akismetbb\">blockiert von</span><br /><span id=\"akismeta\">Akismet</span></div></a></div></div>"
2884
- msgstr[1] "<div id=\"akismetwrap\"><div id=\"akismetstats\"><a id=\"aka\" href=\"http://akismet.com\" title=\"\"><div id=\"akismet1\"><span id=\"akismetcount\">%1$s</span> <span id=\"akismetsc\">Spam-Kommentare</span></div> <div id=\"akismet2\"><span id=\"akismetbb\">blockiert von</span><br /><span id=\"akismeta\">Akismet</span></div></a></div></div>"
2885
-
2886
- #: wp-content/plugins/akismet/admin.php:14
2887
- msgid "Akismet %s requires WordPress 3.0 or higher."
2888
- msgstr "Akismet %s benötigt WordPress 3.0 oder höher."
2889
-
2890
- #: wp-content/plugins/akismet/admin.php:14
2891
- msgid "Please <a href=\"%s\">upgrade WordPress</a> to a current version, or <a href=\"%s\">downgrade to version 2.4 of the Akismet plugin</a>."
2892
- msgstr "Bitte <a href=\"%s\">aktualisiere WordPress</a> auf die aktuellste Version oder <a href=\"%s\">führe ein downgrade zur Version 2.4 von Akismet</a> durch."
2893
-
2894
- #: wp-content/plugins/akismet/admin.php:27
2895
- msgid "Comment History"
2896
- msgstr "Statusänderungen nachverfolgen"
2897
-
2898
- #: wp-content/plugins/akismet/admin.php:40
2899
- #: wp-content/plugins/akismet/admin.php:137
2900
- msgid "Akismet Configuration"
2901
- msgstr "Akismet-Konfiguration"
2902
-
2903
- #: wp-content/plugins/akismet/admin.php:122
2904
- msgid "Your key has been cleared."
2905
- msgstr "Dein Schlüssel wurde zurückgesetzt."
2906
-
2907
- #: wp-content/plugins/akismet/admin.php:123
2908
- msgid "Your key has been verified. Happy blogging!"
2909
- msgstr "Dein Schlüssel wurde verifiziert. Happy blogging!"
2910
-
2911
- #: wp-content/plugins/akismet/admin.php:124
2912
- msgid "The key you entered is invalid. Please double-check it."
2913
- msgstr "Der Schlüssel, den du eingegeben hast ist ungültig. Überprüfe ihn bitte."
2914
-
2915
- #: wp-content/plugins/akismet/admin.php:125
2916
- msgid "The key you entered could not be verified because a connection to akismet.com could not be established. Please check your server configuration."
2917
- msgstr "Der Schlüssel, den du eingegeben hast, konnte nicht verifiziert werden, da keine Verbindung zu akismet.com aufgebaut werden konnte. Bitte überprüfe die Konfiguration deines Servers."
2918
-
2919
- #: wp-content/plugins/akismet/admin.php:126
2920
- msgid "There was a problem connecting to the Akismet server. Please check your server configuration."
2921
- msgstr "Der Akismet-Server konnte nicht verbunden werden. Bitte überprüfe die Konfiguration deines Servers."
2922
-
2923
- #: wp-content/plugins/akismet/admin.php:127
2924
- msgid "Please enter an API key. (<a href=\"%s\" style=\"color:#fff\">Get your key.</a>)"
2925
- msgstr "Gib bitte den API-Schlüssel ein. (<a href=\"%s\" style=\"color:#fff\">API-Schlüssel anfordern.</a>)"
2926
-
2927
- #: wp-content/plugins/akismet/admin.php:128
2928
- msgid "This key is valid."
2929
- msgstr "Der Schlüssel ist gültig."
2930
-
2931
- #: wp-content/plugins/akismet/admin.php:129
2932
- msgid "The key below was previously validated but a connection to akismet.com can not be established at this time. Please check your server configuration."
2933
- msgstr "Bisher war der eingegebene Schlüssel gültig aber jetzt kann keine Verbindung mehr zu Akismet.com hergestellt werden. Bitte überprüfe die Servereinstellungen."
2934
-
2935
- #: wp-content/plugins/akismet/admin.php:130
2936
- msgid "Your WordPress home URL %s is invalid. Please fix the <a href=\"%s\">home option</a>."
2937
- msgstr "Deine WordPress Blog-Adresse %s ist falsch. Bitte <a href=\"%s\">korrigiere diese</a> (Eingabefeld 'home')."
2938
-
2939
- #: wp-content/plugins/akismet/admin.php:134
2940
- msgid "Options saved."
2941
- msgstr "Einstellungen gespeichert."
2942
-
2943
- #: wp-content/plugins/akismet/admin.php:139
2944
- msgid "<strong>Sign up success!</strong> Please check your email for your Akismet API Key and enter it below."
2945
- msgstr "<strong>Registrierung erfolgreich!</strong> Bitte überprüfe dein E-Mail-Postfach, ob du die E-Mail mit dem Akismet API-Schlüssel schon bekommen hast und trage den Schlüssel weiter unten ein."
2946
-
2947
- #: wp-content/plugins/akismet/admin.php:144
2948
- msgid "For many people, <a href=\"%1$s\">Akismet</a> will greatly reduce or even completely eliminate the comment and trackback spam you get on your site. If one does happen to get through, simply mark it as \"spam\" on the moderation screen and Akismet will learn from the mistakes. If you don't have an API key yet, you can get one at <a href=\"%2$s\">Akismet.com</a>."
2949
- msgstr "Für die meisten Menschen wird <a href=\"%1$s\">Akismet</a> den Kommentar und Trackbackspam auf der eigenen Seite entweder größtenteils reduzieren, vielleicht sogar ganz eliminieren. Wenn etwas trotzdem durchkommen sollte, markier es einfach im Administrationsbereich als \"Spam\", damit Akismet aus seinen Fehlern lernen kann. Solltest du noch keinen API-Schlüssel (\"API-Key\") haben, kannst du einen <a href=\"%2$s\">hier bekommen</a>."
2950
-
2951
- #: wp-content/plugins/akismet/admin.php:146
2952
- msgid "Akismet API Key"
2953
- msgstr "Akismet API-Schlüssel"
2954
-
2955
- #: wp-content/plugins/akismet/admin.php:150
2956
- msgid "<a href=\"http://akismet.com/get/\">What is this?</a>"
2957
- msgstr "<a href=\"http://akismet.com/get/\">Was ist Akismet?</a>"
2958
-
2959
- #: wp-content/plugins/akismet/admin.php:152
2960
- msgid "Why might my key be invalid?"
2961
- msgstr "Warum könnte mein Schlüssel ungültig sein?"
2962
-
2963
- #: wp-content/plugins/akismet/admin.php:153
2964
- msgid "This can mean one of two things, either you copied the key wrong or that the plugin is unable to reach the Akismet servers, which is most often caused by an issue with your web host around firewalls or similar."
2965
- msgstr "Es kann sein, dass du beim Kopieren einen Fehler gemacht hast, auch kommt es vor, dass das Plugin den Akismet-Server nicht erreichen kann. Dies hängt oft mit Firewalls zusammen, die von deinem Hoster eingesetzt werden."
2966
-
2967
- #: wp-content/plugins/akismet/admin.php:157
2968
- msgid "Auto-delete spam submitted on posts more than a month old."
2969
- msgstr "Lösche Spam automatisch, wenn dieser älter als einen Monat ist."
2970
-
2971
- #: wp-content/plugins/akismet/admin.php:158
2972
- msgid "Show the number of comments you've approved beside each comment author."
2973
- msgstr "Zeige die Anzahl der genehmigten Kommentare neben jedem Kommentarautoren."
2974
-
2975
- #: wp-content/plugins/akismet/admin.php:159
2976
- msgid "Update options &raquo;"
2977
- msgstr "Einstellungen aktualisieren &raquo;"
2978
-
2979
- #: wp-content/plugins/akismet/admin.php:164
2980
- msgid "Server Connectivity"
2981
- msgstr "Server-Konnektivität"
2982
-
2983
- #: wp-content/plugins/akismet/admin.php:168
2984
- msgid "Network functions are disabled."
2985
- msgstr "Netzwerkfunktionen sind deaktiviert."
2986
-
2987
- #: wp-content/plugins/akismet/admin.php:169
2988
- msgid "Your web host or server administrator has disabled PHP's <code>fsockopen</code> or <code>gethostbynamel</code> functions. <strong>Akismet cannot work correctly until this is fixed.</strong> Please contact your web host or firewall administrator and give them <a href=\"%s\" target=\"_blank\">this information about Akismet's system requirements</a>."
2989
- msgstr "Dein Webhoster oder Serveradministrator hat die PHP-Funktionen <code>fsockopen</code> oder <code>gethostbynamel</code> deaktiviert. <strong>Akismet funktioniert unter diesen Umständen nicht korrekt.</strong> Kontaktiere deinen Webhoster oder Serveradministrator und <a href=\"%s\" target=\"_blank\">informiere ihn über die technischen Vorraussetzungen von Akismet</a>."
2990
-
2991
- #: wp-content/plugins/akismet/admin.php:177
2992
- msgid "Unable to reach some Akismet servers."
2993
- msgstr "Konnte keinen Akismet-Server erreichen."
2994
-
2995
- #: wp-content/plugins/akismet/admin.php:178
2996
- msgid "A network problem or firewall is blocking some connections from your web server to Akismet.com. Akismet is working but this may cause problems during times of network congestion. Please contact your web host or firewall administrator and give them <a href=\"%s\" target=\"_blank\">this information about Akismet and firewalls</a>."
2997
- msgstr "Ein Netzwerkproblem oder eine Firewall blockiert einige Verbindungen von deinem Webserver zu Akismet.com. Akismet läft zwar, aber dadurch können Probleme auftreten, wenn der Netzwerlverkehr ansteigt. Bitte kontaktiere deinen Webhoster oder den Firewall-Administrator und gib Ihnen <a href=\"%s\" target=\"_blank\">diese Information über Akismet und Firewalls</a>."
2998
-
2999
- #: wp-content/plugins/akismet/admin.php:182
3000
- msgid "Unable to reach any Akismet servers."
3001
- msgstr "Konnte keinen Akismet-Server erreichen."
3002
-
3003
- #: wp-content/plugins/akismet/admin.php:183
3004
- msgid "A network problem or firewall is blocking all connections from your web server to Akismet.com. <strong>Akismet cannot work correctly until this is fixed.</strong> Please contact your web host or firewall administrator and give them <a href=\"%s\" target=\"_blank\">this information about Akismet and firewalls</a>."
3005
- msgstr "Ein Netzwerkproblem oder eine Firewall blockiert einige Verbindungen von deinem Webserver zu Akismet.com. <strong>Akismet wird nicht wie vorgesehen funktionieren, bis das gelöst wurde.</strong> Bitte kontaktiere deinen Webhoster oder den Firewall-Administrator und gib Ihnen <a href=\"%s\" target=\"_blank\">diese Information über Akismet und Firewalls</a>."
3006
-
3007
- #: wp-content/plugins/akismet/admin.php:187
3008
- msgid "All Akismet servers are available."
3009
- msgstr "Alle Akismet-Server sind erreichbar."
3010
-
3011
- #: wp-content/plugins/akismet/admin.php:188
3012
- msgid "Akismet is working correctly. All servers are accessible."
3013
- msgstr "Akismet arbeitet wie vorgesehen. Alle Server sind erreichbar."
3014
-
3015
- #: wp-content/plugins/akismet/admin.php:193
3016
- msgid "Unable to find Akismet servers."
3017
- msgstr "Akismet-Server konnten nicht gefunden werden."
3018
-
3019
- #: wp-content/plugins/akismet/admin.php:194
3020
- msgid "A DNS problem or firewall is preventing all access from your web server to Akismet.com. <strong>Akismet cannot work correctly until this is fixed.</strong> Please contact your web host or firewall administrator and give them <a href=\"%s\" target=\"_blank\">this information about Akismet and firewalls</a>."
3021
- msgstr "Ein DNS-Problem oder eine Firewall verhindert den Zugang zu Akismet.com von deinem Webserver. <strong>Akismet wird nicht wie vorgesehen funktionieren, bis das gelöst wurde.</strong> Bitte kontaktiere deinen Webhoster oder den Firewall-Administrator und gib Ihnen <a href=\"%s\" target=\"_blank\">diese Information über Akismet und Firewalls</a>."
3022
-
3023
- #: wp-content/plugins/akismet/admin.php:202
3024
- msgid "Akismet server"
3025
- msgstr "Akismet-Server"
3026
-
3027
- #: wp-content/plugins/akismet/admin.php:202
3028
- msgid "Network Status"
3029
- msgstr "Netzwerkstatus"
3030
-
3031
- #: wp-content/plugins/akismet/admin.php:211
3032
- msgid "Accessible"
3033
- msgstr "Server erreichbar"
3034
-
3035
- #: wp-content/plugins/akismet/admin.php:211
3036
- msgid "Re-trying"
3037
- msgstr "Wiederhole"
3038
-
3039
- #: wp-content/plugins/akismet/admin.php:219
3040
- msgid "Last checked %s ago."
3041
- msgstr "Zuletzt geprüft vor %s."
3042
-
3043
- #: wp-content/plugins/akismet/admin.php:220
3044
- msgid "Check network status &raquo;"
3045
- msgstr "Netzwerkstatus prüfen &raquo;"
3046
-
3047
- #: wp-content/plugins/akismet/admin.php:221
3048
- msgid "<a href=\"%s\" target=\"_blank\">Click here</a> to confirm that <a href=\"%s\" target=\"_blank\">Akismet.com is up</a>."
3049
- msgstr "<a href=\"%s\" target=\"_blank\">Klicke hier</a>, um zu überprüfen, ob <a href=\"%s\" target=\"_blank\">Akismet.com erreichbar ist</a>."
3050
-
3051
- #: wp-content/plugins/akismet/admin.php:231
3052
- msgid "Akismet Stats"
3053
- msgstr "Akismet-Statistiken"
3054
-
3055
- #: wp-content/plugins/akismet/admin.php:275
3056
- msgctxt "comments"
3057
- msgid "Spam"
3058
- msgstr "Spam"
3059
-
3060
- #: wp-content/plugins/akismet/admin.php:281
3061
- msgid "<a href=\"%1$s\">Akismet</a> has protected your site from <a href=\"%2$s\">%3$s spam comments</a>."
3062
- msgid_plural "<a href=\"%1$s\">Akismet</a> has protected your site from <a href=\"%2$s\">%3$s spam comments</a>."
3063
- msgstr[0] "<a href=\"%1$s\">Akismet</a> hat deine Seite vor <a href=\"%2$s\">%3$s Spamkommentar</a> bewahrt."
3064
- msgstr[1] "<a href=\"%1$s\">Akismet</a> hat deine Seite vor <a href=\"%2$s\">%3$s Spamkommentaren</a> bewahrt."
3065
-
3066
- #: wp-content/plugins/akismet/admin.php:290
3067
- msgid "Akismet is almost ready."
3068
- msgstr "Akismet ist fast fertig."
3069
-
3070
- #: wp-content/plugins/akismet/admin.php:290
3071
- msgid "You must <a href=\"%1$s\">enter your Akismet API key</a> for it to work."
3072
- msgstr "Du musst erst <a href=\"%1$s\">deinen Akismet API-Schlüssel eintragen</a>, damit das Plugin funktioniert. <strong>Bitte <a href=\"http://faq.wpde.org/hinweise-zum-datenschutz-beim-einsatz-von-akismet-in-deutschland/\">informiere dich vorher über mögliche rechtliche Probleme (den Datenschutz betreffend)</a> beim Einsatz von Akismet in Deutschland und anderen Ländern!</strong>"
3073
-
3074
- #: wp-content/plugins/akismet/admin.php:302
3075
- msgid "Akismet has detected a problem."
3076
- msgstr "Akismet hat ein Problem festgestellt."
3077
-
3078
- #: wp-content/plugins/akismet/admin.php:302
3079
- msgid "A server or network problem prevented Akismet from checking %d comment. It has been temporarily held for moderation and will be automatically re-checked in %s."
3080
- msgid_plural "A server or network problem prevented Akismet from checking %d comments. They have been temporarily held for moderation and will be automatically re-checked in %s."
3081
- msgstr[0] "Ein Server- oder Netzwerkproblem verhindert, dass Akismet %d Kommentar überprüfen konnte. Er wurde temporär zur Moderation zurückgehalten und wird automatisch wieder überprüft in %s."
3082
- msgstr[1] "Ein Server- oder Netzwerkproblem verhindert, dass Akismet %d Kommentare überprüfen konnte. Sie wurden temporär zur Moderation zurückgehalten und werden automatisch wieder überprüft in %s."
3083
-
3084
- #: wp-content/plugins/akismet/admin.php:325
3085
- msgid "Flagged as spam by Akismet"
3086
- msgstr "Als Spam markiert durch Akismet"
3087
-
3088
- #: wp-content/plugins/akismet/admin.php:327
3089
- msgid "Cleared by Akismet"
3090
- msgstr "Gelöscht durch Akismet"
3091
-
3092
- #: wp-content/plugins/akismet/admin.php:331
3093
- msgid "Flagged as spam by %s"
3094
- msgstr "Als Spam markiert von %s"
3095
-
3096
- #: wp-content/plugins/akismet/admin.php:333
3097
- msgid "Un-spammed by %s"
3098
- msgstr "Als Spamfrei markiert von %s"
3099
-
3100
- #: wp-content/plugins/akismet/admin.php:342
3101
- #: wp-content/plugins/akismet/admin.php:349
3102
- msgid "View comment history"
3103
- msgstr "Bearbeitungshistorie sehen"
3104
-
3105
- #: wp-content/plugins/akismet/admin.php:342
3106
- msgid "History"
3107
- msgstr "Ablauf"
3108
-
3109
- #: wp-content/plugins/akismet/admin.php:354
3110
- msgid "%s approved"
3111
- msgid_plural "%s approved"
3112
- msgstr[0] "%s Genehmigt"
3113
- msgstr[1] "%s Genehmigte"
3114
-
3115
- #: wp-content/plugins/akismet/admin.php:381
3116
- msgid "Akismet"
3117
- msgstr "Akismet"
3118
-
3119
- #: wp-content/plugins/akismet/admin.php:444
3120
- msgid "<a href=\"%1$s\">Akismet</a> has protected your site from %2$s spam comment already. "
3121
- msgid_plural "<a href=\"%1$s\">Akismet</a> has protected your site from %2$s spam comments already. "
3122
- msgstr[0] "<a href=\"%1$s\">Akismet</a> hat deine Seite bereits vor %2$s Spam-Kommentar bewahrt."
3123
- msgstr[1] "<a href=\"%1$s\">Akismet</a> hat deine Seite bereits vor %2$s Spam-Kommentaren bewahrt."
3124
-
3125
- #: wp-content/plugins/akismet/admin.php:450
3126
- msgid "<a href=\"%1$s\">Akismet</a> blocks spam from getting to your blog. "
3127
- msgstr "<a href=\"%1$s\">Akismet</a> schützt deinen Blog vor Spam."
3128
-
3129
- #: wp-content/plugins/akismet/admin.php:454
3130
- msgid "There's <a href=\"%2$s\">%1$s comment</a> in your spam queue right now."
3131
- msgid_plural "There are <a href=\"%2$s\">%1$s comments</a> in your spam queue right now."
3132
- msgstr[0] "Es befindet sich derzeit <a href=\"%2$s\">%1$s Kommentar</a> in der Spam-Warteschlange."
3133
- msgstr[1] "Es befinden sich derzeit <a href=\"%2$s\">%1$s Kommentare</a> in der Spam-Warteschlange."
3134
-
3135
- #: wp-content/plugins/akismet/admin.php:460
3136
- msgid "There's nothing in your <a href='%1$s'>spam queue</a> at the moment."
3137
- msgstr "Zur zeit befindet sich nichts in der <a href='%1$s'>Spam-Warteschlange</a>."
3138
-
3139
- #: wp-content/plugins/akismet/admin.php:478
3140
- msgid "Check for Spam"
3141
- msgstr "Auf Spam prüfen"
3142
-
3143
- #: wp-content/plugins/akismet/admin.php:521
3144
- msgid "%s reported this comment as not spam"
3145
- msgstr "%s hat angegeben, dass dieser Kommentar kein Spam enthält"
3146
-
3147
- #: wp-content/plugins/akismet/admin.php:570
3148
- msgid "%s reported this comment as spam"
3149
- msgstr "%s hat angegeben, dass dieser Kommentar Spam ist"
3150
-
3151
- #: wp-content/plugins/akismet/admin.php:615
3152
- msgid "%s changed the comment status to %s"
3153
- msgstr "%s hat den Kommentarstatus zu %s geändert"
3154
-
3155
- #: wp-content/plugins/akismet/admin.php:680
3156
- msgid "Akismet re-checked and caught this comment as spam"
3157
- msgstr "Akismet hat diesen Kommentar erneut überprüft und als Spam eingestuft"
3158
-
3159
- #: wp-content/plugins/akismet/admin.php:684
3160
- msgid "Akismet re-checked and cleared this comment"
3161
- msgstr "Akismet hat diesen Kommentar erneut überprüft und keinen Spam erkannt"
3162
-
3163
- #: wp-content/plugins/akismet/admin.php:688
3164
- msgid "Akismet was unable to re-check this comment (response: %s)"
3165
- msgstr "Akismet war es nicht möglich, diesen Kommentar erneut zu überprüfen. (Antwort: %s)"
3166
-
3167
- #: wp-content/plugins/akismet/legacy.php:47
3168
- msgid "Akismet Spam (%s)"
3169
- msgstr "Akismet-Spam (%s)"
3170
-
3171
- #: wp-content/plugins/akismet/legacy.php:49
3172
- #: wp-content/plugins/akismet/legacy.php:51
3173
- msgid "Akismet Spam"
3174
- msgstr "Akismet-Spam"
3175
-
3176
- #: wp-content/plugins/akismet/legacy.php:61
3177
- #: wp-content/plugins/akismet/legacy.php:80
3178
- msgid "You do not have sufficient permission to moderate comments."
3179
- msgstr "Du verfügst nicht über ausreichende Rechte, um Kommentare zu moderieren."
3180
-
3181
- #: wp-content/plugins/akismet/legacy.php:96
3182
- msgid "%1$s comments recovered."
3183
- msgstr "%1$s Kommentare wiederhergestellt."
3184
-
3185
- #: wp-content/plugins/akismet/legacy.php:100
3186
- msgid "All spam deleted."
3187
- msgstr "Den ganzen Spam gelöscht."
3188
-
3189
- #: wp-content/plugins/akismet/legacy.php:148
3190
- msgid "Caught Spam"
3191
- msgstr "Abgefangener Spam"
3192
-
3193
- #: wp-content/plugins/akismet/legacy.php:153
3194
- msgid "Akismet has caught <strong>%1$s spam</strong> for you since you first installed it."
3195
- msgstr "Akismet hat <strong>%1$s</strong> mal Spam abgefangen, seit es installiert wurde."
3196
-
3197
- #: wp-content/plugins/akismet/legacy.php:160
3198
- msgid "You have no spam currently in the queue. Must be your lucky day. :)"
3199
- msgstr "Du hast derzeit keinen Spam in der Warteschlange. Ist wohl irgendwie dein Glückstag heute. :)"
3200
-
3201
- #: wp-content/plugins/akismet/legacy.php:163
3202
- msgid "You can delete all of the spam from your database with a single click. This operation cannot be undone, so you may wish to check to ensure that no legitimate comments got through first. Spam is automatically deleted after 15 days, so don&#8217;t sweat it."
3203
- msgstr "Du kannst mit einem einzigen Klick den ganzen Spam aus deiner Datenbank löschen. Das kann nicht mehr rückgänig gemacht werden. Vielleicht solltest du lieber vorher nochmal nachschauen, ob da nicht doch ein guter Kommentar bei ist. Spam wird grundsätzlich nach 15 Tagen gelöscht, also keine Panik."
3204
-
3205
- #: wp-content/plugins/akismet/legacy.php:169
3206
- #: wp-content/plugins/akismet/legacy.php:347
3207
- msgid "There are currently %1$s comments identified as spam."
3208
- msgstr "Derzeit sind %1$s Kommentare als Spam identifiziert."
3209
-
3210
- #: wp-content/plugins/akismet/legacy.php:169
3211
- #: wp-content/plugins/akismet/legacy.php:347
3212
- msgid "Delete all"
3213
- msgstr "Alles löschen"
3214
-
3215
- #: wp-content/plugins/akismet/legacy.php:178
3216
- msgid "These are the latest comments identified as spam by Akismet. If you see any mistakes, simply mark the comment as \"not spam\" and Akismet will learn from the submission. If you wish to recover a comment from spam, simply select the comment, and click Not Spam. After 15 days we clean out the junk for you."
3217
- msgstr "Das hier sind die letzten Kommentare, die Akismet als Spam eingestuft hat. Wenn du Fehler entdeckst, markiere sie schlicht als \"kein Spam\", damit Akismet daraus etwas lernen kann. Wenn du einen Kommentar vom Spamfluch befreien willst, dann wähle ihn einfach aus und klick auf \"Kein Spam\". Nach 15 Tagen entfernen wir für dich dann den Müll."
3218
-
3219
- #: wp-content/plugins/akismet/legacy.php:232
3220
- msgid "Search Spam &raquo;"
3221
- msgstr "Spam durchsuchen &raquo;"
3222
-
3223
- #: wp-content/plugins/akismet/legacy.php:282
3224
- msgid "IP:"
3225
- msgstr "IP:"
3226
-
3227
- #: wp-content/plugins/akismet/legacy.php:288
3228
- msgid "Not Spam"
3229
- msgstr "Kein Spam"
3230
-
3231
- #: wp-content/plugins/akismet/legacy.php:333
3232
- msgid "De-spam marked comments &raquo;"
3233
- msgstr "Kommentare moderieren &raquo;"
3234
-
3235
- #: wp-content/plugins/akismet/legacy.php:335
3236
- msgid "Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better."
3237
- msgstr "Kommentare, die du als kein Spam markierst, werden als Fehler an Akismet gesendet. So kann Akismet davon lernen und besser werden."
3238
-
3239
- #: wp-content/plugins/akismet/legacy.php:385
3240
- msgid "Recheck Queue for Spam"
3241
- msgstr "Warteschlange erneut auf Spam überprüfen."
3242
-
3243
- #: wp-includes/load.php:22
3244
- msgid "GLOBALS overwrite attempt detected"
3245
- msgstr "Es wurde versucht, GLOBALS zu überschreiben."
3246
-
3247
- #: wp-includes/load.php:112
3248
- msgid "Your server is running PHP version %1$s but WordPress %2$s requires at least %3$s."
3249
- msgstr "Dein Server läuft mit der PHP-Version %1$s, aber WordPress %2$s benötigt mindestens die Version %3$s."
3250
-
3251
- #: wp-includes/load.php:115
3252
- msgid "Your PHP installation appears to be missing the MySQL extension which is required by WordPress."
3253
- msgstr "Deine PHP-Installation scheint nicht über die von WordPress benötigte MySQL-Erweiterung zu verfügen."
3254
-
3255
- #: wp-includes/load.php:173
3256
- msgid "Maintenance"
3257
- msgstr "Wartungsmodus"
3258
-
3259
- #: wp-includes/load.php:177
3260
- msgid "Briefly unavailable for scheduled maintenance. Check back in a minute."
3261
- msgstr "Für kurze Zeit nicht verfügbar, um eine regelmäßige Instandhaltung durchzuführen. Prüfe in einer Minute erneut."
3262
-
3263
- #: wp-includes/load.php:371
3264
- msgid "<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores."
3265
- msgstr "<strong>Fehler:</strong> Das Tabellenpräfix <code>$table_prefix</code> in <code>wp-config.php</code> darf nur Buchstaben, Zahlen und Unterstriche enthalten."
3266
-
3267
- #: wp-includes/functions.php:1925
3268
- msgid "One or more database tables are unavailable. The database may need to be <a href=\"%s\">repaired</a>."
3269
- msgstr "Mindestens eine Datenbanktabelle ist nicht erreichbar. Die Datenbank sollte vielleicht <a href=\"%s\">repariert</a> werden."
3270
-
3271
- #: wp-includes/functions.php:3368
3272
- msgid "Database Error"
3273
- msgstr "Datenbankfehler"
3274
-
3275
- #: wp-includes/functions.php:3372
3276
- msgid "Error establishing a database connection"
3277
- msgstr "Fehler beim Aufbau einer Datenbankverbindung"
3278
-
3279
- #: wp-includes/wp-db.php:576
3280
- msgid "Invalid database prefix"
3281
- msgstr "Ungültiges Datenbankpräfix"
3282
-
3283
- #: wp-includes/wp-db.php:755
3284
- msgid ""
3285
- "<h1>Can&#8217;t select database</h1>\n"
3286
- "<p>We were able to connect to the database server (which means your username and password is okay) but not able to select the <code>%1$s</code> database.</p>\n"
3287
- "<ul>\n"
3288
- "<li>Are you sure it exists?</li>\n"
3289
- "<li>Does the user <code>%2$s</code> have permission to use the <code>%1$s</code> database?</li>\n"
3290
- "<li>On some systems the name of your database is prefixed with your username, so it would be like <code>username_%1$s</code>. Could that be the problem?</li>\n"
3291
- "</ul>\n"
3292
- "<p>If you don't know how to set up a database you should <strong>contact your host</strong>. If all else fails you may find help at the <a href=\"http://wordpress.org/support/\">WordPress Support Forums</a>.</p>"
3293
- msgstr ""
3294
- "<h1>Die Datenbank kann nicht ausgewählt werden</h1>\\n\n"
3295
- "<p>Es konnte zwar eine Verbindung zum Datenbankserver hergestellt werden (das bedeutet, dass dein Benutzername und das Passwort stimmen), aber die entsprechende Datenbank <code>%1$s</code> kann nicht ausgewählt werden.</p>\\n\n"
3296
- "<ul>\\n\n"
3297
- "<li>Bist du sicher, dass sie existiert?</li>\\n\n"
3298
- "<li>Hat der Benutzer <code>%2$s</code> die entsprechenden Rechte, um die <code>%1$s</code> Datenbank auch zu nutzen?</li>\\n\n"
3299
- "<li>Bei einigen Systemen ist der Benutzername das Präfix der Datenbank, so dass es so oder ähnlich aussieht <code>username_%1$s</code>. Könnte das das Problem sein?</li>\\n\n"
3300
- "</ul>\\n\n"
3301
- " <p>Wenn du nicht weißt, wie du die Datenbank einrichtest, <strong>kontaktiere deinen Provider</strong>. Wenn du gar nicht weiterkommst, findest Du im <a href=\\\"http://wordpress.org/support/\\\">englischsprachigen</a> und <a href=\\\"http://forum.wpde.org/\\\">deutschsprachigen Support-Forum</a> Hilfe.</p>"
3302
-
3303
- #: wp-includes/wp-db.php:927
3304
- msgid "WordPress database error %1$s for query %2$s made by %3$s"
3305
- msgstr "WordPress-Datenbank-Fehler %1$s für Abfrage %2$s von %3$s"
3306
-
3307
- #: wp-includes/wp-db.php:929
3308
- msgid "WordPress database error %1$s for query %2$s"
3309
- msgstr "WordPress-Datenbank-Fehler %1$s für die Abfrage %2$s"
3310
-
3311
- #: wp-includes/wp-db.php:1049
3312
- msgid ""
3313
- "\n"
3314
- "<h1>Error establishing a database connection</h1>\n"
3315
- "<p>This either means that the username and password information in your <code>wp-config.php</code> file is incorrect or we can't contact the database server at <code>%s</code>. This could mean your host's database server is down.</p>\n"
3316
- "<ul>\n"
3317
- "\t<li>Are you sure you have the correct username and password?</li>\n"
3318
- "\t<li>Are you sure that you have typed the correct hostname?</li>\n"
3319
- "\t<li>Are you sure that the database server is running?</li>\n"
3320
- "</ul>\n"
3321
- "<p>If you're unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href='http://wordpress.org/support/'>WordPress Support Forums</a>.</p>\n"
3322
- msgstr ""
3323
- "\n"
3324
- "<h1>Fehler beim Aufbau der Datenbank-Verbindung</h1>\n"
3325
- "<p>Das bedeutet entweder, dass Benutzername oder Passwort in der Datei <code>wp-config.php</code> falsch sind, oder der Datenbankserver <code>%s</code> nicht erreichbar ist.</p>\n"
3326
- "<ul>\n"
3327
- "\t<li>Bist du sicher, dass Benutzername und Passwort stimmen?</li>\n"
3328
- "\t<li>Bist du sicher, dass der Name des Datenbankservers stimmt?</li>\n"
3329
- "\t<li>Bist du sicher, dass der Datenbankserver läuft?</li>\n"
3330
- "</ul>\n"
3331
- "<p>Wenn du nicht sicher bist woran es liegt, kontaktiere am besten deinen Hoster. Wenn du weitergehende Hilfe brauchst, kannst du dich jederzeit an das <a href='http://forum.wpde.org/'>Support-Forum</a> (<a href='http://wordpress.org/support/'>en</a>) wenden.</p>\n"
3332
-
3333
- #: wp-includes/wp-db.php:1329
3334
- msgid " $db->get_row(string query, output type, int offset) -- Output type must be one of: OBJECT, ARRAY_A, ARRAY_N"
3335
- msgstr " $db->get_row(string query, output type, int offset) -- Ausgabe muss eine der folgenden sein: OBJECT, ARRAY_A, ARRAY_N"
3336
-
3337
- #: wp-admin/setup-config.php:163
3338
- msgid "<strong>ERROR</strong>: \"Table Prefix\" can only contain numbers, letters, and underscores."
3339
- msgstr "<strong>Fehler:</strong> Der \"Tabellen Präfix\" darf nur aus Zahlen, Buchstaben und Unterstrichen bestehen."
3340
-
3341
- #: wp-load.php:55
3342
- msgid "ltr"
3343
- msgstr "ltr"
3344
-
3345
- #: wp-includes/js/tinymce/langs/wp-langs.php:467
3346
- msgid "More..."
3347
- msgstr "Weiterlesen …"
3348
-
3349
- #: wp-includes/js/tinymce/langs/wp-langs.php:468
3350
- msgid "Next page..."
3351
- msgstr "Nächste Seite …"
3352
-
3353
- #: wp-includes/js/tinymce/langs/wp-langs.php:469
3354
- #: wp-admin/includes/media.php:381
3355
- msgid "Add Media"
3356
- msgstr "Dateien hinzufügen"
3357
-
3358
- #: wp-includes/js/tinymce/langs/wp-langs.php:470
3359
- msgid "Add an Image"
3360
- msgstr "Bild einfügen"
3361
-
3362
- #: wp-includes/js/tinymce/langs/wp-langs.php:471
3363
- msgid "Add Video"
3364
- msgstr "Video hinzufügen"
3365
-
3366
- #: wp-includes/js/tinymce/langs/wp-langs.php:472
3367
- msgid "Add Audio"
3368
- msgstr "Audio hinzufügen"
3369
-
3370
- #: wp-includes/js/tinymce/langs/wp-langs.php:473
3371
- msgid "Edit Gallery"
3372
- msgstr "Galerie bearbeiten"
3373
-
3374
- #: wp-includes/js/tinymce/langs/wp-langs.php:474
3375
- msgid "Delete Gallery"
3376
- msgstr "Galerie löschen"
3377
-
3378
- #: wp-includes/js/tinymce/langs/wp-langs.php:478
3379
- #: wp-admin/includes/media.php:1106
3380
- msgid "Edit Image"
3381
- msgstr "Bild bearbeiten"
3382
-
3383
- #: wp-includes/js/tinymce/langs/wp-langs.php:479
3384
- msgid "Delete Image"
3385
- msgstr "Bild löschen"
3386
-
3387
- #: wp-includes/js/tinymce/langs/wp-langs.php:480
3388
- msgid "Advanced Settings"
3389
- msgstr "Erweiterte Einstellungen"
3390
-
3391
- #: wp-includes/js/tinymce/langs/wp-langs.php:482
3392
- #: wp-admin/includes/media.php:748
3393
- msgid "Size"
3394
- msgstr "Größe"
3395
-
3396
- #: wp-includes/js/tinymce/langs/wp-langs.php:483
3397
- #: wp-admin/includes/image-edit.php:181 wp-admin/includes/media.php:711
3398
- msgid "Thumbnail"
3399
- msgstr "Miniaturbild"
3400
-
3401
- #: wp-includes/js/tinymce/langs/wp-langs.php:484
3402
- #: wp-admin/includes/media.php:711
3403
- msgid "Medium"
3404
- msgstr "Mittelgroß"
3405
-
3406
- #: wp-includes/js/tinymce/langs/wp-langs.php:485
3407
- #: wp-admin/includes/media.php:711
3408
- msgid "Full Size"
3409
- msgstr "Vollständige Größe"
3410
-
3411
- #: wp-includes/js/tinymce/langs/wp-langs.php:486
3412
- msgid "Current Link"
3413
- msgstr "Aktueller Link"
3414
-
3415
- #: wp-includes/js/tinymce/langs/wp-langs.php:487
3416
- msgid "Link to Image"
3417
- msgstr "Mit Bild verlinken"
3418
-
3419
- #: wp-includes/js/tinymce/langs/wp-langs.php:488
3420
- #: wp-admin/includes/media.php:941 wp-admin/includes/media.php:1992
3421
- msgid "Enter a link URL or click above for presets."
3422
- msgstr "Gib eine URL ein oder klicke oben für eine der Vorgaben."
3423
-
3424
- #: wp-includes/js/tinymce/langs/wp-langs.php:489
3425
- msgid "Advanced Image Settings"
3426
- msgstr "Erweiterte Bildeinstellungen"
3427
-
3428
- #: wp-includes/js/tinymce/langs/wp-langs.php:491 wp-admin/options-media.php:62
3429
- #: wp-admin/options-media.php:108 wp-admin/includes/theme.php:306
3430
- #: wp-admin/includes/theme.php:356
3431
- msgid "Width"
3432
- msgstr "Breite"
3433
-
3434
- #: wp-includes/js/tinymce/langs/wp-langs.php:492
3435
- #: wp-includes/js/tinymce/langs/wp-langs.php:497 wp-admin/options-media.php:64
3436
- #: wp-admin/options-media.php:110
3437
- msgid "Height"
3438
- msgstr "Höhe"
3439
-
3440
- #: wp-includes/js/tinymce/langs/wp-langs.php:493
3441
- #: wp-includes/js/tinymce/langs/wp-langs.php:498
3442
- msgid "Original Size"
3443
- msgstr "Originalgröße"
3444
-
3445
- #: wp-includes/js/tinymce/langs/wp-langs.php:494
3446
- #: wp-includes/js/tinymce/langs/wp-langs.php:499
3447
- msgid "CSS Class"
3448
- msgstr "CSS Klasse"
3449
-
3450
- #: wp-includes/js/tinymce/langs/wp-langs.php:495
3451
- msgid "Advanced Link Settings"
3452
- msgstr "Erweiterte Linkeinstellungen"
3453
-
3454
- #: wp-includes/js/tinymce/langs/wp-langs.php:496
3455
- msgid "Link Rel"
3456
- msgstr "Link-Beziehung"
3457
-
3458
- #: wp-includes/js/tinymce/langs/wp-langs.php:500
3459
- msgid "60%"
3460
- msgstr "60%"
3461
-
3462
- #: wp-includes/js/tinymce/langs/wp-langs.php:501
3463
- msgid "70%"
3464
- msgstr "70%"
3465
-
3466
- #: wp-includes/js/tinymce/langs/wp-langs.php:502
3467
- msgid "80%"
3468
- msgstr "80%"
3469
-
3470
- #: wp-includes/js/tinymce/langs/wp-langs.php:503
3471
- msgid "90%"
3472
- msgstr "90%"
3473
-
3474
- #: wp-includes/js/tinymce/langs/wp-langs.php:504
3475
- msgid "100%"
3476
- msgstr "100%"
3477
-
3478
- #: wp-includes/js/tinymce/langs/wp-langs.php:505
3479
- msgid "110%"
3480
- msgstr "110%"
3481
-
3482
- #: wp-includes/js/tinymce/langs/wp-langs.php:506
3483
- msgid "120%"
3484
- msgstr "120%"
3485
-
3486
- #: wp-includes/js/tinymce/langs/wp-langs.php:507
3487
- msgid "130%"
3488
- msgstr "130%"
3489
-
3490
- #: wp-includes/js/tinymce/langs/wp-langs.php:509
3491
- #: wp-admin/includes/media.php:929
3492
- msgid "Caption"
3493
- msgstr "Beschriftung"
3494
-
3495
- #: wp-includes/js/tinymce/langs/wp-langs.php:510
3496
- #: wp-admin/includes/media.php:804 wp-admin/includes/media.php:1964
3497
- msgid "Alternate Text"
3498
- msgstr "Alternativtext"
3499
-
3500
- #: wp-includes/js/tinymce/wp-mce-help.php:16
3501
- msgid "Rich Editor Help"
3502
- msgstr "Hilfe zum Rich Editor"
3503
-
3504
- #: wp-includes/js/tinymce/wp-mce-help.php:203
3505
- msgid "Basics of Rich Editing"
3506
- msgstr "Rich-Editing-Grundlagen"
3507
-
3508
- #: wp-includes/js/tinymce/wp-mce-help.php:203
3509
- msgid "Basics"
3510
- msgstr "Grundlegende Angaben"
3511
-
3512
- #: wp-includes/js/tinymce/wp-mce-help.php:204
3513
- msgid "Advanced use of the Rich Editor"
3514
- msgstr "Erweiterter Gebrauch des Rich Editors"
3515
-
3516
- #: wp-includes/js/tinymce/wp-mce-help.php:205
3517
- msgid "Hotkeys"
3518
- msgstr "Hotkeys"
3519
-
3520
- #: wp-includes/js/tinymce/wp-mce-help.php:206
3521
- msgid "About the software"
3522
- msgstr "Über die Software"
3523
-
3524
- #: wp-includes/js/tinymce/wp-mce-help.php:212
3525
- msgid "Rich Editing Basics"
3526
- msgstr "Grundlagen von Rich Editing"
3527
-
3528
- #: wp-includes/js/tinymce/wp-mce-help.php:213
3529
- msgid "<em>Rich editing</em>, also called WYSIWYG for What You See Is What You Get, means your text is formatted as you type. The rich editor creates HTML code behind the scenes while you concentrate on writing. Font styles, links and images all appear approximately as they will on the internet."
3530
- msgstr "<em>Rich editing</em>, auch WYSIWYG genannt (für What You See Is What You Get) bedeutet, dass dein Text so formatiert wird, wie du ihn tippst. Ein Rich Editor erzeugt im Hintergrund den HTML-Code, so dass du dich ganz auf das Schreiben konzentrieren kannst. Schriften, Links und Bilder werden in etwa so dargestellt, wie sie später im Internet erscheinen werden."
3531
-
3532
- #: wp-includes/js/tinymce/wp-mce-help.php:214
3533
- msgid "WordPress includes a rich HTML editor that works well in all major web browsers used today. However editing HTML is not the same as typing text. Each web page has two major components: the structure, which is the actual HTML code and is produced by the editor as you type, and the display, that is applied to it by the currently selected WordPress theme and is defined in style.css. WordPress is producing valid XHTML 1.0 which means that inserting multiple line breaks (BR tags) after a paragraph would not produce white space on the web page. The BR tags will be removed as invalid by the internal HTML correcting functions."
3534
- msgstr "WordPress enthält einen Komfort-HTML-Editor, der in allen gängigen Webbrowsern funktioniert. HTML zu bearbeiten ist allerdings etwas anderes als Text zu tippen. Jede Webseite besteht im wesentlichen aus zwei Komponenten: Die Struktur, das ist der eigentliche HTML-Code, diese wird vom Editor bei der Eingabe erzeugt; und die Formatierung, sie wird vom gewählten WordPress-Theme beeinflusst und ist in style.css festgelegt. Zudem erzeugt WordPress gültiges XHTML 1.0, das heißt, die Formatierung kann nicht durch Strukturelemente beeinflusst werden. Man kann nach einem Absatz soviele Zeilenumbrüche (BR-Tags) einfügen, wie man will: Auf der Webseite erhält man dadurch keinerlei vertikalen Leerraum. Die BR-Tags werden durch die interne HTML-Korrektur eliminiert, weil sie ungültig sind."
3535
-
3536
- #: wp-includes/js/tinymce/wp-mce-help.php:215
3537
- msgid "While using the editor, most basic keyboard shortcuts work like in any other text editor. For example: Shift+Enter inserts line break, Ctrl+C = copy, Ctrl+X = cut, Ctrl+Z = undo, Ctrl+Y = redo, Ctrl+A = select all, etc. (on Mac use the Command key instead of Ctrl). See the Hotkeys tab for all available keyboard shortcuts."
3538
- msgstr "Bei diesem Editor funktionieren viele Tastenkürzel genau wie in anderen Texteditoren. Zum Beispiel: Umschalt+Enter = Zeilenumbruch einfügen, Strg+C = Kopieren, Strgl+X = Ausschneiden, Strg+Z = Rückgängig, Strg+Y = Wiederholen, Strg+A = Alle auswählen, usw. (Beim Mac ist es die Command-Taste und nicht Strg). Alle Tastenkürzel erfährst du auf der Karte \"Hotkeys\"."
3539
-
3540
- #: wp-includes/js/tinymce/wp-mce-help.php:216
3541
- msgid "If you do not like the way the rich editor works, you may turn it off from Your Profile submenu, under Users in the admin menu."
3542
- msgstr "Wenn dir der Rich Editor nicht passt, kannst du ihn im Untermenü \"Dein Profil\" abschalten, unter Benutzer im Admin-Menü."
3543
-
3544
- #: wp-includes/js/tinymce/wp-mce-help.php:220
3545
- msgid "Advanced Rich Editing"
3546
- msgstr "Erweiterte WYSIWYG-Schreiboptionen"
3547
-
3548
- #: wp-includes/js/tinymce/wp-mce-help.php:221
3549
- msgid "Images and Attachments"
3550
- msgstr "Bilder und Anlagen"
3551
-
3552
- #: wp-includes/js/tinymce/wp-mce-help.php:222
3553
- msgid "There is a button in the editor toolbar for inserting images that are already hosted somewhere on the internet. If you have a URL for an image, click this button and enter the URL in the box which appears."
3554
- msgstr "In der Editor-Symbolleiste gibt es eine Schaltfläche, um Bilder einzufügen, die bereits irgendwo im Internet gehostet sind. Wenn du eine URL für ein Bild hast, klick diese Schaltfläche an und gib die URL ein."
3555
-
3556
- #: wp-includes/js/tinymce/wp-mce-help.php:223
3557
- msgid "If you need to upload an image or another media file from your computer, you can use the Media Library buttons above the editor. The media library will attempt to create a thumbnail-sized copy from each uploaded image. To insert your image into the post, first click on the thumbnail to reveal a menu of options. When you have selected the options you like, click \"Send to Editor\" and your image or file will appear in the post you are editing. If you are inserting a movie, there are additional options in the \"Media\" dialog that can be opened from the second toolbar row."
3558
- msgstr "Wenn du eine Bild- oder Audiodatei von deinem Computer hochladen möchtest, benutze bitte den Link zur Mediathek über dem Editor. Die Mediathek wird dann versuchen ein Miniaturbild vom Original zu erstellen. Um das hochgeladene Bild in den Artikel einzufügen, musst du auf das Miniaturbild klicken und ein Kontextmenü öffnet sich. Zum Beispiel kann damit ein Miniaturbild in den Artikel eingefügt und eine Verknüpfung zu einer Seite, auf der das Bild komplett dargestellt wird, erstellt werden. Wenn die Optionen eingestellt sind, auf \"Zum Editor senden\" klicken und das Bild oder die Datei wird in dem Artikel erscheinen."
3559
-
3560
- #: wp-includes/js/tinymce/wp-mce-help.php:224
3561
- msgid "HTML in the Rich Editor"
3562
- msgstr "HTML im Rich Editor"
3563
-
3564
- #: wp-includes/js/tinymce/wp-mce-help.php:225
3565
- msgid "Any HTML entered directly into the rich editor will show up as text when the post is viewed. What you see is what you get. When you want to include HTML elements that cannot be generated with the toolbar buttons, you must enter it by hand in the HTML editor. Examples are tables and &lt;code&gt;. To do this, click the HTML tab and edit the code, then switch back to Visual mode. If the code is valid and understood by the editor, you should see it rendered immediately."
3566
- msgstr "Jeder HTML-Befehl, den du direkt in den Rich Editor eingibst, wird im fertigen Artikel als Text angezeigt. What you see is what you get. Wenn du HTML-Elemente einfügen bzw. benutzen möchtest, musst du den dafür vorgesehenen HTML-Editor benutzen. Tabellen und &lt;code&gt; sind Beispiele dafür. Um diese Befehle einzufügen, klicke auf den HTML Button, verändere den HTML-Code des Beitrages und klicke anschliessend auf Update. Wenn der Code fehlerlos ist und vom Editor verstanden wird, wird er übernommen und das gewünschte Objekt bzw. Ziel des eingegebenen Befehles in den Artikel eingebunden."
3567
-
3568
- #: wp-includes/js/tinymce/wp-mce-help.php:226
3569
- msgid "Pasting in the Rich Editor"
3570
- msgstr "Übetragen in den Rich Editor"
3571
-
3572
- #: wp-includes/js/tinymce/wp-mce-help.php:227
3573
- msgid "When pasting content from another web page the results can be inconsistent and depend on your browser and on the web page you are pasting from. The editor tries to correct any invalid HTML code that was pasted, but for best results try using the HTML tab or one of the paste buttons that are on the second row. Alternatively try pasting paragraph by paragraph. In most browsers to select one paragraph at a time, triple-click on it."
3574
- msgstr "Wenn du Inhalte aus einer anderen Webseite einfügst, kann es sein, dass diese nicht übereinstimmen. Das hängt von deinem Browser und der Webseite ab, von der du den Inhalt kopiert hast. Der Editor versucht ungültiges HTML zu korrigieren, dass du eingefügt hast. Um auf Nummer sicher zu gehen, wechsle in den HTML-Modus oder benutze eine der Einfüge-Schaltflächen in der zweiten Zeile. Alternativ kannst du versuchen die Passagen absatzweise einzufügen. In den meisten Browsern kannst mit einem Dreifach-Klick einzelne Absätze markieren."
3575
-
3576
- #: wp-includes/js/tinymce/wp-mce-help.php:228
3577
- msgid "Pasting content from another application, like Word or Excel, is best done with the Paste from Word button on the second row, or in HTML mode."
3578
- msgstr "Inhalte aus anderen Programmen, zum Beispiel Word oder Excel, fügst du am besten über die Word-Schaltfläche in der zweiten Reihe oder im HTML Modus ein."
3579
-
3580
- #: wp-includes/js/tinymce/wp-mce-help.php:232
3581
- msgid "Writing at Full Speed"
3582
- msgstr "Schreiben mit voller Geschwindigkeit"
3583
-
3584
- #: wp-includes/js/tinymce/wp-mce-help.php:233
3585
- msgid "Rather than reaching for your mouse to click on the toolbar, use these access keys. Windows and Linux use Ctrl + letter. Macintosh uses Command + letter."
3586
- msgstr "Besser, als mit der Maus in der Toolbar herumzustochern, ist der Einsatz dieser Kurzbefehle. Windows und Linux benutzen Strg + Buchstabe. Beim Mac ist es Command + Buchstabe."
3587
-
3588
- #: wp-includes/js/tinymce/wp-mce-help.php:236
3589
- #: wp-includes/js/tinymce/wp-mce-help.php:250
3590
- msgid "Letter"
3591
- msgstr "Buchstabe"
3592
-
3593
- #: wp-includes/js/tinymce/wp-mce-help.php:236
3594
- #: wp-includes/js/tinymce/wp-mce-help.php:250
3595
- msgid "Action"
3596
- msgstr "Aktion"
3597
-
3598
- #: wp-includes/js/tinymce/wp-mce-help.php:238
3599
- msgid "Select all"
3600
- msgstr "Alle auswählen"
3601
-
3602
- #: wp-includes/js/tinymce/wp-mce-help.php:248
3603
- msgid "The following shortcuts use different access keys: Alt + Shift + letter."
3604
- msgstr "Die folgenden Kurzbefehle liegen auf anderen Tasten: Alt + Umsch + Buchstabe."
3605
-
3606
- #: wp-includes/js/tinymce/wp-mce-help.php:253
3607
- msgid "Check Spelling"
3608
- msgstr "Rechtschreibprüfung"
3609
-
3610
- #: wp-includes/js/tinymce/wp-mce-help.php:254
3611
- msgid "Justify Text"
3612
- msgstr "Blocksatz"
3613
-
3614
- #: wp-includes/js/tinymce/wp-mce-help.php:256
3615
- msgid "Insert link"
3616
- msgstr "Link einfügen"
3617
-
3618
- #: wp-includes/js/tinymce/wp-mce-help.php:257
3619
- msgid "Remove link"
3620
- msgstr "Link entfernen"
3621
-
3622
- #: wp-includes/js/tinymce/wp-mce-help.php:258
3623
- msgid "Quote"
3624
- msgstr "Zitat"
3625
-
3626
- #: wp-includes/js/tinymce/wp-mce-help.php:258 wp-admin/press-this.php:160
3627
- #: wp-admin/press-this.php:650
3628
- msgid "Insert Image"
3629
- msgstr "Bild einfügen"
3630
-
3631
- #: wp-includes/js/tinymce/wp-mce-help.php:259
3632
- msgid "Full Screen"
3633
- msgstr "Vollbild"
3634
-
3635
- #: wp-includes/js/tinymce/wp-mce-help.php:260
3636
- msgid "Insert Page Break tag"
3637
- msgstr "Tag für Seitenumbruch einfügen"
3638
-
3639
- #: wp-includes/js/tinymce/wp-mce-help.php:261
3640
- msgid "Switch to HTML mode"
3641
- msgstr "In den HTML-Modus wechseln"
3642
-
3643
- #: wp-includes/js/tinymce/wp-mce-help.php:263
3644
- msgid "Editor width in Distraction-free writing mode:"
3645
- msgstr "Im Vollbildmodus:"
3646
-
3647
- #: wp-includes/js/tinymce/wp-mce-help.php:264
3648
- msgid "Wider"
3649
- msgstr "Breiter"
3650
-
3651
- #: wp-includes/js/tinymce/wp-mce-help.php:265
3652
- msgid "Narrower"
3653
- msgstr "Schmaler"
3654
-
3655
- #: wp-includes/js/tinymce/wp-mce-help.php:266
3656
- msgid "Default width"
3657
- msgstr "Standardbreite"
3658
-
3659
- #: wp-includes/js/tinymce/wp-mce-help.php:273
3660
- #: wp-admin/includes/plugin-install.php:310
3661
- #: wp-admin/includes/theme-install.php:162
3662
- msgid "Version:"
3663
- msgstr "Version:"
3664
-
3665
- #: wp-includes/js/tinymce/wp-mce-help.php:274
3666
- msgid "TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor released as Open Source under %sLGPL</a>\tby Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances."
3667
- msgstr "TinyMCE ist ein plattformunabhängiger, webbasierter JavaScript-HTML-WYSIWYG-Editor, der als Open Source unter %sLGPL</a> von Moxiecode Systems AB veröffentlicht wurde. Man kann damit HTML-Textfelder oder andere HTML-Elemente in Editorinstanzen umwandeln."
3668
-
3669
- #: wp-includes/js/tinymce/wp-mce-help.php:274
3670
- msgid "GNU Library General Public Licence"
3671
- msgstr "GNU Library General Public Licence"
3672
-
3673
- #: wp-includes/js/tinymce/wp-mce-help.php:275
3674
- msgid "Copyright &copy; 2003-2011, <a href=\"http://www.moxiecode.com\" target=\"_blank\">Moxiecode Systems AB</a>, All rights reserved."
3675
- msgstr "Copyright &copy; 2003-2011, <a href=\"http://www.moxiecode.com\" target=\"_blank\">Moxiecode Systems AB</a>, Alle Rechte vorbehalten."
3676
-
3677
- #: wp-includes/js/tinymce/wp-mce-help.php:276
3678
- msgid "For more information about this software visit the <a href=\"http://tinymce.moxiecode.com\" target=\"_blank\">TinyMCE website</a>."
3679
- msgstr "Weitere Informationen zur Software erhältst du auf der <a href=\"http://tinymce.moxiecode.com\" target=\"_blank\">TinyMCE-Webseite</a>."
3680
-
3681
- #: wp-includes/js/tinymce/wp-mce-help.php:279
3682
- msgid "Got Moxie?"
3683
- msgstr "Hast Du Moxie?"
3684
-
3685
- #: wp-includes/wp-db.php:1498
3686
- msgid "<strong>ERROR</strong>: WordPress %1$s requires MySQL %2$s or higher"
3687
- msgstr "<strong>Fehler:</strong> WordPress %1$s benötigt mindestens MySQL %2$s"
3688
-
3689
- #: wp-includes/class-wp-xmlrpc-server.php:159
3690
- #: wp-includes/class-wp-xmlrpc-server.php:181
3691
- msgid "XML-RPC services are disabled on this site. An admin user can enable them at %s"
3692
- msgstr "XML-RPC-Dienste sind auf diesem Blog deaktiviert. Ein Administrator kann sie hier aktivieren: %s"
3693
-
3694
- #: wp-includes/class-wp-xmlrpc-server.php:164
3695
- #: wp-includes/class-wp-xmlrpc-server.php:188
3696
- msgid "Bad login/pass combination."
3697
- msgstr "Falsche Benutzer/Passwort-Kombination."
3698
-
3699
- #: wp-includes/class-wp-xmlrpc-server.php:294
3700
- msgid "Software Name"
3701
- msgstr "Softwarename"
3702
-
3703
- #: wp-includes/class-wp-xmlrpc-server.php:299
3704
- msgid "Software Version"
3705
- msgstr "Softwareversion"
3706
-
3707
- #: wp-includes/class-wp-xmlrpc-server.php:304
3708
- msgid "Site URL"
3709
- msgstr "Site-URL"
3710
-
3711
- #: wp-includes/class-wp-xmlrpc-server.php:311
3712
- msgid "Time Zone"
3713
- msgstr "Zeitzone"
3714
-
3715
- #: wp-includes/class-wp-xmlrpc-server.php:316 wp-admin/options-general.php:96
3716
- #: wp-admin/install.php:97
3717
- msgid "Site Title"
3718
- msgstr "Blogtitel"
3719
-
3720
- #: wp-includes/class-wp-xmlrpc-server.php:321
3721
- msgid "Site Tagline"
3722
- msgstr "Blogbeschreibung"
3723
-
3724
- #: wp-includes/class-wp-xmlrpc-server.php:326 wp-admin/options-general.php:230
3725
- #: wp-admin/options-general.php:232
3726
- msgid "Date Format"
3727
- msgstr "Datumsformat"
3728
-
3729
- #: wp-includes/class-wp-xmlrpc-server.php:331 wp-admin/options-general.php:263
3730
- #: wp-admin/options-general.php:265
3731
- msgid "Time Format"
3732
- msgstr "Zeitformat"
3733
-
3734
- #: wp-includes/class-wp-xmlrpc-server.php:336
3735
- msgid "Allow new users to sign up"
3736
- msgstr "Erlaube neuen Benutzern die Registrierung"
3737
-
3738
- #: wp-includes/class-wp-xmlrpc-server.php:341
3739
- msgid "Thumbnail Width"
3740
- msgstr "Breite Vorschaubild"
3741
-
3742
- #: wp-includes/class-wp-xmlrpc-server.php:346
3743
- msgid "Thumbnail Height"
3744
- msgstr "Höhe Vorschaubild"
3745
-
3746
- #: wp-includes/class-wp-xmlrpc-server.php:351
3747
- msgid "Crop thumbnail to exact dimensions"
3748
- msgstr "Vorschaubild auf exakte Größe beschneiden"
3749
-
3750
- #: wp-includes/class-wp-xmlrpc-server.php:356
3751
- msgid "Medium size image width"
3752
- msgstr "Breite für mittlere Bildgröße"
3753
-
3754
- #: wp-includes/class-wp-xmlrpc-server.php:361
3755
- msgid "Medium size image height"
3756
- msgstr "Höhe für mittlere Bildgröße"
3757
-
3758
- #: wp-includes/class-wp-xmlrpc-server.php:366
3759
- msgid "Large size image width"
3760
- msgstr "Breite für maximale Bildgröße"
3761
-
3762
- #: wp-includes/class-wp-xmlrpc-server.php:371
3763
- msgid "Large size image height"
3764
- msgstr "Höhe für maximale Bildgröße"
3765
-
3766
- #: wp-includes/class-wp-xmlrpc-server.php:465
3767
- msgid "Sorry, you cannot edit this page."
3768
- msgstr "Tut mir leid, du kannst diese Seite nicht bearbeiten."
3769
-
3770
- #: wp-includes/class-wp-xmlrpc-server.php:541
3771
- #: wp-includes/class-wp-xmlrpc-server.php:651
3772
- #: wp-includes/class-wp-xmlrpc-server.php:690
3773
- msgid "Sorry, no such page."
3774
- msgstr "Diese Seite gibt es leider nicht."
3775
-
3776
- #: wp-includes/class-wp-xmlrpc-server.php:569
3777
- #: wp-includes/class-wp-xmlrpc-server.php:733
3778
- msgid "Sorry, you cannot edit pages."
3779
- msgstr "Tut mir leid, du kannst keine Seiten bearbeiten."
3780
-
3781
- #: wp-includes/class-wp-xmlrpc-server.php:617
3782
- msgid "Sorry, you cannot add new pages."
3783
- msgstr "Tut mir leid, du kannst keine neuen Seiten hinzufügen."
3784
-
3785
- #: wp-includes/class-wp-xmlrpc-server.php:655
3786
- msgid "Sorry, you do not have the right to delete this page."
3787
- msgstr "Du verfügst nicht über ausreichende Rechte, um diese Seite zu löschen."
3788
-
3789
- #: wp-includes/class-wp-xmlrpc-server.php:660
3790
- msgid "Failed to delete the page."
3791
- msgstr "Die Seite konnte nicht gelöscht werden."
3792
-
3793
- #: wp-includes/class-wp-xmlrpc-server.php:694
3794
- msgid "Sorry, you do not have the right to edit this page."
3795
- msgstr "Du verfügst nicht über ausreichende Rechte, um diese Seite zu bearbeiten."
3796
-
3797
- #: wp-includes/class-wp-xmlrpc-server.php:793
3798
- msgid "Sorry, you cannot edit posts on this site."
3799
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Artikel zu bearbeiten."
3800
-
3801
- #: wp-includes/class-wp-xmlrpc-server.php:828
3802
- msgid "Sorry, you must be able to edit posts on this site in order to view tags."
3803
- msgstr "Du musst das Recht haben, Artikel bearbeiten zu können, damit du Schlagwörter sehen kannst."
3804
-
3805
- #: wp-includes/class-wp-xmlrpc-server.php:873
3806
- msgid "Sorry, you do not have the right to add a category."
3807
- msgstr "Du verfügst nicht über ausreichende Rechte, um eine Kategorie hinzuzufügen."
3808
-
3809
- #: wp-includes/class-wp-xmlrpc-server.php:901
3810
- #: wp-includes/class-wp-xmlrpc-server.php:903
3811
- msgid "Sorry, the new category failed."
3812
- msgstr "Die neue Kategorie konnte leider nicht erstellt werden."
3813
-
3814
- #: wp-includes/class-wp-xmlrpc-server.php:931
3815
- msgid "Sorry, you do not have the right to delete a category."
3816
- msgstr "Du hast leider nicht die nötigen Rechte, um diesen Blog zu betreten."
3817
-
3818
- #: wp-includes/class-wp-xmlrpc-server.php:957
3819
- msgid "Sorry, you must be able to edit posts to this site in order to view categories."
3820
- msgstr "Du musst berechtigt sein Artikel zu bearbeiten, um Kategorien sehen zu können."
3821
-
3822
- #: wp-includes/class-wp-xmlrpc-server.php:993
3823
- #: wp-includes/class-wp-xmlrpc-server.php:1135
3824
- #: wp-includes/class-wp-xmlrpc-server.php:1141
3825
- #: wp-includes/class-wp-xmlrpc-server.php:1185
3826
- #: wp-includes/class-wp-xmlrpc-server.php:1191
3827
- msgid "You are not allowed to moderate comments on this site."
3828
- msgstr "Es ist dir nicht erlaubt auf diesem Blog Kommentare zu moderieren."
3829
-
3830
- #: wp-includes/class-wp-xmlrpc-server.php:998
3831
- #: wp-includes/class-wp-xmlrpc-server.php:1138
3832
- #: wp-includes/class-wp-xmlrpc-server.php:1188
3833
- msgid "Invalid comment ID."
3834
- msgstr "Ungültige Kommentar-ID."
3835
-
3836
- #: wp-includes/class-wp-xmlrpc-server.php:1067
3837
- msgid "Sorry, you cannot edit comments."
3838
- msgstr "Tut mir leid, du kannst keine Kommentare bearbeiten."
3839
-
3840
- #: wp-includes/class-wp-xmlrpc-server.php:1200
3841
- msgid "Invalid comment status."
3842
- msgstr "Ungültiger Kommentarstatus."
3843
-
3844
- #: wp-includes/class-wp-xmlrpc-server.php:1231
3845
- msgid "Sorry, the comment could not be edited. Something wrong happened."
3846
- msgstr "Der Artikel konnte leider nicht bearbeitet werden. Irgendetwas ging schief."
3847
-
3848
- #: wp-includes/class-wp-xmlrpc-server.php:1262
3849
- msgid "You must be registered to comment"
3850
- msgstr "Um einen Kommentar zu hinterlassen, musst du angemeldet sein."
3851
-
3852
- #: wp-includes/class-wp-xmlrpc-server.php:1275
3853
- #: wp-includes/class-wp-xmlrpc-server.php:1278
3854
- #: wp-includes/class-wp-xmlrpc-server.php:2550
3855
- msgid "Invalid post ID."
3856
- msgstr "Ungültige Artikel-ID."
3857
-
3858
- #: wp-includes/class-wp-xmlrpc-server.php:1304
3859
- msgid "Comment author name and email are required"
3860
- msgstr "Name und E-Mail-Adresse des Autoren sind erforderlich."
3861
-
3862
- #: wp-includes/class-wp-xmlrpc-server.php:1306
3863
- msgid "A valid email address is required"
3864
- msgstr "Eine gültige E-Mail-Adresse ist erforderlich"
3865
-
3866
- #: wp-includes/class-wp-xmlrpc-server.php:1338
3867
- #: wp-includes/class-wp-xmlrpc-server.php:1397
3868
- #: wp-includes/class-wp-xmlrpc-server.php:1423
3869
- #: wp-includes/class-wp-xmlrpc-server.php:1449
3870
- msgid "You are not allowed access to details about this site."
3871
- msgstr "Du bist nicht berechtigt, Details dieser Website einzusehen."
3872
-
3873
- #: wp-includes/class-wp-xmlrpc-server.php:1365
3874
- msgid "You are not allowed access to details about comments."
3875
- msgstr "Du darfst nicht auf Details zu Kommentaren zugreifen."
3876
-
3877
- #: wp-includes/class-wp-xmlrpc-server.php:1527
3878
- msgid "You are not allowed to update options."
3879
- msgstr "Du darfst die Einstellungen nicht ändern."
3880
-
3881
- #: wp-includes/class-wp-xmlrpc-server.php:1576
3882
- #: wp-includes/class-wp-xmlrpc-server.php:3057
3883
- msgid "You are not allowed to upload files to this site."
3884
- msgstr "Du verfügst nicht über ausreichende Rechte, um Dateien hochzuladen."
3885
-
3886
- #: wp-includes/class-wp-xmlrpc-server.php:1581
3887
- msgid "Invalid attachment ID."
3888
- msgstr "Ungültige Anhang-ID."
3889
-
3890
- #: wp-includes/class-wp-xmlrpc-server.php:1640
3891
- msgid "Sorry, you cannot upload files."
3892
- msgstr "Entschuldigung, aber du darfst keine Dateien hochladen."
3893
-
3894
- #: wp-includes/class-wp-xmlrpc-server.php:1796
3895
- msgid "Sorry, you do not have access to user data on this site."
3896
- msgstr "Du hast keinen Zugriff auf die Benutzerdaten dieses Blogs."
3897
-
3898
- #: wp-includes/class-wp-xmlrpc-server.php:1831
3899
- #: wp-includes/class-wp-xmlrpc-server.php:2771
3900
- #: wp-includes/class-wp-xmlrpc-server.php:3274
3901
- msgid "Sorry, you cannot edit this post."
3902
- msgstr "Tut mir leid, du kannst diesen Artikel nicht bearbeiten."
3903
-
3904
- #: wp-includes/class-wp-xmlrpc-server.php:1882
3905
- #: wp-includes/class-wp-xmlrpc-server.php:3139
3906
- msgid "Either there are no posts, or something went wrong."
3907
- msgstr "Entweder gibt es keine Artikel oder es ging etwas schief."
3908
-
3909
- #: wp-includes/class-wp-xmlrpc-server.php:1937
3910
- msgid "Sorry, this user can not edit the template."
3911
- msgstr "Dieser Benutzer kann das Template leider nicht bearbeiten."
3912
-
3913
- #: wp-includes/class-wp-xmlrpc-server.php:1977
3914
- msgid "Sorry, this user cannot edit the template."
3915
- msgstr "Tut mir leid, dieser Benutzer kann keine Templates bearbeiten."
3916
-
3917
- #: wp-includes/class-wp-xmlrpc-server.php:1987
3918
- msgid "Either the file is not writable, or something wrong happened. The file has not been updated."
3919
- msgstr "Entweder ist die Datei nicht beschreibbar oder etwas ging schief. Die Datei wurde nicht aktualisiert."
3920
-
3921
- #: wp-includes/class-wp-xmlrpc-server.php:2018
3922
- msgid "Sorry, you are not allowed to post on this site."
3923
- msgstr "Du verfügst nicht über ausreichende Rechte, um Artikel auf diesem Blog zu veröffentlichen."
3924
-
3925
- #: wp-includes/class-wp-xmlrpc-server.php:2038
3926
- #: wp-includes/class-wp-xmlrpc-server.php:2428 wp-app.php:446 wp-app.php:641
3927
- #: wp-app.php:827
3928
- msgid "Sorry, your entry could not be posted. Something wrong happened."
3929
- msgstr "Dein Artikel konnte leider nicht veröffentlicht werden. Irgendetwas ging schief."
3930
-
3931
- #: wp-includes/class-wp-xmlrpc-server.php:2073
3932
- #: wp-includes/class-wp-xmlrpc-server.php:2125
3933
- #: wp-includes/class-wp-xmlrpc-server.php:2866
3934
- #: wp-includes/class-wp-xmlrpc-server.php:3336
3935
- msgid "Sorry, no such post."
3936
- msgstr "Diesen Artikel gibt es leider nicht."
3937
-
3938
- #: wp-includes/class-wp-xmlrpc-server.php:2078 wp-app.php:507 wp-app.php:673
3939
- #: wp-app.php:746 wp-app.php:796
3940
- msgid "Sorry, you do not have the right to edit this post."
3941
- msgstr "Du verfügst nicht über ausreichende Rechte, um diesen Artikel zu bearbeiten."
3942
-
3943
- #: wp-includes/class-wp-xmlrpc-server.php:2083
3944
- #: wp-includes/class-wp-xmlrpc-server.php:2687
3945
- msgid "Sorry, you do not have the right to publish this post."
3946
- msgstr "Du verfügst nicht über ausreichende Rechte, um diesen Artikel zu veröffentlichen."
3947
-
3948
- #: wp-includes/class-wp-xmlrpc-server.php:2094 wp-app.php:530 wp-app.php:689
3949
- msgid "For some strange yet very annoying reason, this post could not be edited."
3950
- msgstr "Aus einem seltsam unerfreulichen Grund kann dieser Artikel nicht bearbeitet werden."
3951
-
3952
- #: wp-includes/class-wp-xmlrpc-server.php:2128 wp-app.php:552 wp-app.php:710
3953
- msgid "Sorry, you do not have the right to delete this post."
3954
- msgstr "Du verfügst nicht über ausreichende Rechte, um diesen Artikel zu löschen."
3955
-
3956
- #: wp-includes/class-wp-xmlrpc-server.php:2133 wp-app.php:560 wp-app.php:725
3957
- msgid "For some strange yet very annoying reason, this post could not be deleted."
3958
- msgstr "Aus einem seltsam unerfreulichen Grund kann dieser Artikel nicht gelöscht werden."
3959
-
3960
- #: wp-includes/class-wp-xmlrpc-server.php:2199
3961
- #: wp-includes/class-wp-xmlrpc-server.php:2509
3962
- msgid "Sorry, you are not allowed to publish pages on this site."
3963
- msgstr "Sorry, aber du darfst keine Seiten auf diesem Blog veröffentlichen."
3964
-
3965
- #: wp-includes/class-wp-xmlrpc-server.php:2210
3966
- #: wp-includes/class-wp-xmlrpc-server.php:2223
3967
- #: wp-includes/class-wp-xmlrpc-server.php:2500
3968
- #: wp-includes/class-wp-xmlrpc-server.php:2518
3969
- #: wp-includes/class-wp-xmlrpc-server.php:2529
3970
- msgid "Sorry, you are not allowed to publish posts on this site."
3971
- msgstr "Sorry, aber du darfst keine Artikel auf diesem Blog veröffentlichen."
3972
-
3973
- #: wp-includes/class-wp-xmlrpc-server.php:2214
3974
- #: wp-includes/class-wp-xmlrpc-server.php:2270
3975
- #: wp-includes/class-wp-xmlrpc-server.php:2522
3976
- #: wp-includes/class-wp-xmlrpc-server.php:2587
3977
- msgid "Invalid post type."
3978
- msgstr "Ungültiger Artikeltyp."
3979
-
3980
- #: wp-includes/class-wp-xmlrpc-server.php:2234
3981
- #: wp-includes/class-wp-xmlrpc-server.php:2540
3982
- msgid "Invalid post format"
3983
- msgstr "Ungültige Artikelformatvorlage"
3984
-
3985
- #: wp-includes/class-wp-xmlrpc-server.php:2263
3986
- msgid "You are not allowed to post as this user"
3987
- msgstr "Dieser Benutzer darf keine Artikel schreiben."
3988
-
3989
- #: wp-includes/class-wp-xmlrpc-server.php:2267
3990
- msgid "You are not allowed to create pages as this user"
3991
- msgstr "Dieser Benutzer darf in diesem Blog keine Seiten erstellen."
3992
-
3993
- #: wp-includes/class-wp-xmlrpc-server.php:2580
3994
- msgid "You are not allowed to change the post author as this user."
3995
- msgstr "Dieser Benutzer darf den Autor des Artikels nicht verändern."
3996
-
3997
- #: wp-includes/class-wp-xmlrpc-server.php:2584
3998
- msgid "You are not allowed to change the page author as this user."
3999
- msgstr "Dieser Benutzer darf den Autor der Seite nicht verändern."
4000
-
4001
- #: wp-includes/class-wp-xmlrpc-server.php:2685
4002
- msgid "Sorry, you do not have the right to publish this page."
4003
- msgstr "Du verfügst nicht über ausreichende Rechte, um diese Seite zu veröffentlichen."
4004
-
4005
- #: wp-includes/class-wp-xmlrpc-server.php:2722
4006
- msgid "Sorry, your entry could not be edited. Something wrong happened."
4007
- msgstr "Der Artikel konnte leider nicht bearbeitet werden. Irgendetwas ging schief."
4008
-
4009
- #: wp-includes/class-wp-xmlrpc-server.php:3001
4010
- #: wp-includes/class-wp-xmlrpc-server.php:3193
4011
- msgid "Sorry, you must be able to edit posts on this site in order to view categories."
4012
- msgstr "Entschuldige, aber du musst Artikel bearbeiten können, um Kategorien zu betrachten."
4013
-
4014
- #: wp-includes/class-wp-xmlrpc-server.php:3084
4015
- msgid "Could not write file %1$s (%2$s)"
4016
- msgstr "Konnte folgende Datei nicht schreiben %1$s (%2$s)"
4017
-
4018
- #: wp-includes/class-wp-xmlrpc-server.php:3231
4019
- msgid "Sorry, you can not edit this post."
4020
- msgstr "Du verfügst nicht über ausreichende Rechte, um diesen Artikel zu bearbeiten."
4021
-
4022
- #: wp-includes/class-wp-xmlrpc-server.php:3381
4023
- msgid "Sorry, you cannot publish this post."
4024
- msgstr "Entschuldigung, aber du darfst diesen Artikel nicht veröffentlichen."
4025
-
4026
- #: wp-includes/class-wp-xmlrpc-server.php:3428
4027
- msgid "Is there no link to us?"
4028
- msgstr "Gibt es keinen Link zu uns?"
4029
-
4030
- #: wp-includes/class-wp-xmlrpc-server.php:3468
4031
- #: wp-includes/class-wp-xmlrpc-server.php:3478
4032
- #: wp-includes/class-wp-xmlrpc-server.php:3485
4033
- #: wp-includes/class-wp-xmlrpc-server.php:3592
4034
- msgid "The specified target URL cannot be used as a target. It either doesn&#8217;t exist, or it is not a pingback-enabled resource."
4035
- msgstr "Die angegebene URL kann nicht als Ziel verwendet werden. Entweder existiert sie nicht oder der Empfäer erlaubt keine Pingbacks."
4036
-
4037
- #: wp-includes/class-wp-xmlrpc-server.php:3481
4038
- msgid "The source URL and the target URL cannot both point to the same resource."
4039
- msgstr "Die Quell-URL und die Ziel-URL können nicht gleichzeitig auf den gleichen Punkt zeigen."
4040
-
4041
- #: wp-includes/class-wp-xmlrpc-server.php:3489
4042
- msgid "The pingback has already been registered."
4043
- msgstr "Der Pingback wurde schon registriert."
4044
-
4045
- #: wp-includes/class-wp-xmlrpc-server.php:3497
4046
- msgid "The source URL does not exist."
4047
- msgstr "Die angegebene Quell-URL existiert nicht."
4048
-
4049
- #: wp-includes/class-wp-xmlrpc-server.php:3509
4050
- msgid "We cannot find a title on that page."
4051
- msgstr "Wir können auf dieser Seite keinen Titel finden."
4052
-
4053
- #: wp-includes/class-wp-xmlrpc-server.php:3545
4054
- msgid "The source URL does not contain a link to the target URL, and so cannot be used as a source."
4055
- msgstr "Die Quell-URL enthält keinen Link zur Ziel-URL und kann deshalb nicht als Quelle genutzt werden."
4056
-
4057
- #: wp-includes/class-wp-xmlrpc-server.php:3566
4058
- msgid "Pingback from %1$s to %2$s registered. Keep the web talking! :-)"
4059
- msgstr "Pingback von %1$s zu %2$s registriert. Keep the web talking! :-)"
4060
-
4061
- #: wp-includes/class-wp-xmlrpc-server.php:3599
4062
- msgid "The specified target URL does not exist."
4063
- msgstr "Die angegebene Ziel-URL existiert nicht."
4064
-
4065
- #: wp-links-opml.php:29
4066
- msgid "Links for %s"
4067
- msgstr "Links für %s"
4068
-
4069
- #: wp-login.php:83
4070
- msgid "Powered by WordPress"
4071
- msgstr "Powered by WordPress"
4072
-
4073
- #: wp-login.php:123
4074
- msgid "Are you lost?"
4075
- msgstr "Verlaufen?"
4076
-
4077
- #: wp-login.php:123
4078
- msgid "&larr; Back to %s"
4079
- msgstr "&larr; Zurück zu %s"
4080
-
4081
- #: wp-login.php:168
4082
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
4083
- msgstr "<strong>Fehler:</strong> Benutzername oder E-Mail-Adresse eingeben"
4084
-
4085
- #: wp-login.php:172
4086
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
4087
- msgstr "<strong>Fehler:</strong> Es existiert kein Benutzer mit dieser E-Mail-Adresse"
4088
-
4089
- #: wp-login.php:184
4090
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
4091
- msgstr "<strong>Fehler:</strong> Falscher Benutzername oder E-Mail-Adresse."
4092
-
4093
- #: wp-login.php:198
4094
- msgid "Password reset is not allowed for this user"
4095
- msgstr "Für diesen Benutzer ist es nicht erlaubt, das Passwort zurückzusetzen."
4096
-
4097
- #: wp-login.php:210
4098
- msgid "Someone requested that the password be reset for the following account:"
4099
- msgstr "Jemand hat das Zurücksetzen des Passworts für folgendes Benutzerkonto angefordert:"
4100
-
4101
- #: wp-login.php:213
4102
- msgid "If this was a mistake, just ignore this email and nothing will happen."
4103
- msgstr "Falls dies nicht beabsichtigt war, ignoriere einfach diese E-Mail. Es wird dann nichts passieren."
4104
-
4105
- #: wp-login.php:214
4106
- msgid "To reset your password, visit the following address:"
4107
- msgstr "Um dein Passwort zurückzusetzen, besuche folgende Adresse:"
4108
-
4109
- #: wp-login.php:224
4110
- msgid "[%s] Password Reset"
4111
- msgstr "[%s] Passwort zurücksetzen"
4112
-
4113
- #: wp-login.php:230
4114
- msgid "The e-mail could not be sent."
4115
- msgstr "Die E-Mail konnte nicht gesendet werden."
4116
-
4117
- #: wp-login.php:230
4118
- msgid "Possible reason: your host may have disabled the mail() function..."
4119
- msgstr "Mögliche Ursache: Dein Host hat eventuell die mail()-Funktion abgeschaltet."
4120
-
4121
- #: wp-login.php:251 wp-login.php:254 wp-login.php:259
4122
- msgid "Invalid key"
4123
- msgstr "Ungültiger Schlüssel"
4124
-
4125
- #: wp-login.php:294 wp-admin/includes/user.php:134
4126
- msgid "<strong>ERROR</strong>: Please enter a username."
4127
- msgstr "<strong>Fehler:</strong> Bitte gib einen Benutzernamen ein."
4128
-
4129
- #: wp-login.php:296 wp-admin/includes/user.php:163
4130
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
4131
- msgstr "<strong>Fehler:</strong> Dieser Benutzername kann nicht verwendet werden da er ungültige Zeichen enthält. Bitte gib einen gültigen Benutzernamen an."
4132
-
4133
- #: wp-login.php:299
4134
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
4135
- msgstr "<strong>Fehler:</strong> Dieser Benutzername existiert bereits, bitte wähl einen anderen."
4136
-
4137
- #: wp-login.php:304
4138
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
4139
- msgstr "<strong>Fehler:</strong> Bitte gib deine E-Mail-Adresse ein."
4140
-
4141
- #: wp-login.php:306
4142
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
4143
- msgstr "<strong>Fehler:</strong> Die E-Mail-Adresse ist ungültig."
4144
-
4145
- #: wp-login.php:309 wp-admin/includes/user.php:174
4146
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
4147
- msgstr "<strong>Fehler:</strong> Diese E-Mail-Adresse wurde bereits registriert, bitte wähle eine andere."
4148
-
4149
- #: wp-login.php:322
4150
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
4151
- msgstr "<strong>Fehler:</strong> Du konntest nicht registriert werden … bitte kontaktiere den <a href=\"mailto:%s\">Webmaster</a>."
4152
-
4153
- #: wp-login.php:394
4154
- msgid "Sorry, that key does not appear to be valid."
4155
- msgstr "Dieser Schlüssel scheint leider falsch zu sein."
4156
-
4157
- #: wp-login.php:398
4158
- msgid "Lost Password"
4159
- msgstr "Passwort verloren"
4160
-
4161
- #: wp-login.php:398
4162
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
4163
- msgstr "Bitte gib deinen Benutzernamen oder deine E-Mail-Adresse hier ein. Du bekommst eine E-Mail zugesandt, mit deren Hilfe du ein neues Passwort erstellen kannst."
4164
-
4165
- #: wp-login.php:406
4166
- msgid "Username or E-mail:"
4167
- msgstr "Benutzername oder E-Mail-Adresse:"
4168
-
4169
- #: wp-login.php:411
4170
- msgid "Get New Password"
4171
- msgstr "Neues Passwort"
4172
-
4173
- #: wp-login.php:437
4174
- msgid "The passwords do not match."
4175
- msgstr "Die Passwörter stimmen nicht überein."
4176
-
4177
- #: wp-login.php:440
4178
- msgid "Password Reset"
4179
- msgstr "Passwort zurücksetzen"
4180
-
4181
- #: wp-login.php:440
4182
- msgid "Your password has been reset."
4183
- msgstr "Dein Passwort wurde zurückgesetzt."
4184
-
4185
- #: wp-login.php:448 wp-login.php:467
4186
- msgid "Reset Password"
4187
- msgstr "Passwort zurücksetzen"
4188
-
4189
- #: wp-login.php:448
4190
- msgid "Enter your new password below."
4191
- msgstr "Gib bitte hier dein neues Passwort ein."
4192
-
4193
- #: wp-login.php:455
4194
- msgid "New password"
4195
- msgstr "Neues Passwort"
4196
-
4197
- #: wp-login.php:459
4198
- msgid "Confirm new password"
4199
- msgstr "Neues Passwort bestätigen"
4200
-
4201
- #: wp-login.php:464 wp-admin/user-new.php:341 wp-admin/install.php:123
4202
- #: wp-admin/user-edit.php:384
4203
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
4204
- msgstr "Hinweis: Dein Passwort sollte mind. 7 Zeichen lang sein. Um es sicherer zu machen, nutze die Groß- und Kleinschreibung, Ziffern und Symbole wie ! \" ? $ % ^ &amp; )."
4205
-
4206
- #: wp-login.php:507
4207
- msgid "Registration Form"
4208
- msgstr "Registrierungsformular"
4209
-
4210
- #: wp-login.php:507
4211
- msgid "Register For This Site"
4212
- msgstr "In diesem Blog registrieren."
4213
-
4214
- #: wp-login.php:520
4215
- msgid "A password will be e-mailed to you."
4216
- msgstr "Ein Passwort wird dir zugesendet."
4217
-
4218
- #: wp-login.php:528 wp-login.php:657 wp-login.php:659
4219
- msgid "Password Lost and Found"
4220
- msgstr "Passwortfundbüro"
4221
-
4222
- #: wp-login.php:528 wp-login.php:657 wp-login.php:659
4223
- msgid "Lost your password?"
4224
- msgstr "Passwort vergessen?"
4225
-
4226
- #: wp-login.php:574
4227
- msgid "You have logged in successfully."
4228
- msgstr "Du hast dich erfolgreich angemeldet."
4229
-
4230
- #: wp-login.php:603
4231
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href='http://www.google.com/cookies.html'>enable cookies</a> to use WordPress."
4232
- msgstr "<strong>Fehler:</strong> Cookies werden von deinem Browser blockiert oder nicht unterstützt. Um WordPress zu benutzen, musst du <a href='http://www.google.com/cookies.html'>Cookies erlauben</a>."
4233
-
4234
- #: wp-login.php:607
4235
- msgid "You are now logged out."
4236
- msgstr "Du hast dich erfolgreich abgemeldet."
4237
-
4238
- #: wp-login.php:609
4239
- msgid "User registration is currently not allowed."
4240
- msgstr "Zurzeit ist die Benutzer-Registrierung nicht erlaubt."
4241
-
4242
- #: wp-login.php:611
4243
- msgid "Check your e-mail for the confirmation link."
4244
- msgstr "Überprüfe dein E-Mail-Konto für den Bestätigungslink."
4245
-
4246
- #: wp-login.php:613
4247
- msgid "Check your e-mail for your new password."
4248
- msgstr "Überprüfe dein E-Mail-Konto für dein neues Passwort."
4249
-
4250
- #: wp-login.php:615
4251
- msgid "Registration complete. Please check your e-mail."
4252
- msgstr "Registrierung vollständig. Bitte schau in dein E-Mail-Postfach."
4253
-
4254
- #: wp-login.php:617
4255
- msgid "Your session has expired. Please log-in again."
4256
- msgstr "Deine Sitzung ist abgelaufen, bitte melde dich erneut an."
4257
-
4258
- #: wp-admin/revision.php:96
4259
- msgid "Compare Revisions of &#8220;%1$s&#8221;"
4260
- msgstr "Vergleiche Überarbeitungen von &#8220;%s&#8221;"
4261
-
4262
- #: wp-admin/revision.php:122
4263
- msgid "Revision for &#8220;%1$s&#8221; created on %2$s"
4264
- msgstr "Artikelüberarbeitung für &#8220;%1$s&#8221;, erstellt am %2$s"
4265
-
4266
- #: wp-admin/revision.php:162
4267
- msgid "Older: %s"
4268
- msgstr "Älter: %s"
4269
-
4270
- #: wp-admin/revision.php:163
4271
- msgid "Newer: %s"
4272
- msgstr "Neuer: %s"
4273
-
4274
- #: wp-admin/revision.php:196
4275
- msgid "These revisions are identical."
4276
- msgstr "Diese Überarbeitungen sind identisch."
4277
-
4278
- #: wp-admin/link-manager.php:12 wp-admin/link-manager.php:67
4279
- #: wp-admin/link.php:18
4280
- msgid "You do not have sufficient permissions to edit the links for this site."
4281
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Links bearbeiten zu können."
4282
-
4283
- #: wp-admin/link-manager.php:47
4284
- msgid "You can add links here to be displayed on your site, usually using <a href=\"%s\">Widgets</a>. By default, links to several sites in the WordPress community are included as examples."
4285
- msgstr ""
4286
- "Auf dieser Seite kannst du deine Links verwalten und Neue hinzufügen. Die Links kannst du auf deiner Website zum Beispiel mittels eines <a href=\"%s\">Widgets</a> anzeigen lassen. \n"
4287
- "Standardmäßig sind bereits einige Links aus der WordPress Community als Beispiele eingetragen. Du darfst diese aber auch selbstverständlich löschen."
4288
-
4289
- #: wp-admin/link-manager.php:49
4290
- msgid "You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table."
4291
- msgstr "Du kannst mittels <em>Optionen Einblenden</em> die Darstellung anpassen und auch diverse Auswahlfilter anwenden, die direkt über der Tabelle mit den Links angezeigt werden."
4292
-
4293
- #: wp-admin/link-manager.php:55
4294
- msgid "If you delete a link, it will be removed permanently, as Links do not have a Trash function yet."
4295
- msgstr "Wenn du einen Link löschst, dann wird er dauerhaft entfernt, da es noch keinen Papierkorb für Links gibt."
4296
-
4297
- #: wp-admin/link-manager.php:59 wp-admin/user-new.php:174 wp-admin/index.php:80
4298
- #: wp-admin/edit-link-form.php:52 wp-admin/options-general.php:79
4299
- #: wp-admin/themes.php:64 wp-admin/media.php:81 wp-admin/custom-header.php:112
4300
- #: wp-admin/options-discussion.php:26 wp-admin/plugin-editor.php:125
4301
- #: wp-admin/plugin-install.php:54 wp-admin/options-privacy.php:26
4302
- #: wp-admin/theme-editor.php:37 wp-admin/tools.php:27
4303
- #: wp-admin/edit-form-advanced.php:208 wp-admin/edit-form-advanced.php:233
4304
- #: wp-admin/comment.php:57 wp-admin/edit-comments.php:134
4305
- #: wp-admin/import.php:28 wp-admin/custom-background.php:94
4306
- #: wp-admin/options-media.php:39 wp-admin/edit.php:191 wp-admin/edit.php:212
4307
- #: wp-admin/upload.php:169 wp-admin/export.php:49 wp-admin/theme-install.php:52
4308
- #: wp-admin/users.php:60 wp-admin/options-writing.php:57
4309
- #: wp-admin/update-core.php:452 wp-admin/options-reading.php:54
4310
- #: wp-admin/options-permalink.php:43 wp-admin/user-edit.php:53
4311
- #: wp-admin/widgets.php:62 wp-admin/plugins.php:337 wp-admin/edit-tags.php:234
4312
- #: wp-admin/media-upload.php:76 wp-admin/nav-menus.php:464
4313
- msgid "For more information:"
4314
- msgstr "Weitere Informationen:"
4315
-
4316
- #: wp-admin/link-manager.php:60
4317
- msgid "<a href=\"http://codex.wordpress.org/Links_Screen\" target=\"_blank\">Documentation on Managing Links</a>"
4318
- msgstr "<a href=\"http://codex.wordpress.org/Links_Screen\" target=\"_blank\">Documentation on Managing Links (engl.)</a>"
4319
-
4320
- #: wp-admin/link-manager.php:61 wp-admin/user-new.php:176 wp-admin/index.php:82
4321
- #: wp-admin/edit-link-form.php:54 wp-admin/options-general.php:81
4322
- #: wp-admin/themes.php:66 wp-admin/media.php:83 wp-admin/custom-header.php:114
4323
- #: wp-admin/options-discussion.php:28 wp-admin/plugin-editor.php:128
4324
- #: wp-admin/plugin-install.php:56 wp-admin/options-privacy.php:28
4325
- #: wp-admin/theme-editor.php:42 wp-admin/tools.php:29
4326
- #: wp-admin/edit-form-advanced.php:210 wp-admin/edit-form-advanced.php:236
4327
- #: wp-admin/comment.php:59 wp-admin/edit-comments.php:138
4328
- #: wp-admin/import.php:30 wp-admin/custom-background.php:96
4329
- #: wp-admin/options-media.php:41 wp-admin/edit.php:193 wp-admin/edit.php:214
4330
- #: wp-admin/upload.php:171 wp-admin/export.php:51 wp-admin/theme-install.php:54
4331
- #: wp-admin/users.php:63 wp-admin/options-writing.php:59
4332
- #: wp-admin/update-core.php:454 wp-admin/options-reading.php:56
4333
- #: wp-admin/options-permalink.php:46 wp-admin/user-edit.php:55
4334
- #: wp-admin/widgets.php:64 wp-admin/plugins.php:339 wp-admin/edit-tags.php:243
4335
- #: wp-admin/media-upload.php:78 wp-admin/nav-menus.php:466
4336
- msgid "<a href=\"http://wordpress.org/support/\" target=\"_blank\">Support Forums</a>"
4337
- msgstr "<a href=\"http://forum.wpde.org/\" target=\"_blank\">WordPress Support-Foren</a> (<a href=\"http://wordpress.org/support/\" target=\"_blank\">en</a>)"
4338
-
4339
- #: wp-admin/link-manager.php:75 wp-admin/edit-comments.php:158
4340
- #: wp-admin/edit.php:226 wp-admin/upload.php:181 wp-admin/users.php:402
4341
- #: wp-admin/plugins.php:398 wp-admin/edit-tags.php:268
4342
- msgid "Search results for &#8220;%s&#8221;"
4343
- msgstr "Suchergebnisse für &#8220;%s&#8221;"
4344
-
4345
- #: wp-admin/link-manager.php:82
4346
- msgid "%s link deleted."
4347
- msgid_plural "%s links deleted"
4348
- msgstr[0] "%s Link gelöscht."
4349
- msgstr[1] "%s Links gelöscht."
4350
-
4351
- #: wp-admin/link-manager.php:90
4352
- msgid "Search Links"
4353
- msgstr "Links suchen"
4354
-
4355
- #: wp-admin/user-new.php:14 wp-admin/user-new.php:16 wp-admin/user-new.php:59
4356
- #: wp-admin/user-new.php:93 wp-admin/themes.php:13 wp-admin/themes.php:26
4357
- #: wp-admin/custom-header.php:640 wp-admin/custom-header.php:726
4358
- #: wp-admin/edit-comments.php:12 wp-admin/edit.php:22 wp-admin/post-new.php:40
4359
- #: wp-admin/users.php:13 wp-admin/users.php:111
4360
- #: wp-admin/includes/bookmark.php:30 wp-admin/press-this.php:17
4361
- #: wp-admin/widgets.php:16 wp-admin/plugins.php:16 wp-admin/edit-tags.php:21
4362
- #: wp-admin/edit-tags.php:48 wp-admin/edit-tags.php:86
4363
- #: wp-admin/edit-tags.php:100 wp-admin/edit-tags.php:139
4364
- #: wp-admin/nav-menus.php:23 wp-admin/options.php:35 wp-admin/options.php:59
4365
- #: wp-content/plugins/akismet/admin.php:58
4366
- msgid "Cheatin&#8217; uh?"
4367
- msgstr "Schummeln, was?"
4368
-
4369
- #: wp-admin/user-new.php:22
4370
- msgid ""
4371
- "Hi,\n"
4372
- "You've been invited to join '%1$s' at\n"
4373
- "%2$s with the role of %3$s.\n"
4374
- "If you do not want to join this site please ignore\n"
4375
- "this email. This invitation will expire in a few days.\n"
4376
- "\n"
4377
- "Please click the following link to activate your user account:\n"
4378
- "%%s"
4379
- msgstr ""
4380
- "Hallo,\n"
4381
- "Du wurdest eingeladen '%1$s' beizutreten auf\n"
4382
- "%2$s mit der Rolle %3$s.\n"
4383
- "Wenn Du diesem Blog nicht beitreten willst, ignoriere\n"
4384
- "diese E-Mail. Diese Einladung wird in wenigen Tagen verfallen.\n"
4385
- "\n"
4386
- "Bitte klicke auf den folgenden Link um deinen Benutzeraccount zu aktivieren:\n"
4387
- "%%s"
4388
-
4389
- #: wp-admin/user-new.php:34
4390
- msgid "[%s] Your site invite"
4391
- msgstr "[%s] Deine Einladung"
4392
-
4393
- #: wp-admin/user-new.php:83
4394
- msgid "[%s] Joining confirmation"
4395
- msgstr "[%s] Beitritt bestätigen"
4396
-
4397
- #: wp-admin/user-new.php:165
4398
- msgid "Administrators have access to all the administration features."
4399
- msgstr "Administratoren haben die komplette Macht und sehen alle Optionen."
4400
-
4401
- #: wp-admin/user-new.php:166
4402
- msgid "Editors can publish posts, manage posts as well as manage other people&#8217;s posts, etc."
4403
- msgstr "Redakteure können Artikel und Seiten anlegen und veröffentlichen, sowie die Artikel, Seiten (etc.) von anderen Benutzern verwalten (ändern, löschen, veröffentlichen)."
4404
-
4405
- #: wp-admin/user-new.php:168
4406
- msgid "Contributors can write and manage their posts but not publish posts or upload media files."
4407
- msgstr "Mitarbeiter können eigene Artikel schreiben und bearbeiten, sie jedoch nicht veröffentlichen. Auch dürfen sie keine Dateien hochladen."
4408
-
4409
- #: wp-admin/user-new.php:149
4410
- msgid "New users will receive an email letting them know they&#8217;ve been added as a user for your site. By default, this email will also contain their password. Uncheck the box if you don&#8217;t want the password to be included in the welcome email."
4411
- msgstr "Neue Benutzer bekommen eine E-Mail, in welcher ihnen mitgeteilt wird, dass sie als Benutzer dieser Website registriert wurden. Diese E-Mail enthält auch das Passwort. Du kannst allerdings bei der Checkbox <em>Passwort senden?</em> die Markierung entfernen, so dass das Passwort nicht in der E-Mail genannt wird."
4412
-
4413
- #: wp-admin/user-new.php:175
4414
- msgid "<a href=\"http://codex.wordpress.org/Users_Add_New_Screen\" target=\"_blank\">Documentation on Adding New Users</a>"
4415
- msgstr "<a href=\"http://codex.wordpress.org/Users_Add_New_Screen\" target=\"_blank\">Documentation on Adding New Users (engl.)</a>"
4416
-
4417
- #: wp-admin/user-new.php:189
4418
- msgid "Invitation email sent to new user. A confirmation link must be clicked before their account is created."
4419
- msgstr "Die Einladungs-E-Mail wurde zum neuen Benutzer versandt. Er muss noch den Bestätigungslink anklicken, damit dieses Benutzerkonto erfolgreich angelegt wird."
4420
-
4421
- #: wp-admin/user-new.php:192
4422
- msgid "Invitation email sent to user. A confirmation link must be clicked for them to be added to your site."
4423
- msgstr "Einladungs-E-Mail versandt. Der Benutzer muss den Bestätigungslink anklicken, um deinem Blog hinzugefügt zu werden."
4424
-
4425
- #: wp-admin/user-new.php:195
4426
- msgid "User has been added to your site."
4427
- msgstr "Der Benutzer wurde zu deinem Blog hinzugefügt"
4428
-
4429
- #: wp-admin/user-new.php:198
4430
- msgid "That user is already a member of this site."
4431
- msgstr "Dieser Benutzer ist bereits ein Mitglied dieses Blogs."
4432
-
4433
- #: wp-admin/user-new.php:201
4434
- msgid "The requested user does not exist."
4435
- msgstr "Dieser Benutzer existiert nicht."
4436
-
4437
- #: wp-admin/user-new.php:204
4438
- msgid "Please enter a valid email address."
4439
- msgstr "Bitte gib eine gültige E-Mail-Adresse ein."
4440
-
4441
- #: wp-admin/user-new.php:209
4442
- msgid "User added."
4443
- msgstr "Benutzer wurde hinzugefügt."
4444
-
4445
- #: wp-admin/user-new.php:217
4446
- msgctxt "user"
4447
- msgid "Add New User"
4448
- msgstr "Neuen Benutzer hinzufügen"
4449
-
4450
- #: wp-admin/user-new.php:219
4451
- msgctxt "user"
4452
- msgid "Add Existing User"
4453
- msgstr "Bestehenden Benutzer hinzufügen"
4454
-
4455
- #: wp-admin/user-new.php:252
4456
- msgid "Add Existing User"
4457
- msgstr "Bestehenden Benutzer hinzufügen"
4458
-
4459
- #: wp-admin/user-new.php:254
4460
- msgid "Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite."
4461
- msgstr "Gib die E-Mail-Adresse eines Benutzers ein, der bereits in diesem Blog-Netzwerk existiert, um ihn in diesen Blog einzuladen. Diese Person bekommt dann die Einladung zur Bestätigung zugesandt."
4462
-
4463
- #: wp-admin/user-new.php:257
4464
- msgid "Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite."
4465
- msgstr "Gib den Benutzernamen oder die E-Mail-Adresse eines Benutzers ein, der bereits in diesem Blog-Netzwerk existiert, um ihn in diesen Blog einzuladen. Diese Person bekommt dann die Einladung zur Bestätigung zugesandt."
4466
-
4467
- #: wp-admin/user-new.php:258
4468
- msgid "E-mail or Username"
4469
- msgstr "E-Mail-Adresse oder Benutzername"
4470
-
4471
- #: wp-admin/user-new.php:271 wp-admin/user-new.php:351
4472
- #: wp-admin/includes/class-wp-users-list-table.php:166
4473
- msgid "Role"
4474
- msgstr "Rolle"
4475
-
4476
- #: wp-admin/user-new.php:279 wp-admin/user-new.php:363
4477
- msgid "Skip Confirmation Email"
4478
- msgstr "Keine Bestätigungs-E-Mail"
4479
-
4480
- #: wp-admin/user-new.php:280 wp-admin/user-new.php:364
4481
- msgid "Add the user without sending them a confirmation email."
4482
- msgstr "Benutzer ohne Einladung sofort hinzufügen."
4483
-
4484
- #: wp-admin/user-new.php:284
4485
- msgid "Add Existing User "
4486
- msgstr "Bestehenden Benutzer hinzufügen"
4487
-
4488
- #: wp-admin/user-new.php:293
4489
- msgid "Create a brand new user and add it to this site."
4490
- msgstr "Erstelle einen neuen Benutzer und füge ihn diesem Blog hinzu."
4491
-
4492
- #: wp-admin/user-new.php:322 wp-admin/user-edit.php:282
4493
- msgid "First Name"
4494
- msgstr "Vorname"
4495
-
4496
- #: wp-admin/user-new.php:326 wp-admin/user-edit.php:287
4497
- msgid "Last Name"
4498
- msgstr "Nachname"
4499
-
4500
- #: wp-admin/user-new.php:335
4501
- msgid "(twice, required)"
4502
- msgstr "(doppelt, erforderlich)"
4503
-
4504
- #: wp-admin/user-new.php:345
4505
- msgid "Send Password?"
4506
- msgstr "Passwort senden?"
4507
-
4508
- #: wp-admin/user-new.php:346
4509
- msgid "Send this password to the new user by email."
4510
- msgstr "Sende dieses Passwort per E-Mail an den neuen Benutzer."
4511
-
4512
- #: wp-admin/user-new.php:369
4513
- msgid "Add New User "
4514
- msgstr "Neuen Benutzer hinzufügen"
4515
-
4516
- #: wp-admin/index.php:41
4517
- msgid "The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom."
4518
- msgstr "Das Menü auf der linken Seite bietet Zugang zu allen Einstellungen und Optionen deiner WordPress Administrationsseiten, deren Untermenüpunkte beim Überfahren mit der Maus angezeigt werden. Um das Menü zu einer schmalen Symbolleiste zu minimieren, klicke auf den Menü einklappen Pfeil am unteren Ende."
4519
-
4520
- #: wp-admin/index.php:46
4521
- msgid "Navigation"
4522
- msgstr "Navigation"
4523
-
4524
- #: wp-admin/index.php:50
4525
- msgid "You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well."
4526
- msgstr "Die folgenden Einstellungsmöglichkeiten kannst Du dazu benutzen, die Zusammensetzung deines Dashboards den Bedürfnissen deines Workflows anzupassen. Dies gilt für die meisten anderen Administrationsseiten in gleicher Weise."
4527
-
4528
- #: wp-admin/index.php:51
4529
- msgid "<strong>Screen Options</strong> - Use the Screen Options tab to choose which Dashboard boxes to show, and how many columns to display."
4530
- msgstr "<strong>Optionen einblenden</strong> - Benutze <em>Optionen einblenden</em> um zu bestimmen, welche Dashboard Module angezeigt, und wie viele Spalten angezeigt werden sollen.\n"
4531
-
4532
- #: wp-admin/index.php:52
4533
- msgid "<strong>Drag and Drop</strong> - To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box."
4534
- msgstr "<strong>Drag and Drop</strong> - Um die Module neu anzuordnen klicke auf die Titelleiste des ausgewählten Moduls, halte die Maustaste fest, und ziehe das Modul an die gewünschte Position, und lasse es los, wenn dort ein grau gepunktetes Rechteck auftaucht. "
4535
-
4536
- #: wp-admin/index.php:53
4537
- msgid "<strong>Box Controls</strong> - Click the title bar of the box to expand or collapse it. In addition, some box have configurable content, and will show a &#8220;Configure&#8221; link in the title bar if you hover over it."
4538
- msgstr "<strong>Moduleinstellungen</strong> - Klicke auf die Titelleiste des Moduls um es aus-, oder einzuklappen. Zusätzlich haben manche Module konfigurierbaren Inhalt und einen &#8220; Konfigurieren&#8221;-Link in der Titelleiste, wenn Du mit der Maus darüberfährst."
4539
-
4540
- #: wp-admin/index.php:57
4541
- msgid "Layout"
4542
- msgstr "Layout"
4543
-
4544
- #: wp-admin/index.php:61
4545
- msgid "The boxes on your Dashboard screen are:"
4546
- msgstr "Folgende Module gibt es im Dashboard:"
4547
-
4548
- #: wp-admin/index.php:62
4549
- msgid "<strong>Right Now</strong> - Displays a summary of the content on your site and identifies which theme and version of WordPress you are using."
4550
- msgstr "<strong>Auf einen Blick</strong> – Zeigt eine Zusammenfassung deiner Seite und informiert dich darüber, welches Theme und welche WordPress Version du nutzt."
4551
-
4552
- #: wp-admin/index.php:63
4553
- msgid "<strong>Recent Comments</strong> - Shows the most recent comments on your posts (configurable, up to 30) and allows you to moderate them."
4554
- msgstr "<strong>Letzte Kommentare</strong> – Zeigt die neuesten Kommentare zu deinen Artikeln an (bis zu 30 Stück einstellbar). Du kannst die Kommentare hier auch gleich moderieren, in dem du sie beispielsweise löschst oder freigibst."
4555
-
4556
- #: wp-admin/index.php:64
4557
- msgid "<strong>Incoming Links</strong> - Shows links to your site found by Google Blog Search."
4558
- msgstr "<strong>Eingehende Links</strong> – Zeigt Links zu deiner Website an, die über die Google Blogsuche gefunden wurden."
4559
-
4560
- #: wp-admin/index.php:65
4561
- msgid "<strong>QuickPress</strong> - Allows you to create a new post and either publish it or save it as a draft."
4562
- msgstr "<strong>QuickPress</strong> – Mit QuickPress kannst du schnell und einfach neue Artikel erstellen und veröffentlichen."
4563
-
4564
- #: wp-admin/index.php:66
4565
- msgid "<strong>Recent Drafts</strong> - Displays links to the 5 most recent draft posts you&#8217;ve started."
4566
- msgstr "<strong>Aktuelle Entwürfe</strong> – Zeigt die fünf zuletzt angelegten Entwürfe an."
4567
-
4568
- #: wp-admin/index.php:67
4569
- msgid "<strong>WordPress Blog</strong> - Latest news from the official WordPress project."
4570
- msgstr "<strong>WordPress Blog</strong> - Neueste Nachrichten vom offiziellen WordPress Projekt."
4571
-
4572
- #: wp-admin/index.php:68
4573
- msgid "<strong>Other WordPress News</strong> - Shows the <a href=\"http://planet.wordpress.org\" target=\"_blank\">WordPress Planet</a> feed. You can configure it to show a different feed of your choosing."
4574
- msgstr "<strong>Weitere WordPress-News</strong> – Zeigt weitere Schlagzeilen aus der deutschsprachigen WordPress-Welt. Du kannst aber auch einfach einen anderen RSS-Feed als Quelle eintragen."
4575
-
4576
- #: wp-admin/index.php:69
4577
- msgid "<strong>Plugins</strong> - Features the most popular, newest, and recently updated plugins from the WordPress.org Plugin Directory."
4578
- msgstr "<strong>Plugins</strong> – Zeigt neue, beliebte oder vor kurzem aktualisierte Plugins aus dem WordPress.org Plugin-Verzeichnis."
4579
-
4580
- #: wp-admin/index.php:81
4581
- msgid "<a href=\"http://codex.wordpress.org/Dashboard_Screen\" target=\"_blank\">Documentation on Dashboard</a>"
4582
- msgstr "<a href=\"http://codex.wordpress.org/Dashboard_Screen\" target=\"_blank\">Documentation on Dashboard (engl.)</a>"
4583
-
4584
- #: wp-admin/edit-link-form.php:14
4585
- msgid "<a href=\"%s\">Links</a> / Edit Link"
4586
- msgstr "<a href=\"%s\">Links</a> / Links bearbeiten"
4587
-
4588
- #: wp-admin/edit-link-form.php:15 wp-admin/includes/meta-boxes.php:648
4589
- msgid "Update Link"
4590
- msgstr "Link aktualisieren"
4591
-
4592
- #: wp-admin/edit-link-form.php:19
4593
- msgid "<a href=\"%s\">Links</a> / Add New Link"
4594
- msgstr "<a href=\"%s\">Links</a> / Neuen Link hinzufügen"
4595
-
4596
- #: wp-admin/edit-link-form.php:30 wp-admin/includes/nav-menu.php:160
4597
- #: wp-admin/includes/nav-menu.php:1144
4598
- msgid "Link Relationship (XFN)"
4599
- msgstr "Link-Beziehungen (XFN)"
4600
-
4601
- #: wp-admin/edit-link-form.php:46
4602
- msgid "You can add or edit links on this screen by entering information in each of the boxes. Only the link&#8217;s web address and name (the text you want to display on your site as the link) are required fields."
4603
- msgstr "Auf dieser Seite kannst du Links hinzufügen oder bearbeiten, in dem du die Eingabefelder ausfüllst. Es werden jedoch nur der Name und die Web-Adresse benötigt – der Rest ist optional."
4604
-
4605
- #: wp-admin/edit-link-form.php:47
4606
- msgid "The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you don&#8217;t use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box."
4607
- msgstr "Die Module für Name, Web-Adresse und Beschreibung sind auf dieser Seite fest positioniert. Alle anderen kannst du per Drag&Drop (klicken und ziehen) in ihrer Position verändern. Über <em>Optionen einblenden</em> kannst du Module auch ganz ausblenden."
4608
-
4609
- #: wp-admin/edit-link-form.php:48
4610
- msgid "XFN stands for <a href=\"http://gmpg.org/xfn/\" target=\"_blank\">XHTML Friends Network</a>, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking."
4611
- msgstr "XFN steht für <a href=\"http://gmpg.org/xfn/\" target=\"_blank\">XHTML Friends Network</a> und ist ebenfalls eine optionale Angabe. Du kannst diese Option benutzen, um anzugeben, auf welche Art und Weise du mit der verlinkten Person bzw. dessen Website in Verbindung oder Beziehung stehst."
4612
-
4613
- #: wp-admin/edit-link-form.php:53
4614
- msgid "<a href=\"http://codex.wordpress.org/Links_Add_New_Screen\" target=\"_blank\">Documentation on Creating Links</a>"
4615
- msgstr "<a href=\"http://codex.wordpress.org/Links_Add_New_Screen\" target=\"_blank\">Documentation on Creating Links (engl.)</a>"
4616
-
4617
- #: wp-admin/edit-link-form.php:65
4618
- msgid "Link added."
4619
- msgstr "Link wurde hinzugefügt."
4620
-
4621
- #: wp-admin/edit-link-form.php:91
4622
- #: wp-admin/includes/class-wp-links-list-table.php:80
4623
- msgctxt "link name"
4624
- msgid "Name"
4625
- msgstr "Name"
4626
-
4627
- #: wp-admin/edit-link-form.php:94
4628
- msgid "Example: Nifty blogging software"
4629
- msgstr "Beispiel: Meine schönsten Katzenfotos"
4630
-
4631
- #: wp-admin/edit-link-form.php:99
4632
- msgid "Web Address"
4633
- msgstr "Web-Adresse"
4634
-
4635
- #: wp-admin/edit-link-form.php:102
4636
- msgid "Example: <code>http://wordpress.org/</code> &#8212; don&#8217;t forget the <code>http://</code>"
4637
- msgstr "Beispiel: <code>http://wpde.org/</code> &#8212; das <code>http://</code> nicht vergessen!"
4638
-
4639
- #: wp-admin/edit-link-form.php:107 wp-admin/themes.php:231
4640
- #: wp-admin/includes/media.php:933
4641
- #: wp-admin/includes/class-wp-plugins-list-table.php:188
4642
- #: wp-admin/includes/nav-menu.php:166 wp-admin/includes/nav-menu.php:1145
4643
- #: wp-admin/includes/class-wp-terms-list-table.php:101
4644
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:144
4645
- #: wp-admin/press-this.php:146 wp-admin/press-this.php:647
4646
- msgid "Description"
4647
- msgstr "Beschreibung"
4648
-
4649
- #: wp-admin/edit-link-form.php:110
4650
- msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link."
4651
- msgstr "Wird beim Überfahren des Blogroll-Eintrags mit der Maus angezeigt, oder wahlweise unter dem Eintrag."
4652
-
4653
- #: wp-admin/maint/repair.php:13
4654
- msgid "WordPress &rsaquo; Database Repair"
4655
- msgstr "WordPress &rsaquo; Datenbank-Reparatur"
4656
-
4657
- #: wp-admin/maint/repair.php:22
4658
- msgid "To allow use of this page to automatically repair database problems, please add the following line to your wp-config.php file. Once this line is added to your config, reload this page."
4659
- msgstr "Damit du diese Seite nutzen kannst, um Datenbankprobleme zu reparieren, musst du folgenden Code in die Datei <code>wp-config.php</code> einfügen. Nachdem du das getan hast, musst du diese Seite erneut aufrufen."
4660
-
4661
- #: wp-admin/maint/repair.php:92
4662
- msgid "Some database problems could not be repaired. Please copy-and-paste the following list of errors to the <a href=\"%s\">WordPress support forums</a> to get additional assistance."
4663
- msgstr "Einige Datenbankprobleme konnten nicht behoben werden. Du kannst anhand der folgenden Fehlerauflistung in den <a href=\"%s\">WordPress Hilfeforen (engl.)</a> oder im <a href=\"http://forum.wpde.org\">WordPress Deutschland Forum</a> nach Hilfe fragen."
4664
-
4665
- #: wp-admin/maint/repair.php:98
4666
- msgid "Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users."
4667
- msgstr "Die Reparaturen wurden erfolgreich durchgeführt. Bitte entferne folgende Codezeile aus der Datei <code>wp-config.php</code>, damit diese Seite nicht von unautorisierten Benutzern genutzt werden kann."
4668
-
4669
- #: wp-admin/maint/repair.php:102
4670
- msgid "One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the &#8220;Repair Database&#8221; button. Repairing can take a while, so please be patient."
4671
- msgstr "Mindestens eine Datenbanktabelle ist nicht erreichbar. WordPress kann versuchen, diese Tabellen zu reparieren. Klicke dazu auf die Schaltfläche &#8220;Datenbank reparieren&#8221;. Die Reparatur kann etwas Zeit in Anspruch nehmen, habe also bitte etwas Geduld."
4672
-
4673
- #: wp-admin/maint/repair.php:104
4674
- msgid "WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient."
4675
- msgstr "WordPress kann automatisch nach verschiedenen allgemein bekannten Datenbank-Problemen suchen und diese reparieren. Die Reparatur kann eine Weile dauern, habe bitte etwas Geduld."
4676
-
4677
- #: wp-admin/maint/repair.php:106
4678
- msgid "Repair Database"
4679
- msgstr "Datenbank reparieren"
4680
-
4681
- #: wp-admin/maint/repair.php:107
4682
- msgid "WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing."
4683
- msgstr "WordPress kann versuchen die Datenbank zu optimieren, das kann zu Performance-Verbesserungen führen. Reparatur und Optimierung der Datenbank kann einige Zeit in Anspruch nehmen, die Datenbank bleibt währenddessen gesperrt."
4684
-
4685
- #: wp-admin/maint/repair.php:108
4686
- msgid "Repair and Optimize Database"
4687
- msgstr "Repariere und optimiere die Datenbank"
4688
-
4689
- #: wp-admin/options-general.php:13 wp-admin/options-discussion.php:13
4690
- #: wp-admin/options-privacy.php:13 wp-admin/options-media.php:13
4691
- #: wp-admin/options-writing.php:13 wp-admin/options-reading.php:13
4692
- #: wp-admin/options-permalink.php:13
4693
- msgid "You do not have sufficient permissions to manage options for this site."
4694
- msgstr "Du verfügst nicht über ausreichende Rechte, um Einstellungen dieses Blogs zu ändern."
4695
-
4696
- #: wp-admin/options-general.php:15
4697
- msgid "General Settings"
4698
- msgstr "Einstellungen &rsaquo; Allgemein"
4699
-
4700
- #: wp-admin/options-general.php:18
4701
- msgctxt "timezone date format"
4702
- msgid "Y-m-d G:i:s"
4703
- msgstr "d.m.Y H:i"
4704
-
4705
- #: wp-admin/options-general.php:61
4706
- msgid "The fields on this screen determine some of the basics of your site setup."
4707
- msgstr "Auf dieser Seite kannst du ein paar grundlegende Einstellungen vornehmen."
4708
-
4709
- #: wp-admin/options-general.php:62
4710
- msgid "Most themes display the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. The tagline is also displayed by many themes."
4711
- msgstr "Der Blogtitel ist wichtig, da er zum Beispiel in der Titelleiste des Browers und auch meist direkt auf der Website, sowie in Newsfeeds angezeigt wird. Der Slogan (eine Art Beschreibung des Blogs) wird ebenfalls von manchen Themes angezeigt."
4712
-
4713
- #: wp-admin/options-general.php:65
4714
- msgid "The WordPress URL and the Site URL can be the same (example.com) or different; for example, having the WordPress core files (example.com/wordpress) in a subdirectory instead of the root directory."
4715
- msgstr "Die Blog-Adresse und WordPress-Adresse können sowohl gleich als auch unterschiedlich sein. So kannst du WordPress zum Beispiel in einem Unterverzeichnis installieren, aber trotzdem direkt über die Domain aufrufen. Wie du das bewerkstelligen kannst, ist bei <em>Weitere Informationen</em> verlinkt."
4716
-
4717
- #: wp-admin/options-general.php:69
4718
- msgid "UTC means Coordinated Universal Time."
4719
- msgstr "UTC bedeutet Coordinated Universal Time beziehungsweise koordinierte Weltzeit."
4720
-
4721
- #: wp-admin/options-general.php:80
4722
- msgid "<a href=\"http://codex.wordpress.org/Settings_General_Screen\" target=\"_blank\">Documentation on General Settings</a>"
4723
- msgstr "<a href=\"http://codex.wordpress.org/Settings_General_Screen\" target=\"_blank\">Documentation on General Settings (engl.)</a>"
4724
-
4725
- #: wp-admin/options-general.php:100
4726
- msgid "Tagline"
4727
- msgstr "Slogan"
4728
-
4729
- #: wp-admin/options-general.php:102
4730
- msgid "In a few words, explain what this site is about."
4731
- msgstr "Erkläre in ein paar Wörtern worum es in diesem Blog geht."
4732
-
4733
- #: wp-admin/options-general.php:106
4734
- msgid "WordPress Address (URL)"
4735
- msgstr "WordPress Adresse (URL)"
4736
-
4737
- #: wp-admin/options-general.php:110
4738
- msgid "Site Address (URL)"
4739
- msgstr "Blog-Adresse (URL)"
4740
-
4741
- #: wp-admin/options-general.php:112
4742
- msgid "Enter the address here if you want your site homepage <a href=\"http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory\">to be different from the directory</a> you installed WordPress."
4743
- msgstr "Wenn die Blog-Homepage in einem <a href=\"http://faq.wpde.org/wordpress-trotz-installation-in-unterverzeichnis-ueber-hauptverzeichnis-aufrufen/\">anderen Verzeichnis</a> liegen soll als die WordPress-Installation, dann gehört diese Adresse hier hinein."
4744
-
4745
- #: wp-admin/options-general.php:115 wp-admin/options-general.php:134
4746
- msgid "E-mail Address"
4747
- msgstr "E-Mail-Adresse"
4748
-
4749
- #: wp-admin/options-general.php:117
4750
- msgid "This address is used for admin purposes, like new user notification."
4751
- msgstr "Diese Adresse wird nur zu administrativen Zwecken verwendet."
4752
-
4753
- #: wp-admin/options-general.php:120 wp-admin/options-general.php:121
4754
- msgid "Membership"
4755
- msgstr "Mitgliedschaft"
4756
-
4757
- #: wp-admin/options-general.php:123
4758
- msgid "Anyone can register"
4759
- msgstr "Jeder kann sich registrieren."
4760
-
4761
- #: wp-admin/options-general.php:127
4762
- msgid "New User Default Role"
4763
- msgstr "Standardrolle eines neuen Benutzers"
4764
-
4765
- #: wp-admin/options-general.php:136
4766
- msgid "This address is used for admin purposes. If you change this we will send you an e-mail at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>"
4767
- msgstr "Diese Adresse wird nur zu administrativen Zwecken verwendet. Wenn du diese E-Mail-Adresse änderst, bekommst du eine Mail, mit welcher du die Änderung bestätigen musst. <strong>Vorher wird diese neue Adresse nicht benutzt.</strong>"
4768
-
4769
- #: wp-admin/options-general.php:141
4770
- msgid "There is a pending change of the admin e-mail to <code>%1$s</code>. <a href=\"%2$s\">Cancel</a>"
4771
- msgstr "Es gibt eine ausstehende Änderung der Administrator E-Mail-Adresse zu <code>%1$s</code>. <a href=\"%2$s\">Abbrechen</a>"
4772
-
4773
- #: wp-admin/options-general.php:169
4774
- msgid "Timezone"
4775
- msgstr "Zeitzone"
4776
-
4777
- #: wp-admin/options-general.php:176
4778
- msgid "<abbr title=\"Coordinated Universal Time\">UTC</abbr> time is <code>%s</code>"
4779
- msgstr "<abbr title=\"Coordinated Universal Time\">UTC</abbr>-Zeit ist <code>%s</code>"
4780
-
4781
- #: wp-admin/options-general.php:178
4782
- msgid "Local time is <code>%1$s</code>"
4783
- msgstr "Deine lokale Zeit ist <code>%1$s</code>"
4784
-
4785
- #: wp-admin/options-general.php:181
4786
- msgid "Choose a city in the same timezone as you."
4787
- msgstr "Wähle eine Stadt, die in deiner Zeitzone liegt."
4788
-
4789
- #: wp-admin/options-general.php:190
4790
- msgid "This timezone is currently in daylight saving time."
4791
- msgstr "Diese Zeitzone ist zurzeit in der Sommerzeit."
4792
-
4793
- #: wp-admin/options-general.php:192
4794
- msgid "This timezone is currently in standard time."
4795
- msgstr "Diese Zeitzone ist zurzeit in der Winterzeit."
4796
-
4797
- #: wp-admin/options-general.php:213
4798
- msgid "Daylight saving time begins on: <code>%s</code>."
4799
- msgstr "Die Sommerzeit beginnt am: <code>%s</code>."
4800
-
4801
- #: wp-admin/options-general.php:214
4802
- msgid "Standard time begins on: <code>%s</code>."
4803
- msgstr "Die Winterzeit beginnt am: <code>%s</code>."
4804
-
4805
- #: wp-admin/options-general.php:218
4806
- msgid "This timezone does not observe daylight saving time."
4807
- msgstr "In dieser Zeitzone gibt es keine Sommerzeit."
4808
-
4809
- #: wp-admin/options-general.php:236 wp-admin/includes/schema.php:380
4810
- msgid "F j, Y"
4811
- msgstr "j. F Y"
4812
-
4813
- #: wp-admin/options-general.php:255 wp-admin/options-general.php:287
4814
- msgid "Custom:"
4815
- msgstr "Angepasst:"
4816
-
4817
- #: wp-admin/options-general.php:257
4818
- msgid "<a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\">Documentation on date and time formatting</a>."
4819
- msgstr ""
4820
- "<a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Documentation on date and time formatting (engl.)</a><br/>\n"
4821
- "<a href=\"http://faq.wpde.org/datums-und-zeitformat-aendern/\" target=\"_blank\">Deutsches Zeitformat einstellen</a>"
4822
-
4823
- #: wp-admin/options-general.php:269 wp-admin/includes/schema.php:382
4824
- msgid "g:i a"
4825
- msgstr "H:i"
4826
-
4827
- #: wp-admin/options-general.php:294
4828
- msgid "Week Starts On"
4829
- msgstr "Woche beginnt am "
4830
-
4831
- #: wp-admin/options-general.php:310
4832
- msgid "Site Language"
4833
- msgstr "Sprache des Blogs"
4834
-
4835
- #: wp-admin/themes.php:35
4836
- msgid "Manage Themes"
4837
- msgstr "Themes verwalten"
4838
-
4839
- #: wp-admin/themes.php:40
4840
- msgid "Aside from the default theme included with your WordPress installation, themes are designed and developed by third parties."
4841
- msgstr "Abgesehen vom standardmäßig mitgelieferten Theme <em>Twenty Ten</em> und <em>Twenty Eleven</em>, werden Themes von Dritten entwickelt und designed."
4842
-
4843
- #: wp-admin/themes.php:41
4844
- msgid "You can see your active theme at the top of the screen. Below are the other themes you have installed that are not currently in use. You can see what your site would look like with one of these themes by clicking the Preview link. To change themes, click the Activate link."
4845
- msgstr "Das zurzeit aktive Theme wird zuoberst mit der Überschrift <em>Aktuelles Theme</em> angezeigt. Weitere installierte, aber nicht benutzte Themes, werden darunter angezeigt. Mit einem Klick auf <em>Vorschau</em> siehst du, wie das Theme auf deiner Website aussehen würde. Mit <em>Aktivieren</em> kannst du es dann benutzen."
4846
-
4847
- #: wp-admin/themes.php:53
4848
- msgid "If you would like to see more themes to choose from, click on the &#8220;Install Themes&#8221; tab and you will be able to browse or search for additional themes from the <a href=\"%s\" target=\"_blank\">WordPress.org Theme Directory</a>. Themes in the WordPress.org Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they&#8217;re free!"
4849
- msgstr "Falls du weitere Themes installieren möchtest, kannst du auf den Registerreiter <em>Themes installieren</em> klicken, um Themes im <a href=\"%s\" target=\"_blank\">WordPress.org-Themeverzeichnis</a> zu suchen. Alle Themes dieses Verzeichnisses können kostenlos installiert und verwendet werden."
4850
-
4851
- #: wp-admin/themes.php:65 wp-admin/theme-editor.php:39
4852
- msgid "<a href=\"http://codex.wordpress.org/Using_Themes\" target=\"_blank\">Documentation on Using Themes</a>"
4853
- msgstr "<a href=\"http://codex.wordpress.org/Using_Themes\" target=\"_blank\">Documentation on Using Themes (engl.)</a>"
4854
-
4855
- #: wp-admin/themes.php:79
4856
- msgid "The active theme is broken. Reverting to the default theme."
4857
- msgstr "Das aktive Theme ist beschädigt. Das Standard-Theme wurde aktiviert."
4858
-
4859
- #: wp-admin/themes.php:82
4860
- msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
4861
- msgstr "Ein neues Theme wurde aktiviert. Dieses Theme unterstützt Widgets. Nutze die <a href=\"%s\">Widgets-Seite</a>, um sie zu konfigurieren."
4862
-
4863
- #: wp-admin/themes.php:84
4864
- msgid "New theme activated. <a href=\"%s\">Visit site</a>"
4865
- msgstr "Neues Theme aktiviert. <a href=\"%s\">Blog ansehen</a>"
4866
-
4867
- #: wp-admin/themes.php:87
4868
- msgid "Theme deleted."
4869
- msgstr "Theme gelöscht."
4870
-
4871
- #: wp-admin/themes.php:94
4872
- msgctxt "theme"
4873
- msgid "Install Themes"
4874
- msgstr "Themes installieren"
4875
-
4876
- #: wp-admin/themes.php:100
4877
- msgid "Current Theme"
4878
- msgstr "Aktuelles Theme"
4879
-
4880
- #: wp-admin/themes.php:103
4881
- msgid "Current theme preview"
4882
- msgstr "Vorschau des aktuellen Theme"
4883
-
4884
- #: wp-admin/themes.php:107 wp-admin/includes/class-wp-themes-list-table.php:167
4885
- msgid "%1$s %2$s by %3$s"
4886
- msgstr "%1$s %2$s von %3$s"
4887
-
4888
- #: wp-admin/themes.php:110
4889
- msgid "Options:"
4890
- msgstr "Optionen:"
4891
-
4892
- #: wp-admin/themes.php:141 wp-admin/includes/class-wp-themes-list-table.php:177
4893
- msgid "Tags:"
4894
- msgstr "Tags:"
4895
-
4896
- #: wp-admin/themes.php:157
4897
- msgid "Available Themes"
4898
- msgstr "Verfügbare Themes"
4899
-
4900
- #: wp-admin/themes.php:164 wp-admin/themes.php:166
4901
- msgid "Search Installed Themes"
4902
- msgstr "Installierte Themes suchen"
4903
-
4904
- #: wp-admin/themes.php:167 wp-admin/includes/theme-install.php:79
4905
- msgid "Feature Filter"
4906
- msgstr "Nach Funktionen filtern"
4907
-
4908
- #: wp-admin/themes.php:175
4909
- msgid "Theme filters"
4910
- msgstr "Themes filtern"
4911
-
4912
- #: wp-admin/themes.php:201
4913
- msgid "Apply Filters"
4914
- msgstr "Filter anwenden"
4915
-
4916
- #: wp-admin/themes.php:203
4917
- msgid "Close filters"
4918
- msgstr "Filter entfernen"
4919
-
4920
- #: wp-admin/themes.php:225
4921
- msgid "Broken Themes"
4922
- msgstr "Beschädigte Themes"
4923
-
4924
- #: wp-admin/themes.php:226
4925
- msgid "The following themes are installed but incomplete. Themes must have a stylesheet and a template."
4926
- msgstr "Die folgenden Themes sind installiert, aber nicht vollständig. Themes müssen ein Stylesheet und ein Template haben."
4927
-
4928
- #: wp-admin/themes.php:230
4929
- msgctxt "theme name"
4930
- msgid "Name"
4931
- msgstr "Name"
4932
-
4933
- #: wp-admin/media.php:23 wp-admin/media.php:57
4934
- msgid "You are not allowed to edit this attachment."
4935
- msgstr "Du darfst diesen Anhang nicht ver&uml;ndern."
4936
-
4937
- #: wp-admin/media.php:61
4938
- msgid "You attempted to edit an attachment that doesn&#8217;t exist. Perhaps it was deleted?"
4939
- msgstr "Du versuchst einen Anhang zu bearbeiten der nicht existiert. Wurde er vielleicht gelöscht?"
4940
-
4941
- #: wp-admin/media.php:62
4942
- msgid "You can&#8217;t edit this attachment because it is in the Trash. Please move it out of the Trash and try again."
4943
- msgstr "Du kannst diesen Anhang nicht bearbeiten, da er im Papierkorb liegt. Bitte hole ihn zuerst aus dem Papierkorb und versuche es erneut."
4944
-
4945
- #: wp-admin/media.php:74
4946
- msgid "This screen allows you to edit five fields for metadata in a file within the media library."
4947
- msgstr "Auf dieser Seite kannst du die Metadaten (Informationen zu einer Datei) von hochgeladenen Medien ändern."
4948
-
4949
- #: wp-admin/media.php:75
4950
- msgid "For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information."
4951
- msgstr "Bei Bildern kannst du auf die Schaltfläche <em>Bild bearbeiten</em> unter dem Vorschaubild klicken und es dann zum Beispiel zuschneiden, skalieren, drehen oder spiegeln. Während der Bearbeitung lassen sich einzelne Arbeitsschritte auch rückgängig machen."
4952
-
4953
- #: wp-admin/media.php:76
4954
- msgid "Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping."
4955
- msgstr ""
4956
- "Du kannst ein Bild zuschneiden, indem du in das Bild klickst, die Maustaste gedrückt hälst und den erscheinenden Auswahlrahmen über das Bild ziehst. Der Auswahlrahmen kann auch nachträglich verschoben oder verändert werden. Klicke dann auf <em>Speichern</em>, um den Zuschnitt zu übernehmen. \n"
4957
- "Beachte auch, dass die Zuschneide-Funktion bereits automatisch aktiviert ist, wenn du ein Bild zum Bearbeiten öffnest."
4958
-
4959
- #: wp-admin/media.php:77
4960
- msgid "Remember to click Update Media to save metadata entered or changed."
4961
- msgstr "Vergiss nicht, zum Schluss auf <em>Dateien aktualisieren</em> zu klicken, damit deine Eingaben oder Änderungen auch gespeichert werden."
4962
-
4963
- #: wp-admin/media.php:82
4964
- msgid "<a href=\"http://codex.wordpress.org/Media_Add_New_Screen#Edit_Media\" target=\"_blank\">Documentation on Edit Media</a>"
4965
- msgstr "<a href=\"http://codex.wordpress.org/Media_Add_New_Screen#Edit_Media\" target=\"_blank\">Documentation on Edit Media (engl.)</a>"
4966
-
4967
- #: wp-admin/media.php:94 wp-admin/upload.php:187 wp-admin/upload.php:212
4968
- msgid "Media attachment updated."
4969
- msgstr "Medienanhang aktualisiert."
4970
-
4971
- #: wp-admin/media.php:116 wp-admin/media.php:125
4972
- msgid "Update Media"
4973
- msgstr "Dateien aktualisieren"
4974
-
4975
- #: wp-admin/custom-header.php:106
4976
- msgid "You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately."
4977
- msgstr "Hier kannst du die Kopfzeile deiner Website (auch <em>Header</em> genannt) anpassen oder auch ein eigenes Kopfzeilenbild erstellen. Lade dazu einfach ein Bild hoch, schneide es zu und schon kannst du es benutzen."
4978
-
4979
- #: wp-admin/custom-header.php:107
4980
- msgid "If you want to discard your custom header and go back to the default included in your theme, click on the buttons to remove the custom image and restore the original header image."
4981
- msgstr "Falls du alle deine Änderungen entfernen willst, klicke auf <em>Ursprüngliches Kopfzeilenbild wiederherstellen</em>."
4982
-
4983
- #: wp-admin/custom-header.php:108
4984
- msgid "Some themes come with additional header images bundled. If you see multiple images displayed, select the one you&#8217;d like and click the Save Changes button."
4985
- msgstr "Manche Themes bringen mehrere verschiedene Bilder mit, aus denen du wählen kannst. Klicke anschließend auf die Schaltfläche \"Speichern\", um ein gewähltes Bild zu übernehmen."
4986
-
4987
- #: wp-admin/custom-header.php:113
4988
- msgid "<a href=\"http://codex.wordpress.org/Appearance_Header_Screen\" target=\"_blank\">Documentation on Custom Header</a>"
4989
- msgstr "<a href=\"http://codex.wordpress.org/Appearance_Header_Screen\" target=\"_blank\">Documentation on Custom Header (engl.)</a>"
4990
-
4991
- #: wp-admin/custom-header.php:280
4992
- msgid "<strong>Random:</strong> Show a different image on each page."
4993
- msgstr "<strong>Zufällig:</strong> Zeige auf jeder Seite ein zufälliges Bild."
4994
-
4995
- #: wp-admin/custom-header.php:478 wp-admin/includes/theme.php:316
4996
- msgid "Custom Header"
4997
- msgstr "Kopfzeile anpassen"
4998
-
4999
- #: wp-admin/custom-header.php:482
5000
- msgid "Header updated. <a href=\"%s\">Visit your site</a> to see how it looks."
5001
- msgstr "Header aktualisiert. <a href=\"%s\">Sieh dir das Ergebnis an</a>."
5002
-
5003
- #: wp-admin/custom-header.php:512 wp-admin/custom-background.php:243
5004
- msgid "Upload Image"
5005
- msgstr "Bild hochladen"
5006
-
5007
- #: wp-admin/custom-header.php:514
5008
- msgid "You can upload a custom header image to be shown at the top of your site instead of the default one. On the next screen you will be able to crop the image."
5009
- msgstr "Du kannst hier ein eigenes Bild für die Kopfzeile (auch <em>Header</em> genannt) hochladen. Im nächsten Schritt kannst du es außerdem passend zuschneiden."
5010
-
5011
- #: wp-admin/custom-header.php:515
5012
- msgid "Images of exactly <strong>%1$d &times; %2$d pixels</strong> will be used as-is."
5013
- msgstr "Bilder von genau <strong>%1$d × %2$d Pixeln</strong> werden benutzt, wie sie sind."
5014
-
5015
- #: wp-admin/custom-header.php:518 wp-admin/custom-background.php:245
5016
- msgid "Choose an image from your computer:"
5017
- msgstr "Wähle ein Bild von deiner Festplatte:"
5018
-
5019
- #: wp-admin/custom-header.php:522 wp-admin/custom-background.php:248
5020
- #: wp-admin/includes/media.php:1381 wp-admin/includes/media.php:1383
5021
- #: wp-admin/includes/class-wp-theme-install-list-table.php:32
5022
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:32
5023
- msgid "Upload"
5024
- msgstr "Hochladen"
5025
-
5026
- #: wp-admin/custom-header.php:536
5027
- msgid "Uploaded Images"
5028
- msgstr "Hochgeladene Grafiken"
5029
-
5030
- #: wp-admin/custom-header.php:538
5031
- msgid "You can choose one of your previously uploaded headers, or show a random one."
5032
- msgstr "Du kannst eine der von dir hochgeladenen Grafiken wählen oder sie in zufälliger Reihenfolge anzeigen lassen."
5033
-
5034
- #: wp-admin/custom-header.php:547
5035
- msgid "Default Images"
5036
- msgstr "Vorgegebene Bilder"
5037
-
5038
- #: wp-admin/custom-header.php:550
5039
- msgid "If you don&lsquo;t want to upload your own image, you can use one of these cool headers, or show a random one."
5040
- msgstr "Falls du kein eigenes Bild hochladen möchtest, kannst du aus bereits vorgefertigten Grafiken wählen oder auf jeder Seite ein unterschiedliches Bild per Zufallsgenerator anzeigen lassen. "
5041
-
5042
- #: wp-admin/custom-header.php:552
5043
- msgid "You can use one of these cool headers or show a random one on each page."
5044
- msgstr "Du kannst aus den vorgefertigten Grafiken wählen oder auf jeder Seite ein unterschiedliches Bild per Zufallsgenerator anzeigen lassen."
5045
-
5046
- #: wp-admin/custom-header.php:562 wp-admin/custom-background.php:218
5047
- msgid "Remove Image"
5048
- msgstr "Bild entfernen"
5049
-
5050
- #: wp-admin/custom-header.php:564
5051
- msgid "This will remove the header image. You will not be able to restore any customizations."
5052
- msgstr "Hiermit kannst du das Kopfzeilen-Bild entfernen. Jegliche angewandte Änderungen gehen dabei verloren. "
5053
-
5054
- #: wp-admin/custom-header.php:565
5055
- msgid "Remove Header Image"
5056
- msgstr "Kopfzeilen-Bild entfernen"
5057
-
5058
- #: wp-admin/custom-header.php:572
5059
- msgid "Reset Image"
5060
- msgstr "Bild zurücksetzen"
5061
-
5062
- #: wp-admin/custom-header.php:574
5063
- msgid "This will restore the original header image. You will not be able to restore any customizations."
5064
- msgstr "Hiermit kannst du das ursprüngliche Kopfzeilen-Bild wiederherstellen. Jegliche angewandte Änderungen gehen dabei verloren. "
5065
-
5066
- #: wp-admin/custom-header.php:575
5067
- msgid "Restore Original Header Image"
5068
- msgstr "Ursprüngliches Kopfzeilenbild wiederherstellen"
5069
-
5070
- #: wp-admin/custom-header.php:586
5071
- msgid "Display Text"
5072
- msgstr "Text anzeigen"
5073
-
5074
- #: wp-admin/custom-header.php:590 wp-admin/comment.php:192
5075
- #: wp-admin/includes/class-wp-links-list-table.php:110
5076
- msgid "No"
5077
- msgstr "Nein"
5078
-
5079
- #: wp-admin/custom-header.php:591
5080
- #: wp-admin/includes/class-wp-links-list-table.php:110
5081
- msgid "Yes"
5082
- msgstr "Ja"
5083
-
5084
- #: wp-admin/custom-header.php:597
5085
- msgid "Text Color"
5086
- msgstr "Textfarbe"
5087
-
5088
- #: wp-admin/custom-header.php:601
5089
- msgid "If you want to hide header text, add <strong>#blank</strong> as text color."
5090
- msgstr "Wenn du den Text in der Kopfzeile verstecken willst, so nutze <strong>#blank</strong> als Textfarbe."
5091
-
5092
- #: wp-admin/custom-header.php:602 wp-admin/custom-background.php:307
5093
- msgid "Select a Color"
5094
- msgstr "Wähle eine Farbe"
5095
-
5096
- #: wp-admin/custom-header.php:610
5097
- msgid "Reset Text Color"
5098
- msgstr "Textfarbe zurücksetzen"
5099
-
5100
- #: wp-admin/custom-header.php:612
5101
- msgid "This will restore the original header text. You will not be able to restore any customizations."
5102
- msgstr "Hiermit kannst du die ursprünglichen Einstellungen für den Text in der Kopfziele wiederherstellen. Jegliche von dir angewandte Änderungen gehen dabei verloren."
5103
-
5104
- #: wp-admin/custom-header.php:613
5105
- msgid "Restore Original Header Text"
5106
- msgstr "Ursprünglichen Kopfzeilentext wiederherstellen"
5107
-
5108
- #: wp-admin/custom-header.php:646
5109
- msgid "Image Upload Error"
5110
- msgstr "Fehler beim Bild hochladen"
5111
-
5112
- #: wp-admin/custom-header.php:679 wp-admin/custom-header.php:740
5113
- msgid "Image could not be processed. Please go back and try again."
5114
- msgstr "Das Bild konnte nicht bearbeitet werden. Bitte versuche es erneut."
5115
-
5116
- #: wp-admin/custom-header.php:679 wp-admin/custom-header.php:740
5117
- msgid "Image Processing Error"
5118
- msgstr "Bildbearbeitungs-Fehler"
5119
-
5120
- #: wp-admin/custom-header.php:693
5121
- msgid "Crop Header Image"
5122
- msgstr "Kopfzeilen-Bild beschneiden"
5123
-
5124
- #: wp-admin/custom-header.php:696
5125
- msgid "Choose the part of the image you want to use as your header."
5126
- msgstr "Wähle den Teil deines Bildes, den du in deinem Header verwenden möchtest."
5127
-
5128
- #: wp-admin/custom-header.php:697
5129
- msgid "You need Javascript to choose a part of the image."
5130
- msgstr "Du benötigst JavaScript, um das Bild beschneiden zu können."
5131
-
5132
- #: wp-admin/custom-header.php:711
5133
- msgid "Crop and Publish"
5134
- msgstr "Zuschneiden und veröffentlichen"
5135
-
5136
- #: wp-admin/custom-header.php:790
5137
- msgid "You do not have permission to customize headers."
5138
- msgstr "Du hast keine ausreichenden Rechte, um den Header anzupassen."
5139
-
5140
- #: wp-admin/options-discussion.php:15 wp-admin/edit-form-advanced.php:202
5141
- msgid "Discussion Settings"
5142
- msgstr "Einstellungen &rsaquo; Diskussion"
5143
-
5144
- #: wp-admin/options-general.php:70 wp-admin/options-discussion.php:22
5145
- #: wp-admin/options-media.php:30 wp-admin/options-writing.php:22
5146
- #: wp-admin/options-reading.php:50 wp-admin/options-permalink.php:23
5147
- #: wp-admin/options-permalink.php:32 wp-admin/options-permalink.php:39
5148
- msgid "You must click the Save Changes button at the bottom of the screen for new settings to take effect."
5149
- msgstr "Du musst jeweils auf <em>Änderungen übernehmen</em> klicken, damit geänderte Einstellungen übernommen werden."
5150
-
5151
- #: wp-admin/options-discussion.php:27
5152
- msgid "<a href=\"http://codex.wordpress.org/Settings_Discussion_Screen\" target=\"_blank\">Documentation on Discussion Settings</a>"
5153
- msgstr "<a href=\"http://codex.wordpress.org/Settings_Discussion_Screen\" target=\"_blank\">Documentation on Discussion Settings (engl.)</a>"
5154
-
5155
- #: wp-admin/options-discussion.php:43 wp-admin/options-discussion.php:44
5156
- msgid "Default article settings"
5157
- msgstr "Standardeinstellungen für Artikel"
5158
-
5159
- #: wp-admin/options-discussion.php:47
5160
- msgid "Attempt to notify any blogs linked to from the article"
5161
- msgstr "Versuche jedes in Artikeln verlinkte Weblog zu benachrichtigen (verlangsamt das Veröffentlichen)"
5162
-
5163
- #: wp-admin/options-discussion.php:51
5164
- msgid "Allow link notifications from other blogs (pingbacks and trackbacks)"
5165
- msgstr "Erlaube Link-Benachrichtigungen von anderen Weblogs (Pingbacks und Trackbacks)\t"
5166
-
5167
- #: wp-admin/options-discussion.php:55
5168
- msgid "Allow people to post comments on new articles"
5169
- msgstr "Erlaube Besuchern neue Artikel zu kommentieren"
5170
-
5171
- #: wp-admin/options-discussion.php:57
5172
- msgid "These settings may be overridden for individual articles."
5173
- msgstr "Diese Einstellungen können für jeden Artikel individuell geändert werden."
5174
-
5175
- #: wp-admin/options-discussion.php:61 wp-admin/options-discussion.php:62
5176
- msgid "Other comment settings"
5177
- msgstr "Weitere Kommentareinstellungen"
5178
-
5179
- #: wp-admin/options-discussion.php:63
5180
- msgid "Comment author must fill out name and e-mail"
5181
- msgstr "Benutzer müssen zum Kommentieren Name und E-Mail-Adresse hinterlassen"
5182
-
5183
- #: wp-admin/options-discussion.php:67
5184
- msgid "Users must be registered and logged in to comment"
5185
- msgstr "Benutzer müssen zum Kommentieren registriert und angemeldet sein"
5186
-
5187
- #: wp-admin/options-discussion.php:68
5188
- msgid "(Signup has been disabled. Only members of this site can comment.)"
5189
- msgstr "(Die Registrierung ist deaktiviert. Nur Benutzer dieses Blogs können kommentieren.)"
5190
-
5191
- #: wp-admin/options-discussion.php:74
5192
- msgid "Automatically close comments on articles older than %s days"
5193
- msgstr "Kommentare zu Artikeln schliessen, die älter als %s Tage sind"
5194
-
5195
- #: wp-admin/options-discussion.php:90
5196
- msgid "Enable threaded (nested) comments %s levels deep"
5197
- msgstr "Verschachtelte Kommentare in %s Ebenen organisieren"
5198
-
5199
- #: wp-admin/options-discussion.php:99
5200
- msgid "last"
5201
- msgstr "letzte"
5202
-
5203
- #: wp-admin/options-discussion.php:101
5204
- msgid "first"
5205
- msgstr "erste"
5206
-
5207
- #: wp-admin/options-discussion.php:103
5208
- msgid "Break comments into pages with %1$s top level comments per page and the %2$s page displayed by default"
5209
- msgstr "Breche Kommentare in Seiten um, mit %1$s Top-Level-Kommentaren pro Seite und zeige die %2$s Seite standardmäßig an."
5210
-
5211
- #: wp-admin/options-discussion.php:111
5212
- msgid "older"
5213
- msgstr "ältesten"
5214
-
5215
- #: wp-admin/options-discussion.php:113
5216
- msgid "newer"
5217
- msgstr "neuesten"
5218
-
5219
- #: wp-admin/options-discussion.php:115
5220
- msgid "Comments should be displayed with the %s comments at the top of each page"
5221
- msgstr "Die %s Kommentare sollen oben stehen"
5222
-
5223
- #: wp-admin/options-discussion.php:121 wp-admin/options-discussion.php:122
5224
- msgid "E-mail me whenever"
5225
- msgstr "Mir eine E-Mail schicken, wenn"
5226
-
5227
- #: wp-admin/options-discussion.php:125
5228
- msgid "Anyone posts a comment"
5229
- msgstr "jemand einen Kommentar schreibt."
5230
-
5231
- #: wp-admin/options-discussion.php:129
5232
- msgid "A comment is held for moderation"
5233
- msgstr "ein Kommentar auf Freischaltung wartet."
5234
-
5235
- #: wp-admin/options-discussion.php:133 wp-admin/options-discussion.php:134
5236
- msgid "Before a comment appears"
5237
- msgstr "Bevor ein Kommentar erscheint,"
5238
-
5239
- #: wp-admin/options-discussion.php:137
5240
- msgid "An administrator must always approve the comment"
5241
- msgstr "muss jeder Kommentar von einem Administrator überprüft werden."
5242
-
5243
- #: wp-admin/options-discussion.php:139
5244
- msgid "Comment author must have a previously approved comment"
5245
- msgstr "Der Autor muss bereits einen genehmigten Kommentar geschrieben haben."
5246
-
5247
- #: wp-admin/options-discussion.php:143 wp-admin/options-discussion.php:144
5248
- msgid "Comment Moderation"
5249
- msgstr "Kommentarmoderation"
5250
-
5251
- #: wp-admin/options-discussion.php:145
5252
- msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)"
5253
- msgstr "Einen Kommentar in die Warteschlange schieben, wenn er mehr als %s Links enthält. (Eine hohe Anzahl von Links ist ein typisches Merkmal von Kommentar-Spam.)"
5254
-
5255
- #: wp-admin/options-discussion.php:147
5256
- msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the <a href=\"edit-comments.php?comment_status=moderated\">moderation queue</a>. One word or IP per line. It will match inside words, so &#8220;press&#8221; will match &#8220;WordPress&#8221;."
5257
- msgstr "Wenn in einem Kommentar im Inhalt, Namen, URL, E-Mail-Adresse oder IP eines der unten aufgeführten Wörter oder Werte vorkommt, dann schiebe diesen Kommentar zum Freischalten in die <a href=\"edit-comments.php?comment_status=moderated\">Warteschlange</a>. Ein Wort oder IP-Adresse pro Zeile. Wortteile werden auch berücksichtigt, also wird durch &#8220;press&#8221; auch &#8220;WordPress&#8221; gefiltert."
5258
-
5259
- #: wp-admin/options-discussion.php:154 wp-admin/options-discussion.php:155
5260
- msgid "Comment Blacklist"
5261
- msgstr "Kommentar-Blacklist"
5262
-
5263
- #: wp-admin/options-discussion.php:156
5264
- msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so &#8220;press&#8221; will match &#8220;WordPress&#8221;."
5265
- msgstr "Wenn in einem Kommentar im Inhalt, Namen, URL, E-Mail-Adresse oder IP eines der unten aufgeführten Wörter oder Werte vorkommt, dann wird er als Spam markiert. Ein Wort oder IP-Adresse pro Zeile. Wortteile werden auch berücksichtigt, also wird durch &#8220;press&#8221; auch &#8220;WordPress&#8221; gefiltert."
5266
-
5267
- #: wp-admin/options-discussion.php:165
5268
- msgid "Avatars"
5269
- msgstr "Avatare"
5270
-
5271
- #: wp-admin/options-discussion.php:167
5272
- msgid "An avatar is an image that follows you from weblog to weblog appearing beside your name when you comment on avatar enabled sites. Here you can enable the display of avatars for people who comment on your site."
5273
- msgstr "Ein Avatar ist ein Bild, das neben deinem Namen in Kommentaren erscheint, die du auf Weblogs erstellst, welche Avatare unterstützen. Hier kannst du die Anzeige der Avatare für Besucher deines Blogs einstellen, die einen Kommentar abgeben."
5274
-
5275
- #: wp-admin/options-discussion.php:173 wp-admin/options-discussion.php:174
5276
- msgid "Avatar Display"
5277
- msgstr "Avataranzeige"
5278
-
5279
- #: wp-admin/options-discussion.php:176
5280
- msgid "Don&#8217;t show Avatars"
5281
- msgstr "Keine Avatare anzeigen"
5282
-
5283
- #: wp-admin/options-discussion.php:176
5284
- msgid "Show Avatars"
5285
- msgstr "Zeige Avatare"
5286
-
5287
- #: wp-admin/options-discussion.php:185 wp-admin/options-discussion.php:186
5288
- msgid "Maximum Rating"
5289
- msgstr "Avatare anzeigen mit der Einstufung bis einschließlich"
5290
-
5291
- #: wp-admin/options-discussion.php:191
5292
- msgid "G &#8212; Suitable for all audiences"
5293
- msgstr "G &#8212; Jugendfrei"
5294
-
5295
- #: wp-admin/options-discussion.php:193
5296
- msgid "PG &#8212; Possibly offensive, usually for audiences 13 and above"
5297
- msgstr "PG &#8212; Entspricht dem deutschen FSK12"
5298
-
5299
- #: wp-admin/options-discussion.php:195
5300
- msgid "R &#8212; Intended for adult audiences above 17"
5301
- msgstr "R &#8212; Entspricht in etwa dem deutschen FSK18"
5302
-
5303
- #: wp-admin/options-discussion.php:197
5304
- msgid "X &#8212; Even more mature than above"
5305
- msgstr "X &#8212; Keine Jugendfreigabe"
5306
-
5307
- #: wp-admin/options-discussion.php:208 wp-admin/options-discussion.php:209
5308
- msgid "Default Avatar"
5309
- msgstr "Standardavatar"
5310
-
5311
- #: wp-admin/options-discussion.php:211
5312
- msgid "For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their e-mail address."
5313
- msgstr "Für Benutzer ohne eigenen Avatar, kann wahlweise ein Standardlogo oder ein auf Basis deren Mailadresse erzeugter Avatar angezeigt werden."
5314
-
5315
- #: wp-admin/options-discussion.php:215
5316
- msgid "Mystery Man"
5317
- msgstr "Der blasse Typ vor der grauen Wand"
5318
-
5319
- #: wp-admin/options-discussion.php:216
5320
- msgid "Blank"
5321
- msgstr "Kein Avatar"
5322
-
5323
- #: wp-admin/options-discussion.php:217
5324
- msgid "Gravatar Logo"
5325
- msgstr "Gravatar Logo"
5326
-
5327
- #: wp-admin/options-discussion.php:218
5328
- msgid "Identicon (Generated)"
5329
- msgstr "Identicon (automatisch generiert)"
5330
-
5331
- #: wp-admin/options-discussion.php:219
5332
- msgid "Wavatar (Generated)"
5333
- msgstr "Wavatar (automatisch generiert)"
5334
-
5335
- #: wp-admin/options-discussion.php:220
5336
- msgid "MonsterID (Generated)"
5337
- msgstr "MonsterID (automatisch generiert)"
5338
-
5339
- #: wp-admin/options-discussion.php:221
5340
- msgid "Retro (Generated)"
5341
- msgstr "Retro (automatisch generiert)"
5342
-
5343
- #: wp-admin/plugin-editor.php:18
5344
- msgid "You do not have sufficient permissions to edit plugins for this site."
5345
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Plugins bearbeiten zu können."
5346
-
5347
- #: wp-admin/plugin-editor.php:20
5348
- msgid "Edit Plugins"
5349
- msgstr "Plugins bearbeiten"
5350
-
5351
- #: wp-admin/plugin-editor.php:28
5352
- msgid "There are no plugins installed on this site."
5353
- msgstr "Es sind keine Plugins in diesem Blog installiert."
5354
-
5355
- #: wp-admin/plugin-editor.php:102
5356
- msgid "No such file exists! Double check the name and try again."
5357
- msgstr "Hupsa, diese Datei existiert nicht! Überprüfe die Schreibweise und versuch es noch einmal."
5358
-
5359
- #: wp-admin/plugin-editor.php:109
5360
- msgid "Files of this type are not editable."
5361
- msgstr "Dateien von diesem Typ können nicht bearbeitet werden."
5362
-
5363
- #: wp-admin/plugin-editor.php:117
5364
- msgid "You can use the editor to make changes to any of your plugins&#8217; individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations."
5365
- msgstr "Du kannst den Plugin-Editor benutzen, um eigene Änderungen in ein Plugin einzubringen. Beachte aber, dass gemachte Änderungen verloren gehen, wenn du ein Plugin aktualisierst. "
5366
-
5367
- #: wp-admin/plugin-editor.php:118
5368
- msgid "Choose a plugin to edit from the menu in the upper right and click the Select button. Click once on any file name to load it in the editor, and make your changes. Don&#8217;t forget to save your changes (Update File) when you&#8217;re finished."
5369
- msgstr "Wähle zuerst in der Auswahlbox das zu bearbeitende Plugin und klicke dann auf -Wähle-. Anschließend werden auf der rechten Seite alle zum Plugin zugehörigen Dateien angezeigt, die du mit einem Klick auf den jeweiligen Dateinamen bearbeiten kannst. Vergiss nicht, zum Schluss auch die Änderungen mit einem Klick auf <em>Dazu aktualisieren</em> zu speichern."
5370
-
5371
- #: wp-admin/plugin-editor.php:119
5372
- msgid "The Documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Lookup takes you to a web page about that particular function."
5373
- msgstr "Am unteren Ende dieser Seite findest du die Auswahlbox \"Dokumentation\". In dieser werden alle PHP-Funktionen angezeigt, die in der geöffneten Plugindatei vorkommen. Mit einem Klick auf \"nachschlagen\" wirst du zu einer Website weitergeleitet, die weitere Informationen zur ausgewählten PHP-Funktion anzeigt."
5374
-
5375
- #: wp-admin/plugin-editor.php:120
5376
- msgid "If you want to make changes but don&#8217;t want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below."
5377
- msgstr ""
5378
- "Falls du nicht willst, dass gemachte Änderungen bei einer Plugin-Aktualisierung überschrieben werden, so solltest du darüber nachdenken, ein eigenes Plugin zu schreiben. \n"
5379
- "Unter <em>Weitere Informationen</em> findest du Links, die den Aufbau und die Funktionsweise von WordPress-Plugins erklären."
5380
-
5381
- #: wp-admin/plugin-editor.php:121 wp-admin/theme-editor.php:33
5382
- msgid "Any edits to files from this screen will be reflected on all sites in the network."
5383
- msgstr "Jegliche Änderungen an Dateien über diese Bearbeitungsfunktion betreffen alle Blog im Blog-Netzwerk."
5384
-
5385
- #: wp-admin/plugin-editor.php:126
5386
- msgid "<a href=\"http://codex.wordpress.org/Plugins_Editor_Screen\" target=\"_blank\">Documentation on Editing Plugins</a>"
5387
- msgstr "<a href=\"http://codex.wordpress.org/Plugins_Editor_Screen\" target=\"_blank\">Documentation on Editing Plugins (engl.)</a>"
5388
-
5389
- #: wp-admin/plugin-editor.php:127
5390
- msgid "<a href=\"http://codex.wordpress.org/Writing_a_Plugin\" target=\"_blank\">Documentation on Writing Plugins</a>"
5391
- msgstr "<a href=\"http://codex.wordpress.org/Writing_a_Plugin\" target=\"_blank\">Documentation on Writing Plugins (engl.)</a>"
5392
-
5393
- #: wp-admin/plugin-editor.php:142
5394
- msgid "Function Name&hellip;"
5395
- msgstr "Funktionsname&hellip;"
5396
-
5397
- #: wp-admin/plugin-editor.php:153 wp-admin/theme-editor.php:138
5398
- msgid "File edited successfully."
5399
- msgstr "Die Datei wurde erfolgreich bearbeitet."
5400
-
5401
- #: wp-admin/plugin-editor.php:155
5402
- msgid "This plugin has been deactivated because your changes resulted in a <strong>fatal error</strong>."
5403
- msgstr "Dieses Plugin wurde deaktiviert, da die von dir vorgenommen Änderungen einen <strong>fatalen Fehler</strong> verursacht haben."
5404
-
5405
- #: wp-admin/plugin-editor.php:171
5406
- msgid "Editing <strong>%s</strong> (active)"
5407
- msgstr "Bearbeite <strong>%s</strong> (aktiv)"
5408
-
5409
- #: wp-admin/plugin-editor.php:173
5410
- msgid "Browsing <strong>%s</strong> (active)"
5411
- msgstr "Zu sehen: <strong>%s</strong> (aktiv)"
5412
-
5413
- #: wp-admin/plugin-editor.php:176
5414
- msgid "Editing <strong>%s</strong> (inactive)"
5415
- msgstr "Bearbeite <strong>%s</strong> (inaktiv)"
5416
-
5417
- #: wp-admin/plugin-editor.php:178
5418
- msgid "Browsing <strong>%s</strong> (inactive)"
5419
- msgstr "Zu sehen: <strong>%s</strong> (inaktiv)"
5420
-
5421
- #: wp-admin/plugin-editor.php:184
5422
- msgid "Select plugin to edit:"
5423
- msgstr "Zu bearbeitendes Plugin wählen:"
5424
-
5425
- #: wp-admin/plugin-editor.php:199 wp-admin/theme-editor.php:168
5426
- #: wp-admin/includes/template.php:1312
5427
- #: wp-admin/includes/class-wp-plugins-list-table.php:390
5428
- #: wp-admin/nav-menus.php:505
5429
- msgid "Select"
5430
- msgstr "- Wähle -"
5431
-
5432
- #: wp-admin/plugin-editor.php:206
5433
- msgid "Plugin Files"
5434
- msgstr "Plugin-Dateien"
5435
-
5436
- #: wp-admin/plugin-editor.php:235 wp-admin/theme-editor.php:237
5437
- msgid "Documentation:"
5438
- msgstr "Dokumentation:"
5439
-
5440
- #: wp-admin/plugin-editor.php:235 wp-admin/theme-editor.php:239
5441
- msgid "Lookup"
5442
- msgstr "nachschlagen"
5443
-
5444
- #: wp-admin/plugin-editor.php:239
5445
- msgid "<strong>Warning:</strong> Making changes to active plugins is not recommended. If your changes cause a fatal error, the plugin will be automatically deactivated."
5446
- msgstr "<strong>Warnung:</strong> Es sollten keine Änderungen an aktivierten Plugins vorgenommen werden. Wenn deine Änderungen einen Fehler verursachen wird das Plugin automatisch deaktiviert."
5447
-
5448
- #: wp-admin/plugin-editor.php:245
5449
- msgid "Update File and Attempt to Reactivate"
5450
- msgstr "Datei aktualisieren und Versuch der Reaktivierung"
5451
-
5452
- #: wp-admin/plugin-editor.php:247 wp-admin/theme-editor.php:250
5453
- msgid "Update File"
5454
- msgstr "Datei aktualisieren"
5455
-
5456
- #: wp-admin/plugin-editor.php:252 wp-admin/theme-editor.php:252
5457
- msgid "You need to make this file writable before you can save your changes. See <a href=\"http://codex.wordpress.org/Changing_File_Permissions\">the Codex</a> for more information."
5458
- msgstr "Um diese Datei zu ändern, muss sie vom Server <a href=\"http://codex.wordpress.org/Changing_File_Permissions\" title=\"Read more about making files writable\">beschreibbar</a> sein."
5459
-
5460
- #: wp-admin/plugin-install.php:16
5461
- msgid "You do not have sufficient permissions to install plugins on this site."
5462
- msgstr "Du hast nicht die erforderlichen Rechte, um das Plugin zu installieren."
5463
-
5464
- #: wp-admin/plugin-install.php:27
5465
- msgid "Install Plugins"
5466
- msgstr "Plugins installieren"
5467
-
5468
- #: wp-admin/plugin-install.php:48
5469
- msgid "If you know what you&#8217;re looking for, Search is your best bet. The Search screen has options to search the WordPress.org Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting a popular tags. Tags in larger type mean more plugins have been labeled with that tag."
5470
- msgstr "Falls du weißt, wonach du suchst, kannst du direkt die Suche nutzen. Damit kannst du im offiziellen WordPress.org Plugin-Verzeichnis nach bestimmten Begriffen, Autoren oder (englischen) Schlagwörtern suchen. Du kannst dich auch von der Liste populärer Schlagwörter inspirieren lassen. Die Schlagwörter erscheinen umso größer, je häufiger sie vergeben wurden. "
5471
-
5472
- #: wp-admin/plugin-install.php:49
5473
- msgid "If you just want to get an idea of what&#8217;s available, you can browse Featured, Popular, Newest, and Recently Updated plugins by using the links in the upper left of the screen. These sections rotate regularly."
5474
- msgstr "Um dir einen Überblick zu verschaffen, kannst du auch die Listen empfohlener, populärer, neuer oder kürzlicher aktualisierter Plugins nutzen."
5475
-
5476
- #: wp-admin/plugin-install.php:55
5477
- msgid "<a href=\"http://codex.wordpress.org/Plugins_Add_New_Screen\" target=\"_blank\">Documentation on Installing Plugins</a>"
5478
- msgstr "<a href=\"http://codex.wordpress.org/Plugins_Add_New_Screen\" target=\"_blank\">Documentation on Installing Plugins (engl.)</a>"
5479
-
5480
- #: wp-admin/link-parse-opml.php:90
5481
- msgid "XML error: %1$s at line %2$s"
5482
- msgstr "XML-Fehler: %1$s in der Zeile %2$s"
5483
-
5484
- #: wp-admin/options-privacy.php:15
5485
- msgid "Privacy Settings"
5486
- msgstr "Einstellungen &rsaquo; Privatsphäre"
5487
-
5488
- #: wp-admin/options-privacy.php:22
5489
- msgid "When this setting is in effect a reminder is shown in the Right Now box of the Dashboard that says, &#8220;Search Engines Blocked,&#8221; to remind you that your site is not being crawled."
5490
- msgstr "Wenn das Blockieren von Suchmaschinen aktiviert ist, wird im Modul \"Auf einen Blick\" im Dashboard der Hinweis \"Suchmaschinen werden blockiert\" eingeblendet, um dich daran zu erinnern, dass deine Website nicht indexiert wird."
5491
-
5492
- #: wp-admin/options-privacy.php:27
5493
- msgid "<a href=\"http://codex.wordpress.org/Settings_Privacy_Screen\" target=\"_blank\">Documentation on Privacy Settings</a>"
5494
- msgstr "<a href=\"http://codex.wordpress.org/Settings_Privacy_Screen\" target=\"_blank\">Documentation on Privacy Settings (engl.)</a>"
5495
-
5496
- #: wp-admin/options-privacy.php:43 wp-admin/options-privacy.php:44
5497
- msgid "Site Visibility"
5498
- msgstr "Sichtbarkeit des Blogs"
5499
-
5500
- #: wp-admin/options-privacy.php:46
5501
- msgid "Allow search engines to index this site."
5502
- msgstr "Erlaube Suchmaschinen dieses Blog zu indexieren."
5503
-
5504
- #: wp-admin/options-privacy.php:48
5505
- msgid "Ask search engines not to index this site."
5506
- msgstr "Suchmaschinen das Indizieren dieser Seite verbieten."
5507
-
5508
- #: wp-admin/options-privacy.php:49
5509
- msgid "Note: Neither of these options blocks access to your site &mdash; it is up to search engines to honor your request."
5510
- msgstr "Hinweis: Keine dieser Einstellungen verhindert den Zugang zu deinem Blog &mdash; Es obliegt den Suchmaschinen deine Anfrage zu berücksichtigen."
5511
-
5512
- #: wp-admin/menu-header.php:169
5513
- msgid "Collapse menu"
5514
- msgstr "Menü einklappen"
5515
-
5516
- #: wp-admin/theme-editor.php:18
5517
- msgid "You do not have sufficient permissions to edit templates for this site."
5518
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Templates bearbeiten zu können."
5519
-
5520
- #: wp-admin/theme-editor.php:20
5521
- msgid "Edit Themes"
5522
- msgstr "Themes bearbeiten"
5523
-
5524
- #: wp-admin/theme-editor.php:27
5525
- msgid "You can use the Theme Editor to edit the individual CSS and PHP files which make up your theme."
5526
- msgstr "Du kannst den Design-Editor benutzen, um eigene Änderungen in den CSS- und PHP-Dateien eines Themes vorzunehmen."
5527
-
5528
- #: wp-admin/theme-editor.php:28
5529
- msgid "Begin by choosing a theme to edit from the dropdown menu and clicking Select. A list then appears of all the template files. Clicking once on any file name causes the file to appear in the large Editor box."
5530
- msgstr "Wähle zuerst in der Auswahlbox das zu bearbeitende Theme und klicke dann auf <em>-Wähle-</em>. Anschließend werden auf der rechten Seite alle zum Theme zugehörigen Dateien angezeigt, die du mit einem Klick auf den jeweiligen Dateinamen bearbeiten kannst."
5531
-
5532
- #: wp-admin/theme-editor.php:29
5533
- msgid "For PHP files, you can use the Documentation dropdown to select from functions recognized in that file. Lookup takes you to a web page with reference material about that particular function."
5534
- msgstr "Am unteren Ende dieser Seite findest du die Auswahlbox \"Dokumentation\". In dieser werden alle PHP-Funktionen angezeigt, die in der geöffneten Theme-Datei vorkommen. Mit einem Klick auf \"nachschlagen\" wirst du zu einer Website weitergeleitet, die weitere Informationen zur ausgewählten PHP-Funktion anzeigt."
5535
-
5536
- #: wp-admin/theme-editor.php:30
5537
- msgid "After typing in your edits, click Update File."
5538
- msgstr "Vergiss nicht, zum Schluss auf \"Datei aktualisieren\" zu klicken."
5539
-
5540
- #: wp-admin/theme-editor.php:31
5541
- msgid "<strong>Advice:</strong> think very carefully about your site crashing if you are live-editing the theme currently in use."
5542
- msgstr "<strong>Hinweis:</strong> Sei vorsichtig, wenn du ein Theme bearbeitest, welches gerade benutzt wird. "
5543
-
5544
- #: wp-admin/theme-editor.php:32
5545
- msgid "Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a <a href=\"http://codex.wordpress.org/Child_Themes\" target=\"_blank\">child theme</a> instead."
5546
- msgstr "Beim Aktualisieren eines Themes gehen leider alle vorgenommenen Änderungen verloren. Um dies zu vermeiden, solltest du ein <a href=\"http://codex.wordpress.org/Child_Themes\" target=\"_blank\">Ergänzungs-Theme (engl.)</a> (Child Theme) erstellen."
5547
-
5548
- #: wp-admin/theme-editor.php:38
5549
- msgid "<a href=\"http://codex.wordpress.org/Theme_Development\" target=\"_blank\">Documentation on Theme Development</a>"
5550
- msgstr "<a href=\"http://codex.wordpress.org/Theme_Development\" target=\"_blank\">Documentation on Theme Development (engl.)</a>"
5551
-
5552
- #: wp-admin/theme-editor.php:40
5553
- msgid "<a href=\"http://codex.wordpress.org/Editing_Files\" target=\"_blank\">Documentation on Editing Files</a>"
5554
- msgstr "<a href=\"http://codex.wordpress.org/Editing_Files\" target=\"_blank\">Documentation on Editing Files (engl.)</a>"
5555
-
5556
- #: wp-admin/theme-editor.php:41
5557
- msgid "<a href=\"http://codex.wordpress.org/Template_Tags\" target=\"_blank\">Documentation on Template Tags</a>"
5558
- msgstr "<a href=\"http://codex.wordpress.org/Template_Tags\" target=\"_blank\">Documentation on Template Tags (engl.)</a>"
5559
-
5560
- #: wp-admin/theme-editor.php:56
5561
- msgid "The requested theme does not exist."
5562
- msgstr "Das angeforderte Theme existiert nicht."
5563
-
5564
- #: wp-admin/theme-editor.php:126
5565
- msgid "Function Name..."
5566
- msgstr "Funktionsname …"
5567
-
5568
- #: wp-admin/theme-editor.php:156
5569
- msgid "Select theme to edit:"
5570
- msgstr "Zu bearbeitendes Theme wählen:"
5571
-
5572
- #: wp-admin/theme-editor.php:177
5573
- msgid "Templates"
5574
- msgstr "Templates"
5575
-
5576
- #: wp-admin/theme-editor.php:179
5577
- msgid "This child theme inherits templates from a parent theme, %s."
5578
- msgstr "Dieses Ergänzungs-Theme (Child Theme) greift auf Dateien des übergeordneten Themes %s zurück."
5579
-
5580
- #: wp-admin/theme-editor.php:202
5581
- msgctxt "Theme stylesheets in theme editor"
5582
- msgid "Styles"
5583
- msgstr "Stylesheets"
5584
-
5585
- #: wp-admin/theme-editor.php:245 wp-admin/comment.php:161
5586
- #: wp-admin/plugins.php:250
5587
- msgid "Caution:"
5588
- msgstr "Warnung:"
5589
-
5590
- #: wp-admin/theme-editor.php:246
5591
- msgid "This is a file in your current parent theme."
5592
- msgstr "Dies ist eine Datei des aktuell verwendeten übergeordneten Themes."
5593
-
5594
- #: wp-admin/theme-editor.php:258
5595
- msgid "Oops, no such file exists! Double check the name and try again, merci."
5596
- msgstr "Hupsa, diese Datei existiert nicht! Überprüfe die Schreibweise und versuch es noch einmal."
5597
-
5598
- #: wp-admin/install.php:60
5599
- msgid "WordPress &rsaquo; Installation"
5600
- msgstr "WordPress &rsaquo; Installation"
5601
-
5602
- #: wp-admin/install.php:92
5603
- msgid "<strong>ERROR</strong>: %s"
5604
- msgstr "<strong>Fehler:</strong> %s"
5605
-
5606
- #: wp-admin/install.php:105
5607
- msgid "User(s) already exists."
5608
- msgstr "Benutzer existiert (existieren) bereits"
5609
-
5610
- #: wp-admin/install.php:108
5611
- msgid "Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods and the @ symbol."
5612
- msgstr "Benutzernamen dürfen nur alphanumerische Zeichen, Leerzeichen, Unterstriche, Bindestriche, Punkte und das @-Symbol enthalten."
5613
-
5614
- #: wp-admin/install.php:116
5615
- msgid "Password, twice"
5616
- msgstr "Passwort, doppelt"
5617
-
5618
- #: wp-admin/install.php:117
5619
- msgid "A password will be automatically generated for you if you leave this blank."
5620
- msgstr "Wenn du nichts angibst, wird dir automatisch ein Passwort erstellt."
5621
-
5622
- #: wp-admin/install.php:128
5623
- msgid "Your E-mail"
5624
- msgstr "Deine E-Mail-Adresse"
5625
-
5626
- #: wp-admin/install.php:130
5627
- msgid "Double-check your email address before continuing."
5628
- msgstr "Bitte die E-Mail-Adresse ganz genau überprüfen, bevor wir fortfahren."
5629
-
5630
- #: wp-admin/install.php:134
5631
- msgid "Allow my site to appear in search engines like Google and Technorati."
5632
- msgstr "Ich möchte, dass Suchmaschinen meinen Blog durchsuchen dürfen, sodass mein Blog in Suchergebnissen angezeigt wird."
5633
-
5634
- #: wp-admin/install.php:137
5635
- msgid "Install WordPress"
5636
- msgstr "WordPress installieren"
5637
-
5638
- #: wp-admin/install.php:145
5639
- msgid "Already Installed"
5640
- msgstr "Bereits installiert:"
5641
-
5642
- #: wp-admin/install.php:145
5643
- msgid "You appear to have already installed WordPress. To reinstall please clear your old database tables first."
5644
- msgstr "Du scheinst WordPress bereits installiert zu haben. Falls du es erneut installieren willst, lösch bitte vorher die Tabellen in der Datenbank."
5645
-
5646
- #: wp-admin/install.php:154
5647
- msgid "You cannot install because <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s."
5648
- msgstr "Die Installation kann nicht gestartet werden, da <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> mindestens die PHP-Version %2$s und die MySQL-Version %3$s voraussetzt. Du verwendest die PHP-Version %4$s und die MySQL-Version %5$s."
5649
-
5650
- #: wp-admin/install.php:156
5651
- msgid "You cannot install because <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s."
5652
- msgstr "Die Installation kann nicht gestartet werden, da <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> mindestens die PHP -Version %2$s benötigt. Deine PHP -Version ist %3$s."
5653
-
5654
- #: wp-admin/install.php:158
5655
- msgid "You cannot install because <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s."
5656
- msgstr "Die Installation kann nicht gestartet werden, da <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> mindestens die MySQL-Version %2$s benötigt. Deine MySQL-Version ist %3$s."
5657
-
5658
- #: wp-admin/install.php:162
5659
- msgid "Insufficient Requirements"
5660
- msgstr "Unzureichende Voraussetzungen"
5661
-
5662
- #: wp-admin/install.php:170 wp-admin/includes/screen.php:813
5663
- msgid "Welcome"
5664
- msgstr "Willkommen"
5665
-
5666
- #: wp-admin/install.php:171
5667
- msgid "Welcome to the famous five minute WordPress installation process! You may want to browse the <a href=\"%s\">ReadMe documentation</a> at your leisure. Otherwise, just fill in the information below and you&#8217;ll be on your way to using the most extendable and powerful personal publishing platform in the world."
5668
- msgstr "Willkommen bei der berühmten 5-Minuten-Installation von WordPress! Vielleicht möchtest du zunächst einen Blick in die <a href=\"../liesmich.html\">liesmich</a>-Datei (<a href=\"%s\">ReadMe</a>) werfen, bevor wir fortfahren. Du kannst auch einfach unten die benötigten Informationen eingeben, um das mächtigste und flexibelste Weblog-System der Welt benutzen zu können."
5669
-
5670
- #: wp-admin/install.php:173
5671
- msgid "Information needed"
5672
- msgstr "Benötigte Informationen"
5673
-
5674
- #: wp-admin/install.php:174
5675
- msgid "Please provide the following information. Don&#8217;t worry, you can always change these settings later."
5676
- msgstr "Bitte trage die folgenden Informationen ein. Keine Sorge, du kannst all diese Einstellungen später auch wieder ändern."
5677
-
5678
- #: wp-admin/install.php:195
5679
- msgid "you must provide a valid username."
5680
- msgstr "du musst einen gültigen Benutzernamen angeben."
5681
-
5682
- #: wp-admin/install.php:198
5683
- msgid "the username you provided has invalid characters."
5684
- msgstr "der Benutzername, den du ausgewählt hast, enthält ungültige Zeichen."
5685
-
5686
- #: wp-admin/install.php:202
5687
- msgid "your passwords do not match. Please try again"
5688
- msgstr "die Passwörter stimmen nicht überein. Bitte versuche es erneut"
5689
-
5690
- #: wp-admin/install.php:206
5691
- msgid "you must provide an e-mail address."
5692
- msgstr "du musst eine E-Mail-Adresse angeben."
5693
-
5694
- #: wp-admin/install.php:210
5695
- msgid "that isn&#8217;t a valid e-mail address. E-mail addresses look like: <code>username@example.com</code>"
5696
- msgstr "das ist keine gütige E-Mail-Adresse. E-Mail-Adressen sehen so aus: <code>name@example.com</code>"
5697
-
5698
- #: wp-admin/install.php:220
5699
- msgid "Success!"
5700
- msgstr "Erfolg!"
5701
-
5702
- #: wp-admin/install.php:222
5703
- msgid "WordPress has been installed. Were you expecting more steps? Sorry to disappoint."
5704
- msgstr "WordPress wurde installiert. Falls du mehr Schritte erwartet hast, müssen wir dich leider enttäuschen. Alles fertig! :)"
5705
-
5706
- #: wp-admin/tools.php:17 wp-admin/options-writing.php:28
5707
- msgid "Press This is a bookmarklet that makes it easy to blog about something you come across on the web. You can use it to just grab a link, or to post an excerpt. Press This will even allow you to choose from images included on the page and use them in your post. Just drag the Press This link on this screen to your bookmarks bar in your browser, and you&#8217;ll be on your way to easier content creation. Clicking on it while on another website opens a popup window with all these options."
5708
- msgstr ""
5709
- "Press This ist ein Bookmarklet: Eine kleine Anwendung, die in deinem Browser läuft und dir erlaubt, verschiedene Sachen aus dem Web zu übernehmen.<br />\n"
5710
- "\n"
5711
- "Benutze Press This, um Text, Bilder und Videos aus jeder beliebigen Webseite einzubinden. Dann kannst du es einfach mit Press This bearbeiten und noch etwas hinzufügen, bevor du es speicherst oder als Artikel in deinem Blog veröffentlichst.<br />\n"
5712
- "\n"
5713
- "Ziehe den folgenden Link in deine Favoritenleiste oder füge ihn über einen Rechtsklick zu deinen Favoriten hinzu, um einen schnelle Zugriff zu gewährleisten."
5714
-
5715
- #: wp-admin/tools.php:28
5716
- msgid "<a href=\"http://codex.wordpress.org/Tools_Screen\" target=\"_blank\">Documentation on Tools</a>"
5717
- msgstr "<a href=\"http://codex.wordpress.org/Tools_Screen\" target=\"_blank\">Documentation on Tools (engl.)</a>"
5718
-
5719
- #: wp-admin/tools.php:16 wp-admin/tools.php:41 wp-admin/tools.php:46
5720
- #: wp-admin/options-writing.php:27 wp-admin/options-writing.php:124
5721
- #: wp-admin/options-writing.php:128 wp-admin/includes/dashboard.php:509
5722
- #: wp-admin/press-this.php:302 wp-admin/press-this.php:464
5723
- msgid "Press This"
5724
- msgstr "Press This"
5725
-
5726
- #: wp-admin/tools.php:42 wp-admin/options-writing.php:125
5727
- msgid "Press This is a bookmarklet: a little app that runs in your browser and lets you grab bits of the web."
5728
- msgstr "Press This ist ein Bookmarklet: Eine kleine Anwendung, die in deinem Browser läuft und dir erlaubt, verschiedene Sachen aus dem Web zu übernehmen."
5729
-
5730
- #: wp-admin/tools.php:44 wp-admin/options-writing.php:126
5731
- msgid "Use Press This to clip text, images and videos from any web page. Then edit and add more straight from Press This before you save or publish it in a post on your site."
5732
- msgstr "Benutze Press This, um Text, Bilder und Videos aus jeder beliebigen Webseite einzubinden. Dann kannst du es einfach mit Press This bearbeiten und noch etwas hinzufügen, bevor du es speicherst oder als Artikel in deinem Blog veröffentlichst."
5733
-
5734
- #: wp-admin/tools.php:45 wp-admin/options-writing.php:127
5735
- msgid "Drag-and-drop the following link to your bookmarks bar or right click it and add it to your favorites for a posting shortcut."
5736
- msgstr "Ziehe den folgenden Link in deine Favoritenleiste oder füge ihn über einen Rechtsklick zu deinen Favoriten hinzu, um eine Abkürzung zum Schreiben zu haben."
5737
-
5738
- #: wp-admin/tools.php:48 wp-admin/options-writing.php:130
5739
- msgid "If your bookmarks toolbar is hidden: copy the code below, open your Bookmarks manager, create new bookmark, type Press This into the name field and paste the code into the URL field."
5740
- msgstr "Falls deine Favoritenleiste unsichtbar ist: Kopiere den untenstehenden Code, öffne die Favoritenverwaltung, erstelle einen neuen Favoriten und füge den kopierten Code in das Feld für die Adresse ein."
5741
-
5742
- #: wp-admin/tools.php:21 wp-admin/tools.php:60 wp-admin/import.php:37
5743
- msgid "Categories and Tags Converter"
5744
- msgstr "Kategorie und Schlagwort-Konverter"
5745
-
5746
- #: wp-admin/edit-form-advanced.php:32
5747
- msgid "Post updated. <a href=\"%s\">View post</a>"
5748
- msgstr "Der Artikel wurde aktualisiert. <a href=\"%s\">Artikel ansehen</a>"
5749
-
5750
- #: wp-admin/edit-form-advanced.php:33 wp-admin/edit-form-advanced.php:49
5751
- msgid "Custom field updated."
5752
- msgstr "Benutzerdefiniertes Feld aktualisiert."
5753
-
5754
- #: wp-admin/edit-form-advanced.php:34 wp-admin/edit-form-advanced.php:50
5755
- msgid "Custom field deleted."
5756
- msgstr "Benutzerdefiniertes Feld gelöscht."
5757
-
5758
- #: wp-admin/edit-form-advanced.php:35
5759
- msgid "Post updated."
5760
- msgstr "Artikel aktualisiert."
5761
-
5762
- #: wp-admin/edit-form-advanced.php:37
5763
- msgid "Post restored to revision from %s"
5764
- msgstr "Artikel aus Überarbeitung vom %s wiederhergestellt"
5765
-
5766
- #: wp-admin/edit-form-advanced.php:38
5767
- msgid "Post published. <a href=\"%s\">View post</a>"
5768
- msgstr "Artikel veröffentlicht. <a href=\"%s\">Artikel ansehen</a>"
5769
-
5770
- #: wp-admin/edit-form-advanced.php:39
5771
- msgid "Post saved."
5772
- msgstr "Artikel gespeichert."
5773
-
5774
- #: wp-admin/edit-form-advanced.php:40
5775
- msgid "Post submitted. <a target=\"_blank\" href=\"%s\">Preview post</a>"
5776
- msgstr "Beitrag übermittelt. <a target=\"_blank\" href=\"%s\">Beitragsvorschau</a>"
5777
-
5778
- #: wp-admin/edit-form-advanced.php:41
5779
- msgid "Post scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview post</a>"
5780
- msgstr "Veröffentlichung geplant für: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau</a>"
5781
-
5782
- #: wp-admin/edit-form-advanced.php:43 wp-admin/edit-form-advanced.php:56
5783
- #: wp-admin/includes/meta-boxes.php:159 wp-admin/edit-form-comment.php:58
5784
- msgid "M j, Y @ G:i"
5785
- msgstr "d. F Y H:i"
5786
-
5787
- #: wp-admin/edit-form-advanced.php:44
5788
- msgid "Post draft updated. <a target=\"_blank\" href=\"%s\">Preview post</a>"
5789
- msgstr "Der Beitragsentwurf wurde aktualisiert. <a target=\"_blank\" href=\"%s\">Beitragsvorschau</a>"
5790
-
5791
- #: wp-admin/edit-form-advanced.php:48
5792
- msgid "Page updated. <a href=\"%s\">View page</a>"
5793
- msgstr "Seite aktualisiert. <a href=\"%s\">Seite ansehen</a>"
5794
-
5795
- #: wp-admin/edit-form-advanced.php:51
5796
- msgid "Page updated."
5797
- msgstr "Seite wurde aktualisiert."
5798
-
5799
- #: wp-admin/edit-form-advanced.php:52
5800
- msgid "Page restored to revision from %s"
5801
- msgstr "Seite aus Überarbeitung vom %s wiederhergestellt"
5802
-
5803
- #: wp-admin/edit-form-advanced.php:53
5804
- msgid "Page published. <a href=\"%s\">View page</a>"
5805
- msgstr "Seite veröffentlicht. <a href=\"%s\">Seite ansehen</a>"
5806
-
5807
- #: wp-admin/edit-form-advanced.php:54
5808
- msgid "Page saved."
5809
- msgstr "Die Seite wurde gespeichert."
5810
-
5811
- #: wp-admin/edit-form-advanced.php:55
5812
- msgid "Page submitted. <a target=\"_blank\" href=\"%s\">Preview page</a>"
5813
- msgstr "Seite übertragen. <a target=\"_blank\" href=\"%s\">Seitenvorschau</a>"
5814
-
5815
- #: wp-admin/edit-form-advanced.php:56
5816
- msgid "Page scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview page</a>"
5817
- msgstr "Veröffentlichung geplant für: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau</a>"
5818
-
5819
- #: wp-admin/edit-form-advanced.php:57
5820
- msgid "Page draft updated. <a target=\"_blank\" href=\"%s\">Preview page</a>"
5821
- msgstr "Der Seitenentwurf wurde aktualisiert. <a target=\"_blank\" href=\"%s\">Seitenvorschau</a>"
5822
-
5823
- #: wp-admin/edit-form-advanced.php:90
5824
- msgid "There is an autosave of this post that is more recent than the version below. <a href=\"%s\">View the autosave</a>"
5825
- msgstr "Es existiert eine automatische Speicherung dieser Seite, die aktueller ist als die Version unten. <a href=\"%s\">Automatische Speicherung ansehen</a>."
5826
-
5827
- #: wp-admin/edit-form-advanced.php:122 wp-admin/edit-form-advanced.php:228
5828
- msgid "Page Attributes"
5829
- msgstr "Attribute"
5830
-
5831
- #: wp-admin/edit-form-advanced.php:122
5832
- msgid "Attributes"
5833
- msgstr "Attribute"
5834
-
5835
- #: wp-admin/edit-form-advanced.php:125
5836
- msgid "Featured Image"
5837
- msgstr "Artikelbild"
5838
-
5839
- #: wp-admin/edit-form-advanced.php:131
5840
- msgid "Send Trackbacks"
5841
- msgstr "Trackbacks senden"
5842
-
5843
- #: wp-admin/edit-form-advanced.php:134
5844
- msgid "Custom Fields"
5845
- msgstr "Benutzerdefinierte Felder"
5846
-
5847
- #: wp-admin/edit-form-advanced.php:144
5848
- #: wp-admin/includes/class-wp-posts-list-table.php:744
5849
- #: wp-admin/includes/class-wp-terms-list-table.php:102
5850
- #: wp-admin/includes/class-wp-terms-list-table.php:345
5851
- #: wp-admin/includes/meta-boxes.php:513
5852
- msgid "Slug"
5853
- msgstr "Titelform"
5854
-
5855
- #: wp-admin/edit-form-advanced.php:164
5856
- msgid "The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop, and can minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen."
5857
- msgstr "Das Eingabefeld für den Titel und der große Schreibbereich stehen immer an der selben Stelle, du kannst jedoch alle anderen Module beliebig durch Klicken und Ziehen positionieren. Mit einem Klick auf den Titel eines Moduls kannst du es ein- oder ausklappen. Möchtest du es ganz ausblenden, so kannst du dies über <em>Optionen einblenden</em> tun, in dem du die entsprechenden Module ab- oder anwählst. Beachte, dass du <em>Optionen einblenden</em> erst benutzen kannst, nachdem du diese Hilfebox geschlossen hast."
5858
-
5859
- #: wp-admin/edit-form-advanced.php:168
5860
- msgid "Customizing This Display"
5861
- msgstr "Diese Anzeige anpassen"
5862
-
5863
- #: wp-admin/edit-form-advanced.php:172
5864
- msgid "<strong>Title</strong> - Enter a title for your post. After you enter a title, you&#8217;ll see the permalink below, which you can edit."
5865
- msgstr ""
5866
- "<strong>Titel</strong> – Im ersten Eingabefeld dieser Seite musst du einen Titel für deinen Artikel eintragen. \n"
5867
- "Nachdem ein Titel eingegeben wurde, wird unter dem Eingabefeld der Permalink angezeigt, unter dem der Artikel nach dem Veröffentlichen (Schaltfläche \"Veröffentlichen\") erreichbar ist."
5868
-
5869
- #: wp-admin/edit-form-advanced.php:177
5870
- msgid "Title and Post Editor"
5871
- msgstr "Titel und Artikel Editor"
5872
-
5873
- #: wp-admin/edit-form-advanced.php:181
5874
- msgid "<strong>Publish</strong> - You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post."
5875
- msgstr "<strong>Veröffentlichen</strong> – Hier kannst du alle Details zur Veröffentlichung deines Artikels einstellen. So kannst du mittels Klick auf \"Bearbeiten\" bei \"Sichtbarkeit\" den Artikel per Passwort schützen oder dauerhaft auf der Startseite halten. Die Optionen bei \"Sofort veröffentlichen\" geben dir die Möglichkeit, einen Artikel zurückzudatieren oder einen Artikel erst in der Zukunft zu veröffentlichen - der Artikel ist erst dann öffentlich sichtbar, nachdem das eingestellte Datum und Uhrzeit erreicht wurden. Vergiss' nicht, etwaige Änderungen erst mit einem Klick auf \"OK\" zu bestätigen."
5876
-
5877
- #: wp-admin/edit-form-advanced.php:184
5878
- msgid "<strong>Post Format</strong> - This designates how your theme will display a specific post. For example, you could have a <em>standard</em> blog post with a title and paragraphs, or a short <em>aside</em> that omits the title and contains a short text blurb. Please refer to the Codex for <a href=\"http://codex.wordpress.org/Post_Formats#Supported_Formats\">descriptions of each post format</a>. Your theme could enable all or some of 10 possible formats."
5879
- msgstr "<strong>Formatvorlage</strong> – Hier kannst du angeben, wie das Theme den Artikel darstellen soll. Zum Beispiel <em>Standard</em> für einen normalen Beitrag oder <em>Kurzmitteilung</em> für einen kurze Mitteilung ohne Titel. Eine Übersicht und Erklärung aller Artikel-Formatvorlagen findest du <a href=\"http://codex.wordpress.org/Post_Formats#Supported_Formats\">im Codex (engl.)</a>. Dein Theme kann nur einen Teil oder alle zehn Artikel-Formatvorlagen unterstützen."
5880
-
5881
- #: wp-admin/edit-form-advanced.php:188
5882
- msgid "<strong>Featured Image</strong> - This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the featured image as a post thumbnail on the home page, a custom header, etc."
5883
- msgstr "<strong>Artikelbild</strong> – Hier kannst du aus der Mediathek ein Bild auswählen oder ein neues hochladen, welches mit dem Artikel verknüpft wird, ohne es direkt im Artikel einzubinden. Dies ist jedoch nur dann sinnvoll, wenn das von dir verwendete Theme auch diese Funktion nutzt und beispielsweise ein Artikelvorschaubild anzeigt."
5884
-
5885
- #: wp-admin/edit-form-advanced.php:193
5886
- msgid "Publish Box"
5887
- msgstr "Veröffentlichen-Box"
5888
-
5889
- #: wp-admin/edit-form-advanced.php:197
5890
- msgid "<strong>Send Trackbacks</strong> - Trackbacks are a way to notify legacy blog systems that you&#8217;ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they&#8217;ll be notified automatically using pingbacks, and this field is unnecessary."
5891
- msgstr "<strong>Trackbacks senden</strong> – Mittels Trackbacks teilst du älteren Blogsystemen mit, dass du diese verlinkt hast. Trage einfach die URLs ein, an die du Trackbacks senden willst. Wenn du im Artikel einen WordPress-Blog verlinkt hast, so wird automatisch ein Pingback gesendet und du musst das Trackbackfeld nicht mehr ausfüllen."
5892
-
5893
- #: wp-admin/edit-form-advanced.php:198
5894
- msgid "<strong>Discussion</strong> - You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them."
5895
- msgstr "<strong>Diskussion</strong> – Hier kannst du Kommentare und Ping-/Trackbacks für diesen Artikel aus- oder einschalten. Bereits abgegebene Kommentare werden hier außerdem angezeigt."
5896
-
5897
- #: wp-admin/edit-form-advanced.php:207
5898
- msgid "You can also create posts with the <a href=\"%s\">Press This bookmarklet</a>."
5899
- msgstr "Du kannst auch Artikel erstellen, indem du das <a href=\"%s\">Press This Bookmarklet</a> verwendest."
5900
-
5901
- #: wp-admin/edit-form-advanced.php:209
5902
- msgid "<a href=\"http://codex.wordpress.org/Posts_Add_New_Screen\" target=\"_blank\">Documentation on Writing and Editing Posts</a>"
5903
- msgstr "<a href=\"http://codex.wordpress.org/Posts_Add_New_Screen\" target=\"_blank\">Documentation on Writing and Editing Posts (engl.)</a>"
5904
-
5905
- #: wp-admin/edit-form-advanced.php:218
5906
- msgid "About Pages"
5907
- msgstr "Über Seiten"
5908
-
5909
- #: wp-admin/edit-form-advanced.php:213
5910
- msgid "Pages are similar to Posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest Pages under other Pages by making one the &#8220;Parent&#8221; of the other, creating a group of Pages."
5911
- msgstr "Seiten sind Artikeln recht ähnlich. Sie haben einen Titel, Inhalt und weitere Metadaten. Sie erscheinen jedoch nicht im chronologischen Ablauf der Blogartikel und können auch nicht mit Kategorien und Schlagwörtern verknüpft werden. Dafür können Seiten hierarchisch angeordnet beziehungsweise verschachtelt werden, in dem einer Seite Eltern verpasst werden, also eine andere Seite als übergeordnete Seite festgelegt wird."
5912
-
5913
- #: wp-admin/edit-form-advanced.php:222
5914
- msgid "<strong>Parent</strong> - You can arrange your pages in hierarchies. For example, you could have an &#8220;About&#8221; page that has &#8220;Life Story&#8221; and &#8220;My Dog&#8221; pages under it. There are no limits to how many levels you can nest pages."
5915
- msgstr "<strong>Eltern</strong> – Wähle eine andere Seite aus, der diese Seite untergeordnet werden soll, um verschachtelte Seitenstrukturen aufzubauen. Zum Beispiel kannst du eine Seite \"Über mich\" erstellen und dieser anschließend die Seiten \"Mein Haus\", \"Mein Familie\" und \"Mein Auto\" unterordnen, indem du jeweils \"Über mich\" als Eltern-Seite angibst."
5916
-
5917
- #: wp-admin/edit-form-advanced.php:223
5918
- msgid "<strong>Template</strong> - Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you&#8217;ll see them in this dropdown menu."
5919
- msgstr "<strong>Template</strong> – Manche Themes haben Templates, um einer Seite spezielle Layouts oder Funktionen zuzuweisen. Du kannst auch ein eigenes Seitentemplate erstellen, um zum Beispiel speziellen (PHP-)Code in eine Seite einzubauen."
5920
-
5921
- #: wp-admin/edit-form-advanced.php:224
5922
- msgid "<strong>Order</strong> - Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field."
5923
- msgstr "<strong>Reihenfolge</strong> – Falls du nicht die Funktion des individuellen Menüs nutzt, kannst du hier festlegen, in welcher Reihenfolge die Seiten in der Seitenauflistung angezeigt werden sollen. Je größer die Zahl, desto weiter hinten wird die Seite angezeigt. Beachte, dass dies eventuell nicht bei allen Themes funktioniert."
5924
-
5925
- #: wp-admin/edit-form-advanced.php:234
5926
- msgid "<a href=\"http://codex.wordpress.org/Pages_Add_New_Screen\" target=\"_blank\">Documentation on Adding New Pages</a>"
5927
- msgstr "<a href=\"http://codex.wordpress.org/Pages_Add_New_Screen\" target=\"_blank\">Documentation on Adding New Pages (engl.)</a>"
5928
-
5929
- #: wp-admin/edit-form-advanced.php:235
5930
- msgid "<a href=\"http://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages\" target=\"_blank\">Documentation on Editing Pages</a>"
5931
- msgstr "<a href=\"http://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages\" target=\"_blank\">Documentation on Editing Pages (engl.)</a>"
5932
-
5933
- #: wp-admin/edit-form-advanced.php:298
5934
- msgid "Get Shortlink"
5935
- msgstr "Kurzlink anzeigen"
5936
-
5937
- #: wp-admin/edit-form-advanced.php:331 wp-admin/admin-ajax.php:1541
5938
- msgid "Last edited by %1$s on %2$s at %3$s"
5939
- msgstr "Zuletzt geändert von %1$s am %2$s um %3$s"
5940
-
5941
- #: wp-admin/edit-form-advanced.php:333 wp-admin/admin-ajax.php:1543
5942
- msgid "Last edited on %1$s at %2$s"
5943
- msgstr "Zuletzt geändert am %1$s um %2$s"
5944
-
5945
- #: wp-admin/async-upload.php:29 wp-admin/upload.php:13
5946
- #: wp-admin/media-upload.php:19 wp-app.php:600 wp-app.php:788
5947
- msgid "You do not have permission to upload files."
5948
- msgstr "Du verfügst nicht über ausreichende Rechte, um Dateien hochzuladen."
5949
-
5950
- #: wp-admin/async-upload.php:35 wp-admin/post.php:144
5951
- msgid "Unknown post type."
5952
- msgstr "Unbekannter Artikeltyp."
5953
-
5954
- #: wp-admin/async-upload.php:38 wp-admin/post.php:138
5955
- #: wp-admin/edit-tags.php:253
5956
- msgid "You are not allowed to edit this item."
5957
- msgstr "Du hast nicht die nötigen Rechte, um dieses Element zu bearbeiten."
5958
-
5959
- #: wp-admin/comment.php:46 wp-admin/edit-form-comment.php:16
5960
- #: wp-admin/edit-form-comment.php:27
5961
- msgid "Edit Comment"
5962
- msgstr "Kommentar bearbeiten"
5963
-
5964
- #: wp-admin/comment.php:52
5965
- msgid "You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error."
5966
- msgstr "Du kannst einen Kommentartext auch bearbeiten, um zum Beispiel einen Rechtschreibfehler zu beheben."
5967
-
5968
- #: wp-admin/comment.php:53
5969
- msgid "You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment."
5970
- msgstr "Du kannst auch Kommentare über diese Seite moderieren, in dem du im Modul <em>Status</em> die entsprechende Einstellung triffst. Es ist ebenso möglich, das Datum des Kommentars zu ändern."
5971
-
5972
- #: wp-admin/comment.php:58 wp-admin/edit-comments.php:135
5973
- msgid "<a href=\"http://codex.wordpress.org/Administration_Screens#Comments\" target=\"_blank\">Documentation on Comments</a>"
5974
- msgstr "<a href=\"http://codex.wordpress.org/Administration_Screens#Comments\" target=\"_blank\">Documentation on Comments (engl.)</a>"
5975
-
5976
- #: wp-admin/comment.php:68 wp-admin/comment.php:225
5977
- #: wp-admin/edit-comments.php:167
5978
- msgid "Oops, no comment with this ID."
5979
- msgstr "Oops, es ist kein Kommentar mit dieser ID vorhanden."
5980
-
5981
- #: wp-admin/comment.php:68 wp-admin/comment.php:225
5982
- msgid "Go back"
5983
- msgstr "Zurück"
5984
-
5985
- #: wp-admin/comment.php:71
5986
- msgid "You are not allowed to edit this comment."
5987
- msgstr "Es ist dir nicht erlaubt, diesen Kommentar zu bearbeiten."
5988
-
5989
- #: wp-admin/comment.php:74
5990
- msgid "This comment is in the Trash. Please move it out of the Trash if you want to edit it."
5991
- msgstr "Dieser Kommentar befindet sich im Papierkorb . Wenn du ihn bearbeiten möchtest, musst du ihn aus dem Papierkorb nehmen."
5992
-
5993
- #: wp-admin/comment.php:90
5994
- msgid "Moderate Comment"
5995
- msgstr "Kommentar moderieren"
5996
-
5997
- #: wp-admin/comment.php:127
5998
- msgid "You are about to mark the following comment as spam:"
5999
- msgstr "Du bist dabei, den folgenden Kommentar als Spam zu markieren:"
6000
-
6001
- #: wp-admin/comment.php:128
6002
- msgid "Spam Comment"
6003
- msgstr "Spam-Kommentar"
6004
-
6005
- #: wp-admin/comment.php:131
6006
- msgid "You are about to move the following comment to the Trash:"
6007
- msgstr "Du bist dabei den folgenden Kommentar in den Papierkorb zu legen."
6008
-
6009
- #: wp-admin/comment.php:132
6010
- msgid "Trash Comment"
6011
- msgstr "Kommentar in Papierkorb legen"
6012
-
6013
- #: wp-admin/comment.php:135
6014
- msgid "You are about to delete the following comment:"
6015
- msgstr "Du bist dabei, den folgenden Kommentar zu löschen:"
6016
-
6017
- #: wp-admin/comment.php:136
6018
- msgid "Permanently Delete Comment"
6019
- msgstr "Kommentar endgültig löschen"
6020
-
6021
- #: wp-admin/comment.php:139
6022
- msgid "You are about to approve the following comment:"
6023
- msgstr "Du bist dabei, den folgenden Kommentar zu genehmigen:"
6024
-
6025
- #: wp-admin/comment.php:140
6026
- msgid "Approve Comment"
6027
- msgstr "Kommentar genehmigen"
6028
-
6029
- #: wp-admin/comment.php:148
6030
- msgid "This comment is currently approved."
6031
- msgstr "Dieser Kommentar ist derzeit freigegeben."
6032
-
6033
- #: wp-admin/comment.php:151
6034
- msgid "This comment is currently marked as spam."
6035
- msgstr "Dieser Kommentar wurde als SPAM eingestuft."
6036
-
6037
- #: wp-admin/comment.php:154
6038
- msgid "This comment is currently in the Trash."
6039
- msgstr "Dieser Kommentar ist bereits im Papierkorb."
6040
-
6041
- #: wp-admin/comment.php:227 wp-admin/edit-comments.php:170
6042
- #: wp-admin/includes/comment.php:37
6043
- msgid "You are not allowed to edit comments on this post."
6044
- msgstr "Du darfst die Kommentare zu diesem Artikel nicht bearbeiten."
6045
-
6046
- #: wp-admin/comment.php:292
6047
- msgid "Unknown action."
6048
- msgstr "Unbekannte Aktion."
6049
-
6050
- #: wp-admin/edit-comments.php:108 wp-admin/edit-comments.php:148
6051
- msgid "Comments on &#8220;%s&#8221;"
6052
- msgstr "Kommentare zu &#8220;%s&#8221;"
6053
-
6054
- #: wp-admin/edit-comments.php:112
6055
- msgctxt "comments per page (screen options)"
6056
- msgid "Comments"
6057
- msgstr "Kommentare"
6058
-
6059
- #: wp-admin/edit-comments.php:125
6060
- msgid "A yellow row means the comment is waiting for you to moderate it."
6061
- msgstr "Eine gelb hinterlegte Zeile markiert Kommentare, die moderiert werden müssen. Du musst dich dann also entscheiden, ob du einen Kommentar freischalten oder löschen möchtest. Nicht moderierte Kommentare werden im Blog nicht angezeigt."
6062
-
6063
- #: wp-admin/edit-comments.php:136
6064
- msgid "<a href=\"http://codex.wordpress.org/Comment_Spam\" target=\"_blank\">Documentation on Comment Spam</a>"
6065
- msgstr "<a href=\"http://codex.wordpress.org/Comment_Spam\" target=\"_blank\">Documentation on Comment Spam (engl.)</a>"
6066
-
6067
- #: wp-admin/edit-comments.php:137
6068
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">Documentation on Keyboard Shortcuts</a>"
6069
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">Documentation on Keyboard Shortcuts (engl.)</a>"
6070
-
6071
- #: wp-admin/edit-comments.php:188
6072
- msgid "%s comment approved"
6073
- msgid_plural "%s comments approved"
6074
- msgstr[0] "%s Kommentar genehmigt"
6075
- msgstr[1] "%s Kommentare genehmigt"
6076
-
6077
- #: wp-admin/edit-comments.php:192
6078
- msgid "%s comment marked as spam."
6079
- msgid_plural "%s comments marked as spam."
6080
- msgstr[0] "%s Kommentar als Spam markiert."
6081
- msgstr[1] "%s Kommentare als Spam markiert."
6082
-
6083
- #: wp-admin/edit-comments.php:196
6084
- msgid "%s comment restored from the spam"
6085
- msgid_plural "%s comments restored from the spam"
6086
- msgstr[0] "%s Kommentar aus dem Spam geholt"
6087
- msgstr[1] "%s Kommentare aus dem Spam geholt"
6088
-
6089
- #: wp-admin/edit-comments.php:200
6090
- msgid "%s comment moved to the Trash."
6091
- msgid_plural "%s comments moved to the Trash."
6092
- msgstr[0] "%s Kommentar wurde in den Papierkorb gelegt."
6093
- msgstr[1] "%s Kommentare wurden in den Papierkorb gelegt."
6094
-
6095
- #: wp-admin/edit-comments.php:204
6096
- msgid "%s comment restored from the Trash"
6097
- msgid_plural "%s comments restored from the Trash"
6098
- msgstr[0] "%s Kommentar wurde aus dem Papierkorb geholt"
6099
- msgstr[1] "%s Kommentare wurden aus dem Papierkorb geholt"
6100
-
6101
- #: wp-admin/edit-comments.php:207
6102
- msgid "%s comment permanently deleted"
6103
- msgid_plural "%s comments permanently deleted"
6104
- msgstr[0] "%s Kommentar wurde endgültig gelöscht."
6105
- msgstr[1] "%s Kommentare wurden endgültig gelöscht."
6106
-
6107
- #: wp-admin/edit-comments.php:212
6108
- msgid "This comment is already approved."
6109
- msgstr "Dieser Kommentar wurde bereits genehmigt."
6110
-
6111
- #: wp-admin/edit-comments.php:215
6112
- msgid "This comment is already in the Trash."
6113
- msgstr "Dieser Kommentar befindet sich bereits im Papierkorb."
6114
-
6115
- #: wp-admin/edit-comments.php:215
6116
- msgid "View Trash"
6117
- msgstr "Zeige Papierkorb"
6118
-
6119
- #: wp-admin/edit-comments.php:218
6120
- msgid "This comment is already marked as spam."
6121
- msgstr "Dieser Kommentar ist bereits als Spam markiert."
6122
-
6123
- #: wp-admin/edit-comments.php:232
6124
- msgid "Search Comments"
6125
- msgstr "Kommentare suchen"
6126
-
6127
- #: wp-admin/import.php:15
6128
- msgid "You do not have sufficient permissions to import content in this site."
6129
- msgstr "Du verfügst nicht über ausreichende Rechte, um Inhalte in diesen Blog zu importieren."
6130
-
6131
- #: wp-admin/import.php:22
6132
- msgid "This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform."
6133
- msgstr "Wenn du Artikel oder Kommentare in anderen Blogsystemen hast, kann WordPress sie importieren. Wähle dazu das System aus und bestätige im darauf folgenden Fenster die Installation des Importers. Falls der von dir benötigte Importer hier nicht aufgeführt ist, kannst du auch im WordPress.org Plugin-Verzeichnis nach einem passenden Importer-Plugin suchen."
6134
-
6135
- #: wp-admin/import.php:29
6136
- msgid "<a href=\"http://codex.wordpress.org/Tools_Import_Screen\" target=\"_blank\">Documentation on Import</a>"
6137
- msgstr "<a href=\"http://codex.wordpress.org/Tools_Import_Screen\" target=\"_blank\">Documentation on Import (engl.)</a>"
6138
-
6139
- #: wp-admin/import.php:36
6140
- msgid "Blogger"
6141
- msgstr "Blogger"
6142
-
6143
- #: wp-admin/import.php:36
6144
- msgid "Install the Blogger importer to import posts, comments, and users from a Blogger blog."
6145
- msgstr "Installiere den Blogger-Importer, um Artikel, Kommentare und Benutzer von Blogger zu importieren."
6146
-
6147
- #: wp-admin/import.php:37
6148
- msgid "Install the category/tag converter to convert existing categories to tags or tags to categories, selectively."
6149
- msgstr "Installiere den Kategorien-/Schlagwort-Konverter, um vorhandene und von dir ausgewählte Kategorien in Schlagwörter oder Schlagwörter in Kategorien umzuwandeln."
6150
-
6151
- #: wp-admin/import.php:38
6152
- msgid "LiveJournal"
6153
- msgstr "LiveJournal"
6154
-
6155
- #: wp-admin/import.php:38
6156
- msgid "Install the LiveJournal importer to import posts from LiveJournal using their API."
6157
- msgstr "Installiere den LiveJournal Importer, um Artikel von LiveJournal über deren API zu importieren."
6158
-
6159
- #: wp-admin/import.php:39
6160
- msgid "Movable Type and TypePad"
6161
- msgstr "Movable Type und TypePad"
6162
-
6163
- #: wp-admin/import.php:39
6164
- msgid "Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog."
6165
- msgstr "Installiere den Movable-Type-Importer, um Artikel und Kommentare von einem Movable-Type- oder TypePad-Blog zu importieren."
6166
-
6167
- #: wp-admin/import.php:40 wp-admin/includes/upgrade.php:129
6168
- msgid "Blogroll"
6169
- msgstr "Blogroll"
6170
-
6171
- #: wp-admin/import.php:40
6172
- msgid "Install the blogroll importer to import links in OPML format."
6173
- msgstr "Installiere den Blogroll-Importer, um Links im OPML-Format zu importieren."
6174
-
6175
- #: wp-admin/import.php:41
6176
- msgid "Install the RSS importer to import posts from an RSS feed."
6177
- msgstr "Installiere den RSS-Importer, um Artikel aus RSS-Feeds zu importieren."
6178
-
6179
- #: wp-admin/import.php:43
6180
- msgid "Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file."
6181
- msgstr "Installiere den WordPress-Importer, um Artikel, Seiten, Kommentare, benutzerdefinierte Felder, Kategorien und Schlagwörter aus einer WordPress-Export-Datei zu importieren."
6182
-
6183
- #: wp-admin/import.php:62
6184
- msgid "ERROR:"
6185
- msgstr "FEHLER:"
6186
-
6187
- #: wp-admin/import.php:62
6188
- msgid "The <strong>%s</strong> importer is invalid or is not installed."
6189
- msgstr "Der Importer <strong>%s</strong> ist fehlerhaft oder nicht installiert."
6190
-
6191
- #: wp-admin/import.php:64
6192
- msgid "If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:"
6193
- msgstr "Wenn du Artikel oder Kommentare in anderen Blogsystemen hast, kann WordPress sie importieren. Wähle dazu bitte unten das System aus, das du importieren möchtest:"
6194
-
6195
- #: wp-admin/import.php:81
6196
- msgid "No importers are available."
6197
- msgstr "Kein passendes Importskript vorhanden."
6198
-
6199
- #: wp-admin/import.php:101
6200
- msgid "Activate importer"
6201
- msgstr "Importer aktivieren"
6202
-
6203
- #: wp-admin/import.php:108
6204
- msgid "Install importer"
6205
- msgstr "Importer installieren"
6206
-
6207
- #: wp-admin/import.php:111
6208
- msgid "This importer is not installed. Please install importers from <a href=\"%s\">the main site</a>."
6209
- msgstr "Der Importer ist nicht installiert. Bitte installiere Importer von der <a href=\"%s\">Hauptseite</a>."
6210
-
6211
- #: wp-admin/custom-background.php:87
6212
- msgid "You can customize the look of your site without touching any of your theme&#8217;s code by using a custom background. Your background can be an image or a color."
6213
- msgstr "Du kannst das Aussehen deiner Website verändern, in dem du einen eigenen Hintergrund verwendest. Dies kann ein Bild oder eine Farbe sein."
6214
-
6215
- #: wp-admin/custom-background.php:88
6216
- msgid "To use a background image, simply upload it, then choose your display options below. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site."
6217
- msgstr "Ein eigenes Hintergrundbild zu verwenden ist einfach: Lade es hoch und stelle bei den <em>Anzeigeoptionen</em> das gewünschte Verhalten ein."
6218
-
6219
- #: wp-admin/custom-background.php:90
6220
- msgid "Don&#8217;t forget to click on the Save Changes button when you are finished."
6221
- msgstr "Vergiss nicht, zum Schluss auf <em>Änderungen übernehmen</em> zu klicken."
6222
-
6223
- #: wp-admin/custom-background.php:95
6224
- msgid "<a href=\"http://codex.wordpress.org/Appearance_Background_Screen\" target=\"_blank\">Documentation on Custom Background</a>"
6225
- msgstr "<a href=\"http://codex.wordpress.org/Appearance_Background_Screen\" target=\"_blank\">Documentation on Custom Background (engl.)</a>"
6226
-
6227
- #: wp-admin/custom-background.php:178 wp-admin/includes/theme.php:314
6228
- msgid "Custom Background"
6229
- msgstr "Hintergrund anpassen"
6230
-
6231
- #: wp-admin/custom-background.php:181
6232
- msgid "Background updated. <a href=\"%s\">Visit your site</a> to see how it looks."
6233
- msgstr "Das Hintergrundbild wurde geändert. <a href=\"%s\">Schau dir an</a>, wie es aussieht."
6234
-
6235
- #: wp-admin/custom-background.php:189 wp-admin/includes/template.php:1493
6236
- msgid "Background Image"
6237
- msgstr "Hintergrund-Bild"
6238
-
6239
- #: wp-admin/custom-background.php:222
6240
- msgid "Remove Background Image"
6241
- msgstr "Hintergrundbild entfernen"
6242
-
6243
- #: wp-admin/custom-background.php:223
6244
- msgid "This will remove the background image. You will not be able to restore any customizations."
6245
- msgstr "Damit wird das Hintergrundbild entfernt. Alle Anpassungen werden dabei gelöscht."
6246
-
6247
- #: wp-admin/custom-background.php:231 wp-admin/custom-background.php:235
6248
- #: wp-admin/includes/image-edit.php:97
6249
- msgid "Restore Original Image"
6250
- msgstr "Originalbild wieder herstellen"
6251
-
6252
- #: wp-admin/custom-background.php:236
6253
- msgid "This will restore the original background image. You will not be able to restore any customizations."
6254
- msgstr "Dies wird das Original-Hintergrundbild wiederherstellen. Angewandte Anpassungen können jedoch nicht wiederhergestellt werden."
6255
-
6256
- #: wp-admin/custom-background.php:255
6257
- msgid "Display Options"
6258
- msgstr "Anzeigeoptionen"
6259
-
6260
- #: wp-admin/custom-background.php:261 wp-admin/widgets.php:253
6261
- msgid "Position"
6262
- msgstr "Position"
6263
-
6264
- #: wp-admin/custom-background.php:262
6265
- msgid "Background Position"
6266
- msgstr "Hintergrundposition"
6267
-
6268
- #: wp-admin/custom-background.php:279
6269
- msgid "Repeat"
6270
- msgstr "Bildwiederholung"
6271
-
6272
- #: wp-admin/custom-background.php:280
6273
- msgid "Background Repeat"
6274
- msgstr "Hintergrund wiederholen"
6275
-
6276
- #: wp-admin/custom-background.php:281
6277
- msgid "No Repeat"
6278
- msgstr "Nicht wiederholen"
6279
-
6280
- #: wp-admin/custom-background.php:282
6281
- msgid "Tile"
6282
- msgstr "kacheln"
6283
-
6284
- #: wp-admin/custom-background.php:283
6285
- msgid "Tile Horizontally"
6286
- msgstr "Horizontal kacheln"
6287
-
6288
- #: wp-admin/custom-background.php:284
6289
- msgid "Tile Vertically"
6290
- msgstr "Vertikal kacheln"
6291
-
6292
- #: wp-admin/custom-background.php:289
6293
- msgid "Attachment"
6294
- msgstr "Hintergrund fixieren"
6295
-
6296
- #: wp-admin/custom-background.php:290
6297
- msgid "Background Attachment"
6298
- msgstr "Hintergrund fixieren"
6299
-
6300
- #: wp-admin/custom-background.php:293
6301
- msgid "Scroll"
6302
- msgstr "Hintergrund scrollt mit"
6303
-
6304
- #: wp-admin/custom-background.php:297
6305
- msgid "Fixed"
6306
- msgstr "Hintergrund behält Position"
6307
-
6308
- #: wp-admin/custom-background.php:303 wp-admin/custom-background.php:304
6309
- msgid "Background Color"
6310
- msgstr "Hintergrundfarbe"
6311
-
6312
- #: wp-admin/custom-background.php:307
6313
- msgid "Clear"
6314
- msgstr "Zurücksetzen"
6315
-
6316
- #: wp-admin/options-media.php:15
6317
- msgid "Media Settings"
6318
- msgstr "Einstellungen &rsaquo; Mediathek"
6319
-
6320
- #: wp-admin/options-media.php:18
6321
- msgid "You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size."
6322
- msgstr "Du kannst auf dieser Seite einstellen, welche Größe Bilder maximal haben sollen, wenn sie eingefügt werden. Dir bleibt aber unabhängig davon immer noch die Möglichkeit, ein Bild auch in seiner ursprünglichen Größe einzufügen."
6323
-
6324
- #: wp-admin/options-media.php:19
6325
- msgid "The Embed option allows you embed a video, image, or other media content into your content automatically by typing the URL (of the web page where the file lives) on its own line when you create your content."
6326
- msgstr "Die Funktion <em>Autoanhänge</em> versucht, dass in Artikeln oder Seiten eingegebene URLs (der Webseite, auf der die Datei eingebunden ist) zu Dateien automatisch eingebunden werden. Die URL muss in einer eigenen Zeile geschrieben sein."
6327
-
6328
- #: wp-admin/options-media.php:40
6329
- msgid "<a href=\"http://codex.wordpress.org/Settings_Media_Screen\" target=\"_blank\">Documentation on Media Settings</a>"
6330
- msgstr "<a href=\"http://codex.wordpress.org/Settings_Media_Screen\" target=\"_blank\">Documentation on Media Settings (engl.)</a>"
6331
-
6332
- #: wp-admin/options-media.php:55
6333
- msgid "Image sizes"
6334
- msgstr "Bildgröße"
6335
-
6336
- #: wp-admin/options-media.php:56
6337
- msgid "The sizes listed below determine the maximum dimensions in pixels to use when inserting an image into the body of a post."
6338
- msgstr "Diese Maße legen die maximale Größe in Pixeln von Bildern fest, die in einen Artikel eingefügt werden."
6339
-
6340
- #: wp-admin/options-media.php:60
6341
- msgid "Thumbnail size"
6342
- msgstr "Größe der Miniaturbilder"
6343
-
6344
- #: wp-admin/options-media.php:67
6345
- msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
6346
- msgstr "Beschneide das Miniaturbild auf die exakte Größe (Miniaturbilder sind normalerweise proportional)"
6347
-
6348
- #: wp-admin/options-media.php:72 wp-admin/options-media.php:73
6349
- msgid "Medium size"
6350
- msgstr "Mittlere Bildgröße"
6351
-
6352
- #: wp-admin/options-media.php:74 wp-admin/options-media.php:84
6353
- msgid "Max Width"
6354
- msgstr "Maximale Breite"
6355
-
6356
- #: wp-admin/options-media.php:76 wp-admin/options-media.php:86
6357
- msgid "Max Height"
6358
- msgstr "Maximale Höhe"
6359
-
6360
- #: wp-admin/options-media.php:82 wp-admin/options-media.php:83
6361
- msgid "Large size"
6362
- msgstr "Maximale Bildgröße"
6363
-
6364
- #: wp-admin/options-media.php:94
6365
- msgid "Embeds"
6366
- msgstr "Einbettungen"
6367
-
6368
- #: wp-admin/options-media.php:99
6369
- msgid "Auto-embeds"
6370
- msgstr "Automatische Einbettungen"
6371
-
6372
- #: wp-admin/options-media.php:100 wp-admin/options-media.php:101
6373
- msgid "When possible, embed the media content from a URL directly onto the page. For example: links to Flickr and YouTube."
6374
- msgstr "Versuche wenn möglich, Medieninhalte einer eingegebenen Adresse direkt im Artikel einzubetten. Beispielsweise für flickr oder YouTube."
6375
-
6376
- #: wp-admin/options-media.php:106
6377
- msgid "Maximum embed size"
6378
- msgstr "Maximale Anhang-Größe"
6379
-
6380
- #: wp-admin/options-media.php:112
6381
- msgid "If the width value is left blank, embeds will default to the max width of your theme."
6382
- msgstr "Wenn die Angabe der Breite leer bleibt, werden eingebettete Elemente standardmäßig auf die maximale Breite deines Themes gesetzt."
6383
-
6384
- #: wp-admin/options-media.php:120
6385
- msgid "Uploading Files"
6386
- msgstr "Dateien Hochladen"
6387
-
6388
- #: wp-admin/options-media.php:123
6389
- msgid "Store uploads in this folder"
6390
- msgstr "Uploads in folgendem Ordner speichern"
6391
-
6392
- #: wp-admin/options-media.php:125
6393
- msgid "Default is <code>wp-content/uploads</code>"
6394
- msgstr "Grundeinstellung ist <code>wp-content/uploads</code>"
6395
-
6396
- #: wp-admin/options-media.php:130
6397
- msgid "Full URL path to files"
6398
- msgstr "Kompletter Pfad zu den Dateien"
6399
-
6400
- #: wp-admin/options-media.php:132
6401
- msgid "Configuring this is optional. By default, it should be blank."
6402
- msgstr "Diese Einstellung ist optional. Standardmäßig sollte sie leer sein"
6403
-
6404
- #: wp-admin/options-media.php:140
6405
- msgid "Organize my uploads into month- and year-based folders"
6406
- msgstr "Organisiere meine Uploads in monats- und jahresbasierten Ordnern"
6407
-
6408
- #: wp-admin/edit.php:13 wp-admin/edit.php:19 wp-admin/post-new.php:17
6409
- msgid "Invalid post type"
6410
- msgstr "Ungültiger Artikeltyp"
6411
-
6412
- #: wp-admin/edit.php:81 wp-admin/post.php:208
6413
- msgid "You are not allowed to move this item to the Trash."
6414
- msgstr "Es ist dir nicht erlaubt dieses Element in den Papierkorb zu legen."
6415
-
6416
- #: wp-admin/edit.php:84 wp-admin/post.php:211
6417
- msgid "Error in moving to Trash."
6418
- msgstr "Fehler beim verschieben in den Papierkorb."
6419
-
6420
- #: wp-admin/edit.php:94
6421
- msgid "You are not allowed to restore this item from the Trash."
6422
- msgstr "Du darfst nicht dieses Element aus dem Papierkorb wiederherstellen."
6423
-
6424
- #: wp-admin/edit.php:97 wp-admin/post.php:224
6425
- msgid "Error in restoring from Trash."
6426
- msgstr "Beim herausholen aus dem Papierkorb ist ein Fehler aufgetreten."
6427
-
6428
- #: wp-admin/edit.php:109 wp-admin/post.php:234
6429
- msgid "You are not allowed to delete this item."
6430
- msgstr "Du hast keine Berechtigung, dieses Element zu löschen."
6431
-
6432
- #: wp-admin/edit.php:113 wp-admin/edit.php:116 wp-admin/upload.php:124
6433
- msgid "Error in deleting..."
6434
- msgstr "Fehler beim Löschen …"
6435
-
6436
- #: wp-admin/users.php:33
6437
- msgid "You can customize the display of this screen in a number of ways:"
6438
- msgstr "Du kannst die Darstellung dieser Übersichtsseite auf verschiedene Arten ändern:"
6439
-
6440
- #: wp-admin/edit.php:164
6441
- msgid "You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab."
6442
- msgstr "Die Anzahl der angezeigten Artikel kannst du über <em>Optionen einblenden</em> ändern. Standardmäßig werden 20 Artikel angezeigt. Beachte, dass du erst die Hilfe schließen musst, damit du neben der Registerkarte \"Hilfe\" die Funktion \"Optionen einblenden\" siehst."
6443
-
6444
- #: wp-admin/edit.php:165
6445
- msgid "You can filter the list of posts by post status using the text links in the upper left to show All, Published, Draft, or Trashed posts. The default view is to show all posts."
6446
- msgstr "Du kannst die Liste der Artikel über die Textlinks im oberen Bereich filtern und dir beispielsweise nur Entwürfe, bereits veröffentlichte oder im Papierkorb befindliche Artikel anzeigen lassen. Mit einem Klick auf \"Alle\" werden sämlichte Artikel – egal welcher Art angezeigt (jedoch nicht alle auf einmal, falls es zu viele sein sollten)."
6447
-
6448
- #: wp-admin/edit.php:166
6449
- msgid "You can view posts in a simple title list or with an excerpt. Choose the view you prefer by clicking on the icons at the top of the list on the right."
6450
- msgstr "Standardmäßig werden hier nur die Titel des Artikels angezeigt. Auf der rechten oberen Seite der Liste findest du zwei Symbole mit denen du zwischen der Ansicht nur des Titels oder der zusätzlichen Anzeige einer Beitragsvorschau umschalten kannst."
6451
-
6452
- #: wp-admin/edit.php:167
6453
- msgid "You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list."
6454
- msgstr "Es ist auch möglich, nur die Artikel einer bestimmten Kategorie, eines bestimmten Monats oder eines bestimmten Autors anzeigen zu lassen. Nutze hierfür die Dropdown-Auswahlmenüs über der Artikelliste und wähle dann \"Auswahl einschränken\" oder klicke direkt auf einen Autor oder Kategorienamen innerhalb der Liste."
6455
-
6456
- #: wp-admin/edit.php:174
6457
- msgid "Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:"
6458
- msgstr "Wenn du mit der Maus über einen Eintrag in der Liste fährst, werden zusätzliche Optionen angezeigt:"
6459
-
6460
- #: wp-admin/edit.php:192
6461
- msgid "<a href=\"http://codex.wordpress.org/Posts_Screen\" target=\"_blank\">Documentation on Managing Posts</a>"
6462
- msgstr "<a href=\"http://codex.wordpress.org/Posts_Screen\" target=\"_blank\">Documentation on Managing Posts (engl.)</a>"
6463
-
6464
- #: wp-admin/edit.php:213
6465
- msgid "<a href=\"http://codex.wordpress.org/Pages_Screen\" target=\"_blank\">Documentation on Managing Pages</a>"
6466
- msgstr "<a href=\"http://codex.wordpress.org/Pages_Screen\" target=\"_blank\">Documentation on Managing Pages (engl.)</a>"
6467
-
6468
- #: wp-admin/edit.php:234
6469
- msgid "%s post updated."
6470
- msgid_plural "%s posts updated."
6471
- msgstr[0] "%s Artikel aktualisiert."
6472
- msgstr[1] "%s Artikel aktualisiert."
6473
-
6474
- #: wp-admin/edit.php:242
6475
- msgid "%s item not updated, somebody is editing it."
6476
- msgid_plural "%s items not updated, somebody is editing them."
6477
- msgstr[0] "%s Element wurde nicht aktualisert, da es jemand bearbeitet."
6478
- msgstr[1] "%s Elemente wurden nicht aktualisert, da sie jemand bearbeitet."
6479
-
6480
- #: wp-admin/edit.php:247
6481
- msgid "Item permanently deleted."
6482
- msgid_plural "%s items permanently deleted."
6483
- msgstr[0] "Element wurde endgültig gelöscht."
6484
- msgstr[1] "%s Elemente wurden endgültig gelöscht."
6485
-
6486
- #: wp-admin/edit.php:252
6487
- msgid "Item moved to the Trash."
6488
- msgid_plural "%s items moved to the Trash."
6489
- msgstr[0] "Element in den Papierkorb verschoben."
6490
- msgstr[1] "%s Elemente in den Papierkorb verschoben."
6491
-
6492
- #: wp-admin/edit.php:259
6493
- msgid "Item restored from the Trash."
6494
- msgid_plural "%s items restored from the Trash."
6495
- msgstr[0] "Objekt wurde aus dem Papierkorb wiederhergestellt."
6496
- msgstr[1] "%s Objekte wurden aus dem Papierkorb wiederhergestellt."
6497
-
6498
- #: wp-admin/upload.php:42
6499
- msgid "You are not allowed to scan for lost attachments."
6500
- msgstr "Du darfst nicht nach verloren gegangenen Anhängen suchen."
6501
-
6502
- #: wp-admin/upload.php:62 wp-admin/admin-ajax.php:966
6503
- #: wp-admin/admin-ajax.php:1196 wp-admin/includes/post.php:158
6504
- #: wp-admin/includes/post.php:1318 wp-admin/press-this.php:35
6505
- msgid "You are not allowed to edit this post."
6506
- msgstr "Du hast nicht die nötigen Rechte, um diesen Artikel zu bearbeiten."
6507
-
6508
- #: wp-admin/upload.php:97
6509
- msgid "You are not allowed to move this post to the trash."
6510
- msgstr "Es ist dir nicht erlaubt diesen Beitrag in den Papierkorb zu legen."
6511
-
6512
- #: wp-admin/upload.php:100
6513
- msgid "Error in moving to trash..."
6514
- msgstr "Beim Ablegen in den Papierkorb ist ein Fehler aufgetreten …"
6515
-
6516
- #: wp-admin/upload.php:109
6517
- msgid "You are not allowed to move this post out of the trash."
6518
- msgstr "Du verfügst nicht über ausreichende Rechte, um diesen Beitrag aus dem Papierkorb zu nehmen."
6519
-
6520
- #: wp-admin/upload.php:112
6521
- msgid "Error in restoring from trash..."
6522
- msgstr "Beim Wiederherstellen aus dem Papierkorb ist ein Fehler aufgetreten …"
6523
-
6524
- #: wp-admin/upload.php:121
6525
- msgid "You are not allowed to delete this post."
6526
- msgstr "Du darfst diesen Artikel nicht löschen."
6527
-
6528
- #: wp-admin/upload.php:139 wp-admin/includes/media.php:21
6529
- msgid "Media Library"
6530
- msgstr "Mediathek"
6531
-
6532
- #: wp-admin/upload.php:146
6533
- msgctxt "items per page (screen options)"
6534
- msgid "Media items"
6535
- msgstr "Medienelemente (Dateien)"
6536
-
6537
- #: wp-admin/upload.php:153
6538
- msgid "You can narrow the list by file type/status using the text link filters at the top of the screen. You also can refine the list by date using the dropdown menu above the media table."
6539
- msgstr "Du kannst die Auswahl einschränken, in dem du auf die Links über der Tabelle klickst oder zum Beispiel nach einem bestimmten Datum suchst."
6540
-
6541
- #: wp-admin/upload.php:170
6542
- msgid "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target=\"_blank\">Documentation on Media Library</a>"
6543
- msgstr "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target=\"_blank\">Documentation on Media Library (engl.)</a>"
6544
-
6545
- #: wp-admin/upload.php:192
6546
- msgid "Reattached %d attachment."
6547
- msgid_plural "Reattached %d attachments."
6548
- msgstr[0] "%d Anhang wieder verknüpft"
6549
- msgstr[1] "%d Anhänge wieder verknüpft"
6550
-
6551
- #: wp-admin/upload.php:197
6552
- msgid "Media attachment permanently deleted."
6553
- msgid_plural "%d media attachments permanently deleted."
6554
- msgstr[0] "Der Medienanhang wurde endgültig gelöscht."
6555
- msgstr[1] "%d Medienanhänge wurden endgültig gelöscht."
6556
-
6557
- #: wp-admin/upload.php:202
6558
- msgid "Media attachment moved to the trash."
6559
- msgid_plural "%d media attachments moved to the trash."
6560
- msgstr[0] "Die Mediendatei wurde in den Papierkorb gelegt."
6561
- msgstr[1] "%d Mediendateien wurden in den Papierkorb gelegt."
6562
-
6563
- #: wp-admin/upload.php:208
6564
- msgid "Media attachment restored from the trash."
6565
- msgid_plural "%d media attachments restored from the trash."
6566
- msgstr[0] "Der Medienanhang wurde aus dem Papierkorb geholt."
6567
- msgstr[1] "%d Medienanhänge wurde aus dem Papierkorb geholt."
6568
-
6569
- #: wp-admin/upload.php:213
6570
- msgid "Media permanently deleted."
6571
- msgstr "Die Mediendatei wurde endgültig gelöscht."
6572
-
6573
- #: wp-admin/upload.php:214
6574
- msgid "Error saving media attachment."
6575
- msgstr "Fehler beim Speichern des Mediaanhangs."
6576
-
6577
- #: wp-admin/upload.php:215
6578
- msgid "Media moved to the trash."
6579
- msgstr "Die Mediendatei wurde in den Papierkorb gelegt."
6580
-
6581
- #: wp-admin/upload.php:216
6582
- msgid "Media restored from the trash."
6583
- msgstr "Die Mediendatei wurde aus dem Papierkorb geholt."
6584
-
6585
- #: wp-admin/upload.php:231 wp-admin/includes/media.php:1783
6586
- #: wp-admin/includes/media.php:1785
6587
- msgid "Search Media"
6588
- msgstr "Dateien suchen"
6589
-
6590
- #: wp-admin/admin-footer.php:23
6591
- msgid "Thank you for creating with <a href=\"http://wordpress.org/\">WordPress</a>."
6592
- msgstr "Danke, dass du <a href=\"http://wordpress.org\">WordPress</a> benutzt. | <a href=\"http://wpde.org\">WordPress Deutschland</a> "
6593
-
6594
- #: wp-admin/options-head.php:16 wp-admin/options.php:158
6595
- msgid "Settings saved."
6596
- msgstr "Einstellungen gespeichert."
6597
-
6598
- #: wp-admin/admin-ajax.php:36
6599
- msgid "<strong>ALERT: You are logged out!</strong> Could not save draft. <a href=\"%s\" target=\"_blank\">Please log in again.</a>"
6600
- msgstr "<strong>Warnung: Du bist abgemeldet!</strong> Der Entwurf kann nicht gespeichert werden. <a href=\"%s\" target=\"_blank\">Bitte melde dich nochmals an.</a>"
6601
-
6602
- #: wp-admin/admin-ajax.php:228 wp-admin/includes/class-wp-list-table.php:488
6603
- #: wp-admin/includes/class-wp-list-table.php:887
6604
- msgid "1 item"
6605
- msgid_plural "%s items"
6606
- msgstr[0] "Ein Element"
6607
- msgstr[1] "%s Elemente"
6608
-
6609
- #: wp-admin/admin-ajax.php:452
6610
- msgid "Comment %d does not exist"
6611
- msgstr "Kommentar %d existiert nicht"
6612
-
6613
- #: wp-admin/admin-ajax.php:521 wp-admin/admin-ajax.php:1400
6614
- msgid "An error has occurred. Please reload the page and try again."
6615
- msgstr "Es trat ein Fehler auf. Bitte rufe die Seite erneut auf und versuche es noch einmal."
6616
-
6617
- #: wp-admin/admin-ajax.php:574
6618
- msgid "No tags found!"
6619
- msgstr "Es wurden keine Schlagwörter gefunden!"
6620
-
6621
- #: wp-admin/admin-ajax.php:640
6622
- msgid "ERROR: you are replying to a comment on a draft post."
6623
- msgstr "ERROR: Du antwortest auf einen Kommentar zu einem Entwurf."
6624
-
6625
- #: wp-admin/admin-ajax.php:655
6626
- msgid "Sorry, you must be logged in to reply to a comment."
6627
- msgstr "Um auf einen Kommentar zu antworten, musst du angemeldet sein."
6628
-
6629
- #: wp-admin/admin-ajax.php:659 wp-admin/admin-ajax.php:721
6630
- msgid "ERROR: please type a comment."
6631
- msgstr "FEHLER: Bitte gib einen Kommentar ein."
6632
-
6633
- #: wp-admin/admin-ajax.php:841 wp-admin/admin-ajax.php:846
6634
- #: wp-admin/admin-ajax.php:866
6635
- msgid "Please provide a custom field value."
6636
- msgstr "Bitte gib einen Wert für das benutzerdefinierte Feld ein."
6637
-
6638
- #: wp-admin/admin-ajax.php:864
6639
- msgid "Please provide a custom field name."
6640
- msgstr "Gib einen Namen eines Benutzerdefinierten Felds an."
6641
-
6642
- #: wp-admin/admin-ajax.php:914
6643
- msgid "User <a href=\"#%s\">%s</a> added"
6644
- msgstr "Benutzer <a href=\"#%s\">%s</a> hinzugefügt"
6645
-
6646
- #: wp-admin/admin-ajax.php:934
6647
- msgid "g:i:s a"
6648
- msgstr "H:i:s"
6649
-
6650
- #: wp-admin/admin-ajax.php:936
6651
- msgid "Draft saved at %s."
6652
- msgstr "Entwurf wurde um %s Uhr gespeichert."
6653
-
6654
- #: wp-admin/admin-ajax.php:940
6655
- msgid "Your login has expired. Please open a new browser window and <a href=\"%s\" target=\"_blank\">log in again</a>. "
6656
- msgstr "Deine Anmeldung ist abgelaufen. Bitte öffne ein neues Fenster in deinem Browser und <a href=\"%s\" target=\"_blank\">melde dich erneut an</a>."
6657
-
6658
- #: wp-admin/admin-ajax.php:954 wp-admin/admin-ajax.php:1203
6659
- msgid "Someone"
6660
- msgstr "Jemand"
6661
-
6662
- #: wp-admin/admin-ajax.php:955
6663
- msgid "Autosave disabled."
6664
- msgstr "Automatische Speicherung deaktiviert."
6665
-
6666
- #: wp-admin/admin-ajax.php:958
6667
- msgid "%s is currently editing this article. If you update it, you will overwrite the changes."
6668
- msgstr "%s bearbeitet diesen Artikel gerade. Falls du ihn änderst, wirst du den Inhalt des anderen Benutzers überschreiben."
6669
-
6670
- #: wp-admin/admin-ajax.php:963 wp-admin/admin-ajax.php:1193
6671
- #: wp-admin/includes/post.php:156 wp-admin/includes/post.php:1315
6672
- msgid "You are not allowed to edit this page."
6673
- msgstr "Du hast nicht die nötigen Rechte, um diese Seite zu bearbeiten."
6674
-
6675
- #: wp-admin/admin-ajax.php:1204
6676
- msgid "Saving is disabled: %s is currently editing this page."
6677
- msgstr "Speichern nicht möglich: %s bearbeitet diese Seite gerade."
6678
-
6679
- #: wp-admin/admin-ajax.php:1204
6680
- msgid "Saving is disabled: %s is currently editing this post."
6681
- msgstr "Speichern nicht möglich: %s bearbeitet diesen Artikel gerade."
6682
-
6683
- #: wp-admin/admin-ajax.php:1270 wp-admin/admin-ajax.php:1277
6684
- #: wp-admin/edit-tags.php:259
6685
- msgid "Item not updated."
6686
- msgstr "Element wurde nicht aktualisiert."
6687
-
6688
- #: wp-admin/admin-ajax.php:1314
6689
- #: wp-admin/includes/class-wp-posts-list-table.php:282
6690
- #: wp-admin/includes/class-wp-posts-list-table.php:752
6691
- msgid "Date"
6692
- msgstr "Datum"
6693
-
6694
- #: wp-admin/admin-ajax.php:1314
6695
- #: wp-admin/includes/class-wp-posts-list-table.php:952
6696
- #: wp-admin/edit-form-comment.php:35
6697
- msgid "Status"
6698
- msgstr "Status"
6699
-
6700
- #: wp-admin/admin-ajax.php:1323
6701
- #: wp-admin/includes/class-wp-posts-list-table.php:593
6702
- #: wp-admin/includes/class-wp-posts-list-table.php:959
6703
- #: wp-admin/includes/meta-boxes.php:71 wp-admin/includes/meta-boxes.php:94
6704
- msgid "Scheduled"
6705
- msgstr "Geplant"
6706
-
6707
- #: wp-admin/admin-ajax.php:1523
6708
- msgid "Save failed"
6709
- msgstr "Speichern fehlgeschlagen"
6710
-
6711
- #: wp-admin/export.php:13
6712
- msgid "You do not have sufficient permissions to export the content of this site."
6713
- msgstr "Du verfügst nicht über ausreichende Rechte, um den Inhalt dieses Blogs exportieren zu können."
6714
-
6715
- #: wp-admin/export.php:44
6716
- msgid "You can export a file of your site&#8217;s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status."
6717
- msgstr "Du kannst deine Artikel, Seiten, Kommentare, benutzerdefinierten Felder, Kategorien und Schlagwörter mit dieser Funktion exportieren. Es wird dabei eine XML-Datei erzeugt, die wir WXR nennen. Falls du den Export auf bestimmte Dinge einschränken willst, kannst du umfangreiche Filter anwenden."
6718
-
6719
- #: wp-admin/export.php:45
6720
- msgid "Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format."
6721
- msgstr "Die generierte WXR-Datei kann dann in eine beliebige andere WordPress Installation importiert werden. <strong>Beachte aber, dass diese Export-Funktion kein richtiges Backup erstellt.</strong> Informiere dich dazu im unten aufgeführten Link zum Thema Backup von WordPress."
6722
-
6723
- #: wp-admin/export.php:50
6724
- msgid "<a href=\"http://codex.wordpress.org/Tools_Export_Screen\" target=\"_blank\">Documentation on Export</a>"
6725
- msgstr "<a href=\"http://codex.wordpress.org/Tools_Export_Screen\" target=\"_blank\">Documentation on Export (engl.)</a>"
6726
-
6727
- #: wp-admin/export.php:126
6728
- msgid "When you click the button below WordPress will create an XML file for you to save to your computer."
6729
- msgstr "Wenn du unten auf Export-Datei herunterladen klickst, wird WordPress eine XML-Datei für dich erstellen, die du auf deinem Computer speichern kannst."
6730
-
6731
- #: wp-admin/export.php:127
6732
- msgid "This format, which we call WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags."
6733
- msgstr "Dieses Format, das wir \"WordPress eXtended RSS\" oder WXR nennen, beinhaltet deine Artikel, Seiten, Kommentare, benutzerdefinierten Felder, Kategorien und Schlagwörter."
6734
-
6735
- #: wp-admin/export.php:130
6736
- msgid "Choose what to export"
6737
- msgstr "Wähle, was du exportieren möchtest"
6738
-
6739
- #: wp-admin/export.php:133
6740
- msgid "All content"
6741
- msgstr "Alle Inhalte"
6742
-
6743
- #: wp-admin/export.php:134
6744
- msgid "This will contain all of your posts, pages, comments, custom fields, terms, navigation menus and custom posts."
6745
- msgstr "Der Export enthält dann alle Artikel, Seiten, Kommentare, Benutzerdefinierte Felder, Kategorien, Tags, Navigationsmenüs und Custom Post Types."
6746
-
6747
- #: wp-admin/export.php:139
6748
- msgid "Categories:"
6749
- msgstr "Kategorien:"
6750
-
6751
- #: wp-admin/export.php:140 wp-admin/export.php:146 wp-admin/export.php:163
6752
- #: wp-admin/export.php:178 wp-admin/export.php:195
6753
- #: wp-content/plugins/akismet/legacy.php:209
6754
- msgid "All"
6755
- msgstr "Alle"
6756
-
6757
- #: wp-admin/export.php:143 wp-admin/export.php:175
6758
- msgid "Authors:"
6759
- msgstr "Autoren:"
6760
-
6761
- #: wp-admin/export.php:150 wp-admin/export.php:182
6762
- msgid "Date range:"
6763
- msgstr "Zeitraum:"
6764
-
6765
- #: wp-admin/export.php:152 wp-admin/export.php:184
6766
- msgid "Start Date"
6767
- msgstr "Startdatum"
6768
-
6769
- #: wp-admin/export.php:156 wp-admin/export.php:188
6770
- msgid "End Date"
6771
- msgstr "Enddatum"
6772
-
6773
- #: wp-admin/export.php:161 wp-admin/export.php:193
6774
- #: wp-admin/includes/meta-boxes.php:60
6775
- msgid "Status:"
6776
- msgstr "Status:"
6777
-
6778
- #: wp-admin/export.php:207
6779
- msgid "Download Export File"
6780
- msgstr "Export-Datei herunterladen"
6781
-
6782
- #: wp-admin/theme-install.php:16
6783
- msgid "You do not have sufficient permissions to install themes on this site."
6784
- msgstr "Du verfügst nicht über ausreichende Rechte, um auf diesem Blog Themes zu installieren."
6785
-
6786
- #: wp-admin/theme-install.php:27 wp-admin/update.php:209
6787
- msgid "Install Themes"
6788
- msgstr "Themes installieren"
6789
-
6790
- #: wp-admin/theme-install.php:41
6791
- msgid "You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the <a href=\"%s\" target=\"_blank\">WordPress.org Theme Directory</a>. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses."
6792
- msgstr "Hier kannst du neue Themes im <a href=\"%s\" target=\"_blank\">WordPress.org Themeverzeichnis</a> suchen und installieren. Alle Themes wurden von Dritten entwickelt, sind kostenlos und kompatibel mit der von WordPress genutzten Lizenz (GPL)."
6793
-
6794
- #: wp-admin/theme-install.php:42
6795
- msgid "You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter. Alternately, you can browse the themes that are Featured, Newest, or Recently Updated. When you find a theme you like, you can preview it or install it."
6796
- msgstr "Falls du weißt, wonach du suchst, kannst du direkt die Suche nutzen. Damit kannst du im offiziellen WordPress.org Themeverzeichnis nach bestimmten Begriffen, Autoren oder (englischen) Schlagwörtern suchen oder einfach nach bestimmten Funktionen und Eigenschaften filtern. Du kannst dich auch von der Liste empfohlener, neuer oder kürzlicher aktualisierter Themes inspirieren lassen. Nachdem du ein interessantes Theme gefunden hast, kannst du dir eine Vorschau anzeigen lassen oder es direkt installieren."
6797
-
6798
- #: wp-admin/theme-install.php:43
6799
- msgid "You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme&#8217;s folder via FTP into your <code>/wp-content/themes</code> directory."
6800
- msgstr "Hast du bereits ein Theme in einer ZIP-Datei, kannst du es direkt über diese Oberfläche durch einen Klick auf \\\"Hochladen\\\" hochladen und verwenden. Du kannst es aber auch auf deinem Computer entpacken und via FTP in das Verzeichnis <code>wp-content/themes/</code> laden."
6801
-
6802
- #: wp-admin/theme-install.php:53
6803
- msgid "<a href=\"http://codex.wordpress.org/Using_Themes#Adding_New_Themes\" target=\"_blank\">Documentation on Adding New Themes</a>"
6804
- msgstr "<a href=\"http://codex.wordpress.org/Using_Themes#Adding_New_Themes\" target=\"_blank\">Documentation on Adding New Themes (engl.)</a>"
6805
-
6806
- #: wp-admin/theme-install.php:66
6807
- msgctxt "theme"
6808
- msgid "Manage Themes"
6809
- msgstr "Themes verwalten"
6810
-
6811
- #: wp-admin/users.php:20
6812
- msgctxt "users per page (screen options)"
6813
- msgid "Users"
6814
- msgstr "Benutzer"
6815
-
6816
- #: wp-admin/users.php:26
6817
- msgid "This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role."
6818
- msgstr "Diese Übersichtsseite zeigt alle Benutzer deiner Website an. Jeder Benutzer hat eine von fünf vordefinierten Rollen, welche durch den Administrator vergeben werden können: Administrator, Redakteur, Autor, Mitarbeiter, Abonnent. Benutzer die keine Administrator-Rolle haben, sehen je nach Benutzerrolle, nicht alle Einstellungen, Optionen etc."
6819
-
6820
- #: wp-admin/users.php:27
6821
- msgid "To add a new user for your site, click the Add New button at the top of the screen or Add New in the Users menu section."
6822
- msgstr "Um einen neuen Benutzer anzulegen, klicke auf die Schaltfläche \"Hinzufügen\" im Menü oder auf dieser Seite."
6823
-
6824
- #: wp-admin/users.php:61
6825
- msgid "<a href=\"http://codex.wordpress.org/Users_Screen\" target=\"_blank\">Documentation on Managing Users</a>"
6826
- msgstr "<a href=\"http://codex.wordpress.org/Users_Screen\" target=\"_blank\">Documentation on Managing Users (engl.)</a>"
6827
-
6828
- #: wp-admin/users.php:62
6829
- msgid "<a href=\"http://codex.wordpress.org/Roles_and_Capabilities\" target=\"_blank\">Descriptions of Roles and Capabilities</a>"
6830
- msgstr ""
6831
- "<a href=\"http://codex.wordpress.org/Roles_and_Capabilities\" target=\"_blank\">Descriptions of Roles and Capabilities</a><br />\n"
6832
- "<a href=\"http://faq.wpde.org/welche-benutzerrolle-bietet-welche-rechte/\" target=\"_blank\">Benutzerrollen – welche bieten welche Rechte?</a>"
6833
-
6834
- #: wp-admin/users.php:85 wp-admin/users.php:102
6835
- msgid "You can&#8217;t edit that user."
6836
- msgstr "Du kannst diesen Benutzer nicht bearbeiten."
6837
-
6838
- #: wp-admin/users.php:94 wp-admin/includes/user.php:34
6839
- #: wp-admin/includes/user.php:88
6840
- msgid "You can&#8217;t give users that role."
6841
- msgstr "Du kannst Benutzern keine Rolle zuweisen."
6842
-
6843
- #: wp-admin/users.php:124 wp-admin/users.php:171
6844
- msgid "User deletion is not allowed from this screen."
6845
- msgstr "Benutzer dürfen nicht über diese Seite gelöscht werden."
6846
-
6847
- #: wp-admin/users.php:134 wp-admin/users.php:181
6848
- msgid "You can&#8217;t delete users."
6849
- msgstr "Du kannst keine Benutzer löschen."
6850
-
6851
- #: wp-admin/users.php:144
6852
- msgid "You can&#8217;t delete that user."
6853
- msgstr "Du kannst diesen Benutzer nicht löschen."
6854
-
6855
- #: wp-admin/users.php:196
6856
- msgid "Delete Users"
6857
- msgstr "Benutzer löschen"
6858
-
6859
- #: wp-admin/users.php:197
6860
- msgid "You have specified this user for deletion:"
6861
- msgid_plural "You have specified these users for deletion:"
6862
- msgstr[0] "Du hast diesen Benutzer zum Löschen ausgewählt:"
6863
- msgstr[1] "Du hast diese Benutzer zum Löschen ausgewählt:"
6864
-
6865
- #: wp-admin/users.php:205
6866
- msgid "ID #%1s: %2s <strong>The current user will not be deleted.</strong>"
6867
- msgstr "ID #%1s: %2s <strong>Der derzeitige Benutzer wird nicht gelöscht.</strong>"
6868
-
6869
- #: wp-admin/users.php:207 wp-admin/users.php:310
6870
- msgid "ID #%1s: %2s"
6871
- msgstr "ID #%1s: %2s"
6872
-
6873
- #: wp-admin/users.php:214
6874
- msgid "What should be done with posts and links owned by this user?"
6875
- msgid_plural "What should be done with posts and links owned by these users?"
6876
- msgstr[0] "Was soll mit dem Artikel und Links dieses Benutzers geschehen?"
6877
- msgstr[1] "Was soll mit den Artikeln und Links dieses Benutzers geschehen?"
6878
-
6879
- #: wp-admin/users.php:217
6880
- msgid "Delete all posts and links."
6881
- msgstr "Alle Artikel und Links löschen."
6882
-
6883
- #: wp-admin/users.php:219
6884
- msgid "Attribute all posts and links to:"
6885
- msgstr "Alle Artikel und Links übertragen an:"
6886
-
6887
- #: wp-admin/users.php:223
6888
- msgid "Confirm Deletion"
6889
- msgstr "Bestätigung der Löschung"
6890
-
6891
- #: wp-admin/users.php:225
6892
- msgid "There are no valid users selected for deletion."
6893
- msgstr "Es sind keine gültigen Benutzer zum Löschen ausgewählt."
6894
-
6895
- #: wp-admin/users.php:237 wp-admin/users.php:245 wp-admin/users.php:274
6896
- #: wp-admin/users.php:282
6897
- msgid "You can&#8217;t remove users."
6898
- msgstr "Du kannst keine Benutzer entfernen."
6899
-
6900
- #: wp-admin/users.php:297
6901
- msgid "Remove Users from Site"
6902
- msgstr "Entferne Benutzer von diesem Blog"
6903
-
6904
- #: wp-admin/users.php:298
6905
- msgid "You have specified these users for removal:"
6906
- msgstr "Du hast folgende Benutzer zum Löschen ausgewählt:"
6907
-
6908
- #: wp-admin/users.php:306
6909
- msgid "ID #%1s: %2s <strong>The current user will not be removed.</strong>"
6910
- msgstr "ID %1s: %2s <strong>Der aktuelle Benutzer kann nicht gelöscht werden.</strong>"
6911
-
6912
- #: wp-admin/users.php:308
6913
- msgid "ID #%1s: %2s <strong>You don't have permission to remove this user.</strong>"
6914
- msgstr "ID %1s: %2s <strong>Du hast nicht das Recht, diesen Benutzer zu löschen.</strong>"
6915
-
6916
- #: wp-admin/users.php:317
6917
- msgid "Confirm Removal"
6918
- msgstr "Löschen durchführen"
6919
-
6920
- #: wp-admin/users.php:319
6921
- msgid "There are no valid users selected for removal."
6922
- msgstr "Es sind keine gültigen Benutzer zum Löschen ausgewählt."
6923
-
6924
- #: wp-admin/users.php:348
6925
- msgid "%s user deleted"
6926
- msgid_plural "%s users deleted"
6927
- msgstr[0] "%s Benutzer gelöscht"
6928
- msgstr[1] "%s Benutzer gelöscht"
6929
-
6930
- #: wp-admin/users.php:351
6931
- msgid "New user created."
6932
- msgstr "Neuen Benutzer eingerichtet."
6933
-
6934
- #: wp-admin/users.php:354
6935
- msgid "Changed roles."
6936
- msgstr "Geänderte Rollen."
6937
-
6938
- #: wp-admin/users.php:357
6939
- msgid "The current user&#8217;s role must have user editing capabilities."
6940
- msgstr "Die Rolle des aktuellen Benutzers muss die Befugnis zum Bearbeiten von Benutzern haben."
6941
-
6942
- #: wp-admin/users.php:358
6943
- msgid "Other user roles have been changed."
6944
- msgstr "Die Rollen der anderen Benutzer sind verändert worden."
6945
-
6946
- #: wp-admin/users.php:361
6947
- msgid "You can&#8217;t delete the current user."
6948
- msgstr "Du kannst diesen Benutzer nicht löschen."
6949
-
6950
- #: wp-admin/users.php:362
6951
- msgid "Other users have been deleted."
6952
- msgstr "Andere Benutzer sind gelöscht worden."
6953
-
6954
- #: wp-admin/users.php:365
6955
- msgid "User removed from this site."
6956
- msgstr "Benutzer von diesem Blog entfernt."
6957
-
6958
- #: wp-admin/users.php:368
6959
- msgid "You can't remove the current user."
6960
- msgstr "Du kannst den aktuellen Benutzer nicht löschen."
6961
-
6962
- #: wp-admin/users.php:369
6963
- msgid "Other users have been removed."
6964
- msgstr "Andere Benutzer wurden entfernt."
6965
-
6966
- #: wp-admin/users.php:398 wp-admin/user-edit.php:188
6967
- msgctxt "user"
6968
- msgid "Add Existing"
6969
- msgstr "Bestehenden hinzufügen"
6970
-
6971
- #: wp-admin/users.php:409 wp-admin/includes/dashboard.php:468
6972
- msgid "Search Users"
6973
- msgstr "Benutzer suchen"
6974
-
6975
- #: wp-admin/upgrade.php:52
6976
- msgid "WordPress &rsaquo; Update"
6977
- msgstr "WordPress &rsaquo; Update"
6978
-
6979
- #: wp-admin/upgrade.php:63
6980
- msgid "No Update Required"
6981
- msgstr "Keine Aktualisierung notwendig"
6982
-
6983
- #: wp-admin/upgrade.php:64
6984
- msgid "Your WordPress database is already up-to-date!"
6985
- msgstr "Deine WordPress-Datenbank ist aktuell!"
6986
-
6987
- #: wp-admin/upgrade.php:65 wp-admin/upgrade.php:97
6988
- #: wp-admin/includes/media.php:1155
6989
- msgid "Continue"
6990
- msgstr "Fortfahren"
6991
-
6992
- #: wp-admin/upgrade.php:69 wp-admin/update-core.php:54
6993
- msgid "You cannot update because <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s."
6994
- msgstr "Du kannst nicht aktualisieren, da <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> mindestens die PHP-Version %2$s und die MySQL-Version %3$s voraussetzt. Du verwendest die PHP-Version %4$s und die MySQL-Version %5$s."
6995
-
6996
- #: wp-admin/upgrade.php:71 wp-admin/update-core.php:56
6997
- msgid "You cannot update because <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s."
6998
- msgstr "Du kannst nicht aktualisieren, da <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> mindestens die PHP-Version %2$s voraussetzt. Du verwendest die Version %3$s."
6999
-
7000
- #: wp-admin/upgrade.php:73 wp-admin/update-core.php:58
7001
- msgid "You cannot update because <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s."
7002
- msgstr "Du kannst nicht aktualisieren, da <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %1$s</a> mindestens die MySQL-Version %2$s voraussetzt. Du verwendest die Version %3$s."
7003
-
7004
- #: wp-admin/upgrade.php:82
7005
- msgid "Database Update Required"
7006
- msgstr "Es ist eine Aktualisierung der Datenbank notwendig"
7007
-
7008
- #: wp-admin/upgrade.php:83
7009
- msgid "WordPress has been updated! Before we send you on your way, we have to update your database to the newest version."
7010
- msgstr "WordPress wurde aktualisiert! Ehe du dich drauf stürzen kannst, müssen wir nur noch deine Datenbank auf die neueste Version bringen."
7011
-
7012
- #: wp-admin/upgrade.php:84
7013
- msgid "The update process may take a little while, so please be patient."
7014
- msgstr "Der Updateprozess beginnt. Dies kann eine Weile dauern, hab bitte etwas Geduld."
7015
-
7016
- #: wp-admin/upgrade.php:85
7017
- msgid "Update WordPress Database"
7018
- msgstr "WordPress-Datenbank aktualisieren"
7019
-
7020
- #: wp-admin/upgrade.php:95
7021
- msgid "Update Complete"
7022
- msgstr "Aktualisierung erfolgreich"
7023
-
7024
- #: wp-admin/upgrade.php:96
7025
- msgid "Your WordPress database has been successfully updated!"
7026
- msgstr "Deine WordPress-Datenbank wurde erfolgreich aktualisiert."
7027
-
7028
- #: wp-admin/upgrade.php:101
7029
- msgid "%s queries"
7030
- msgstr "%s Abfragen"
7031
-
7032
- #: wp-admin/upgrade.php:103
7033
- msgid "%s seconds"
7034
- msgstr "%s Sekunden"
7035
-
7036
- #: wp-admin/options-writing.php:15
7037
- msgid "Writing Settings"
7038
- msgstr "Einstellungen &rsaquo; Schreiben"
7039
-
7040
- #: wp-admin/options-writing.php:58
7041
- msgid "<a href=\"http://codex.wordpress.org/Settings_Writing_Screen\" target=\"_blank\">Documentation on Writing Settings</a>"
7042
- msgstr "<a href=\"http://codex.wordpress.org/Settings_Writing_Screen\" target=\"_blank\">Documentation on Writing Settings (engl.)</a>"
7043
-
7044
- #: wp-admin/options-writing.php:74
7045
- msgid "Size of the post box"
7046
- msgstr "Größe der Textbox"
7047
-
7048
- #: wp-admin/options-writing.php:76
7049
- msgid "lines"
7050
- msgstr "Zeilen"
7051
-
7052
- #: wp-admin/options-writing.php:79 wp-admin/options-writing.php:80
7053
- msgid "Formatting"
7054
- msgstr "Formatierung"
7055
-
7056
- #: wp-admin/options-writing.php:83
7057
- msgid "Convert emoticons like <code>:-)</code> and <code>:-P</code> to graphics on display"
7058
- msgstr "Wandle Emoticons wie <code>:-)</code> und <code>:-P</code> in Grafiken um."
7059
-
7060
- #: wp-admin/options-writing.php:84
7061
- msgid "WordPress should correct invalidly nested XHTML automatically"
7062
- msgstr "WordPress soll falsch verschachteltes XHTML automatisch korrigieren."
7063
-
7064
- #: wp-admin/options-writing.php:88
7065
- msgid "Default Post Category"
7066
- msgstr "Standardkategorie für Artikel"
7067
-
7068
- #: wp-admin/options-writing.php:101
7069
- msgid "Default Post Format"
7070
- msgstr "Standard-Artikelformatvorlage"
7071
-
7072
- #: wp-admin/options-writing.php:104 wp-admin/includes/meta-boxes.php:256
7073
- msgid "Standard"
7074
- msgstr "Standard"
7075
-
7076
- #: wp-admin/options-writing.php:113
7077
- msgid "Default Link Category"
7078
- msgstr "Standardkategorie für Links"
7079
-
7080
- #: wp-admin/options-writing.php:135
7081
- msgid "Post via e-mail"
7082
- msgstr "Via E-Mail schreiben"
7083
-
7084
- #: wp-admin/options-writing.php:136
7085
- msgid "To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret. Here are three random strings you could use: <kbd>%s</kbd>, <kbd>%s</kbd>, <kbd>%s</kbd>."
7086
- msgstr "Um Artikel in WordPress via E-Mail zu veröffentlichen, musst du ein geheimes E-Mail-Konto mit POP3-Zugang einrichten. Jede E-Mail, die an diese Adresse geschickt wird, wird auf deiner Seite veröffentlicht, halt deshalb diese Adresse strengstens geheim. Hier drei Beispiele möglicher Zufallszeichenketten, die du verwenden könntest: <code>%s</code>, <code>%s</code>, <code>%s</code>."
7087
-
7088
- #: wp-admin/options-writing.php:140
7089
- msgid "Mail Server"
7090
- msgstr "Mailserver"
7091
-
7092
- #: wp-admin/options-writing.php:142
7093
- msgid "Port"
7094
- msgstr "Port"
7095
-
7096
- #: wp-admin/options-writing.php:147
7097
- msgid "Login Name"
7098
- msgstr "Login-Name"
7099
-
7100
- #: wp-admin/options-writing.php:157
7101
- msgid "Default Mail Category"
7102
- msgstr "Standardkategorie für Artikel per E-Mail"
7103
-
7104
- #: wp-admin/options-writing.php:46 wp-admin/options-writing.php:168
7105
- msgid "Remote Publishing"
7106
- msgstr "Fernveröffentlichen"
7107
-
7108
- #: wp-admin/options-writing.php:169
7109
- msgid "To post to WordPress from a desktop blogging client or remote website that uses the Atom Publishing Protocol or one of the XML-RPC publishing interfaces you must enable them below."
7110
- msgstr "Um einen Artikel in WordPress mit einem Desktop-Blogging-Programm zu erstellen, dass das Atom Publishing Protocol oder eine XML-RPC-Schnittstelle benutzt, musst du diese Schnittstellen hier aktivieren."
7111
-
7112
- #: wp-admin/options-writing.php:172 wp-admin/options-writing.php:173
7113
- msgid "Atom Publishing Protocol"
7114
- msgstr "Atom Publishing Protocol"
7115
-
7116
- #: wp-admin/options-writing.php:176
7117
- msgid "Enable the Atom Publishing Protocol."
7118
- msgstr "Atom Publishing Protocol aktivieren."
7119
-
7120
- #: wp-admin/options-writing.php:180 wp-admin/options-writing.php:181
7121
- #: wp-admin/credits.php:156
7122
- msgid "XML-RPC"
7123
- msgstr "XML-RPC"
7124
-
7125
- #: wp-admin/options-writing.php:184
7126
- msgid "Enable the WordPress, Movable Type, MetaWeblog and Blogger XML-RPC publishing protocols."
7127
- msgstr "Die WordPress, Movable Type, MetaWeblog und Blogger XML-RPC Schnittstelle aktivieren."
7128
-
7129
- #: wp-admin/options-writing.php:52 wp-admin/options-writing.php:191
7130
- msgid "Update Services"
7131
- msgstr "Update Services"
7132
-
7133
- #: wp-admin/options-writing.php:195
7134
- msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see <a href=\"http://codex.wordpress.org/Update_Services\">Update Services</a> on the Codex. Separate multiple service <abbr title=\"Universal Resource Locator\">URL</abbr>s with line breaks."
7135
- msgstr "Wenn du einen Artikel veröffentlichst, kann WordPress verschiedene Dienste darüber informieren. Um mehr darüber zu erfahren, besuche die Seite <a href=\"http://codex.wordpress.org/Update_Services\">Update Services</a> im Codex. Bitte trenne mehrere URLs jeweils durch einen Zeilenumbruch."
7136
-
7137
- #: wp-admin/options-writing.php:201
7138
- msgid "WordPress is not notifying any <a href=\"http://codex.wordpress.org/Update_Services\">Update Services</a> because of your site&#8217;s <a href=\"%s\">privacy settings</a>."
7139
- msgstr "WordPress benachrichtigt zurzeit keine <a href=\"http://codex.wordpress.org/Update_Services\">Pingdienste</a>, das kann in den <a href=\"%s\">Einstellungen der Privatsphäre</a> geändert werden."
7140
-
7141
- #: wp-admin/update-core.php:22 wp-admin/update-core.php:488
7142
- #: wp-admin/update-core.php:517
7143
- msgid "You do not have sufficient permissions to update this site."
7144
- msgstr "Du hast nicht genügend Rechte, dieses Blog upzudaten."
7145
-
7146
- #: wp-admin/update-core.php:33
7147
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:204
7148
- msgid "Update Now"
7149
- msgstr "Aktualisiere jetzt"
7150
-
7151
- #: wp-admin/update-core.php:39
7152
- msgid "You are using a development version of WordPress. You can update to the latest nightly build automatically or download the nightly build and install it manually:"
7153
- msgstr "Du verwendest eine WordPress-Entwicklerversion. Du kannst automatisch auf die letzte \"nightly build\"-Version aktualisieren, oder die \"nightly build\"-Version runterladen und manuell installieren."
7154
-
7155
- #: wp-admin/update-core.php:40
7156
- msgid "Download nightly build"
7157
- msgstr "Nightly Build herunterladen"
7158
-
7159
- #: wp-admin/update-core.php:43
7160
- msgid "You have the latest version of WordPress. You do not need to update. However, if you want to re-install version %s, you can do so automatically or download the package and re-install manually:"
7161
- msgstr "Du nutzt die aktuellste Version von WordPress. Eine Aktualisierung ist nicht notwendig. Falls du die Version %s trotzdem erneut installieren möchtest, kannst du das automatisch geschehen lassen oder du lädst sie runter und installierst sie manuell. Die Artikel, Seiten und Einstellungen gehen hierbei nicht verloren."
7162
-
7163
- #: wp-admin/update-core.php:44
7164
- msgid "Re-install Now"
7165
- msgstr "Erneut installieren"
7166
-
7167
- #: wp-admin/update-core.php:60
7168
- msgid "You can update to <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %2$s</a> automatically or download the package and install it manually:"
7169
- msgstr "Du kannst automatisch auf <a href=\"http://codex.wordpress.org/Version_%1$s\">WordPress %2$s</a> aktualisieren oder das Paket herunterladen und manuell installieren:"
7170
-
7171
- #: wp-admin/update-core.php:64
7172
- msgid "Download %s"
7173
- msgstr "%s herunterladen"
7174
-
7175
- #: wp-admin/update-core.php:86
7176
- msgid "Hide this update"
7177
- msgstr "Dieses Update ausblenden"
7178
-
7179
- #: wp-admin/update-core.php:88
7180
- msgid "Bring back this update"
7181
- msgstr "Dieses Update wiederbringen"
7182
-
7183
- #: wp-admin/update-core.php:91
7184
- msgid "This localized version contains both the translation and various other localization fixes. You can skip upgrading if you want to keep your current translation."
7185
- msgstr "Die lokalisierte Version beinhaltet beides, die Übersetzung und verschiedenene andere Lokalisationsanpassungen. Du kannst die Aktualisierung abbrechen, wenn du deine momentane Übersetzung beibehalten möchtest."
7186
-
7187
- #: wp-admin/update-core.php:93
7188
- msgid "You are about to install WordPress %s <strong>in English (US).</strong> There is a chance this update will break your translation. You may prefer to wait for the localized version to be released."
7189
- msgstr "Du bist dabei, WordPress %s in <strong>englisch (US)</strong> zu installieren. Es kann sein, dass die Aktualisierung deine Installation beschädigt. Außerdem solltest du vielleicht warten, bis eine übersetzte Version erschienen ist."
7190
-
7191
- #: wp-admin/update-core.php:103 wp-admin/update-core.php:115
7192
- msgid "Show hidden updates"
7193
- msgstr "Versteckte Updates anzeigen"
7194
-
7195
- #: wp-admin/update-core.php:104
7196
- msgid "Hide hidden updates"
7197
- msgstr "Versteckte Updates ausblenden"
7198
-
7199
- #: wp-admin/update-core.php:140 wp-admin/update-core.php:431
7200
- msgid "WordPress Updates"
7201
- msgstr "WordPress-Aktualisierungen"
7202
-
7203
- #: wp-admin/update-core.php:145
7204
- msgid "Please select one or more themes to update."
7205
- msgstr "Bitte wähle ein oder mehrere Themes, die aktualisiert werden sollen."
7206
-
7207
- #: wp-admin/update-core.php:147
7208
- msgid "Please select one or more plugins to update."
7209
- msgstr "Bitte wähle ein oder mehrere Plugins, die aktualisiert werden sollen."
7210
-
7211
- #: wp-admin/update-core.php:153
7212
- msgid "Last checked on %1$s at %2$s."
7213
- msgstr "Zuletzt geprüft am %1$s um %2$s."
7214
-
7215
- #: wp-admin/update-core.php:154
7216
- msgid "Check Again"
7217
- msgstr "Erneut prüfen"
7218
-
7219
- #: wp-admin/update-core.php:159
7220
- msgid "You have the latest version of WordPress."
7221
- msgstr "Du benutzt die aktuelle Version von WordPress."
7222
-
7223
- #: wp-admin/update-core.php:163
7224
- msgid "<strong>Important:</strong> before updating, please <a href=\"http://codex.wordpress.org/WordPress_Backups\">back up your database and files</a>. For help with updates, visit the <a href=\"http://codex.wordpress.org/Updating_WordPress\">Updating WordPress</a> Codex page."
7225
- msgstr ""
7226
- "<strong>Wichtig</strong>: Ehe du das Update durchführst, lege unbedingt eine Sicherheitskopie deiner Datenbank und der Dateien an!\n"
7227
- "Eine Anleitung findest du im <a href=\"http://codex.wordpress.org/WordPress_Backups\">offiziellen Codex (engl.)</a> und in den <a href=\"http://faq.wpde.org/backup-von-wordpress-erstellen/\">WordPress Deutschland FAQ</a>. Weitere Informationen zum Update von WordPress erhältst du auf der Seite <a href=\"http://codex.wordpress.org/Updating_WordPress\">Updating WordPress (engl.)</a>."
7228
-
7229
- #: wp-admin/update-core.php:167
7230
- msgid "An updated version of WordPress is available."
7231
- msgstr "Es ist eine neue Version von WordPress verfügbar."
7232
-
7233
- #: wp-admin/update-core.php:180
7234
- msgid "While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, your site will return to normal."
7235
- msgstr "Deine Website wird während des Aktualisierungsprozesses in einen Wartungsmodus geschaltet. Sobald die Aktualisierung abgeschlossen ist, kann die Website wieder normal genutzt werden."
7236
-
7237
- #: wp-admin/update-core.php:204
7238
- msgid "Your plugins are all up to date."
7239
- msgstr "Alle Plugins sind auf dem neuesten Stand."
7240
-
7241
- #: wp-admin/update-core.php:216
7242
- msgid "The following plugins have new versions available. Check the ones you want to update and then click &#8220;Update Plugins&#8221;."
7243
- msgstr "Für die folgenden Plugins sind neue Versionen verfügbar. Markiere diejenigen, die du aktualisieren möchtest und klicke auf &#8220;Plugins aktualisieren&#8221;."
7244
-
7245
- #: wp-admin/update-core.php:219 wp-admin/update-core.php:276
7246
- #: wp-admin/update-core.php:504 wp-admin/update-core.php:509
7247
- #: wp-admin/plugins.php:111
7248
- msgid "Update Plugins"
7249
- msgstr "Plugins aktualisieren"
7250
-
7251
- #: wp-admin/update-core.php:240
7252
- msgid "Compatibility with WordPress %1$s: 100%% (according to its author)"
7253
- msgstr "Kompatibilität mit WordPress %1$s: 100%% (laut dem Autor)"
7254
-
7255
- #: wp-admin/update-core.php:243 wp-admin/update-core.php:251
7256
- msgid "Compatibility with WordPress %1$s: %2$d%% (%3$d \"works\" votes out of %4$d total)"
7257
- msgstr "Kompatibilität mit WordPress %1$s: %2$d%% (%3$d \"funktioniert\" Stimmen von insgesamt %4$d)"
7258
-
7259
- #: wp-admin/update-core.php:245 wp-admin/update-core.php:253
7260
- msgid "Compatibility with WordPress %1$s: Unknown"
7261
- msgstr "Kompatibilität mit WordPress %1$s: unbekannt"
7262
-
7263
- #: wp-admin/update-core.php:270 wp-admin/update-core.php:320
7264
- msgid "You have version %1$s installed. Update to %2$s."
7265
- msgstr "Du hast Version %1$s installiert. Aktualisiere auf Version %2$s."
7266
-
7267
- #: wp-admin/update-core.php:285
7268
- msgid "Your themes are all up to date."
7269
- msgstr "Alle Themes sind auf dem neuesten Stand."
7270
-
7271
- #: wp-admin/update-core.php:293
7272
- msgid "The following themes have new versions available. Check the ones you want to update and then click &#8220;Update Themes&#8221;."
7273
- msgstr "Für die folgenden Themes liegen Aktualisierungen vor. Markiere diejenigen, die du aktualisieren möchtest und klicke auf &#8220;Themes aktualisieren&#8221;."
7274
-
7275
- #: wp-admin/update-core.php:294
7276
- msgid "<strong>Please Note:</strong> Any customizations you have made to theme files will be lost. Please consider using <a href=\"%s\">child themes</a> for modifications."
7277
- msgstr "<strong>Beachte bitte:</strong> Alle Anpassungen die du am Theme vorgenommen hast, werden verloren gehen. Ziehe in Erwägung, <a href=\"%s\">Ergänzungs-Themes</a> (Child Themes) zu nutzen, um Modifikationen vorzunehmen."
7278
-
7279
- #: wp-admin/update-core.php:294
7280
- msgctxt "Link used in suggestion to use child themes in GUU"
7281
- msgid "http://codex.wordpress.org/Child_Themes"
7282
- msgstr "http://codex.wordpress.org/Child_Themes"
7283
-
7284
- #: wp-admin/update-core.php:297 wp-admin/update-core.php:326
7285
- #: wp-admin/update-core.php:533 wp-admin/update-core.php:538
7286
- msgid "Update Themes"
7287
- msgstr "Themes aktualisieren"
7288
-
7289
- #: wp-admin/update-core.php:363
7290
- msgid "Update WordPress"
7291
- msgstr "WordPress Aktualisieren"
7292
-
7293
- #: wp-admin/update-core.php:380
7294
- msgid "Installation Failed"
7295
- msgstr "Die Installation ging schief"
7296
-
7297
- #: wp-admin/update-core.php:385 wp-admin/includes/update-core.php:626
7298
- msgid "WordPress updated successfully"
7299
- msgstr "WordPress wurde erfolgreich aktualisiert"
7300
-
7301
- #: wp-admin/update-core.php:446
7302
- msgid "Updating your WordPress installation is a simple one-click procedure; just click on the Update button when it says a new version is available."
7303
- msgstr "Deine WordPress Installation zu aktualisieren ist ein sehr simpler Vorgang – klicke einfach die Schaltfläche \"Automatisch aktualisieren\", wenn du angezeigt bekommst, dass eine neue WordPress Version verfügbar ist."
7304
-
7305
- #: wp-admin/update-core.php:447
7306
- msgid "To update themes or plugins from this screen, use the checkboxes to make your selection and click on the appropriate Update button. Check the box at the top of the Themes or Plugins section to select all and update them all at once."
7307
- msgstr "Um Themes oder Plugin über diese Seite zu aktualisieren, musst du deine Auswahl treffen und dann die entsprechende Schaltfläche zum aktualisieren anklicken. Du kannst durch markieren der Checkbox \"Alle auswählen\" auch alle Themes oder Plugins auf einmal aktualisieren."
7308
-
7309
- #: wp-admin/update-core.php:453
7310
- msgid "<a href=\"http://codex.wordpress.org/Dashboard_Updates_Screen\" target=\"_blank\">Documentation on Updating WordPress</a>"
7311
- msgstr ""
7312
- "<a href=\"http://codex.wordpress.org/Dashboard_Updates_Screen\" target=\"_blank\">Documentation on Updating WordPress (engl.)</a><br />\n"
7313
- "<a href=\"http://doku.wpde.org/Upgrade\" target=\"_blank\">WordPress manuell aktualisieren</a>"
7314
-
7315
- #: wp-admin/options-reading.php:15
7316
- msgid "Reading Settings"
7317
- msgstr "Einstellungen &rsaquo; Lesen"
7318
-
7319
- #: wp-admin/options-reading.php:47
7320
- msgid "This screen contains the settings that affect the display of your content."
7321
- msgstr "Diese Einstellungsseite beinhaltet die Optionen, die Darstellung deiner Inhalte regeln."
7322
-
7323
- #: wp-admin/options-reading.php:48
7324
- msgid "You can choose what&#8217;s displayed on the front page of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static home page, you first need to create two <a href=\"%s\">Pages</a>. One will become the front page, and the other will be where your posts are displayed."
7325
- msgstr "Du kannst auswählen, was auf deiner Startseite angezeigt werden soll; Entweder die letzten Artikel in umgekehrt chronologischer Sortierung (also ein klassischer Blog) oder eine (statische) Seite. Willst du eine statische Seite als Startseite festlegen, so solltest du eine weitere <a href=\"%s\">Seite</a> anlegen, auf der dann die Artikel angezeigt werden. Beachte dazu auch den weiterführenden Link am Ende dieser Hilfe."
7326
-
7327
- #: wp-admin/options-reading.php:49
7328
- msgid "You can also control the display of your content in RSS feeds, including the maximum numbers of posts to display, whether to show full text or a summary, and the character set encoding."
7329
- msgstr "Ebenfalls einstellbar ist, ob im Newsfeed nur Kurzfassungen oder die kompletten Artikel angezeigt werden sollen, sowie deren Anzahl."
7330
-
7331
- #: wp-admin/options-reading.php:55
7332
- msgid "<a href=\"http://codex.wordpress.org/Settings_Reading_Screen\" target=\"_blank\">Documentation on Reading Settings</a>"
7333
- msgstr "<a href=\"http://codex.wordpress.org/Settings_Reading_Screen\" target=\"_blank\">Documentation on Reading Settings (engl.)</a>"
7334
-
7335
- #: wp-admin/options-reading.php:83 wp-admin/options-reading.php:84
7336
- msgid "Front page displays"
7337
- msgstr "Startseite"
7338
-
7339
- #: wp-admin/options-reading.php:87
7340
- msgid "Your latest posts"
7341
- msgstr "Deine letzten Artikel"
7342
-
7343
- #: wp-admin/options-reading.php:92
7344
- msgid "A <a href=\"%s\">static page</a> (select below)"
7345
- msgstr "Eine <a href=\"%s\">statische Seite</a> (unten auswählen)"
7346
-
7347
- #: wp-admin/options-reading.php:96
7348
- msgid "Front page: %s"
7349
- msgstr "Startseite: %s"
7350
-
7351
- #: wp-admin/options-reading.php:96 wp-admin/options-reading.php:97
7352
- #: wp-admin/includes/template.php:521 wp-admin/widgets.php:270
7353
- msgid "&mdash; Select &mdash;"
7354
- msgstr "&mdash; Wähle &mdash;"
7355
-
7356
- #: wp-admin/options-reading.php:97
7357
- msgid "Posts page: %s"
7358
- msgstr "Artikelseite: %s"
7359
-
7360
- #: wp-admin/options-reading.php:100
7361
- msgid "<strong>Warning:</strong> these pages should not be the same!"
7362
- msgstr "<strong>Achtung:</strong> diese Seiten sollten nicht gleich sein!"
7363
-
7364
- #: wp-admin/options-reading.php:106
7365
- msgid "Blog pages show at most"
7366
- msgstr "Blogseiten zeigen maximal"
7367
-
7368
- #: wp-admin/options-reading.php:108
7369
- msgid "posts"
7370
- msgstr "Artikel"
7371
-
7372
- #: wp-admin/options-reading.php:112
7373
- msgid "Syndication feeds show the most recent"
7374
- msgstr "Newsfeeds zeigen die letzten"
7375
-
7376
- #: wp-admin/options-reading.php:113
7377
- msgid "items"
7378
- msgstr "Einträge"
7379
-
7380
- #: wp-admin/options-reading.php:116 wp-admin/options-reading.php:117
7381
- msgid "For each article in a feed, show"
7382
- msgstr "Zeige im Newsfeed"
7383
-
7384
- #: wp-admin/options-reading.php:118
7385
- msgid "Full text"
7386
- msgstr "ganzen Text"
7387
-
7388
- #: wp-admin/options-reading.php:119
7389
- msgid "Summary"
7390
- msgstr "Kurzfassung"
7391
-
7392
- #: wp-admin/options-reading.php:124
7393
- msgid "Encoding for pages and feeds"
7394
- msgstr "Zeichensatz für Seiten und Feeds"
7395
-
7396
- #: wp-admin/options-reading.php:126
7397
- msgid "The <a href=\"http://codex.wordpress.org/Glossary#Character_set\">character encoding</a> of your site (UTF-8 is recommended, if you are adventurous there are some <a href=\"http://en.wikipedia.org/wiki/Character_set\">other encodings</a>)"
7398
- msgstr "Der Zeichensatz (<a href=\"http://codex.wordpress.org/Glossary#Character_set\">character encoding</a>) deines Blogs (UTF-8 wird empfohlen, siehe auch <a href=\"http://en.wikipedia.org/wiki/Character_set\">other encodings</a>)."
7399
-
7400
- #: wp-admin/freedoms.php:36
7401
- msgid "WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href=\"%s\">license</a>, the GPL."
7402
- msgstr "WordPress ist eine freie, kostenlose und quelloffene (<em>Open Source</em>) Software, programmiert von größtenteils freiwilligen Entwicklern auf der ganzen Welt. WordPress steht unter einer sehr großzügigen und viele Freiheiten gewährenden <a href=\"%s\">Lizenz</a> (engl.), der GPL."
7403
-
7404
- #: wp-admin/freedoms.php:39
7405
- msgid "You have the freedom to run the program, for any purpose."
7406
- msgstr "Du hast die Freiheit, das Programm für jeden Awendungszweck einzusetzen."
7407
-
7408
- #: wp-admin/freedoms.php:40
7409
- msgid "You have access to the source code, the freedom to study how the program works, and the freedom to change it to make it do what you wish."
7410
- msgstr "Du hast Zugriff auf den Quelltext und somit die Freiheit zu studieren, wie das Programm funktioniert, sowie die Freiheit den Quelltext zu verändern, um das Programm an deine Anforderungen anzupassen."
7411
-
7412
- #: wp-admin/freedoms.php:41
7413
- msgid "You have the freedom to redistribute copies of the original program so you can help your neighbor."
7414
- msgstr "Du hast die Freiheit, Kopien des Programms zu verbreiten (um so z.B. deinem Nachbarn zu helfen)."
7415
-
7416
- #: wp-admin/freedoms.php:42
7417
- msgid "You have the freedom to distribute copies of your modified versions to others. By doing this you can give the whole community a chance to benefit from your changes."
7418
- msgstr "Du hast die Freiheit, das Programm zu verändern und diesen geänderten Code an andere weiterzugeben. So kann die Community von deinen Änderungen profitieren."
7419
-
7420
- #: wp-admin/freedoms.php:45
7421
- msgid "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We&#8217;re flattered every time someone spreads the good word, just make sure to <a href=\"%s\">check out our trademark guidelines</a> first."
7422
- msgstr "WordPress kann weiter wachsen, wenn Leute wie Du ihren Freunden von WordPress erzählen und die tausenden von Firmen und Dienstleistern die WordPress verwenden, diese Tatsache ihren Besuchern mitteilen. Wir fühlen uns jedes mal geschmeichelt, wenn jemand die Botschaft von WordPress verbreitet. Beachte jedoch <a href=\"%s\">den Leitfaden zur Verwendung der Marke WordPress (engl.)</a>."
7423
-
7424
- #: wp-admin/freedoms.php:52
7425
- msgid "Every plugin and theme in WordPress.org&#8217;s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding <a href=\"%1$s\">plugins</a> and <a href=\"%2$s\">themes</a> there. If you get a plugin or theme from another source, make sure to <a href=\"%3$s\">ask them if it&#8217;s GPL</a> first. If they don&#8217;t respect the WordPress license, we don&#8217;t recommend them."
7426
- msgstr "Jedes Plugin und Theme welches von WordPress.org heruntergeladen werden kann ist 100%% GPL oder unter einer ähnlichen, kompatiblen Lizenz lizensiert. So kannst du unbesorgt <a href=\"%1$s\">Plugins</a> oder <a href=\"%2$s\">Themes</a> suchen und verwenden. Solltest du ein Plugin oder Theme aus einer anderen Quelle verwenden, so solltest du vorher erfragen <a href=\"%3$s\">ob das Produkt gemäß GPL lizensiert ist</a>. Falls nicht, können wir das Produkt nicht empfehlen."
7427
-
7428
- #: wp-admin/freedoms.php:54
7429
- msgid "Don&#8217;t you wish all software came with these freedoms? So do we! For more information, check out the <a href=\"http://www.fsf.org/\">Free Software Foundation</a>."
7430
- msgstr "Wünschst du dir nicht, dass jede Software diese Freiheiten bietet? Wir auch! Weitere Informationen findest du auf der Seite der <a href=\"http://www.fsf.org/\">Free Software Foundation</a>."
7431
-
7432
- #: wp-admin/link.php:109
7433
- msgid "Link not found."
7434
- msgstr "Link nicht gefunden."
7435
-
7436
- #: wp-admin/includes/dashboard.php:33
7437
- msgid "You are using an insecure browser!"
7438
- msgstr "Du verwendest einen unsicheren Browser!"
7439
-
7440
- #: wp-admin/includes/dashboard.php:35
7441
- msgid "Your browser is out of date!"
7442
- msgstr "Dein Browser ist veraltet!"
7443
-
7444
- #: wp-admin/includes/dashboard.php:40 wp-admin/includes/dashboard.php:43
7445
- msgid "Right Now"
7446
- msgstr "Auf einen Blick"
7447
-
7448
- #: wp-admin/includes/dashboard.php:70
7449
- msgid "Incoming Links"
7450
- msgstr "Eingehende Links"
7451
-
7452
- #: wp-admin/includes/dashboard.php:79
7453
- msgid "QuickPress"
7454
- msgstr "QuickPress"
7455
-
7456
- #: wp-admin/includes/dashboard.php:83
7457
- msgid "Recent Drafts"
7458
- msgstr "Aktuelle Entwürfe"
7459
-
7460
- #: wp-admin/includes/dashboard.php:89
7461
- msgid "http://wordpress.org/news/"
7462
- msgstr "http://blog.wpde.org/"
7463
-
7464
- #: wp-admin/includes/dashboard.php:90
7465
- msgid "http://wordpress.org/news/feed/"
7466
- msgstr "http://blog.wpde.org/feed/"
7467
-
7468
- #: wp-admin/includes/dashboard.php:91
7469
- msgid "WordPress Blog"
7470
- msgstr "WordPress-Blog"
7471
-
7472
- #: wp-admin/includes/dashboard.php:104
7473
- msgid "http://planet.wordpress.org/"
7474
- msgstr "http://channel.wpde.org/"
7475
-
7476
- #: wp-admin/includes/dashboard.php:105
7477
- msgid "http://planet.wordpress.org/feed/"
7478
- msgstr "http://channel.wpde.org/rss-dashboard.php"
7479
-
7480
- #: wp-admin/includes/dashboard.php:106
7481
- msgid "Other WordPress News"
7482
- msgstr "Weitere WordPress-News"
7483
-
7484
- #: wp-admin/includes/dashboard.php:129 wp-admin/includes/dashboard.php:603
7485
- msgid "View all"
7486
- msgstr "Alle ansehen"
7487
-
7488
- #: wp-admin/includes/dashboard.php:160
7489
- msgid "Configure"
7490
- msgstr "Konfigurieren"
7491
-
7492
- #: wp-admin/includes/dashboard.php:266
7493
- msgid "Post"
7494
- msgid_plural "Posts"
7495
- msgstr[0] "Artikel"
7496
- msgstr[1] "Artikel"
7497
-
7498
- #: wp-admin/includes/dashboard.php:294
7499
- msgid "Page"
7500
- msgid_plural "Pages"
7501
- msgstr[0] "Seite"
7502
- msgstr[1] "Seiten"
7503
-
7504
- #: wp-admin/includes/dashboard.php:306
7505
- msgid "Category"
7506
- msgid_plural "Categories"
7507
- msgstr[0] "Kategorie"
7508
- msgstr[1] "Kategorien"
7509
-
7510
- #: wp-admin/includes/dashboard.php:318
7511
- msgid "Tag"
7512
- msgid_plural "Tags"
7513
- msgstr[0] "Schlagwort"
7514
- msgstr[1] "Schlagwörter"
7515
-
7516
- #: wp-admin/includes/dashboard.php:337
7517
- msgid "Comment"
7518
- msgid_plural "Comments"
7519
- msgstr[0] "Kommentar"
7520
- msgstr[1] "Kommentare"
7521
-
7522
- #: wp-admin/includes/dashboard.php:349
7523
- msgctxt "Right Now"
7524
- msgid "Approved"
7525
- msgid_plural "Approved"
7526
- msgstr[0] "Genehmigt"
7527
- msgstr[1] "Genehmigte"
7528
-
7529
- #: wp-admin/includes/dashboard.php:361
7530
- msgid "Pending"
7531
- msgid_plural "Pending"
7532
- msgstr[0] "Offen"
7533
- msgstr[1] "Offen"
7534
-
7535
- #: wp-admin/includes/dashboard.php:373
7536
- msgctxt "comment"
7537
- msgid "Spam"
7538
- msgid_plural "Spam"
7539
- msgstr[0] "Spam"
7540
- msgstr[1] "Spam"
7541
-
7542
- #: wp-admin/includes/dashboard.php:409
7543
- msgid "Theme <span class=\"b\">%1$s</span> with <span class=\"b\"><a href=\"widgets.php\">%2$s Widget</a></span>"
7544
- msgid_plural "Theme <span class=\"b\">%1$s</span> with <span class=\"b\"><a href=\"widgets.php\">%2$s Widgets</a></span>"
7545
- msgstr[0] "Theme <span class=\"b\">%1$s</span> mit <span class=\"b\"><a href=\"widgets.php\">%2$s Widget</a></span>"
7546
- msgstr[1] "Theme <span class=\"b\">%1$s</span> mit <span class=\"b\"><a href=\"widgets.php\">%2$s Widgets</a></span>"
7547
-
7548
- #: wp-admin/includes/dashboard.php:411
7549
- msgid "Theme <span class=\"b\">%1$s</span> with <span class=\"b\">%2$s Widget</span>"
7550
- msgid_plural "Theme <span class=\"b\">%1$s</span> with <span class=\"b\">%2$s Widgets</span>"
7551
- msgstr[0] "<span class=\"b\">%1$s</span> Theme mit <span class=\"b\">%2$s Widget</span>"
7552
- msgstr[1] "<span class=\"b\">%1$s</span> Theme mit <span class=\"b\">%2$s Widgets</span>"
7553
-
7554
- #: wp-admin/includes/dashboard.php:415
7555
- msgid "Theme <span class=\"b\"><a href=\"themes.php\">%1$s</a></span>"
7556
- msgstr "Theme <span class=\"b\"><a href=\"themes.php\">%1$s</a></span>"
7557
-
7558
- #: wp-admin/includes/dashboard.php:417
7559
- msgid "Theme <span class=\"b\">%1$s</span>"
7560
- msgstr "Theme <span class=\"b\">%1$s</span>"
7561
-
7562
- #: wp-admin/includes/dashboard.php:423
7563
- msgid "Your site is asking search engines not to index its content"
7564
- msgstr "Suchmaschinen werden angehalten, den Inhalt der Website nicht zu indexieren"
7565
-
7566
- #: wp-admin/includes/dashboard.php:424
7567
- msgid "Search Engines Blocked"
7568
- msgstr "Suchmaschinen werden blockiert"
7569
-
7570
- #: wp-admin/includes/dashboard.php:439
7571
- msgid "Create a New Site"
7572
- msgstr "Neues Blog anlegen"
7573
-
7574
- #: wp-admin/includes/dashboard.php:441
7575
- msgid "Create a New User"
7576
- msgstr "Neuen Benutzer erstellen"
7577
-
7578
- #: wp-admin/includes/dashboard.php:446
7579
- msgid "%s user"
7580
- msgid_plural "%s users"
7581
- msgstr[0] "%s Benutzer"
7582
- msgstr[1] "%s Benutzer"
7583
-
7584
- #: wp-admin/includes/dashboard.php:447
7585
- msgid "%s site"
7586
- msgid_plural "%s sites"
7587
- msgstr[0] "%s Blog"
7588
- msgstr[1] "%s Blogs"
7589
-
7590
- #: wp-admin/includes/dashboard.php:449
7591
- msgid "You have %1$s and %2$s."
7592
- msgstr "Du hast %1$s und %2$s."
7593
-
7594
- #: wp-admin/includes/dashboard.php:475
7595
- msgid "Search Sites"
7596
- msgstr "Blogs suchen"
7597
-
7598
- #: wp-admin/includes/dashboard.php:492
7599
- msgid "Post published. <a href=\"%s\">View post</a> | <a href=\"%s\">Edit post</a>"
7600
- msgstr "Artikel veröffentlicht. <a href=\"%s\">Artikelvorschau</a> | <a href=\"%s\">Artikel bearbeiten</a>"
7601
-
7602
- #: wp-admin/includes/dashboard.php:494
7603
- msgid "Post submitted. <a href=\"%s\">Preview post</a> | <a href=\"%s\">Edit post</a>"
7604
- msgstr "Artikel gesendet. <a href=\"%s\">Vorschau ansehen</a> | <a href=\"%s\">Artikel bearbeiten</a>"
7605
-
7606
- #: wp-admin/includes/dashboard.php:496
7607
- msgid "Draft saved. <a href=\"%s\">Preview post</a> | <a href=\"%s\">Edit post</a>"
7608
- msgstr "Entwurf gespeichert. <a href=\"%s\">Artikelvorschau</a> | <a href=\"%s\">Artikel bearbeiten</a>"
7609
-
7610
- #: wp-admin/includes/dashboard.php:509
7611
- msgid "You can also try %s, easy blogging from anywhere on the Web."
7612
- msgstr "Du kannst auch %s ausprobieren, bloggen von überall im Web."
7613
-
7614
- #: wp-admin/includes/dashboard.php:561
7615
- msgid "Reset"
7616
- msgstr "Verwerfen"
7617
-
7618
- #: wp-admin/includes/dashboard.php:563 wp-admin/includes/meta-boxes.php:219
7619
- #: wp-admin/includes/meta-boxes.php:220 wp-admin/press-this.php:473
7620
- msgid "Submit for Review"
7621
- msgstr "Zur Revision vorlegen"
7622
-
7623
- #: wp-admin/includes/dashboard.php:594
7624
- #: wp-admin/includes/class-wp-posts-list-table.php:522
7625
- #: wp-admin/includes/class-wp-posts-list-table.php:528
7626
- #: wp-admin/includes/class-wp-terms-list-table.php:254
7627
- #: wp-admin/includes/class-wp-media-list-table.php:209
7628
- #: wp-admin/includes/class-wp-media-list-table.php:227
7629
- #: wp-admin/includes/class-wp-links-list-table.php:136
7630
- msgid "Edit &#8220;%s&#8221;"
7631
- msgstr "&#8220;%s&#8221; bearbeiten"
7632
-
7633
- #: wp-admin/includes/dashboard.php:594
7634
- #: wp-admin/includes/class-wp-posts-list-table.php:569
7635
- #: wp-admin/includes/class-wp-media-list-table.php:279
7636
- msgid "Y/m/d g:i:s A"
7637
- msgstr "d.m.Y H:i"
7638
-
7639
- #: wp-admin/includes/dashboard.php:606
7640
- msgid "There are no drafts at the moment"
7641
- msgstr "Zurzeit gibt es keine Entwürfe."
7642
-
7643
- #: wp-admin/includes/dashboard.php:699
7644
- #: wp-admin/includes/class-wp-comments-list-table.php:394
7645
- #: wp-admin/includes/class-wp-comments-list-table.php:396
7646
- msgid "Approve this comment"
7647
- msgstr "Diesen Kommentar genehmigen"
7648
-
7649
- #: wp-admin/includes/dashboard.php:699
7650
- #: wp-admin/includes/class-wp-comments-list-table.php:190
7651
- #: wp-admin/includes/class-wp-comments-list-table.php:394
7652
- #: wp-admin/includes/class-wp-comments-list-table.php:396
7653
- msgid "Approve"
7654
- msgstr "Genehmigen"
7655
-
7656
- #: wp-admin/includes/dashboard.php:700
7657
- #: wp-admin/includes/class-wp-comments-list-table.php:392
7658
- #: wp-admin/includes/class-wp-comments-list-table.php:397
7659
- msgid "Unapprove this comment"
7660
- msgstr "Kommentar zurückweisen"
7661
-
7662
- #: wp-admin/includes/dashboard.php:700
7663
- #: wp-admin/includes/class-wp-comments-list-table.php:188
7664
- #: wp-admin/includes/class-wp-comments-list-table.php:392
7665
- #: wp-admin/includes/class-wp-comments-list-table.php:397
7666
- msgid "Unapprove"
7667
- msgstr "Zurückweisen"
7668
-
7669
- #: wp-admin/includes/dashboard.php:701
7670
- #: wp-admin/includes/class-wp-posts-list-table.php:190
7671
- #: wp-admin/includes/class-wp-posts-list-table.php:537
7672
- #: wp-admin/includes/class-wp-comments-list-table.php:415
7673
- #: wp-admin/includes/class-wp-users-list-table.php:246
7674
- #: wp-admin/includes/class-wp-plugins-list-table.php:381
7675
- #: wp-admin/includes/class-wp-terms-list-table.php:258
7676
- #: wp-admin/includes/class-wp-media-list-table.php:359
7677
- #: wp-admin/includes/class-wp-media-list-table.php:373
7678
- #: wp-admin/includes/post.php:1127
7679
- #: wp-admin/includes/class-wp-links-list-table.php:139
7680
- #: wp-admin/includes/widgets.php:182 wp-admin/includes/meta-boxes.php:84
7681
- #: wp-admin/includes/meta-boxes.php:130 wp-admin/includes/meta-boxes.php:182
7682
- #: wp-admin/edit-form-comment.php:62
7683
- msgid "Edit"
7684
- msgstr "Bearbeiten"
7685
-
7686
- #: wp-admin/includes/dashboard.php:702
7687
- #: wp-admin/includes/class-wp-comments-list-table.php:417
7688
- msgid "Reply to this comment"
7689
- msgstr "Auf diesen Kommentar antworten"
7690
-
7691
- #: wp-admin/includes/dashboard.php:703
7692
- #: wp-admin/includes/class-wp-comments-list-table.php:401
7693
- msgid "Mark this comment as spam"
7694
- msgstr "Diesen Kommentar als Spam markieren"
7695
-
7696
- #: wp-admin/includes/dashboard.php:703
7697
- #: wp-admin/includes/class-wp-comments-list-table.php:401
7698
- msgctxt "verb"
7699
- msgid "Spam"
7700
- msgstr "Spam"
7701
-
7702
- #: wp-admin/includes/dashboard.php:705
7703
- #: wp-admin/includes/class-wp-posts-list-table.php:193
7704
- #: wp-admin/includes/class-wp-posts-list-table.php:546
7705
- #: wp-admin/includes/media.php:1151
7706
- #: wp-admin/includes/class-wp-comments-list-table.php:200
7707
- #: wp-admin/includes/class-wp-comments-list-table.php:409
7708
- #: wp-admin/includes/class-wp-media-list-table.php:79
7709
- #: wp-admin/includes/class-wp-media-list-table.php:365
7710
- #: wp-admin/includes/class-wp-media-list-table.php:381
7711
- #: wp-admin/includes/meta-boxes.php:198 wp-admin/edit-form-comment.php:71
7712
- msgid "Delete Permanently"
7713
- msgstr "Endgültig löschen"
7714
-
7715
- #: wp-admin/includes/dashboard.php:707
7716
- #: wp-admin/includes/class-wp-comments-list-table.php:411
7717
- msgid "Move this comment to the trash"
7718
- msgstr "Diesen Kommentar in den Papierkorb legen"
7719
-
7720
- #: wp-admin/includes/dashboard.php:707
7721
- #: wp-admin/includes/class-wp-comments-list-table.php:411
7722
- msgctxt "verb"
7723
- msgid "Trash"
7724
- msgstr "Papierkorb"
7725
-
7726
- #: wp-admin/includes/dashboard.php:733
7727
- msgid "From %1$s on %2$s%3$s"
7728
- msgstr "Von %1$s zu %2$s%3$s"
7729
-
7730
- #: wp-admin/includes/dashboard.php:734
7731
- msgid "[Pending]"
7732
- msgstr "[Anstehend]"
7733
-
7734
- #: wp-admin/includes/dashboard.php:753
7735
- msgctxt "dashboard"
7736
- msgid "%1$s on %2$s"
7737
- msgstr "%1$s bei %2$s"
7738
-
7739
- #: wp-admin/includes/dashboard.php:812
7740
- msgid "This dashboard widget queries <a href=\"http://blogsearch.google.com/\">Google Blog Search</a> so that when another blog links to your site it will show up here. It has found no incoming links&hellip; yet. It&#8217;s okay &#8212; there is no rush."
7741
- msgstr "Dieses Dashboard-Widget fragt die <a href=\"http://blogsearch.google.de/\">Google Blog-Suche</a> ab, so dass Blogs, die dich verlinken, hier erscheinen. Du bist bisher nirgends verlinkt … noch nicht."
7742
-
7743
- #: wp-admin/includes/dashboard.php:836 wp-admin/includes/dashboard.php:838
7744
- #: wp-admin/includes/post.php:1228
7745
- msgid "Somebody"
7746
- msgstr "Jemand"
7747
-
7748
- #: wp-admin/includes/dashboard.php:850
7749
- msgid "%1$s linked here <a href=\"%2$s\">saying</a>, \"%3$s\""
7750
- msgstr "%1$s verlinkt hierher in dem <a href=\"%2$s\">Artikel</a>, \"%3$s\""
7751
-
7752
- #: wp-admin/includes/dashboard.php:853
7753
- msgid "%1$s linked here saying, \"%3$s\""
7754
- msgstr "%1$s verlinkt hierher mit dem Begriff \"%3$s\"|Feedanzeige"
7755
-
7756
- #: wp-admin/includes/dashboard.php:858
7757
- msgid "on %4$s"
7758
- msgstr "zu %4$s"
7759
-
7760
- #: wp-admin/includes/dashboard.php:960
7761
- msgid "Most Popular"
7762
- msgstr "Beliebt"
7763
-
7764
- #: wp-admin/includes/dashboard.php:960
7765
- msgid "Newest Plugins"
7766
- msgstr "Neue Plugins"
7767
-
7768
- #: wp-admin/includes/dashboard.php:960
7769
- msgid "Recently Updated"
7770
- msgstr "Frisch aktualisiert"
7771
-
7772
- #: wp-admin/includes/dashboard.php:1018 wp-admin/includes/theme-install.php:143
7773
- msgid "Install"
7774
- msgstr "Jetzt installieren"
7775
-
7776
- #: wp-admin/includes/dashboard.php:1042
7777
- msgid "Loading&#8230;"
7778
- msgstr "Wird geladen&#8230;"
7779
-
7780
- #: wp-admin/includes/dashboard.php:1042
7781
- msgid "This widget requires JavaScript."
7782
- msgstr "Dieses Widget benötigt JavaScript."
7783
-
7784
- #: wp-admin/includes/dashboard.php:1154
7785
- msgid "Storage Space"
7786
- msgstr "Speicherplatz"
7787
-
7788
- #: wp-admin/includes/dashboard.php:1158
7789
- msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB</a>"
7790
- msgstr "<a href=\"%1$s\" title=\"Mediathek verwalten\" class=\"musublink\">%2$sMB</a>"
7791
-
7792
- #: wp-admin/includes/dashboard.php:1159
7793
- msgid "Space Allowed"
7794
- msgstr "Zugewiesener Speicherplatz"
7795
-
7796
- #: wp-admin/includes/dashboard.php:1166
7797
- msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB (%3$s%%)</a>"
7798
- msgstr "<a href=\"%1$s\" title=\"Uploads verwalten\" class=\"musublink\">%2$sMB (%3$s%%)</a>"
7799
-
7800
- #: wp-admin/includes/dashboard.php:1167
7801
- msgid "Space Used"
7802
- msgstr "Verbrauchter Speicherplatz"
7803
-
7804
- #: wp-admin/includes/dashboard.php:1183
7805
- msgid "It looks like you're using an insecure version of <a href='%s'>%s</a>. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser."
7806
- msgstr "Es scheint, als würdest du eine unsichere Version von <a href='%s'>%s</a> verwenden. Die Nutzung eines veralteten Browsers kann deinen Computer gefährden. Um das optimale Nutzungserlebnis mit WordPress zu haben, solltest du deinen Browser auf eine neue Version aktualisieren."
7807
-
7808
- #: wp-admin/includes/dashboard.php:1185
7809
- msgid "It looks like you're using an old version of <a href='%s'>%s</a>. For the best WordPress experience, please update your browser."
7810
- msgstr "Du scheinst eine alte Version von <a href='%s'>%s</a> zu verwenden. Für das beste Nutzungserlebnis mit WordPress solltest du deinen Browser auf die aktuellste Version aktualisieren."
7811
-
7812
- #: wp-admin/includes/dashboard.php:1196
7813
- msgid "<a href=\"%1$s\" class=\"update-browser-link\">Update %2$s</a> or learn how to <a href=\"%3$s\" class=\"browse-happy-link\">browse happy</a>"
7814
- msgstr "<a href=\"%1$s\" class=\"update-browser-link\">Aktualisiere %2$s</a> oder informiere dich über Alternativen bei <a href=\"%3$s\" class=\"browse-happy-link\">browse happy</a>"
7815
-
7816
- #: wp-admin/includes/class-wp-filesystem-base.php:212
7817
- msgid "Changing to %s"
7818
- msgstr "Geändert zu %s"
7819
-
7820
- #: wp-admin/includes/class-wp-filesystem-base.php:221
7821
- msgid "Found %s"
7822
- msgstr "Gefunden %s"
7823
-
7824
- #: wp-admin/includes/class-wp-posts-list-table.php:141
7825
- msgctxt "posts"
7826
- msgid "Mine <span class=\"count\">(%s)</span>"
7827
- msgid_plural "Mine <span class=\"count\">(%s)</span>"
7828
- msgstr[0] "Mein Artikel: <span class=\"count\">(%s)</span>"
7829
- msgstr[1] "Meine Artikel: <span class=\"count\">(%s)</span>"
7830
-
7831
- #: wp-admin/includes/class-wp-posts-list-table.php:152
7832
- msgctxt "posts"
7833
- msgid "All <span class=\"count\">(%s)</span>"
7834
- msgid_plural "All <span class=\"count\">(%s)</span>"
7835
- msgstr[0] "Alle <span class=\"count\">(%s)</span>"
7836
- msgstr[1] "Alle <span class=\"count\">(%s)</span>"
7837
-
7838
- #: wp-admin/includes/class-wp-posts-list-table.php:174
7839
- msgctxt "posts"
7840
- msgid "Sticky <span class=\"count\">(%s)</span>"
7841
- msgid_plural "Sticky <span class=\"count\">(%s)</span>"
7842
- msgstr[0] "Oben gehalten <span class=\"count\">(%s)</span>"
7843
- msgstr[1] "Oben gehalten <span class=\"count\">(%s)</span>"
7844
-
7845
- #: wp-admin/includes/class-wp-posts-list-table.php:195
7846
- #: wp-admin/includes/media.php:1159
7847
- #: wp-admin/includes/class-wp-comments-list-table.php:202
7848
- #: wp-admin/includes/meta-boxes.php:200 wp-admin/edit-form-comment.php:71
7849
- msgid "Move to Trash"
7850
- msgstr "In den Papierkorb legen"
7851
-
7852
- #: wp-admin/includes/class-wp-posts-list-table.php:211
7853
- #: wp-admin/includes/class-wp-links-list-table.php:64
7854
- msgid "View all categories"
7855
- msgstr "Alle Kategorien"
7856
-
7857
- #: wp-admin/includes/class-wp-posts-list-table.php:221
7858
- #: wp-admin/includes/class-wp-comments-list-table.php:227
7859
- #: wp-admin/includes/class-wp-media-list-table.php:94
7860
- #: wp-admin/includes/class-wp-links-list-table.php:71
7861
- msgid "Filter"
7862
- msgstr "Auswahl einschränken"
7863
-
7864
- #: wp-admin/includes/class-wp-posts-list-table.php:225
7865
- #: wp-admin/includes/class-wp-comments-list-table.php:232
7866
- #: wp-admin/includes/class-wp-media-list-table.php:100
7867
- msgid "Empty Trash"
7868
- msgstr "Papierkorb leeren"
7869
-
7870
- #: wp-admin/includes/class-wp-posts-list-table.php:267
7871
- msgctxt "column name"
7872
- msgid "Title"
7873
- msgstr "Titel"
7874
-
7875
- #: wp-admin/includes/class-wp-posts-list-table.php:537
7876
- msgid "Edit this item"
7877
- msgstr "Dieses Element bearbeiten"
7878
-
7879
- #: wp-admin/includes/class-wp-posts-list-table.php:538
7880
- msgid "Edit this item inline"
7881
- msgstr "Dieses Element direkt mit QuickEdit bearbeiten"
7882
-
7883
- #: wp-admin/includes/class-wp-posts-list-table.php:538
7884
- #: wp-admin/includes/class-wp-comments-list-table.php:416
7885
- #: wp-admin/includes/class-wp-terms-list-table.php:259
7886
- msgid "Quick&nbsp;Edit"
7887
- msgstr "QuickEdit"
7888
-
7889
- #: wp-admin/includes/class-wp-posts-list-table.php:542
7890
- msgid "Restore this item from the Trash"
7891
- msgstr "Dieses Element aus dem Papierkorb wiederherstellen"
7892
-
7893
- #: wp-admin/includes/class-wp-posts-list-table.php:544
7894
- msgid "Move this item to the Trash"
7895
- msgstr "Element in den Papierkorb verschieben"
7896
-
7897
- #: wp-admin/includes/class-wp-posts-list-table.php:544
7898
- #: wp-admin/includes/class-wp-media-list-table.php:362
7899
- #: wp-admin/includes/class-wp-media-list-table.php:378
7900
- msgid "Trash"
7901
- msgstr "Papierkorb"
7902
-
7903
- #: wp-admin/includes/class-wp-posts-list-table.php:546
7904
- msgid "Delete this item permanently"
7905
- msgstr "Element dauerhaft löschen"
7906
-
7907
- #: wp-admin/includes/class-wp-posts-list-table.php:551
7908
- #: wp-admin/includes/class-wp-themes-list-table.php:153
7909
- #: wp-admin/includes/class-wp-upgrader.php:1421
7910
- #: wp-admin/includes/class-wp-upgrader.php:1477
7911
- #: wp-admin/includes/theme-install.php:145
7912
- #: wp-admin/includes/theme-install.php:153
7913
- msgid "Preview &#8220;%s&#8221;"
7914
- msgstr "&#8220;%s&#8221; ansehen"
7915
-
7916
- #: wp-admin/includes/class-wp-posts-list-table.php:553
7917
- #: wp-admin/includes/class-wp-media-list-table.php:367
7918
- #: wp-admin/includes/class-wp-media-list-table.php:386
7919
- msgid "View &#8220;%s&#8221;"
7920
- msgstr "&#8220;%s&#8221; ansehen"
7921
-
7922
- #: wp-admin/includes/class-wp-posts-list-table.php:553
7923
- #: wp-admin/includes/class-wp-terms-list-table.php:263
7924
- #: wp-admin/includes/class-wp-media-list-table.php:367
7925
- #: wp-admin/includes/class-wp-media-list-table.php:386
7926
- msgid "View"
7927
- msgstr "Ansehen"
7928
-
7929
- #: wp-admin/includes/class-wp-posts-list-table.php:566
7930
- #: wp-admin/includes/class-wp-media-list-table.php:277
7931
- msgid "Unpublished"
7932
- msgstr "nicht veröffentlicht"
7933
-
7934
- #: wp-admin/includes/class-wp-posts-list-table.php:576
7935
- #: wp-admin/includes/plugin-install.php:315
7936
- #: wp-admin/includes/class-wp-comments-list-table.php:334
7937
- #: wp-admin/includes/theme-install.php:165
7938
- #: wp-admin/includes/class-wp-media-list-table.php:286
7939
- #: wp-content/plugins/akismet/admin.php:369
7940
- #: wp-content/plugins/akismet/admin.php:397
7941
- msgid "%s ago"
7942
- msgstr "vor %s"
7943
-
7944
- #: wp-admin/includes/class-wp-posts-list-table.php:591
7945
- msgid "Missed schedule"
7946
- msgstr "Fehlende Planung"
7947
-
7948
- #: wp-admin/includes/class-wp-posts-list-table.php:595
7949
- msgid "Last Modified"
7950
- msgstr "Zuletzt geändert"
7951
-
7952
- #: wp-admin/includes/class-wp-posts-list-table.php:634
7953
- #: wp-admin/includes/class-wp-media-list-table.php:262
7954
- msgid "No Tags"
7955
- msgstr "Keine Schlagwörter"
7956
-
7957
- #: wp-admin/includes/class-wp-posts-list-table.php:727
7958
- msgid "Bulk Edit"
7959
- msgstr "Massenbearbeitung"
7960
-
7961
- #: wp-admin/includes/class-wp-posts-list-table.php:727
7962
- #: wp-admin/includes/class-wp-comments-list-table.php:416
7963
- #: wp-admin/includes/class-wp-terms-list-table.php:337
7964
- msgid "Quick Edit"
7965
- msgstr "QuickEdit"
7966
-
7967
- #: wp-admin/includes/class-wp-posts-list-table.php:772
7968
- #: wp-admin/includes/class-wp-posts-list-table.php:855
7969
- #: wp-admin/includes/class-wp-posts-list-table.php:880
7970
- #: wp-admin/includes/class-wp-posts-list-table.php:914
7971
- #: wp-admin/includes/class-wp-posts-list-table.php:923
7972
- #: wp-admin/includes/class-wp-posts-list-table.php:955
7973
- #: wp-admin/includes/class-wp-posts-list-table.php:976
7974
- #: wp-admin/includes/class-wp-posts-list-table.php:1004
7975
- msgid "&mdash; No Change &mdash;"
7976
- msgstr "&mdash; Keine Änderung &mdash;"
7977
-
7978
- #: wp-admin/includes/class-wp-posts-list-table.php:798
7979
- msgid "&ndash;OR&ndash;"
7980
- msgstr "&ndash; ODER &ndash;"
7981
-
7982
- #: wp-admin/includes/class-wp-posts-list-table.php:818
7983
- msgid "[more]"
7984
- msgstr "[mehr]"
7985
-
7986
- #: wp-admin/includes/class-wp-posts-list-table.php:819
7987
- msgid "[less]"
7988
- msgstr "[weniger]"
7989
-
7990
- #: wp-admin/includes/class-wp-posts-list-table.php:843
7991
- #: wp-admin/includes/meta-boxes.php:577 wp-admin/includes/meta-boxes.php:578
7992
- msgid "Parent"
7993
- msgstr "Eltern"
7994
-
7995
- #: wp-admin/includes/class-wp-posts-list-table.php:849
7996
- msgid "Main Page (no parent)"
7997
- msgstr "Hauptseite (keine Übergeordnete)"
7998
-
7999
- #: wp-admin/includes/class-wp-posts-list-table.php:867
8000
- #: wp-admin/includes/media.php:944 wp-admin/includes/media.php:1647
8001
- #: wp-admin/includes/meta-boxes.php:593 wp-admin/includes/meta-boxes.php:594
8002
- msgid "Order"
8003
- msgstr "Reihenfolge"
8004
-
8005
- #: wp-admin/includes/class-wp-posts-list-table.php:877
8006
- #: wp-admin/includes/meta-boxes.php:586
8007
- msgid "Template"
8008
- msgstr "Template"
8009
-
8010
- #: wp-admin/includes/class-wp-posts-list-table.php:882
8011
- #: wp-admin/includes/meta-boxes.php:588
8012
- msgid "Default Template"
8013
- msgstr "Standardtemplate"
8014
-
8015
- #: wp-admin/includes/class-wp-posts-list-table.php:915
8016
- #: wp-admin/includes/class-wp-posts-list-table.php:924
8017
- msgid "Allow"
8018
- msgstr "Erlauben"
8019
-
8020
- #: wp-admin/includes/class-wp-posts-list-table.php:916
8021
- #: wp-admin/includes/class-wp-posts-list-table.php:925
8022
- msgid "Do not allow"
8023
- msgstr "Nicht erlauben"
8024
-
8025
- #: wp-admin/includes/class-wp-posts-list-table.php:921
8026
- #: wp-admin/includes/class-wp-comments-list-table.php:219
8027
- msgid "Pings"
8028
- msgstr "Pings"
8029
-
8030
- #: wp-admin/includes/class-wp-posts-list-table.php:937
8031
- msgid "Allow Comments"
8032
- msgstr "Erlaube Kommentare"
8033
-
8034
- #: wp-admin/includes/class-wp-posts-list-table.php:942
8035
- msgid "Allow Pings"
8036
- msgstr "Erlaube Pings"
8037
-
8038
- #: wp-admin/includes/class-wp-posts-list-table.php:974
8039
- #: wp-admin/includes/class-wp-posts-list-table.php:977
8040
- #: wp-admin/includes/template.php:1461
8041
- msgid "Sticky"
8042
- msgstr "Artikel oben halten"
8043
-
8044
- #: wp-admin/includes/class-wp-posts-list-table.php:978
8045
- msgid "Not Sticky"
8046
- msgstr "Nicht oben halten"
8047
-
8048
- #: wp-admin/includes/class-wp-posts-list-table.php:986
8049
- msgid "Make this post sticky"
8050
- msgstr "Diesen Artikel oben halten"
8051
-
8052
- #: wp-admin/includes/class-wp-posts-list-table.php:1001
8053
- msgid "Post Format"
8054
- msgstr "Artikelformatvorlage"
8055
-
8056
- #: wp-admin/includes/image-edit.php:19 wp-admin/includes/image-edit.php:545
8057
- msgid "Image data does not exist. Please re-upload the image."
8058
- msgstr "Es liegen keine Bilddaten vor, bitte lade das Bild erneut hoch."
8059
-
8060
- #: wp-admin/includes/image-edit.php:40
8061
- msgid "Crop"
8062
- msgstr "Ausschnitt"
8063
-
8064
- #: wp-admin/includes/image-edit.php:44
8065
- msgid "Rotate counter-clockwise"
8066
- msgstr "Gegen den Uhrzeigersinn drehen"
8067
-
8068
- #: wp-admin/includes/image-edit.php:45
8069
- msgid "Rotate clockwise"
8070
- msgstr "Im Uhrzeigersinn drehen"
8071
-
8072
- #: wp-admin/includes/image-edit.php:47
8073
- msgid "Image rotation is not supported by your web host (function imagerotate() is missing)"
8074
- msgstr "Die Bilddrehung wird von deinem Webhost nicht unterstützt (die Funktion imagerotate() fehlt)"
8075
-
8076
- #: wp-admin/includes/image-edit.php:53
8077
- msgid "Flip vertically"
8078
- msgstr "Vertikal kippen"
8079
-
8080
- #: wp-admin/includes/image-edit.php:54
8081
- msgid "Flip horizontally"
8082
- msgstr "Horizontal kippen"
8083
-
8084
- #: wp-admin/includes/image-edit.php:82
8085
- msgid "Scale Image"
8086
- msgstr "Bild skalieren"
8087
-
8088
- #: wp-admin/includes/image-edit.php:84
8089
- msgid "You can proportionally scale the original image. For best results the scaling should be done before performing any other operations on it like crop, rotate, etc. Note that if you make the image larger it may become fuzzy."
8090
- msgstr "Du kannst das Originalbild proportional skalieren. Um das beste Ergebnis zu bekommen, solltest du die Skalierung durchführen, bevor du weitere Bearbeitungen vornimmst. Beachte, dass vergrößerte Bilder unschärfer werden."
8091
-
8092
- #: wp-admin/includes/image-edit.php:85
8093
- msgid "Original dimensions %s"
8094
- msgstr "Originalgröße %s"
8095
-
8096
- #: wp-admin/includes/image-edit.php:99
8097
- msgid "Discard any changes and restore the original image."
8098
- msgstr "Änderungen verwerfen und Originalbild wiederherstellen."
8099
-
8100
- #: wp-admin/includes/image-edit.php:102
8101
- msgid "Previously edited copies of the image will not be deleted."
8102
- msgstr "Bereits bearbeitete Kopien des Bildes werden nicht gelöscht."
8103
-
8104
- #: wp-admin/includes/image-edit.php:106
8105
- msgid "Restore image"
8106
- msgstr "Bild wieder herstellen"
8107
-
8108
- #: wp-admin/includes/image-edit.php:117
8109
- msgid "Image Crop"
8110
- msgstr "Bildausschnitt"
8111
-
8112
- #: wp-admin/includes/image-edit.php:118 wp-admin/includes/image-edit.php:164
8113
- msgid "(help)"
8114
- msgstr "(Hilfe)"
8115
-
8116
- #: wp-admin/includes/image-edit.php:120
8117
- msgid "The image can be cropped by clicking on it and dragging to select the desired part. While dragging the dimensions of the selection are displayed below."
8118
- msgstr "Das Bild kann beschnitten werden indem du mit gehaltener linker Maustaste drauf klickst und die Auswahl auf den gewünschten Ausschnit ziehst. Während des ziehens wird die Größe des Ausschnits angezeigt."
8119
-
8120
- #: wp-admin/includes/image-edit.php:121 wp-admin/user-edit.php:221
8121
- msgid "Keyboard Shortcuts"
8122
- msgstr "Tastaturkürzel"
8123
-
8124
- #: wp-admin/includes/image-edit.php:123
8125
- msgid "Arrow: move by 10px"
8126
- msgstr "Pfeiltasten: um 10px bewegen"
8127
-
8128
- #: wp-admin/includes/image-edit.php:124
8129
- msgid "Shift + arrow: move by 1px"
8130
- msgstr "Shift + Pfeil: um 1px bewegen"
8131
-
8132
- #: wp-admin/includes/image-edit.php:125
8133
- msgid "Ctrl + arrow: resize by 10px"
8134
- msgstr "Ctrl + Pfeil: Größe um 10px ändern"
8135
-
8136
- #: wp-admin/includes/image-edit.php:126
8137
- msgid "Ctrl + Shift + arrow: resize by 1px"
8138
- msgstr "Ctrl + Shift + Pfeil: Größe um 1px ändern"
8139
-
8140
- #: wp-admin/includes/image-edit.php:127
8141
- msgid "Shift + drag: lock aspect ratio"
8142
- msgstr "Shift + Maus: Bildformat ändern"
8143
-
8144
- #: wp-admin/includes/image-edit.php:130
8145
- msgid "Crop Aspect Ratio"
8146
- msgstr "Bildformat des Ausschnitts"
8147
-
8148
- #: wp-admin/includes/image-edit.php:131
8149
- msgid "You can specify the crop selection aspect ratio then hold down the Shift key while dragging to lock it. The values can be 1:1 (square), 4:3, 16:9, etc. If there is a selection, specifying aspect ratio will set it immediately."
8150
- msgstr "Du kannst das Bildformat des Ausschnitts ändern, indem du die Shift-Taste gedrückt hälst, während du den Ausschnitt mit der Maus ziehst. Du kannst das Bildformat auch angeben: 1:1, 4:3, 16:9, etc. Wenn ein Ausschnitt vorhanden ist, wird das Bildformat unverzüglich geändert."
8151
-
8152
- #: wp-admin/includes/image-edit.php:133
8153
- msgid "Crop Selection"
8154
- msgstr "Ausschnittsbereich"
8155
-
8156
- #: wp-admin/includes/image-edit.php:134
8157
- msgid "Once started, the selection can be adjusted by entering new values (in pixels). Note that these values are scaled to approximately match the original image dimensions. The minimum selection size equals the thumbnail size as set in the Media settings."
8158
- msgstr "Der Ausschnitt kann verändert werden, indem du neue Werte (in Pixeln) angibst. Beachte, dass diese Werte annähernd auf die original Bildmaße skaliert werden. Die minimale Größe des Ausschnitts entspricht der Größe des Miniaturbilds, welche in den Einstellungen der Mediathek angegeben eurden."
8159
-
8160
- #: wp-admin/includes/image-edit.php:139
8161
- msgid "Aspect ratio:"
8162
- msgstr "Bildformat:"
8163
-
8164
- #: wp-admin/includes/image-edit.php:148
8165
- msgid "Selection:"
8166
- msgstr "Auswahl:"
8167
-
8168
- #: wp-admin/includes/image-edit.php:163
8169
- msgid "Thumbnail Settings"
8170
- msgstr "Miniaturbild-Einstellungen"
8171
-
8172
- #: wp-admin/includes/image-edit.php:165
8173
- msgid "The thumbnail image can be cropped differently. For example it can be square or contain only a portion of the original image to showcase it better. Here you can select whether to apply changes to all image sizes or make the thumbnail different."
8174
- msgstr "Das Miniaturbild kann auf verschiedene Arten beschnitten werden. Es kann beispielsweise nur einen Teil des Bildes beinhalten. Hier kannst du auswählen, ob die Änderungen nur auf das Miniaturbild oder auf alle Bildgrößen angewandt werden sollen."
8175
-
8176
- #: wp-admin/includes/image-edit.php:169
8177
- msgid "Current thumbnail"
8178
- msgstr "Das aktuelle Miniaturbild"
8179
-
8180
- #: wp-admin/includes/image-edit.php:173
8181
- msgid "Apply changes to:"
8182
- msgstr "Änderungen anwenden auf:"
8183
-
8184
- #: wp-admin/includes/image-edit.php:177
8185
- msgid "All image sizes"
8186
- msgstr "Alle Bildgrößen"
8187
-
8188
- #: wp-admin/includes/image-edit.php:185
8189
- msgid "All sizes except thumbnail"
8190
- msgstr "Alle Größen außer dem Miniaturbild"
8191
-
8192
- #: wp-admin/includes/image-edit.php:195
8193
- msgid "There are unsaved changes that will be lost. 'OK' to continue, 'Cancel' to return to the Image Editor."
8194
- msgstr "Es gibt ungespeicherte Änderungen, die verloren gehen. Klicke auf 'OK', um fortzufahren, oder auf 'Abbrechen', um zur Bildbearbeitung zurückzukehren."
8195
-
8196
- #: wp-admin/includes/image-edit.php:428
8197
- msgid "Cannot load image metadata."
8198
- msgstr "Die Bild-Metadaten konnten nicht geladen werden."
8199
-
8200
- #: wp-admin/includes/image-edit.php:483
8201
- msgid "Cannot save image metadata."
8202
- msgstr "Die Bild-Metadaten konnten nicht gespeichert werden."
8203
-
8204
- #: wp-admin/includes/image-edit.php:488
8205
- msgid "Image metadata is inconsistent."
8206
- msgstr "Die Bild-Metadaten sind inkonsistent."
8207
-
8208
- #: wp-admin/includes/image-edit.php:490
8209
- msgid "Image restored successfully."
8210
- msgstr "Das Bild wurde erfolgreich wiederhergestellt."
8211
-
8212
- #: wp-admin/includes/image-edit.php:503
8213
- msgid "Unable to create new image."
8214
- msgstr "Neues Bild konnte nicht erstellt werden."
8215
-
8216
- #: wp-admin/includes/image-edit.php:529
8217
- msgid "Error while saving the scaled image. Please reload the page and try again."
8218
- msgstr "Es gab einen Fehler beim speichern des skalierten Bilds. Bitte lade die Seite neu und versuche es nochmal."
8219
-
8220
- #: wp-admin/includes/image-edit.php:537
8221
- msgid "Nothing to save, the image has not changed."
8222
- msgstr "Es gibt nichts zu speichern, das Bild wurde nicht verändert."
8223
-
8224
- #: wp-admin/includes/image-edit.php:580
8225
- msgid "Unable to save the image."
8226
- msgstr "Das Bild konnte nicht gespeichert werden."
8227
-
8228
- #: wp-admin/includes/image-edit.php:665
8229
- msgid "Image saved"
8230
- msgstr "Das Bild wurde gespeichert"
8231
-
8232
- #: wp-admin/includes/misc.php:566 wp-admin/user-edit.php:214
8233
- msgid "Admin Color Scheme"
8234
- msgstr "Farbschema verwalten"
8235
-
8236
- #: wp-admin/includes/class-wp-themes-list-table.php:65
8237
- #: wp-admin/includes/class-wp-list-table.php:190
8238
- msgid "No items found."
8239
- msgstr "Keine Elemente gefunden."
8240
-
8241
- #: wp-admin/includes/class-wp-themes-list-table.php:71
8242
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
8243
- msgstr "Du hast derzeit nur ein Theme für dieses Blog zur Benutzung freigeschaltet. Du kannst weitere Themes <a href=\"%1$s\">freischalten</a> oder <a href=\"%2$s\">installieren</a>."
8244
-
8245
- #: wp-admin/includes/class-wp-themes-list-table.php:75
8246
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
8247
- msgstr "Du hast derzeit nur ein Theme für dieses Blog zur Benutzung freigeschaltet. Du kannst weitere Themes <a href=\"%1$s\">freischalten</a>."
8248
-
8249
- #: wp-admin/includes/class-wp-themes-list-table.php:82
8250
- msgid "You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress.org Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
8251
- msgstr "Du hast derzeit nur ein Theme installiert. Um etwas Abwechslung in deinen Blog zu bringen, hast du jederzeit Zugriff auf über 1.000 kostenlose Themes des WordPress.org-Themeverzeichnisses: Klicke einfach auf den Link <em><a href=\"%s\">Themes installieren</a></em>."
8252
-
8253
- #: wp-admin/includes/class-wp-themes-list-table.php:88
8254
- msgid "Only the current theme is available to you. Contact the %s administrator for information about accessing additional themes."
8255
- msgstr "Du kannst nur das zurzeit aktive Theme benutzen. Kontaktiere den %s Administrator, um zu erfahren, wie du weitere Themes benutzen kannst."
8256
-
8257
- #: wp-admin/includes/class-wp-themes-list-table.php:146
8258
- msgid "Preview of &#8220;%s&#8221;"
8259
- msgstr "Voransicht von &#8220;%s&#8221;"
8260
-
8261
- #: wp-admin/includes/class-wp-themes-list-table.php:150
8262
- #: wp-admin/includes/class-wp-upgrader.php:1422
8263
- #: wp-admin/includes/class-wp-upgrader.php:1478
8264
- msgid "Activate &#8220;%s&#8221;"
8265
- msgstr "&#8220;%s&#8221; aktivieren"
8266
-
8267
- #: wp-admin/includes/class-wp-themes-list-table.php:152
8268
- #: wp-admin/includes/class-wp-upgrader.php:1422
8269
- #: wp-admin/includes/class-wp-upgrader.php:1478
8270
- #: wp-admin/includes/class-wp-plugins-list-table.php:252
8271
- #: wp-admin/includes/class-wp-plugins-list-table.php:373
8272
- msgid "Activate"
8273
- msgstr "Aktivieren"
8274
-
8275
- #: wp-admin/includes/class-wp-themes-list-table.php:155
8276
- msgid ""
8277
- "You are about to delete this theme '%s'\n"
8278
- " 'Cancel' to stop, 'OK' to delete."
8279
- msgstr ""
8280
- "Du bist im Begriff, dieses Theme zu löschen: '%s'\n"
8281
- "'Abbrechen' zum Stoppen, 'OK' zum Löschen."
8282
-
8283
- #: wp-admin/includes/class-wp-themes-list-table.php:155
8284
- #: wp-admin/includes/media.php:1153
8285
- #: wp-admin/includes/class-wp-users-list-table.php:130
8286
- #: wp-admin/includes/class-wp-users-list-table.php:252
8287
- #: wp-admin/includes/template.php:478
8288
- #: wp-admin/includes/class-wp-plugins-list-table.php:262
8289
- #: wp-admin/includes/class-wp-plugins-list-table.php:367
8290
- #: wp-admin/includes/class-wp-plugins-list-table.php:376
8291
- #: wp-admin/includes/class-wp-terms-list-table.php:83
8292
- #: wp-admin/includes/class-wp-terms-list-table.php:262
8293
- #: wp-admin/includes/class-wp-links-list-table.php:47
8294
- #: wp-admin/includes/class-wp-links-list-table.php:140
8295
- #: wp-admin/includes/widgets.php:206 wp-admin/includes/meta-boxes.php:642
8296
- #: wp-admin/widgets.php:289
8297
- msgid "Delete"
8298
- msgstr "Löschen"
8299
-
8300
- #: wp-admin/includes/class-wp-themes-list-table.php:172
8301
- msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
8302
- msgstr "Die Template-Dateien sind in <code>%2$s</code>. Die Stylesheets findet du in <code>%3$s</code>. <strong>%4$s</strong> verwendet Templates von <strong>%5$s</strong>. Änderungen in den Templates werden sich auf beide Themes auswirken."
8303
-
8304
- #: wp-admin/includes/class-wp-themes-list-table.php:174
8305
- msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
8306
- msgstr "Alle Dateien dieses Themes sind in <code>%2$s</code> zu finden."
8307
-
8308
- #: wp-admin/includes/media.php:18
8309
- msgid "From Computer"
8310
- msgstr "Vom Computer"
8311
-
8312
- #: wp-admin/includes/media.php:19
8313
- msgid "From URL"
8314
- msgstr "Von URL"
8315
-
8316
- #: wp-admin/includes/media.php:20
8317
- msgid "Gallery"
8318
- msgstr "Galerie"
8319
-
8320
- #: wp-admin/includes/media.php:53
8321
- msgid "Gallery (%s)"
8322
- msgstr "Galerie (%s)"
8323
-
8324
- #: wp-admin/includes/media.php:323
8325
- msgid "Uploads"
8326
- msgstr "Uploads"
8327
-
8328
- #: wp-admin/includes/media.php:323 wp-admin/includes/template.php:1380
8329
- msgid "WordPress"
8330
- msgstr "WordPress"
8331
-
8332
- #: wp-admin/includes/media.php:377
8333
- msgid "Upload/Insert %s"
8334
- msgstr "Hochladen/Einfügen %s"
8335
-
8336
- #: wp-admin/includes/media.php:711
8337
- msgid "Large"
8338
- msgstr "Groß"
8339
-
8340
- #: wp-admin/includes/media.php:780 wp-admin/includes/media.php:948
8341
- msgid "File URL"
8342
- msgstr "Datei-URL"
8343
-
8344
- #: wp-admin/includes/media.php:805 wp-admin/includes/media.php:1967
8345
- msgid "Alt text for the image, e.g. &#8220;The Mona Lisa&#8221;"
8346
- msgstr "Beschreibung des Bildes, z.Bsp. &#8220;Die Mona Lisa&#8221;"
8347
-
8348
- #: wp-admin/includes/media.php:865
8349
- msgid "Empty Title filled from filename."
8350
- msgstr "Wenn kein Titel angegeben wird, wird der Dateiname eingesetzt."
8351
-
8352
- #: wp-admin/includes/media.php:952
8353
- msgid "Location of the uploaded file."
8354
- msgstr "Ort der hochgeladenen Datei."
8355
-
8356
- #: wp-admin/includes/media.php:1050 wp-admin/includes/media.php:1633
8357
- msgid "Show"
8358
- msgstr "Anzeigen"
8359
-
8360
- #: wp-admin/includes/media.php:1051 wp-admin/includes/media.php:1634
8361
- msgid "Hide"
8362
- msgstr "Verstecken"
8363
-
8364
- #: wp-admin/includes/media.php:1124
8365
- msgid "File name:"
8366
- msgstr "Dateiname:"
8367
-
8368
- #: wp-admin/includes/media.php:1125
8369
- msgid "File type:"
8370
- msgstr "Dateityp:"
8371
-
8372
- #: wp-admin/includes/media.php:1126
8373
- msgid "Upload date:"
8374
- msgstr "Upload-Datum:"
8375
-
8376
- #: wp-admin/includes/media.php:1128
8377
- msgid "Dimensions:"
8378
- msgstr "Größe:"
8379
-
8380
- #: wp-admin/includes/media.php:1148 wp-admin/includes/media.php:1997
8381
- #: wp-admin/includes/media.php:2003 wp-admin/includes/media.php:2020
8382
- #: wp-admin/includes/media.php:2029
8383
- msgid "Insert into Post"
8384
- msgstr "In Artikel einfügen"
8385
-
8386
- #: wp-admin/includes/media.php:1154
8387
- msgid "You are about to delete <strong>%s</strong>."
8388
- msgstr "Du bist dabei, <strong>%s</strong> zu löschen."
8389
-
8390
- #: wp-admin/includes/media.php:1315
8391
- msgid "Sorry, you have filled your storage quota (%s MB)."
8392
- msgstr "Dein Speicherplatz von %s MB ist leider erschöpft."
8393
-
8394
- #: wp-admin/includes/media.php:1342
8395
- msgid "Allowed Files"
8396
- msgstr "Erlaubte Dateien"
8397
-
8398
- #: wp-admin/includes/media.php:1372
8399
- msgid "Select Files"
8400
- msgstr "Dateien auswählen"
8401
-
8402
- #: wp-admin/includes/media.php:1390
8403
- msgid "Maximum upload file size: %d%s."
8404
- msgstr "Maximale Upload-Dateigröße: %d%s."
8405
-
8406
- #: wp-admin/includes/media.php:2065
8407
- msgid "After a file has been uploaded, you can add titles and descriptions."
8408
- msgstr "Nachdem eine Datei hochgeladen wurde, kannst du unten den Titel und Beschreibungen hinzufügen."
8409
-
8410
- #: wp-admin/includes/media.php:1431
8411
- msgid "Add media files from your computer"
8412
- msgstr "Mediadateien von deinem Computer hinzufügen"
8413
-
8414
- #: wp-admin/includes/media.php:1460 wp-admin/includes/media.php:1657
8415
- #: wp-admin/includes/media.php:1902 wp-admin/media-upload.php:110
8416
- msgid "Save all changes"
8417
- msgstr "Alle Änderungen speichern"
8418
-
8419
- #: wp-admin/includes/media.php:1495
8420
- msgid "Insert media from another website"
8421
- msgstr "Medien von einer anderen Webseite einfügen"
8422
-
8423
- #: wp-admin/includes/media.php:1632
8424
- msgid "All Tabs:"
8425
- msgstr "Alle Tabs:"
8426
-
8427
- #: wp-admin/includes/media.php:1636
8428
- msgid "Sort Order:"
8429
- msgstr "Sortierung:"
8430
-
8431
- #: wp-admin/includes/media.php:1637 wp-admin/includes/media.php:1705
8432
- msgid "Ascending"
8433
- msgstr "Aufsteigend"
8434
-
8435
- #: wp-admin/includes/media.php:1638 wp-admin/includes/media.php:1708
8436
- msgid "Descending"
8437
- msgstr "Absteigend"
8438
-
8439
- #: wp-admin/includes/media.php:1639
8440
- msgctxt "verb"
8441
- msgid "Clear"
8442
- msgstr "Zurücksetzen"
8443
-
8444
- #: wp-admin/includes/media.php:1664
8445
- msgid "Gallery Settings"
8446
- msgstr "Galerieeinstellungen"
8447
-
8448
- #: wp-admin/includes/media.php:1669
8449
- msgid "Link thumbnails to:"
8450
- msgstr "Miniaturbilder verlinken auf:"
8451
-
8452
- #: wp-admin/includes/media.php:1674
8453
- msgid "Image File"
8454
- msgstr "Bilddatei"
8455
-
8456
- #: wp-admin/includes/media.php:1677
8457
- msgid "Attachment Page"
8458
- msgstr "Anhang-Seite"
8459
-
8460
- #: wp-admin/includes/media.php:1684
8461
- msgid "Order images by:"
8462
- msgstr "Bilder anordnern nach:"
8463
-
8464
- #: wp-admin/includes/media.php:1689
8465
- msgid "Menu order"
8466
- msgstr "Menüreihenfolge"
8467
-
8468
- #: wp-admin/includes/media.php:1691
8469
- msgid "Date/Time"
8470
- msgstr "Datum/Zeit"
8471
-
8472
- #: wp-admin/includes/media.php:1692
8473
- msgid "Random"
8474
- msgstr "Zufällig"
8475
-
8476
- #: wp-admin/includes/media.php:1700
8477
- msgid "Order:"
8478
- msgstr "Reihenfolge:"
8479
-
8480
- #: wp-admin/includes/media.php:1715
8481
- msgid "Gallery columns:"
8482
- msgstr "Galeriespalten"
8483
-
8484
- #: wp-admin/includes/media.php:1735
8485
- msgid "Insert gallery"
8486
- msgstr "Galerie einfügen"
8487
-
8488
- #: wp-admin/includes/media.php:1736
8489
- msgid "Update gallery settings"
8490
- msgstr "Galerieeinstellungen aktualisieren"
8491
-
8492
- #: wp-admin/includes/media.php:1808
8493
- msgid "All Types"
8494
- msgstr "Alle Arten"
8495
-
8496
- #: wp-admin/includes/media.php:1831 wp-admin/includes/nav-menu.php:627
8497
- #: wp-admin/includes/nav-menu.php:844
8498
- msgid "&laquo;"
8499
- msgstr "&laquo;"
8500
-
8501
- #: wp-admin/includes/media.php:1832 wp-admin/includes/nav-menu.php:628
8502
- #: wp-admin/includes/nav-menu.php:845
8503
- msgid "&raquo;"
8504
- msgstr "&raquo;"
8505
-
8506
- #: wp-admin/includes/media.php:1852
8507
- #: wp-admin/includes/class-wp-list-table.php:377
8508
- msgid "Show all dates"
8509
- msgstr "Jedes Datum"
8510
-
8511
- #: wp-admin/includes/media.php:1872
8512
- msgid "Filter &#187;"
8513
- msgstr "Auswahl einschränken &#187;"
8514
-
8515
- #: wp-admin/includes/media.php:1921
8516
- msgid "Image Caption"
8517
- msgstr "Bildbeschreibung"
8518
-
8519
- #: wp-admin/includes/media.php:1942
8520
- msgid "Audio, Video, or Other File"
8521
- msgstr "Audio, Video oder eine andere Datei"
8522
-
8523
- #: wp-admin/includes/media.php:1960
8524
- msgid "Link text, e.g. &#8220;Ransom Demands (PDF)&#8221;"
8525
- msgstr "Link-Text, z. B. &#8220;Rotkäppchen II – Der Wolf schlägt zurück (PDF)&#8221;"
8526
-
8527
- #: wp-admin/includes/media.php:1986
8528
- msgid "Link Image To:"
8529
- msgstr "Mit Bild verlinken:"
8530
-
8531
- #: wp-admin/includes/media.php:1991
8532
- msgid "Link to image"
8533
- msgstr "Mit Bild verlinken"
8534
-
8535
- #: wp-admin/includes/media.php:2088
8536
- msgid "Scale images to match the large size selected in %1$simage options%2$s (%3$d &times; %4$d)."
8537
- msgstr "Bilder skalieren, um die Maximale Bildgröße aus %1$sBildoptionen%2$s (%3$d &times; %4$d) zu erfüllen."
8538
-
8539
- #: wp-admin/includes/plugin-install.php:46 wp-admin/includes/theme.php:411
8540
- msgid "An Unexpected HTTP Error occurred during the API request."
8541
- msgstr "Während der API-Anfrage ist ein unerwarteter HTTP-Fehler aufgetreten."
8542
-
8543
- #: wp-admin/includes/plugin-install.php:50 wp-admin/includes/theme.php:415
8544
- msgid "An unknown error occurred."
8545
- msgstr "Es trat ein unbekannter Fehler auf."
8546
-
8547
- #: wp-admin/includes/plugin-install.php:84
8548
- msgid "Plugins extend and expand the functionality of WordPress. You may automatically install plugins from the <a href=\"http://wordpress.org/extend/plugins/\">WordPress Plugin Directory</a> or upload a plugin in .zip format via <a href=\"%s\">this page</a>."
8549
- msgstr "Plugins erweitern den Funktionsumfang von WordPress. Du kannst Plugins aus dem <a href=\"http://wordpress.org/extend/plugins/\">WordPress-Plugin-Verzeichnis</a> automatisch installieren oder ein Plugin im Zip-Format von <a href=\"%s\">dieser Seite</a> hochladen und installieren."
8550
-
8551
- #: wp-admin/includes/plugin-install.php:87
8552
- msgid "Search for plugins by keyword, author, or tag."
8553
- msgstr "Suche Plugins nach Schlüsselwort, Autor oder Schlagwort."
8554
-
8555
- #: wp-admin/includes/plugin-install.php:90
8556
- msgid "Popular tags"
8557
- msgstr "Populäre Schlagwörter"
8558
-
8559
- #: wp-admin/includes/plugin-install.php:91
8560
- msgid "You may also browse based on the most popular tags in the Plugin Directory:"
8561
- msgstr "Du kannst auch nach beliebten Schlagworten im Plugin-Verzeichnis suchen:"
8562
-
8563
- #: wp-admin/includes/plugin-install.php:126
8564
- #: wp-admin/includes/theme-install.php:61
8565
- msgid "Term"
8566
- msgstr "Begriff"
8567
-
8568
- #: wp-admin/includes/plugin-install.php:128
8569
- msgctxt "Plugin Installer"
8570
- msgid "Tag"
8571
- msgstr "Schlagwort"
8572
-
8573
- #: wp-admin/includes/plugin-install.php:131
8574
- #: wp-admin/includes/plugin-install.php:132
8575
- msgid "Search Plugins"
8576
- msgstr "Plugins suchen"
8577
-
8578
- #: wp-admin/includes/plugin-install.php:144
8579
- msgid "Install a plugin in .zip format"
8580
- msgstr "Installiere ein Plugin aus einem ZIP-Archiv"
8581
-
8582
- #: wp-admin/includes/plugin-install.php:145
8583
- msgid "If you have a plugin in a .zip format, you may install it by uploading it here."
8584
- msgstr "Wenn du ein Plugin im .zip-Format hast, kannst du es hier hochladen."
8585
-
8586
- #: wp-admin/includes/plugin-install.php:148
8587
- msgid "Plugin zip file"
8588
- msgstr "Plugin-ZIP-Archiv"
8589
-
8590
- #: wp-admin/includes/plugin-install.php:150
8591
- #: wp-admin/includes/plugin-install.php:291
8592
- #: wp-admin/includes/theme-install.php:122
8593
- #: wp-admin/includes/theme-install.php:291
8594
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:200
8595
- msgid "Install Now"
8596
- msgstr "Jetzt installieren"
8597
-
8598
- #: wp-admin/includes/plugin-install.php:266 wp-admin/update.php:103
8599
- msgid "Plugin Install"
8600
- msgstr "Plugin-Installation"
8601
-
8602
- #: wp-admin/includes/plugin-install.php:295
8603
- #: wp-admin/includes/theme-install.php:296
8604
- msgid "Install Update Now"
8605
- msgstr "Update jetzt installieren"
8606
-
8607
- #: wp-admin/includes/plugin-install.php:298
8608
- msgid "Newer Version (%s) Installed"
8609
- msgstr "Aktuellere Version (%s) installiert"
8610
-
8611
- #: wp-admin/includes/plugin-install.php:301
8612
- msgid "Latest Version Installed"
8613
- msgstr "Die aktuellste Version ist installiert"
8614
-
8615
- #: wp-admin/includes/plugin-install.php:307
8616
- msgid "FYI"
8617
- msgstr "Zu deiner Information"
8618
-
8619
- #: wp-admin/includes/plugin-install.php:312
8620
- #: wp-admin/includes/theme-install.php:163
8621
- msgid "Author:"
8622
- msgstr "Autor:"
8623
-
8624
- #: wp-admin/includes/plugin-install.php:314
8625
- #: wp-admin/includes/theme-install.php:165
8626
- msgid "Last Updated:"
8627
- msgstr "Zuletzt aktualisiert:"
8628
-
8629
- #: wp-admin/includes/plugin-install.php:317
8630
- #: wp-admin/includes/theme-install.php:167
8631
- msgid "Requires WordPress Version:"
8632
- msgstr "Benötigt WordPress Version: "
8633
-
8634
- #: wp-admin/includes/plugin-install.php:317
8635
- #: wp-admin/includes/theme-install.php:167
8636
- msgid "%s or higher"
8637
- msgstr "%s oder höher"
8638
-
8639
- #: wp-admin/includes/plugin-install.php:319
8640
- #: wp-admin/includes/theme-install.php:169
8641
- msgid "Compatible up to:"
8642
- msgstr "Kompatibel bis zu:"
8643
-
8644
- #: wp-admin/includes/plugin-install.php:321
8645
- #: wp-admin/includes/theme-install.php:171
8646
- msgid "Downloaded:"
8647
- msgstr "Heruntergeladen:"
8648
-
8649
- #: wp-admin/includes/plugin-install.php:321
8650
- #: wp-admin/includes/theme-install.php:171
8651
- msgid "%s time"
8652
- msgid_plural "%s times"
8653
- msgstr[0] "%s mal"
8654
- msgstr[1] "%s mal"
8655
-
8656
- #: wp-admin/includes/plugin-install.php:323
8657
- msgid "WordPress.org Plugin Page &#187;"
8658
- msgstr "WordPress.org Plugin-Seite &#187;"
8659
-
8660
- #: wp-admin/includes/plugin-install.php:325
8661
- msgid "Plugin Homepage &#187;"
8662
- msgstr "Plugin-Homepage &#187;"
8663
-
8664
- #: wp-admin/includes/plugin-install.php:329
8665
- msgid "Average Rating"
8666
- msgstr "Durchschnittliche Bewertung"
8667
-
8668
- #: wp-admin/includes/plugin-install.php:330
8669
- #: wp-admin/includes/plugin-install.php:338
8670
- #: wp-admin/includes/theme-install.php:173
8671
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:221
8672
- msgid "(based on %s rating)"
8673
- msgid_plural "(based on %s ratings)"
8674
- msgstr[0] "(basierend auf %s Abstimmung)"
8675
- msgstr[1] "(basierend auf %s Abstimmungen)"
8676
-
8677
- #: wp-admin/includes/plugin-install.php:332
8678
- #: wp-admin/includes/theme-install.php:175
8679
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:230
8680
- msgid "5 stars"
8681
- msgstr "5 Sterne"
8682
-
8683
- #: wp-admin/includes/plugin-install.php:333
8684
- #: wp-admin/includes/theme-install.php:176
8685
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:231
8686
- msgid "4 stars"
8687
- msgstr "4 Sterne"
8688
-
8689
- #: wp-admin/includes/plugin-install.php:334
8690
- #: wp-admin/includes/theme-install.php:177
8691
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:232
8692
- msgid "3 stars"
8693
- msgstr "3 Sterne"
8694
-
8695
- #: wp-admin/includes/plugin-install.php:335
8696
- #: wp-admin/includes/theme-install.php:178
8697
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:233
8698
- msgid "2 stars"
8699
- msgstr "2 Sterne"
8700
-
8701
- #: wp-admin/includes/plugin-install.php:336
8702
- #: wp-admin/includes/theme-install.php:179
8703
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:234
8704
- msgid "1 star"
8705
- msgstr "1 Stern"
8706
-
8707
- #: wp-admin/includes/plugin-install.php:344
8708
- msgid "<strong>Warning:</strong> This plugin has <strong>not been tested</strong> with your current version of WordPress."
8709
- msgstr "<strong>Achtung:</strong> Dieses Plugin wurde <strong>nicht</strong> mit deiner aktuellen WordPress Version getestet."
8710
-
8711
- #: wp-admin/includes/plugin-install.php:347
8712
- msgid "<strong>Warning:</strong> This plugin has <strong>not been marked as compatible</strong> with your version of WordPress."
8713
- msgstr "<strong>Achtung:</strong> Dieses Plugin wurde <strong>nicht als kompatibel</strong> mit deiner Version von WordPress markiert."
8714
-
8715
- #: wp-admin/includes/class-wp-theme-install-list-table.php:31
8716
- #: wp-admin/includes/file.php:26
8717
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:31
8718
- msgid "Search Results"
8719
- msgstr "Suchergebnisse"
8720
-
8721
- #: wp-admin/includes/class-wp-theme-install-list-table.php:33
8722
- msgctxt "Theme Installer"
8723
- msgid "Featured"
8724
- msgstr "Empfohlen"
8725
-
8726
- #: wp-admin/includes/class-wp-theme-install-list-table.php:35
8727
- msgctxt "Theme Installer"
8728
- msgid "Newest"
8729
- msgstr "Neueste"
8730
-
8731
- #: wp-admin/includes/class-wp-theme-install-list-table.php:36
8732
- msgctxt "Theme Installer"
8733
- msgid "Recently Updated"
8734
- msgstr "Vor kurzem aktualisiert"
8735
-
8736
- #: wp-admin/includes/class-wp-theme-install-list-table.php:98
8737
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:86
8738
- msgid "Try again"
8739
- msgstr "Versuche es nochmal"
8740
-
8741
- #: wp-admin/includes/class-wp-theme-install-list-table.php:109
8742
- msgid "No themes match your request."
8743
- msgstr "Es gibt kein passendes Thema zu deiner Auswahl."
8744
-
8745
- #: wp-admin/includes/deprecated.php:524
8746
- msgid "No matching users were found!"
8747
- msgstr "Es wurden keine übereinstimmenden Benutzer gefunden!"
8748
-
8749
- #: wp-admin/includes/deprecated.php:563
8750
- msgid "Displaying %s&#8211;%s of %s"
8751
- msgstr "Angezeigt %s&#8211;%s von %s"
8752
-
8753
- #: wp-admin/includes/class-wp-comments-list-table.php:133
8754
- msgid "No comments awaiting moderation&hellip; yet."
8755
- msgstr "Kein Kommentar in der Warteschlange: Bis jetzt!"
8756
-
8757
- #: wp-admin/includes/class-wp-comments-list-table.php:135
8758
- msgid "No comments found."
8759
- msgstr "Es wurden keine Kommentare gefunden."
8760
-
8761
- #: wp-admin/includes/class-wp-comments-list-table.php:146
8762
- msgctxt "comments"
8763
- msgid "All"
8764
- msgid_plural "All"
8765
- msgstr[0] "Alle"
8766
- msgstr[1] "Alle"
8767
-
8768
- #: wp-admin/includes/class-wp-comments-list-table.php:147
8769
- msgid "Pending <span class=\"count\">(<span class=\"pending-count\">%s</span>)</span>"
8770
- msgid_plural "Pending <span class=\"count\">(<span class=\"pending-count\">%s</span>)</span>"
8771
- msgstr[0] "Unerledigt <span class=\"count\">(<span class=\"pending-count\">%s</span>)</span>"
8772
- msgstr[1] "Unerledigt <span class=\"count\">(<span class=\"pending-count\">%s</span>)</span>"
8773
-
8774
- #: wp-admin/includes/class-wp-comments-list-table.php:148
8775
- msgid "Approved"
8776
- msgid_plural "Approved"
8777
- msgstr[0] "Genehmigt"
8778
- msgstr[1] "Genehmigte"
8779
-
8780
- #: wp-admin/includes/class-wp-comments-list-table.php:149
8781
- msgid "Spam <span class=\"count\">(<span class=\"spam-count\">%s</span>)</span>"
8782
- msgid_plural "Spam <span class=\"count\">(<span class=\"spam-count\">%s</span>)</span>"
8783
- msgstr[0] "Spam <span class=\"count\">(<span class=\"spam-count\">%s</span>)</span>"
8784
- msgstr[1] "Spam <span class=\"count\">(<span class=\"spam-count\">%s</span>)</span>"
8785
-
8786
- #: wp-admin/includes/class-wp-comments-list-table.php:150
8787
- msgid "Trash <span class=\"count\">(<span class=\"trash-count\">%s</span>)</span>"
8788
- msgid_plural "Trash <span class=\"count\">(<span class=\"trash-count\">%s</span>)</span>"
8789
- msgstr[0] "Papierkorb <span class=\"count\">(<span class=\"trash-count\">%s</span>)</span>"
8790
- msgstr[1] "Papierkorb <span class=\"count\">(<span class=\"trash-count\">%s</span>)</span>"
8791
-
8792
- #: wp-admin/includes/class-wp-comments-list-table.php:192
8793
- msgctxt "comment"
8794
- msgid "Mark as Spam"
8795
- msgstr "Als Spam markieren"
8796
-
8797
- #: wp-admin/includes/class-wp-comments-list-table.php:197
8798
- #: wp-admin/includes/class-wp-comments-list-table.php:403
8799
- msgctxt "comment"
8800
- msgid "Not Spam"
8801
- msgstr "Kein Spam"
8802
-
8803
- #: wp-admin/includes/class-wp-comments-list-table.php:215
8804
- msgid "Show all comment types"
8805
- msgstr "Zeige alle Kommentararten"
8806
-
8807
- #: wp-admin/includes/class-wp-comments-list-table.php:232
8808
- msgid "Empty Spam"
8809
- msgstr "Spam leeren"
8810
-
8811
- #: wp-admin/includes/class-wp-comments-list-table.php:255
8812
- #: wp-admin/includes/class-wp-comments-list-table.php:527
8813
- msgctxt "column name"
8814
- msgid "Comment"
8815
- msgstr "Kommentar"
8816
-
8817
- #: wp-admin/includes/class-wp-comments-list-table.php:258
8818
- msgctxt "column name"
8819
- msgid "In Response To"
8820
- msgstr "Als Antwort auf"
8821
-
8822
- #: wp-admin/includes/class-wp-comments-list-table.php:336
8823
- msgid "Y/m/d \\a\\t g:i A"
8824
- msgstr "d.m.Y \\u\\m H:i \\U\\h\\r"
8825
-
8826
- #: wp-admin/includes/class-wp-comments-list-table.php:355
8827
- msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
8828
- msgstr "Eingereicht am <a href=\"%1$s\">%2$s um %3$s</a>"
8829
-
8830
- #: wp-admin/includes/class-wp-comments-list-table.php:363
8831
- msgid "In reply to <a href=\"%1$s\">%2$s</a>."
8832
- msgstr "Als Antwort auf <a href=\"%1$s\">%2$s</a>."
8833
-
8834
- #: wp-admin/includes/class-wp-comments-list-table.php:475
8835
- msgid "Y/m/d \\a\\t g:ia"
8836
- msgstr "d.m.Y \\u\\m H:i \\U\\h\\r"
8837
-
8838
- #: wp-admin/includes/file.php:11
8839
- msgid "Main Index Template"
8840
- msgstr "Hauptindex-Template"
8841
-
8842
- #: wp-admin/includes/file.php:12 wp-admin/includes/file.php:40
8843
- msgid "Stylesheet"
8844
- msgstr "Stylesheet"
8845
-
8846
- #: wp-admin/includes/file.php:13
8847
- msgid "Visual Editor Stylesheet"
8848
- msgstr "Stylesheet für WYSIWYG-Editor"
8849
-
8850
- #: wp-admin/includes/file.php:14
8851
- msgid "Visual Editor RTL Stylesheet"
8852
- msgstr "Stylesheet für semitische Sprachen im WYSIWYG-Editor"
8853
-
8854
- #: wp-admin/includes/file.php:15
8855
- msgid "RTL Stylesheet"
8856
- msgstr "Stylesheet für semitische Sprachen"
8857
-
8858
- #: wp-admin/includes/file.php:17
8859
- msgid "Popup Comments"
8860
- msgstr "Popup-Kommentare"
8861
-
8862
- #: wp-admin/includes/file.php:18
8863
- msgid "Footer"
8864
- msgstr "Fußzeile"
8865
-
8866
- #: wp-admin/includes/file.php:22
8867
- msgid "Author Template"
8868
- msgstr "Autor-Template"
8869
-
8870
- #: wp-admin/includes/file.php:23
8871
- msgid "Tag Template"
8872
- msgstr "Schlagwort-Template"
8873
-
8874
- #: wp-admin/includes/file.php:24
8875
- msgid "Category Template"
8876
- msgstr "Kategorie-Template"
8877
-
8878
- #: wp-admin/includes/file.php:25 wp-admin/includes/meta-boxes.php:587
8879
- msgid "Page Template"
8880
- msgstr "Seiten-Template"
8881
-
8882
- #: wp-admin/includes/file.php:27
8883
- msgid "Search Form"
8884
- msgstr "Suchformular"
8885
-
8886
- #: wp-admin/includes/file.php:28
8887
- msgid "Single Post"
8888
- msgstr "Einzelner Artikel"
8889
-
8890
- #: wp-admin/includes/file.php:29
8891
- msgid "404 Template"
8892
- msgstr "404-Template"
8893
-
8894
- #: wp-admin/includes/file.php:30
8895
- msgid "Links Template"
8896
- msgstr "Links-Template"
8897
-
8898
- #: wp-admin/includes/file.php:31
8899
- msgid "Theme Functions"
8900
- msgstr "Theme-Funktionen"
8901
-
8902
- #: wp-admin/includes/file.php:32
8903
- msgid "Attachment Template"
8904
- msgstr "Anhang-Template"
8905
-
8906
- #: wp-admin/includes/file.php:33
8907
- msgid "Image Attachment Template"
8908
- msgstr "Anhang-Template (Bilder)"
8909
-
8910
- #: wp-admin/includes/file.php:34
8911
- msgid "Video Attachment Template"
8912
- msgstr "Anhang-Template (Videos)"
8913
-
8914
- #: wp-admin/includes/file.php:35
8915
- msgid "Audio Attachment Template"
8916
- msgstr "Anhang-Template (Audios)"
8917
-
8918
- #: wp-admin/includes/file.php:36
8919
- msgid "Application Attachment Template"
8920
- msgstr "Anhang-Template (Anwendung)"
8921
-
8922
- #: wp-admin/includes/file.php:37
8923
- msgid "my-hacks.php (legacy hacks support)"
8924
- msgstr "my-hacks.php (Legacy Hacks Support)"
8925
-
8926
- #: wp-admin/includes/file.php:38
8927
- msgid ".htaccess (for rewrite rules )"
8928
- msgstr ".htaccess (für Rewrite-Regeln)"
8929
-
8930
- #: wp-admin/includes/file.php:41
8931
- msgid "Comments Template"
8932
- msgstr "Kommentar-Template"
8933
-
8934
- #: wp-admin/includes/file.php:42
8935
- msgid "Popup Comments Template"
8936
- msgstr "Popup-Kommentar-Template"
8937
-
8938
- #: wp-admin/includes/file.php:65
8939
- msgid "%s Page Template"
8940
- msgstr "%s Seitentemplate"
8941
-
8942
- #: wp-admin/includes/file.php:202
8943
- msgid "Sorry, can&#8217;t edit files with &#8220;..&#8221; in the name. If you are trying to edit a file in your WordPress home directory, you can just type the name of the file in."
8944
- msgstr "Tut mir leid, Dateien mit &#8220;..&#8221; im Namen können leider nicht bearbeitet werden. Falls du versuchst eine Datei in deinem WordPress-Stammverzeichnis zu bearbeiten, kannst du auch einfach nur den Dateinamen eingeben."
8945
-
8946
- #: wp-admin/includes/file.php:208
8947
- msgid "Sorry, that file cannot be edited."
8948
- msgstr "Diese Datei kann leider nicht bearbeitet werden."
8949
-
8950
- #: wp-admin/includes/file.php:255
8951
- msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
8952
- msgstr "Die hochgeladene Datei überschreitet die maximale Größe von <code>upload_max_filesize</code>, die in der Datei <code>php.ini</code> eingetragen ist."
8953
-
8954
- #: wp-admin/includes/file.php:256
8955
- msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form."
8956
- msgstr "Die hochgeladene Datei überschreitet die maximale Größe von <em>MAX_FILE_SIZE</em>, die im HTML-Formular angegeben ist."
8957
-
8958
- #: wp-admin/includes/file.php:257 wp-admin/includes/file.php:403
8959
- msgid "The uploaded file was only partially uploaded."
8960
- msgstr "Die hochgeladene Datei ist nur zum Teil angekommen."
8961
-
8962
- #: wp-admin/includes/file.php:258 wp-admin/includes/file.php:404
8963
- msgid "No file was uploaded."
8964
- msgstr "Keine Datei hochgeladen!"
8965
-
8966
- #: wp-admin/includes/file.php:260 wp-admin/includes/file.php:406
8967
- msgid "Missing a temporary folder."
8968
- msgstr "Es fehlt ein temporärer Ordner."
8969
-
8970
- #: wp-admin/includes/file.php:261 wp-admin/includes/file.php:407
8971
- msgid "Failed to write file to disk."
8972
- msgstr "Konnte die Datei nicht auf die Festplatte kopieren."
8973
-
8974
- #: wp-admin/includes/file.php:262 wp-admin/includes/file.php:408
8975
- msgid "File upload stopped by extension."
8976
- msgstr "Der Datei-Upload wurde von eine Erweiterung gestoppt."
8977
-
8978
- #: wp-admin/includes/file.php:279 wp-admin/includes/file.php:424
8979
- msgid "Invalid form submission."
8980
- msgstr "Fehlerhafte Formulareingabe."
8981
-
8982
- #: wp-admin/includes/file.php:288
8983
- msgid "File is empty. Please upload something more substantial."
8984
- msgstr "Die Datei ist leer. Bitte lade etwas mit mehr Substanz hoch."
8985
-
8986
- #: wp-admin/includes/file.php:290 wp-admin/includes/import.php:63
8987
- msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini."
8988
- msgstr "Die Datei ist leer. Dieser Fehler kann daher rühren, das Uploads in deiner php.ini deaktiviert wurden, oder das in deiner php.ini \"post_max_size\" einen kleineren Wert hat als \"upload_max_filesize\"."
8989
-
8990
- #: wp-admin/includes/file.php:296
8991
- msgid "Specified file failed upload test."
8992
- msgstr "Fehler beim Uploadtest der ausgewählten Datei."
8993
-
8994
- #: wp-admin/includes/file.php:309 wp-admin/includes/file.php:449
8995
- msgid "Sorry, this file type is not permitted for security reasons."
8996
- msgstr "Tut mir leid, aber aus Sicherheitsgründen ist dieser Dateityp nicht erlaubt."
8997
-
8998
- #: wp-admin/includes/file.php:330 wp-admin/includes/file.php:471
8999
- msgid "The uploaded file could not be moved to %s."
9000
- msgstr "Die hochgeladene Datei konnte nicht nach %s verschoben werden."
9001
-
9002
- #: wp-admin/includes/file.php:401
9003
- msgid "The uploaded file exceeds the <code>upload_max_filesize</code> directive in <code>php.ini</code>."
9004
- msgstr "Die hochgeladene Datei überschreitet die maximale Größe von <code>upload_max_filesize</code>, die in der <code>php.ini</code> eingetragen ist."
9005
-
9006
- #: wp-admin/includes/file.php:402
9007
- msgid "The uploaded file exceeds the <em>MAX_FILE_SIZE</em> directive that was specified in the HTML form."
9008
- msgstr "Die hochgeladene Datei überschreitet die maximale Größe von <em>MAX_FILE_SIZE</em>, die im HTML-Formular angegeben ist."
9009
-
9010
- #: wp-admin/includes/file.php:432
9011
- msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini."
9012
- msgstr "Datei ist leer. Bitte lade etwas mit mehr Inhalt hoch. Dieser Fehler kann auch auftreten, wenn das Hochladen in der php.ini verboten ist."
9013
-
9014
- #: wp-admin/includes/file.php:436
9015
- msgid "Specified file does not exist."
9016
- msgstr "Die angegebene Datei existiert nicht."
9017
-
9018
- #: wp-admin/includes/file.php:500
9019
- msgid "Invalid URL Provided."
9020
- msgstr "Es wurde eine fehlerhafte URL übergeben."
9021
-
9022
- #: wp-admin/includes/file.php:504
9023
- msgid "Could not create Temporary file."
9024
- msgstr "Es konnte keine temopäre Datei erstellt werden."
9025
-
9026
- #: wp-admin/includes/file.php:538 wp-admin/includes/class-wp-upgrader.php:42
9027
- #: wp-admin/includes/plugin.php:684 wp-admin/includes/theme.php:94
9028
- msgid "Could not access filesystem."
9029
- msgstr "Konnte nicht auf das Dateisystem zugreifen."
9030
-
9031
- #: wp-admin/includes/file.php:598 wp-admin/includes/file.php:692
9032
- msgid "Incompatible Archive."
9033
- msgstr "Inkompatibles Archiv."
9034
-
9035
- #: wp-admin/includes/file.php:602 wp-admin/includes/file.php:638
9036
- msgid "Could not retrieve file from archive."
9037
- msgstr "Die Datei konnte nicht im ZIP-Archiv gefunden werden."
9038
-
9039
- #: wp-admin/includes/file.php:632 wp-admin/includes/file.php:724
9040
- #: wp-admin/includes/file.php:783 wp-admin/includes/class-wp-upgrader.php:54
9041
- #: wp-admin/includes/update-core.php:591
9042
- msgid "Could not create directory."
9043
- msgstr "Verzeichnis konnte nicht angelegt werden."
9044
-
9045
- #: wp-admin/includes/file.php:648
9046
- msgid "Could not extract file from archive."
9047
- msgstr "Die Datei konnte nicht aus dem Archiv extrahiert werden."
9048
-
9049
- #: wp-admin/includes/file.php:651 wp-admin/includes/file.php:737
9050
- #: wp-admin/includes/file.php:778 wp-admin/includes/update-core.php:494
9051
- #: wp-admin/includes/update-core.php:586
9052
- msgid "Could not copy file."
9053
- msgstr "Die Datei konnte nicht kopiert werden."
9054
-
9055
- #: wp-admin/includes/file.php:695
9056
- msgid "Empty archive."
9057
- msgstr "Leeres Archiv."
9058
-
9059
- #: wp-admin/includes/file.php:968
9060
- msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
9061
- msgstr "<strong>FEHLER:</strong> Bei der Verbindung zum Server trat ein Fehler auf. Bitte überprüfe die Einstellungen."
9062
-
9063
- #: wp-admin/includes/file.php:976
9064
- msgid "FTP"
9065
- msgstr "FTP"
9066
-
9067
- #: wp-admin/includes/file.php:978
9068
- msgid "FTPS (SSL)"
9069
- msgstr "FTPS (SSL)"
9070
-
9071
- #: wp-admin/includes/file.php:980
9072
- msgid "SSH2"
9073
- msgstr "SSH2"
9074
-
9075
- #: wp-admin/includes/file.php:1001
9076
- msgid "Connection Information"
9077
- msgstr "Verbindungsinformation"
9078
-
9079
- #: wp-admin/includes/file.php:1005
9080
- msgid "To perform the requested action, WordPress needs to access your web server."
9081
- msgstr "Um diese Aktion durchführen zu können, benötigt WordPress Zugriff auf deinen Webserver."
9082
-
9083
- #: wp-admin/includes/file.php:1009
9084
- msgid "Please enter your FTP or SSH credentials to proceed."
9085
- msgstr "Bitte gib die FTP-Serverdaten oder SSH-Verbindungsdaten ein, um fortzufahren."
9086
-
9087
- #: wp-admin/includes/file.php:1010
9088
- msgid "FTP/SSH Username"
9089
- msgstr "FTP/SSH Benutzername"
9090
-
9091
- #: wp-admin/includes/file.php:1011
9092
- msgid "FTP/SSH Password"
9093
- msgstr "FTP/SSH Passwort"
9094
-
9095
- #: wp-admin/includes/file.php:1013
9096
- msgid "Please enter your FTP credentials to proceed."
9097
- msgstr "Bitte gib die FTP-Serverdaten ein, um fortzufahren."
9098
-
9099
- #: wp-admin/includes/file.php:1014
9100
- msgid "FTP Username"
9101
- msgstr "FTP-Benutzername"
9102
-
9103
- #: wp-admin/includes/file.php:1015
9104
- msgid "FTP Password"
9105
- msgstr "FTP-Passwort"
9106
-
9107
- #: wp-admin/includes/file.php:1019
9108
- msgid "If you do not remember your credentials, you should contact your web host."
9109
- msgstr "Falls du deine Zugangsdaten vergessen hast, so solltest du bei deinem Webhoster nachfragen."
9110
-
9111
- #: wp-admin/includes/file.php:1023
9112
- msgid "Hostname"
9113
- msgstr "Hostname"
9114
-
9115
- #: wp-admin/includes/file.php:1039
9116
- msgid "Authentication Keys"
9117
- msgstr "Authentifizierungschlüssel"
9118
-
9119
- #: wp-admin/includes/file.php:1041
9120
- msgid "Public Key:"
9121
- msgstr "Öffentlicher Schlüssel:"
9122
-
9123
- #: wp-admin/includes/file.php:1042
9124
- msgid "Private Key:"
9125
- msgstr "Privater Schlüssel:"
9126
-
9127
- #: wp-admin/includes/file.php:1045
9128
- msgid "Enter the location on the server where the keys are located. If a passphrase is needed, enter that in the password field above."
9129
- msgstr "Gib den Ort auf dem Server an, an welchem die Schlüssel liegen. Wird eine Passphrase benötigt, gib sie bitte in das Passwortfeld ein."
9130
-
9131
- #: wp-admin/includes/file.php:1050 wp-admin/includes/file.php:1052
9132
- msgid "Connection Type"
9133
- msgstr "Verbindungstyp"
9134
-
9135
- #: wp-admin/includes/file.php:1071
9136
- msgid "Proceed"
9137
- msgstr "Fortfahren"
9138
-
9139
- #: wp-admin/includes/class-wp-filesystem-ssh2.php:57
9140
- msgid "The ssh2 PHP extension is not available"
9141
- msgstr "Die SSH2-PHP-Erweiterung ist nicht verfügbar"
9142
-
9143
- #: wp-admin/includes/class-wp-filesystem-ssh2.php:61
9144
- msgid "The ssh2 PHP extension is available, however, we require the PHP5 function <code>stream_get_contents()</code>"
9145
- msgstr "Die PHP-Erweiterung 'ssh2' ist verfügbar, jedoch benötigt WordPress die PHP5-Funktion <code>stream_get_contents()</code>"
9146
-
9147
- #: wp-admin/includes/class-wp-filesystem-ssh2.php:72
9148
- msgid "SSH2 hostname is required"
9149
- msgstr "SSH2 Hostname (erforderlich)"
9150
-
9151
- #: wp-admin/includes/class-wp-filesystem-ssh2.php:88
9152
- msgid "SSH2 username is required"
9153
- msgstr "SSH2 Benutzername (erforderlich)"
9154
-
9155
- #: wp-admin/includes/class-wp-filesystem-ssh2.php:96
9156
- msgid "SSH2 password is required"
9157
- msgstr "SSH2 Passwort (erforderlich)"
9158
-
9159
- #: wp-admin/includes/class-wp-filesystem-ssh2.php:111
9160
- msgid "Failed to connect to SSH2 Server %1$s:%2$s"
9161
- msgstr "Kann nicht mit SSH2-Server %1$s:%2$s verbinden"
9162
-
9163
- #: wp-admin/includes/class-wp-filesystem-ssh2.php:117
9164
- #: wp-admin/includes/class-wp-filesystem-ftpsockets.php:74
9165
- #: wp-admin/includes/class-wp-filesystem-ftpext.php:79
9166
- msgid "Username/Password incorrect for %s"
9167
- msgstr "Benutzername/Passwort für %s ist nicht korrekt"
9168
-
9169
- #: wp-admin/includes/class-wp-filesystem-ssh2.php:122
9170
- msgid "Public and Private keys incorrect for %s"
9171
- msgstr "Die öffentlichen und privaten Schlüssel für %s sind nicht korrekt"
9172
-
9173
- #: wp-admin/includes/class-wp-filesystem-ssh2.php:138
9174
- msgid "Unable to perform command: %s"
9175
- msgstr "Konnte folgenden Befehl nicht ausführen: %s"
9176
-
9177
- #: wp-admin/includes/class-wp-users-list-table.php:79
9178
- msgid "No matching users were found."
9179
- msgstr "Keine Benutzer gefunden."
9180
-
9181
- #: wp-admin/includes/class-wp-users-list-table.php:101
9182
- msgctxt "users"
9183
- msgid "All <span class=\"count\">(%s)</span>"
9184
- msgid_plural "All <span class=\"count\">(%s)</span>"
9185
- msgstr[0] "Alle <span class=\"count\">(%s)</span>"
9186
- msgstr[1] "Alle <span class=\"count\">(%s)</span>"
9187
-
9188
- #: wp-admin/includes/class-wp-users-list-table.php:115
9189
- msgid "%1$s <span class=\"count\">(%2$s)</span>"
9190
- msgstr "%1$s <span class=\"count\">(%2$s)</span>"
9191
-
9192
- #: wp-admin/includes/class-wp-users-list-table.php:127
9193
- #: wp-admin/includes/class-wp-users-list-table.php:254
9194
- #: wp-admin/includes/nav-menu.php:188
9195
- msgid "Remove"
9196
- msgstr "Entfernen"
9197
-
9198
- #: wp-admin/includes/class-wp-users-list-table.php:143
9199
- #: wp-admin/includes/class-wp-users-list-table.php:145
9200
- msgid "Change role to&hellip;"
9201
- msgstr "Rolle ändern in&hellip;"
9202
-
9203
- #: wp-admin/includes/class-wp-users-list-table.php:148
9204
- msgid "Change"
9205
- msgstr "Wechseln"
9206
-
9207
- #: wp-admin/includes/class-wp-users-list-table.php:300
9208
- msgid "View posts by this author"
9209
- msgstr "Artikel dieses Autors ansehen"
9210
-
9211
- #: wp-includes/admin-bar.php:310
9212
- msgid "Sites"
9213
- msgstr "Blogs"
9214
-
9215
- #: wp-admin/includes/screen.php:749
9216
- msgid "Screen Options"
9217
- msgstr "Optionen einblenden"
9218
-
9219
- #: wp-admin/includes/screen.php:770
9220
- msgid "Enable accessibility mode"
9221
- msgstr "Zugänglichkeitsmodus aktivieren"
9222
-
9223
- #: wp-admin/includes/screen.php:770
9224
- msgid "Disable accessibility mode"
9225
- msgstr "Zugänglichkeitsmodus deaktivieren"
9226
-
9227
- #: wp-admin/includes/screen.php:797
9228
- msgctxt "Metaboxes"
9229
- msgid "Show on screen"
9230
- msgstr "In der Übersicht anzeigen"
9231
-
9232
- #: wp-admin/includes/screen.php:820
9233
- msgctxt "Columns"
9234
- msgid "Show on screen"
9235
- msgstr "In der Übersicht anzeigen"
9236
-
9237
- #: wp-admin/includes/screen.php:883
9238
- msgid "Screen Layout"
9239
- msgstr "Bildschirm-Layout"
9240
-
9241
- #: wp-admin/includes/screen.php:885
9242
- msgid "Number of Columns:"
9243
- msgstr "Anzahl der Spalten:"
9244
-
9245
- #: wp-admin/includes/screen.php:935
9246
- msgctxt "Screen Options"
9247
- msgid "Show on screen"
9248
- msgstr "In der Übersicht anzeigen"
9249
-
9250
- #: wp-admin/includes/user.php:141 wp-admin/includes/user.php:143
9251
- msgid "<strong>ERROR</strong>: You entered your new password only once."
9252
- msgstr "<strong>Fehler:</strong> Du hast dein neues Passwort nur einmal eingegeben."
9253
-
9254
- #: wp-admin/includes/user.php:146
9255
- msgid "<strong>ERROR</strong>: Please enter your password."
9256
- msgstr "<strong>Fehler:</strong> Bitte gib dein Passwort ein."
9257
-
9258
- #: wp-admin/includes/user.php:148
9259
- msgid "<strong>ERROR</strong>: Please enter your password twice."
9260
- msgstr "<strong>Fehler:</strong> Bitte gib das Passwort zweimal ein."
9261
-
9262
- #: wp-admin/includes/user.php:153
9263
- msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
9264
- msgstr "<strong>Fehler:</strong> In Passwörtern darf das Zeichen \"\\\" nicht vorkommen."
9265
-
9266
- #: wp-admin/includes/user.php:157
9267
- msgid "<strong>ERROR</strong>: Please enter the same password in the two password fields."
9268
- msgstr "<strong>Fehler:</strong> Bitte gib in die beiden Passwortfelder identische Passwörter ein."
9269
-
9270
- #: wp-admin/includes/user.php:166
9271
- msgid "<strong>ERROR</strong>: This username is already registered. Please choose another one."
9272
- msgstr "<strong>Fehler:</strong> Dieser Benutzername existiert bereits, bitte wähle einen anderen."
9273
-
9274
- #: wp-admin/includes/user.php:170
9275
- msgid "<strong>ERROR</strong>: Please enter an e-mail address."
9276
- msgstr "<strong>Fehler:</strong> Bitte eine E-Mail-Adresse eingeben."
9277
-
9278
- #: wp-admin/includes/user.php:172
9279
- msgid "<strong>ERROR</strong>: The e-mail address isn&#8217;t correct."
9280
- msgstr "<strong>Fehler:</strong> Die E-Mail-Adresse ist nicht korrekt."
9281
-
9282
- #: wp-admin/includes/user.php:365
9283
- msgid "Notice:"
9284
- msgstr "Hinweis:"
9285
-
9286
- #: wp-admin/includes/user.php:366
9287
- msgid "You&rsquo;re using the auto-generated password for your account. Would you like to change it to something easier to remember?"
9288
- msgstr "Du verwendest ein automatisch generiertes Passwort für dein Benutzerkonto. Du kannst es in ein für dich einfacher zu merkendes Passwort ändern."
9289
-
9290
- #: wp-admin/includes/user.php:368
9291
- msgid "Yes, take me to my profile page"
9292
- msgstr "Ja, bringe mich zu meiner Profilseite"
9293
-
9294
- #: wp-admin/includes/user.php:369
9295
- msgid "No thanks, do not remind me again"
9296
- msgstr "Nein danke, bitte erinnere mich nicht noch einmal."
9297
-
9298
- #: wp-admin/includes/template.php:314
9299
- msgid "Reply to Comment"
9300
- msgstr "Antwort auf Kommentar"
9301
-
9302
- #: wp-admin/includes/template.php:344
9303
- msgid "Update Comment"
9304
- msgstr "Kommentar aktualisieren"
9305
-
9306
- #: wp-admin/includes/template.php:345
9307
- msgid "Submit Reply"
9308
- msgstr "Antwort senden"
9309
-
9310
- #: wp-admin/includes/template.php:381
9311
- msgid "Comment by %s moved to the trash."
9312
- msgstr "Kommentar von %s wurde in den Papierkorb gelegt."
9313
-
9314
- #: wp-admin/includes/template.php:384
9315
- msgid "Comment by %s marked as spam."
9316
- msgstr "Kommentar von %s wurde als Spam markiert."
9317
-
9318
- #: wp-admin/includes/template.php:403 wp-admin/includes/template.php:418
9319
- #: wp-admin/includes/template.php:511
9320
- msgctxt "meta name"
9321
- msgid "Name"
9322
- msgstr "Name"
9323
-
9324
- #: wp-admin/includes/template.php:404 wp-admin/includes/template.php:419
9325
- #: wp-admin/includes/template.php:485 wp-admin/includes/template.php:512
9326
- msgid "Value"
9327
- msgstr "Wert"
9328
-
9329
- #: wp-admin/includes/template.php:475
9330
- msgid "Key"
9331
- msgstr "Schlüssel"
9332
-
9333
- #: wp-admin/includes/template.php:507
9334
- msgid "Add New Custom Field:"
9335
- msgstr "Ein neues benutzerdefiniertes Feld hinzufügen:"
9336
-
9337
- #: wp-admin/includes/template.php:531
9338
- msgid "Enter new"
9339
- msgstr "Neu eingeben"
9340
-
9341
- #: wp-admin/includes/template.php:541
9342
- msgid "Add Custom Field"
9343
- msgstr "Benutzerdefiniertes Feld hinzufügen"
9344
-
9345
- #: wp-admin/includes/template.php:604
9346
- msgid "%1$s%2$s, %3$s @ %4$s : %5$s"
9347
- msgstr "%1$s%2$s, %3$s @ %4$s : %5$s"
9348
-
9349
- #: wp-admin/includes/template.php:709
9350
- msgid "Thumbnail linked to file"
9351
- msgstr "Zur Datei gelinktes Miniaturbild"
9352
-
9353
- #: wp-admin/includes/template.php:709
9354
- msgid "Image linked to file"
9355
- msgstr "Bild ist mit der Datei verlinkt"
9356
-
9357
- #: wp-admin/includes/template.php:713
9358
- msgid "Thumbnail linked to page"
9359
- msgstr "Miniaturbild mit Seite verlinkt"
9360
-
9361
- #: wp-admin/includes/template.php:713
9362
- msgid "Image linked to page"
9363
- msgstr "Bild mit Seite verlinkt"
9364
-
9365
- #: wp-admin/includes/template.php:718
9366
- msgid "Link to file"
9367
- msgstr "Mit Datei verlinken"
9368
-
9369
- #: wp-admin/includes/template.php:722
9370
- msgid "Link to page"
9371
- msgstr "Mit Seite verlinken"
9372
-
9373
- #: wp-admin/includes/template.php:817
9374
- msgid "Before you can upload your import file, you will need to fix the following error:"
9375
- msgstr "Ehe du die Importdatei hochladen kannst, musst du folgende Fehler beheben:"
9376
-
9377
- #: wp-admin/includes/template.php:823
9378
- msgid "Choose a file from your computer:"
9379
- msgstr "Wähle eine Datei von deinem Computer:"
9380
-
9381
- #: wp-admin/includes/template.php:823
9382
- msgid "Maximum size: %s"
9383
- msgstr "Maximale Größe: %s"
9384
-
9385
- #: wp-admin/includes/template.php:828
9386
- msgid "Upload file and import"
9387
- msgstr "Datei aktualisieren und importieren"
9388
-
9389
- #: wp-admin/includes/template.php:955 wp-admin/press-this.php:463
9390
- #: wp-admin/press-this.php:497 wp-admin/press-this.php:547
9391
- msgid "Click to toggle"
9392
- msgstr "Zum umschalten klicken"
9393
-
9394
- #: wp-admin/includes/template.php:1026 wp-admin/includes/template.php:1066
9395
- #: wp-admin/includes/plugin.php:1602 wp-admin/includes/plugin.php:1625
9396
- msgid "The miscellaneous options group has been removed. Use another settings group."
9397
- msgstr "Die <em>option_group</em> \"miscellaneous\" der Funktion <em>register_settings()</em> gibt es nicht mehr. Nutze eine andere."
9398
-
9399
- #: wp-admin/includes/template.php:1284
9400
- msgid "Find Posts or Pages"
9401
- msgstr "Artikel oder Seiten finden"
9402
-
9403
- #: wp-admin/includes/template.php:1452 wp-admin/includes/meta-boxes.php:119
9404
- #: wp-admin/includes/meta-boxes.php:144
9405
- msgid "Password protected"
9406
- msgstr "Passwortgeschützt"
9407
-
9408
- #: wp-admin/includes/template.php:1459
9409
- msgctxt "post state"
9410
- msgid "Pending"
9411
- msgstr "Offen"
9412
-
9413
- #: wp-admin/includes/template.php:1487
9414
- msgid "Header Image"
9415
- msgstr "Kopfzeilen-Bild"
9416
-
9417
- #: wp-admin/includes/template.php:1625 wp-admin/options.php:219
9418
- msgid "Save Changes"
9419
- msgstr "Änderungen übernehmen"
9420
-
9421
- #: wp-admin/includes/taxonomy.php:100
9422
- msgid "You did not enter a category name."
9423
- msgstr "Du hast keinen Kategorienamen angegeben."
9424
-
9425
- #: wp-admin/includes/class-wp-upgrader.php:41
9426
- msgid "Invalid Data provided."
9427
- msgstr "Ungültige Daten eingegeben."
9428
-
9429
- #: wp-admin/includes/class-wp-upgrader.php:43 wp-admin/includes/plugin.php:687
9430
- #: wp-admin/includes/theme.php:97
9431
- msgid "Filesystem error."
9432
- msgstr "Dateisystem-Fehler."
9433
-
9434
- #: wp-admin/includes/class-wp-upgrader.php:44
9435
- msgid "Unable to locate WordPress Root directory."
9436
- msgstr "WordPress Verzeichnis kann nicht gefunden werden."
9437
-
9438
- #: wp-admin/includes/class-wp-upgrader.php:45
9439
- msgid "Unable to locate WordPress Content directory (wp-content)."
9440
- msgstr "Das Verzeichnis \"wp-content\" konnte nicht gefunden werden."
9441
-
9442
- #: wp-admin/includes/class-wp-upgrader.php:46 wp-admin/includes/plugin.php:692
9443
- msgid "Unable to locate WordPress Plugin directory."
9444
- msgstr "WordPress-Plugin-Verzeichnis konnte nicht gefunden werden."
9445
-
9446
- #: wp-admin/includes/class-wp-upgrader.php:47
9447
- msgid "Unable to locate WordPress Theme directory."
9448
- msgstr "Das WordPress Themeverzeichnis konnte nicht gefunden werden."
9449
-
9450
- #: wp-admin/includes/class-wp-upgrader.php:49
9451
- msgid "Unable to locate needed folder (%s)."
9452
- msgstr "Der benötigte Ordner (%s) kann nicht gefunden werden."
9453
-
9454
- #: wp-admin/includes/class-wp-upgrader.php:51
9455
- msgid "Download failed."
9456
- msgstr "Download fehlgeschlagen."
9457
-
9458
- #: wp-admin/includes/class-wp-upgrader.php:52
9459
- #: wp-admin/includes/update-core.php:441
9460
- msgid "Installing the latest version&#8230;"
9461
- msgstr "Die aktuelle Version wird installiert&#8230;"
9462
-
9463
- #: wp-admin/includes/class-wp-upgrader.php:53
9464
- msgid "Destination folder already exists."
9465
- msgstr "Der Zielordner existiert bereits."
9466
-
9467
- #: wp-admin/includes/class-wp-upgrader.php:57
9468
- msgid "Enabling Maintenance mode&#8230;"
9469
- msgstr "Anschalten des Wartungsmodus&#8230; "
9470
-
9471
- #: wp-admin/includes/class-wp-upgrader.php:58
9472
- msgid "Disabling Maintenance mode&#8230;"
9473
- msgstr "Abschalten des Wartungsmodus&#8230;"
9474
-
9475
- #: wp-admin/includes/class-wp-upgrader.php:373
9476
- msgid "The plugin is at the latest version."
9477
- msgstr "Das Plugin ist auf dem neuesten Stand."
9478
-
9479
- #: wp-admin/includes/class-wp-upgrader.php:374
9480
- #: wp-admin/includes/class-wp-upgrader.php:649
9481
- #: wp-admin/includes/class-wp-upgrader.php:932
9482
- msgid "Update package not available."
9483
- msgstr "Update-Paket nicht verfügbar."
9484
-
9485
- #: wp-admin/includes/class-wp-upgrader.php:375
9486
- #: wp-admin/includes/class-wp-upgrader.php:650
9487
- #: wp-admin/includes/class-wp-upgrader.php:933
9488
- msgid "Downloading update from <span class=\"code\">%s</span>&#8230;"
9489
- msgstr "Runterladen der Aktualisierung von <span class=\"code\">%s</span>&#8230;"
9490
-
9491
- #: wp-admin/includes/class-wp-upgrader.php:376
9492
- #: wp-admin/includes/class-wp-upgrader.php:651
9493
- #: wp-admin/includes/class-wp-upgrader.php:934
9494
- msgid "Unpacking the update&#8230;"
9495
- msgstr "Entpacken der aktualisierten Version&#8230;"
9496
-
9497
- #: wp-admin/includes/class-wp-upgrader.php:377
9498
- msgid "Deactivating the plugin&#8230;"
9499
- msgstr "Deaktivierung des Plugins&#8230;"
9500
-
9501
- #: wp-admin/includes/class-wp-upgrader.php:378
9502
- msgid "Removing the old version of the plugin&#8230;"
9503
- msgstr "Die alte Version des Plugins wird entfernt&#8230;"
9504
-
9505
- #: wp-admin/includes/class-wp-upgrader.php:379
9506
- msgid "Could not remove the old plugin."
9507
- msgstr "Altes Plugin konnte nicht entfernt werden."
9508
-
9509
- #: wp-admin/includes/class-wp-upgrader.php:380
9510
- msgid "Plugin update failed."
9511
- msgstr "Plugin-Aktualisierung fehlgeschlagen."
9512
-
9513
- #: wp-admin/includes/class-wp-upgrader.php:381
9514
- msgid "Plugin updated successfully."
9515
- msgstr "Plugin erfolgreich aktualisiert."
9516
-
9517
- #: wp-admin/includes/class-wp-upgrader.php:385
9518
- #: wp-admin/includes/class-wp-upgrader.php:659
9519
- msgid "Install package not available."
9520
- msgstr "Installationspaket nicht verfügbar."
9521
-
9522
- #: wp-admin/includes/class-wp-upgrader.php:386
9523
- #: wp-admin/includes/class-wp-upgrader.php:660
9524
- msgid "Downloading install package from <span class=\"code\">%s</span>&#8230;"
9525
- msgstr "Runterladen des Installationspakets von <span class=\"code\">%s</span>&#8230;"
9526
-
9527
- #: wp-admin/includes/class-wp-upgrader.php:387
9528
- #: wp-admin/includes/class-wp-upgrader.php:661
9529
- msgid "Unpacking the package&#8230;"
9530
- msgstr "Entpacken des Pakets&#8230;"
9531
-
9532
- #: wp-admin/includes/class-wp-upgrader.php:388
9533
- msgid "Installing the plugin&#8230;"
9534
- msgstr "Das Plugin wird installiert&#8230;"
9535
-
9536
- #: wp-admin/includes/class-wp-upgrader.php:389
9537
- msgid "Plugin install failed."
9538
- msgstr "Die Plugininstallation ist fehlgeschlagen."
9539
-
9540
- #: wp-admin/includes/class-wp-upgrader.php:390
9541
- msgid "Plugin installed successfully."
9542
- msgstr "Das Plugin wurde erfolgreich installiert."
9543
-
9544
- #: wp-admin/includes/class-wp-upgrader.php:648
9545
- msgid "The theme is at the latest version."
9546
- msgstr "Das Theme ist auf dem neuesten Stand."
9547
-
9548
- #: wp-admin/includes/class-wp-upgrader.php:652
9549
- msgid "Removing the old version of the theme&#8230;"
9550
- msgstr "Entfernung der alten Themeversion&#8230;"
9551
-
9552
- #: wp-admin/includes/class-wp-upgrader.php:653
9553
- msgid "Could not remove the old theme."
9554
- msgstr "Altes Theme konnte nicht entfernt werden."
9555
-
9556
- #: wp-admin/includes/class-wp-upgrader.php:654
9557
- msgid "Theme update failed."
9558
- msgstr "Theme-Aktualisierung fehlgeschlagen."
9559
-
9560
- #: wp-admin/includes/class-wp-upgrader.php:655
9561
- msgid "Theme updated successfully."
9562
- msgstr "Theme erfolgreich aktualisiert."
9563
-
9564
- #: wp-admin/includes/class-wp-upgrader.php:662
9565
- msgid "Installing the theme&#8230;"
9566
- msgstr "Das Theme wird installiert&#8230;"
9567
-
9568
- #: wp-admin/includes/class-wp-upgrader.php:663
9569
- msgid "Theme install failed."
9570
- msgstr "Die Themeinstallation ist fehlgeschlagen."
9571
-
9572
- #: wp-admin/includes/class-wp-upgrader.php:664
9573
- msgid "Theme installed successfully."
9574
- msgstr "Das Theme wurde erfolgreich installiert."
9575
-
9576
- #: wp-admin/includes/class-wp-upgrader.php:931
9577
- msgid "WordPress is at the latest version."
9578
- msgstr "WordPress ist auf dem neuesten Stand."
9579
-
9580
- #: wp-admin/includes/class-wp-upgrader.php:935
9581
- msgid "Could not copy files."
9582
- msgstr "Dateien konnte nicht kopiert werden."
9583
-
9584
- #: wp-admin/includes/class-wp-upgrader.php:1095 wp-admin/update.php:54
9585
- msgid "Update Plugin"
9586
- msgstr "Plugin aktualisieren"
9587
-
9588
- #: wp-admin/includes/class-wp-upgrader.php:1109
9589
- msgid "Reactivating the plugin&#8230;"
9590
- msgstr "Reaktivierung des Plugins&#8230;"
9591
-
9592
- #: wp-admin/includes/class-wp-upgrader.php:1114
9593
- #: wp-admin/includes/class-wp-upgrader.php:1349
9594
- #: wp-admin/includes/class-wp-upgrader.php:1351
9595
- #: wp-admin/includes/class-wp-plugins-list-table.php:373
9596
- msgid "Activate this plugin"
9597
- msgstr "Aktiviere dieses Plugin"
9598
-
9599
- #: wp-admin/includes/class-wp-upgrader.php:1114
9600
- #: wp-admin/includes/class-wp-upgrader.php:1351
9601
- msgid "Activate Plugin"
9602
- msgstr "Aktiviere dieses Plugin"
9603
-
9604
- #: wp-admin/includes/class-wp-upgrader.php:1115
9605
- #: wp-admin/includes/class-wp-upgrader.php:1270
9606
- msgid "Go to plugins page"
9607
- msgstr "Besuche die Plugin-Verwaltung"
9608
-
9609
- #: wp-admin/includes/class-wp-upgrader.php:1115
9610
- #: wp-admin/includes/class-wp-upgrader.php:1270
9611
- #: wp-admin/includes/class-wp-upgrader.php:1363
9612
- msgid "Return to Plugins page"
9613
- msgstr "Zurück zur Plugin-Seite"
9614
-
9615
- #: wp-admin/includes/class-wp-upgrader.php:1154
9616
- msgid "The update process is starting. This process may take a while on some hosts, so please be patient."
9617
- msgstr "Der Updateprozess beginnt. Dies kann eine Weile dauern, hab bitte etwas Geduld."
9618
-
9619
- #: wp-admin/includes/class-wp-upgrader.php:1155
9620
- msgid "An error occurred while updating %1$s: <strong>%2$s</strong>."
9621
- msgstr "Während der Aktualisierung von %1$s trat ein Fehler auf: <strong>%2$s</strong>."
9622
-
9623
- #: wp-admin/includes/class-wp-upgrader.php:1156
9624
- msgid "The update of %1$s failed."
9625
- msgstr "Das aktualisieren von %1$s schlug fehl."
9626
-
9627
- #: wp-admin/includes/class-wp-upgrader.php:1157
9628
- msgid "%1$s updated successfully."
9629
- msgstr "%1$s erfolgreich aktualisiert."
9630
-
9631
- #: wp-admin/includes/class-wp-upgrader.php:1157
9632
- msgid "Show Details"
9633
- msgstr "Details anzeigen"
9634
-
9635
- #: wp-admin/includes/class-wp-upgrader.php:1157
9636
- msgid "Hide Details"
9637
- msgstr "Verberge Details"
9638
-
9639
- #: wp-admin/includes/class-wp-upgrader.php:1158
9640
- msgid "All updates have been completed."
9641
- msgstr "Alle Aktualisierungen sind komplett."
9642
-
9643
- #: wp-admin/includes/class-wp-upgrader.php:1257
9644
- msgid "Updating Plugin %1$s (%2$d/%3$d)"
9645
- msgstr "Aktualisiere Plugin %1$s (%2$d von %3$d)"
9646
-
9647
- #: wp-admin/includes/class-wp-upgrader.php:1271
9648
- #: wp-admin/includes/class-wp-upgrader.php:1303
9649
- msgid "Go to WordPress Updates page"
9650
- msgstr "Zur Übersicht der Aktualisierungen"
9651
-
9652
- #: wp-admin/includes/class-wp-upgrader.php:1271
9653
- #: wp-admin/includes/class-wp-upgrader.php:1303
9654
- msgid "Return to WordPress Updates"
9655
- msgstr "Zurück zu WordPress Aktualisieren gehen"
9656
-
9657
- #: wp-admin/includes/class-wp-upgrader.php:1289
9658
- msgid "Updating Theme %1$s (%2$d/%3$d)"
9659
- msgstr "Aktualisiere Theme %1$s (%2$d/%3$d)"
9660
-
9661
- #: wp-admin/includes/class-wp-upgrader.php:1302
9662
- msgid "Go to themes page"
9663
- msgstr "Besuche die Theme-Verwaltung"
9664
-
9665
- #: wp-admin/includes/class-wp-upgrader.php:1302
9666
- #: wp-admin/includes/class-wp-upgrader.php:1431
9667
- #: wp-admin/includes/class-wp-upgrader.php:1484
9668
- msgid "Return to Themes page"
9669
- msgstr "Zurück zur Theme-Seite"
9670
-
9671
- #: wp-admin/includes/class-wp-upgrader.php:1337
9672
- msgid "Successfully installed the plugin <strong>%s %s</strong>."
9673
- msgstr "Das Plugins <strong>%s %s</strong> wurde erfolgreich installiert."
9674
-
9675
- #: wp-admin/includes/class-wp-upgrader.php:1349
9676
- msgid "Activate Plugin &amp; Run Importer"
9677
- msgstr "Plugin aktivieren und Import starten"
9678
-
9679
- #: wp-admin/includes/class-wp-upgrader.php:1354
9680
- #: wp-admin/includes/class-wp-plugins-list-table.php:365
9681
- msgid "Activate this plugin for all sites in this network"
9682
- msgstr "Aktiviere das Plugin für alle Blogs in diesem Netzwerk."
9683
-
9684
- #: wp-admin/includes/class-wp-upgrader.php:1354
9685
- #: wp-admin/includes/class-wp-plugins-list-table.php:365
9686
- msgid "Network Activate"
9687
- msgstr "Für alle Blogs aktivieren"
9688
-
9689
- #: wp-admin/includes/class-wp-upgrader.php:1359
9690
- msgid "Return to Importers"
9691
- msgstr "Zurück zu den Importern"
9692
-
9693
- #: wp-admin/includes/class-wp-upgrader.php:1361
9694
- msgid "Return to Plugin Installer"
9695
- msgstr "Zurück zur Plugin-Installation"
9696
-
9697
- #: wp-admin/includes/class-wp-upgrader.php:1402
9698
- msgid "Successfully installed the theme <strong>%1$s %2$s</strong>."
9699
- msgstr "Das Theme <strong>%1$s %2$s</strong> wurde erfolgreich installiert."
9700
-
9701
- #: wp-admin/includes/class-wp-upgrader.php:1426
9702
- msgid "Enable this theme for all sites in this network"
9703
- msgstr "Dieses Theme für alle Seiten in diesem Netzwerk aktivieren."
9704
-
9705
- #: wp-admin/includes/class-wp-upgrader.php:1426
9706
- msgid "Network Enable"
9707
- msgstr "Netzwerkweit freischalten"
9708
-
9709
- #: wp-admin/includes/class-wp-upgrader.php:1429
9710
- msgid "Return to Theme Installer"
9711
- msgstr "Zurück zur Theme-Installation"
9712
-
9713
- #: wp-admin/includes/class-wp-upgrader.php:1431
9714
- msgid "Themes page"
9715
- msgstr "Themes page"
9716
-
9717
- #: wp-admin/includes/class-wp-upgrader.php:1455 wp-admin/update.php:157
9718
- msgid "Update Theme"
9719
- msgstr "Theme aktualisieren"
9720
-
9721
- #: wp-admin/includes/class-wp-upgrader.php:1509
9722
- #: wp-admin/includes/class-wp-upgrader.php:1543
9723
- msgid "Please select a file"
9724
- msgstr "Wähle bitte eine Datei"
9725
-
9726
- #: wp-admin/edit.php:184 wp-admin/includes/class-wp-list-table.php:293
9727
- msgid "Bulk Actions"
9728
- msgstr "Aktion wählen"
9729
-
9730
- #: wp-admin/includes/class-wp-list-table.php:405
9731
- msgid "List View"
9732
- msgstr "Listenansicht"
9733
-
9734
- #: wp-admin/includes/class-wp-list-table.php:406
9735
- msgid "Excerpt View"
9736
- msgstr "Kurzfassung"
9737
-
9738
- #: wp-admin/includes/class-wp-list-table.php:432
9739
- msgid "%s pending"
9740
- msgstr "%s ausstehend"
9741
-
9742
- #: wp-admin/includes/class-wp-list-table.php:506
9743
- msgid "Go to the first page"
9744
- msgstr "Zur ersten Seite gehen"
9745
-
9746
- #: wp-admin/includes/class-wp-list-table.php:513
9747
- msgid "Go to the previous page"
9748
- msgstr "Zur vorherigen Seite gehen"
9749
-
9750
- #: wp-admin/includes/class-wp-list-table.php:522
9751
- msgid "Current page"
9752
- msgstr "Aktuelle Seite"
9753
-
9754
- #: wp-admin/includes/class-wp-list-table.php:529
9755
- msgctxt "paging"
9756
- msgid "%1$s of %2$s"
9757
- msgstr "%1$s von %2$s"
9758
-
9759
- #: wp-admin/includes/class-wp-list-table.php:533
9760
- msgid "Go to the next page"
9761
- msgstr "Zur nächsten Seite gehen"
9762
-
9763
- #: wp-admin/includes/class-wp-list-table.php:540
9764
- msgid "Go to the last page"
9765
- msgstr "Zur letzten Seite gehen"
9766
-
9767
- #: wp-admin/includes/class-wp-filesystem-ftpsockets.php:38
9768
- #: wp-admin/includes/class-wp-filesystem-ftpext.php:44
9769
- msgid "FTP hostname is required"
9770
- msgstr "FTP Hostname (erforderlich)"
9771
-
9772
- #: wp-admin/includes/class-wp-filesystem-ftpsockets.php:47
9773
- #: wp-admin/includes/class-wp-filesystem-ftpext.php:53
9774
- msgid "FTP username is required"
9775
- msgstr "FTP-Benutzername (erforderlich)"
9776
-
9777
- #: wp-admin/includes/class-wp-filesystem-ftpsockets.php:52
9778
- #: wp-admin/includes/class-wp-filesystem-ftpext.php:58
9779
- msgid "FTP password is required"
9780
- msgstr "FTP-Passwort (erforderlich)"
9781
-
9782
- #: wp-admin/includes/class-wp-filesystem-ftpsockets.php:64
9783
- #: wp-admin/includes/class-wp-filesystem-ftpsockets.php:69
9784
- #: wp-admin/includes/class-wp-filesystem-ftpext.php:74
9785
- msgid "Failed to connect to FTP Server %1$s:%2$s"
9786
- msgstr "Kann nicht mit FTP-Server %1$s:%2$s verbinden"
9787
-
9788
- #: wp-admin/includes/theme-install.php:56
9789
- msgid "Search for themes by keyword, author, or tag."
9790
- msgstr "Suche Themes nach Schlüsselwort, Autor oder Schlagwort."
9791
-
9792
- #: wp-admin/includes/theme-install.php:63
9793
- msgctxt "Theme Installer"
9794
- msgid "Tag"
9795
- msgstr "Schlagwort"
9796
-
9797
- #: wp-admin/includes/theme-install.php:81
9798
- msgid "Find a theme based on specific features"
9799
- msgstr "Finde Themes nach speziellen Funktionen"
9800
-
9801
- #: wp-admin/includes/theme-install.php:109
9802
- msgid "Find Themes"
9803
- msgstr "Themes finden"
9804
-
9805
- #: wp-admin/includes/theme-install.php:117
9806
- msgid "Install a theme in .zip format"
9807
- msgstr "Installiere ein Theme aus einem ZIP-Archiv"
9808
-
9809
- #: wp-admin/includes/theme-install.php:118
9810
- msgid "If you have a theme in a .zip format, you may install it by uploading it here."
9811
- msgstr "Wenn du ein Theme in einem ZIP-Archiv hast, kannst du es hier hochladen und installieren."
9812
-
9813
- #: wp-admin/includes/theme-install.php:143
9814
- msgid "Install &#8220;%s&#8221;"
9815
- msgstr "&#8220;%s&#8221; installieren"
9816
-
9817
- #: wp-admin/includes/theme-install.php:160
9818
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:192
9819
- msgid "Details"
9820
- msgstr "Details"
9821
-
9822
- #: wp-admin/includes/theme-install.php:237
9823
- msgid "Theme Install"
9824
- msgstr "Theme-Installation"
9825
-
9826
- #: wp-admin/includes/theme-install.php:240
9827
- msgid "<strong>ERROR:</strong> This theme is currently not available. Please try again later."
9828
- msgstr "<strong>FEHLER:</strong> Dieses Theme ist zurzeit nicht verfügbar. Versuch es später noch einmal."
9829
-
9830
- #: wp-admin/includes/theme-install.php:246
9831
- msgid "<strong>Warning:</strong> This theme has <strong>not been tested</strong> with your current version of WordPress."
9832
- msgstr "<strong>Achtung:</strong> Dieses Theme wurde <strong>nicht</strong> mit deiner aktuellen WordPress Version getestet."
9833
-
9834
- #: wp-admin/includes/theme-install.php:248
9835
- msgid "<strong>Warning:</strong> This theme has not been marked as <strong>compatible</strong> with your version of WordPress."
9836
- msgstr "<strong>Achtung:</strong> Dieses Theme wurde nicht als <strong>nicht kompatibel</strong> mit deiner Version von WordPress gekennzeichnet."
9837
-
9838
- #: wp-admin/includes/theme-install.php:281
9839
- msgid "by %s"
9840
- msgstr "von %s"
9841
-
9842
- #: wp-admin/includes/theme-install.php:282
9843
- msgid "Version: %s"
9844
- msgstr "Version: %s"
9845
-
9846
- #: wp-admin/includes/theme-install.php:301
9847
- msgid "Newer version (%s) is installed."
9848
- msgstr "Aktuellere Version (%s) installiert."
9849
-
9850
- #: wp-admin/includes/theme-install.php:306
9851
- msgid "This version is already installed."
9852
- msgstr "Diese Version ist bereits installiert."
9853
-
9854
- #: wp-admin/includes/class-wp-plugins-list-table.php:177
9855
- msgid "No plugins found."
9856
- msgstr "Keine Plugins gefunden."
9857
-
9858
- #: wp-admin/includes/class-wp-plugins-list-table.php:179
9859
- msgid "You do not appear to have any plugins available at this time."
9860
- msgstr "Es sieht nicht so aus, als wären zur Zeit irgendwelche Plugins vorhanden."
9861
-
9862
- #: wp-admin/includes/class-wp-plugins-list-table.php:206
9863
- msgctxt "plugins"
9864
- msgid "All <span class=\"count\">(%s)</span>"
9865
- msgid_plural "All <span class=\"count\">(%s)</span>"
9866
- msgstr[0] "Alle <span class=\"count\">(%s)</span>"
9867
- msgstr[1] "Alle <span class=\"count\">(%s)</span>"
9868
-
9869
- #: wp-admin/includes/class-wp-plugins-list-table.php:209
9870
- msgid "Active <span class=\"count\">(%s)</span>"
9871
- msgid_plural "Active <span class=\"count\">(%s)</span>"
9872
- msgstr[0] "Aktiviert <span class=\"count\">(%s)</span>"
9873
- msgstr[1] "Aktivierte <span class=\"count\">(%s)</span>"
9874
-
9875
- #: wp-admin/includes/class-wp-plugins-list-table.php:212
9876
- msgid "Recently Active <span class=\"count\">(%s)</span>"
9877
- msgid_plural "Recently Active <span class=\"count\">(%s)</span>"
9878
- msgstr[0] "Kürzlich Aktiviert <span class=\"count\">(%s)</span>"
9879
- msgstr[1] "Kürzlich Aktivierte <span class=\"count\">(%s)</span>"
9880
-
9881
- #: wp-admin/includes/class-wp-plugins-list-table.php:215
9882
- msgid "Inactive <span class=\"count\">(%s)</span>"
9883
- msgid_plural "Inactive <span class=\"count\">(%s)</span>"
9884
- msgstr[0] "Inaktiv <span class=\"count\">(%s)</span>"
9885
- msgstr[1] "Inaktive <span class=\"count\">(%s)</span>"
9886
-
9887
- #: wp-admin/includes/class-wp-plugins-list-table.php:218
9888
- msgid "Network <span class=\"count\">(%s)</span>"
9889
- msgid_plural "Network <span class=\"count\">(%s)</span>"
9890
- msgstr[0] "Netzwerk <span class=\"count\">(%s)</span>"
9891
- msgstr[1] "Netzwerk <span class=\"count\">(%s)</span>"
9892
-
9893
- #: wp-admin/includes/class-wp-plugins-list-table.php:221
9894
- msgid "Must-Use <span class=\"count\">(%s)</span>"
9895
- msgid_plural "Must-Use <span class=\"count\">(%s)</span>"
9896
- msgstr[0] "Obligatorisch <span class=\"count\">(%s)</span>"
9897
- msgstr[1] "Obligatorisch <span class=\"count\">(%s)</span>"
9898
-
9899
- #: wp-admin/includes/class-wp-plugins-list-table.php:224
9900
- msgid "Drop-ins <span class=\"count\">(%s)</span>"
9901
- msgid_plural "Drop-ins <span class=\"count\">(%s)</span>"
9902
- msgstr[0] "DropIns <span class=\"count\">(%s)</span>"
9903
- msgstr[1] "DropIns <span class=\"count\">(%s)</span>"
9904
-
9905
- #: wp-admin/includes/class-wp-plugins-list-table.php:227
9906
- msgid "Update Available <span class=\"count\">(%s)</span>"
9907
- msgid_plural "Update Available <span class=\"count\">(%s)</span>"
9908
- msgstr[0] "Aktualisierung verfügbar: <span class=\"count\">(%s)</span>"
9909
- msgstr[1] "Aktualisierungen verfügbar: <span class=\"count\">(%s)</span>"
9910
-
9911
- #: wp-admin/includes/class-wp-plugins-list-table.php:256
9912
- #: wp-admin/includes/class-wp-plugins-list-table.php:371
9913
- msgid "Deactivate"
9914
- msgstr "Deaktivieren"
9915
-
9916
- #: wp-admin/includes/class-wp-plugins-list-table.php:286
9917
- msgid "Clear List"
9918
- msgstr "Liste säubern"
9919
-
9920
- #: wp-admin/includes/class-wp-plugins-list-table.php:288
9921
- msgid "Files in the <code>%s</code> directory are executed automatically."
9922
- msgstr "Dateien im Verzeichnis <code>%s</code> werden automatisch ausgeführt."
9923
-
9924
- #: wp-admin/includes/class-wp-plugins-list-table.php:290
9925
- msgid "Drop-ins are advanced plugins in the <code>%s</code> directory that replace WordPress functionality when present."
9926
- msgstr "DropIns sind spezielle Plugins im Verzeichnis <code>%s</code>, die Funktionen von WordPress ersetzen, ohne dass sie erst aktiviert werden müssen."
9927
-
9928
- #: wp-admin/includes/class-wp-plugins-list-table.php:345
9929
- msgid "Inactive:"
9930
- msgstr "Inaktiv:"
9931
-
9932
- #: wp-admin/includes/class-wp-plugins-list-table.php:345
9933
- msgid "Requires <code>%s</code> in <code>wp-config.php</code>."
9934
- msgstr "Erfordert <code>%s</code> in <code>wp-config.php</code>."
9935
-
9936
- #: wp-admin/includes/class-wp-plugins-list-table.php:362
9937
- #: wp-admin/includes/class-wp-plugins-list-table.php:371
9938
- msgid "Deactivate this plugin"
9939
- msgstr "Deaktiviere dieses Plugin"
9940
-
9941
- #: wp-admin/includes/class-wp-plugins-list-table.php:362
9942
- msgid "Network Deactivate"
9943
- msgstr "Für alle Blogs deaktivieren"
9944
-
9945
- #: wp-admin/includes/class-wp-plugins-list-table.php:367
9946
- #: wp-admin/includes/class-wp-plugins-list-table.php:376
9947
- msgid "Delete this plugin"
9948
- msgstr "Diese Plugin löschen"
9949
-
9950
- #: wp-admin/includes/class-wp-plugins-list-table.php:381
9951
- msgid "Open this file in the Plugin Editor"
9952
- msgstr "Öffne diese Datei im Plugin-Editor"
9953
-
9954
- #: wp-admin/freedoms.php:24 wp-admin/about.php:24
9955
- #: wp-admin/includes/dashboard.php:1290
9956
- #: wp-admin/includes/class-wp-plugins-list-table.php:423
9957
- #: wp-admin/includes/update.php:86 wp-admin/includes/update.php:109
9958
- #: wp-admin/credits.php:55
9959
- msgid "Version %s"
9960
- msgstr "Version %s"
9961
-
9962
- #: wp-admin/includes/class-wp-plugins-list-table.php:428
9963
- #: wp-admin/includes/plugin.php:145
9964
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:185
9965
- msgid "By %s"
9966
- msgstr "Von %s"
9967
-
9968
- #: wp-admin/includes/class-wp-plugins-list-table.php:431
9969
- msgid "Visit plugin site"
9970
- msgstr "Besuch die Plugin-Seite"
9971
-
9972
- #: wp-admin/includes/upgrade.php:68
9973
- msgid "<strong><em>Note that password</em></strong> carefully! It is a <em>random</em> password that was generated just for you."
9974
- msgstr "<strong><em>Notier dir bitte das Passwort!</em></strong> Dies ist ein <em>Zufalls</em>passwort, das nur für dich erstellt wurde."
9975
-
9976
- #: wp-admin/includes/upgrade.php:74
9977
- msgid "Your chosen password."
9978
- msgstr "Das von dir gewählte Passwort."
9979
-
9980
- #: wp-admin/includes/upgrade.php:77
9981
- msgid "User already exists. Password inherited."
9982
- msgstr "Dieser Benutzer existiert bereits. Es gilt das bereits vorhandene Passwort."
9983
-
9984
- #: wp-admin/includes/upgrade.php:87
9985
- msgid "The password you chose during the install."
9986
- msgstr "Das Passwort, das du während der Installation gewählt hast."
9987
-
9988
- #: wp-admin/includes/upgrade.php:111
9989
- msgctxt "Default category slug"
9990
- msgid "Uncategorized"
9991
- msgstr "Allgemein"
9992
-
9993
- #: wp-admin/includes/upgrade.php:131
9994
- msgctxt "Default link category slug"
9995
- msgid "Blogroll"
9996
- msgstr "Blogroll"
9997
-
9998
- #: wp-admin/includes/upgrade.php:199 wp-admin/includes/schema.php:889
9999
- msgid "Welcome to <a href=\"SITE_URL\">SITE_NAME</a>. This is your first post. Edit or delete it, then start blogging!"
10000
- msgstr "Willkommen bei <a href=\"SITE_URL\">SITE_NAME</a>. Dies ist der erste Artikel. Du kannst ihn bearbeiten oder löschen. Und jetzt nichts wie ran ans Bloggen! "
10001
-
10002
- #: wp-admin/includes/upgrade.php:204
10003
- msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!"
10004
- msgstr "Willkommen zur deutschen Version von WordPress. Dies ist der erste Artikel. Du kannst ihn bearbeiten oder löschen. Um Spam zu vermeiden, geh doch gleich mal in den Pluginbereich und aktivier die entsprechenden Plugins. So, und nun genug geschwafelt – jetzt nichts wie ran ans Bloggen!"
10005
-
10006
- #: wp-admin/includes/upgrade.php:213
10007
- msgid "Hello world!"
10008
- msgstr "Hallo Welt!"
10009
-
10010
- #: wp-admin/includes/upgrade.php:215
10011
- msgctxt "Default post slug"
10012
- msgid "hello-world"
10013
- msgstr "hallo-welt"
10014
-
10015
- #: wp-admin/includes/upgrade.php:227
10016
- msgid "Mr WordPress"
10017
- msgstr "Mr WordPress"
10018
-
10019
- #: wp-admin/includes/upgrade.php:229
10020
- msgid "Hi, this is a comment.<br />To delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them."
10021
- msgstr "Hallo, das hier ist ein Kommentar.<br />Um Kommentare zu bearbeiten, musst du dich anmelden und zur Übersicht der Artikel gehen. Dort bekommst du dann die Gelegenheit sie zu verändern oder zu löschen."
10022
-
10023
- #: wp-admin/includes/upgrade.php:246
10024
- msgid ""
10025
- "This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n"
10026
- "\n"
10027
- "<blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)</blockquote>\n"
10028
- "\n"
10029
- "...or something like this:\n"
10030
- "\n"
10031
- "<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n"
10032
- "\n"
10033
- "As a new WordPress user, you should go to <a href=\"%s\">your dashboard</a> to delete this page and create new pages for your content. Have fun!"
10034
- msgstr ""
10035
- "Dies ist ein Beispiel einer statischen Seite. Du kannst sie bearbeiten und beispielsweise Infos über dich oder das Weblog eingeben, damit die Leser wissen, woher du kommst und was du machst.\n"
10036
- "\n"
10037
- "Du kannst entweder beliebig viele Hauptseiten (wie diese hier) oder Unterseiten, die sich in der Hierachiestruktur den Hauptseiten unterordnen, anlegen. Du kannst sie auch alle innerhalb von WordPress ändern und verwalten.\n"
10038
- "\n"
10039
- "Als stolzer Besitzer eines neuen WordPress-Blogs, solltest du zur Übersichtsseite, dem <a href=\"%s\">Dashboard</a> gehen, diese Seite löschen und damit loslegen, eigene Inhalte zu erstellen. Viel Spaß!"
10040
-
10041
- #: wp-admin/includes/upgrade.php:264
10042
- msgid "Sample Page"
10043
- msgstr "Beispiel-Seite"
10044
-
10045
- #: wp-admin/includes/upgrade.php:266
10046
- msgid "sample-page"
10047
- msgstr "beispiel-seite"
10048
-
10049
- #: wp-admin/includes/upgrade.php:327
10050
- msgid ""
10051
- "Your new WordPress site has been successfully set up at:\n"
10052
- "\n"
10053
- "%1$s\n"
10054
- "\n"
10055
- "You can log in to the administrator account with the following information:\n"
10056
- "\n"
10057
- "Username: %2$s\n"
10058
- "Password: %3$s\n"
10059
- "\n"
10060
- "We hope you enjoy your new site. Thanks!\n"
10061
- "\n"
10062
- "--The WordPress Team\n"
10063
- "http://wordpress.org/\n"
10064
- msgstr ""
10065
- "Dein neuer WordPress-Blog wurde erfolgreich erstellt und ist unter folgender Adresse zu erreichen:\n"
10066
- "\n"
10067
- "%1$s\n"
10068
- "\n"
10069
- "Du kannst dich mit folgenden Daten als Administrator einloggen:\n"
10070
- "\n"
10071
- "Benutzername: %2$s\n"
10072
- "Passwort: %3$s\n"
10073
- "\n"
10074
- "Wir hoffen, dir gefällt dein neuer Blog!\n"
10075
- "\n"
10076
- "--Das WordPress-Team\n"
10077
- "http://wordpress.org\n"
10078
-
10079
- #: wp-admin/includes/upgrade.php:342
10080
- msgid "New WordPress Site"
10081
- msgstr "Neuer WordPress-Blog"
10082
-
10083
- #: wp-admin/includes/update-core.php:420
10084
- msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s."
10085
- msgstr "Das Update konnte nicht installiert werden, da WordPress %1$s mindestens die PHP-Version %2$s und die MySQL-Version %3$s benötigt. Du verwendest die PHP-Version %4$s und die MySQL-Version %5$s."
10086
-
10087
- #: wp-admin/includes/update-core.php:422
10088
- msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s."
10089
- msgstr "Das Update konnte nicht installiert werden, da WordPress %1$s mindestens die PHP-Version %2$s benötigt. Du verwendest die Version %3$s."
10090
-
10091
- #: wp-admin/includes/update-core.php:424
10092
- msgid "The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s."
10093
- msgstr "Das Update konnte nicht installiert werden, da WordPress %1$s mindestens die MySQL-Version %2$s benötigt. Du verwendest die Version %3$s."
10094
-
10095
- #: wp-admin/includes/update-core.php:427
10096
- msgid "Verifying the unpacked files&#8230;"
10097
- msgstr "Überprüfung der entpackten Dateien&#8230;"
10098
-
10099
- #: wp-admin/includes/update-core.php:438
10100
- msgid "The update could not be unpacked"
10101
- msgstr "Das Update konnte nicht entpackt werden"
10102
-
10103
- #: wp-admin/includes/update-core.php:524
10104
- msgid "Upgrading database&#8230;"
10105
- msgstr "Die Datenbank wird aktualisiert&#8230;"
10106
-
10107
- #: wp-admin/includes/nav-menu.php:75
10108
- msgid "%s (Invalid)"
10109
- msgstr "%s (ungültig)"
10110
-
10111
- #: wp-admin/includes/nav-menu.php:79
10112
- msgid "%s (Pending)"
10113
- msgstr "%s (Entwurf)"
10114
-
10115
- #: wp-admin/includes/nav-menu.php:103
10116
- msgid "Move up"
10117
- msgstr "Nach oben verschieben"
10118
-
10119
- #: wp-admin/includes/nav-menu.php:116
10120
- msgid "Move down"
10121
- msgstr "Nach unten verschieben"
10122
-
10123
- #: wp-admin/includes/nav-menu.php:118 wp-admin/includes/nav-menu.php:120
10124
- msgid "Edit Menu Item"
10125
- msgstr "Menüelement bearbeiten"
10126
-
10127
- #: wp-admin/includes/nav-menu.php:136
10128
- msgid "Navigation Label"
10129
- msgstr "Angezeigter Name"
10130
-
10131
- #: wp-admin/includes/nav-menu.php:142
10132
- msgid "Title Attribute"
10133
- msgstr "HTML-Attribut title (optional)"
10134
-
10135
- #: wp-admin/includes/nav-menu.php:154
10136
- msgid "CSS Classes (optional)"
10137
- msgstr "CSS-Klassen (optional)"
10138
-
10139
- #: wp-admin/includes/nav-menu.php:168
10140
- msgid "The description will be displayed in the menu if the current theme supports it."
10141
- msgstr "Die Beschreibung wird im Menü angezeigt, sofern das benutzte Theme das unterstützt."
10142
-
10143
- #: wp-admin/includes/nav-menu.php:175
10144
- msgid "Original: %s"
10145
- msgstr "Ursprünglicher Name: %s"
10146
-
10147
- #: wp-admin/includes/nav-menu.php:386
10148
- msgid "Theme Locations"
10149
- msgstr "Anordnung im Theme"
10150
-
10151
- #: wp-admin/includes/nav-menu.php:387
10152
- msgid "Custom Links"
10153
- msgstr "Links"
10154
-
10155
- #: wp-admin/includes/nav-menu.php:483 wp-admin/nav-menus.php:446
10156
- msgid "The current theme does not natively support menus, but you can use the &#8220;Custom Menu&#8221; widget to add any menus you create here to the theme&#8217;s sidebar."
10157
- msgstr "Das zurzeit aktive Theme unterstützt von sich aus nicht die WordPress-Menüfunktion, aber du kannst das &#8220;Individuelles Menü &#8221;-Widget nutzen, um hier erstellte Menüs im Theme nutzen zu können."
10158
-
10159
- #: wp-admin/includes/nav-menu.php:492
10160
- msgid "Your theme supports %s menu. Select which menu you would like to use."
10161
- msgid_plural "Your theme supports %s menus. Select which menu appears in each location."
10162
- msgstr[0] "Dein Theme kann ein selbsterstelltes Menü anzeigen. Wähle ein Menü aus, dass du deinem Theme zuweisen willst."
10163
- msgstr[1] "Dein Theme kann %s selbsterstellte Menüs anzeigen. Du kannst hier auswählen, welches Menü an welcher Stelle im Theme angezeigt werden soll."
10164
-
10165
- #: wp-admin/includes/nav-menu.php:557
10166
- msgid "Label"
10167
- msgstr "Titel"
10168
-
10169
- #: wp-admin/includes/nav-menu.php:558
10170
- msgid "Menu Item"
10171
- msgstr "Menüelement"
10172
-
10173
- #: wp-admin/includes/nav-menu.php:565 wp-admin/includes/nav-menu.php:786
10174
- #: wp-admin/includes/nav-menu.php:963
10175
- msgid "Add to Menu"
10176
- msgstr "Zum Menü hinzufügen"
10177
-
10178
- #: wp-admin/includes/nav-menu.php:609 wp-admin/includes/nav-menu.php:828
10179
- msgid "No items."
10180
- msgstr "Keine Elemente."
10181
-
10182
- #: wp-admin/includes/nav-menu.php:664
10183
- msgid "Most Recent"
10184
- msgstr "Zuletzt erstellt"
10185
-
10186
- #: wp-admin/includes/nav-menu.php:665 wp-admin/includes/nav-menu.php:879
10187
- msgid "View All"
10188
- msgstr "Zeige alle"
10189
-
10190
- #: wp-admin/includes/nav-menu.php:709 wp-admin/includes/nav-menu.php:943
10191
- #: wp-content/plugins/akismet/legacy.php:340
10192
- msgid "No results found."
10193
- msgstr "Es wurden keine Kommentare gefunden, die deinen Suchkriterien entsprechen."
10194
-
10195
- #: wp-admin/includes/nav-menu.php:733
10196
- msgctxt "nav menu front page title"
10197
- msgid "Home: %s"
10198
- msgstr "Startseite: %s"
10199
-
10200
- #: wp-admin/includes/nav-menu.php:744
10201
- msgctxt "nav menu home label"
10202
- msgid "Home"
10203
- msgstr "Startseite"
10204
-
10205
- #: wp-admin/includes/nav-menu.php:878 wp-admin/includes/meta-boxes.php:327
10206
- #: wp-admin/includes/meta-boxes.php:672 wp-admin/press-this.php:504
10207
- msgid "Most Used"
10208
- msgstr "Häufig verwendet"
10209
-
10210
- #: wp-admin/includes/nav-menu.php:1093
10211
- msgid "Select menu items (pages, categories, links) from the boxes at left to begin building your custom menu."
10212
- msgstr "Wähle auf der linken Seite Menüelemente (Seiten, Kategorien, Links etc.) und beginne damit, ein individuelles Menü zu erstellen."
10213
-
10214
- #: wp-admin/includes/nav-menu.php:1104
10215
- msgid "The Walker class named <strong>%s</strong> does not exist."
10216
- msgstr "Die Walker-Klasse <strong>%s</strong> existiert nicht."
10217
-
10218
- #: wp-admin/includes/nav-menu.php:1115
10219
- msgid "Click Save Menu to make pending menu items public."
10220
- msgstr "Klicke auf Menü speichern, damit gemachte Änderungen übernommen werden."
10221
-
10222
- #: wp-admin/includes/nav-menu.php:1118
10223
- msgid "There are some invalid menu items. Please check or delete them."
10224
- msgstr "Es gibt ein paar ungültige Elemente im Menü. Bitte überprüfe oder entferne diese."
10225
-
10226
- #: wp-admin/includes/nav-menu.php:1140
10227
- msgid "Show advanced menu properties"
10228
- msgstr "Erweiterte Menüeigenschaften anzeigen"
10229
-
10230
- #: wp-admin/includes/nav-menu.php:1142
10231
- msgid "Link Target"
10232
- msgstr "Linkziel"
10233
-
10234
- #: wp-admin/includes/nav-menu.php:1143
10235
- msgid "CSS Classes"
10236
- msgstr "CSS-Klassen"
10237
-
10238
- #: wp-admin/includes/plugin.php:92
10239
- msgid "The <code>%1$s</code> plugin header is deprecated. Use <code>%2$s</code> instead."
10240
- msgstr "Der Code <code>%1$s</code> im Kopfbereich des Plugins ist veraltet. Nutze stattdessen <code>%2$s</code>."
10241
-
10242
- #: wp-admin/includes/plugin.php:136
10243
- msgid "Visit plugin homepage"
10244
- msgstr "Besuch die Plugin-Seite"
10245
-
10246
- #: wp-admin/includes/plugin.php:391
10247
- msgid "Advanced caching plugin."
10248
- msgstr "Erweitertes Caching Plugin."
10249
-
10250
- #: wp-admin/includes/plugin.php:392
10251
- msgid "Custom database class."
10252
- msgstr "Eigene Datenbankklasse."
10253
-
10254
- #: wp-admin/includes/plugin.php:393
10255
- msgid "Custom database error message."
10256
- msgstr "Eigene Datenbankfehlermeldung verwenden."
10257
-
10258
- #: wp-admin/includes/plugin.php:394
10259
- msgid "Custom install script."
10260
- msgstr "Eigenes Installationsskript."
10261
-
10262
- #: wp-admin/includes/plugin.php:395
10263
- msgid "Custom maintenance message."
10264
- msgstr "Angepasste Wartungsmodis-Nachricht."
10265
-
10266
- #: wp-admin/includes/plugin.php:396
10267
- msgid "External object cache."
10268
- msgstr "Externer Objekt-Cache."
10269
-
10270
- #: wp-admin/includes/plugin.php:400
10271
- msgid "Executed before Multisite is loaded."
10272
- msgstr "Wird ausgeführt, bevor das Blog-Netzwerk geladen wird."
10273
-
10274
- #: wp-admin/includes/plugin.php:401
10275
- msgid "Custom site deleted message."
10276
- msgstr "Eigener Hinweistext bei gelöschten Blogs."
10277
-
10278
- #: wp-admin/includes/plugin.php:402
10279
- msgid "Custom site inactive message."
10280
- msgstr "Eigener Hinweistext bei inaktiven Blogs."
10281
-
10282
- #: wp-admin/includes/plugin.php:403
10283
- msgid "Custom site suspended message."
10284
- msgstr "Eigener Hinweistext bei deaktivierten Blogs."
10285
-
10286
- #: wp-admin/includes/plugin.php:541
10287
- msgid "The plugin generated unexpected output."
10288
- msgstr "Das Plugin hat eine unerwartete Ausgabe erzeugt."
10289
-
10290
- #: wp-admin/includes/plugin.php:629
10291
- msgid "One of the plugins is invalid."
10292
- msgstr "Eines der Plugins ist ungültig."
10293
-
10294
- #: wp-admin/includes/plugin.php:715
10295
- msgid "Could not fully remove the plugin(s) %s."
10296
- msgstr "Das Plugin konnte nicht vollständig entfernt werden: %s."
10297
-
10298
- #: wp-admin/includes/plugin.php:776
10299
- msgid "Invalid plugin path."
10300
- msgstr "Ungültiger Pfad zum Plugin"
10301
-
10302
- #: wp-admin/includes/plugin.php:778
10303
- msgid "Plugin file does not exist."
10304
- msgstr "Die Plugindatei existiert nicht."
10305
-
10306
- #: wp-admin/includes/plugin.php:782
10307
- msgid "The plugin does not have a valid header."
10308
- msgstr "Das Plugin hat keinen validen Header."
10309
-
10310
- #: wp-admin/includes/class-wp-filesystem-ftpext.php:28
10311
- msgid "The ftp PHP extension is not available"
10312
- msgstr "Die FTP-PHP-Erweiterung ist nicht verfügbar"
10313
-
10314
- #: wp-admin/includes/class-wp-terms-list-table.php:100
10315
- #: wp-admin/includes/class-wp-terms-list-table.php:340
10316
- msgctxt "term name"
10317
- msgid "Name"
10318
- msgstr "Name"
10319
-
10320
- #: wp-admin/includes/class-wp-media-list-table.php:57
10321
- msgctxt "uploaded files"
10322
- msgid "All <span class=\"count\">(%s)</span>"
10323
- msgid_plural "All <span class=\"count\">(%s)</span>"
10324
- msgstr[0] "Alle <span class=\"count\">(%s)</span>"
10325
- msgstr[1] "Alle <span class=\"count\">(%s)</span>"
10326
-
10327
- #: wp-admin/includes/class-wp-media-list-table.php:69
10328
- msgctxt "detached files"
10329
- msgid "Unattached <span class=\"count\">(%s)</span>"
10330
- msgid_plural "Unattached <span class=\"count\">(%s)</span>"
10331
- msgstr[0] "Ohne Artikelzugehörigkeit <span class=\"count\">(%s)</span>"
10332
- msgstr[1] "Ohne Artikelzugehörigkeit <span class=\"count\">(%s)</span>"
10333
-
10334
- #: wp-admin/includes/class-wp-media-list-table.php:72
10335
- msgctxt "uploaded files"
10336
- msgid "Trash <span class=\"count\">(%s)</span>"
10337
- msgid_plural "Trash <span class=\"count\">(%s)</span>"
10338
- msgstr[0] "Papierkorb <span class=\"count\">(%s)</span>"
10339
- msgstr[1] "Papierkorb <span class=\"count\">(%s)</span>"
10340
-
10341
- #: wp-admin/includes/class-wp-media-list-table.php:81
10342
- msgid "Attach to a post"
10343
- msgstr "An einen Artikel anhängen"
10344
-
10345
- #: wp-admin/includes/class-wp-media-list-table.php:98
10346
- msgid "Scan for lost attachments"
10347
- msgstr "Nach verloren gegangenen Anhängen suchen"
10348
-
10349
- #: wp-admin/includes/class-wp-media-list-table.php:124
10350
- msgid "No media attachments found."
10351
- msgstr "Es wurden keine Anhänge gefunden."
10352
-
10353
- #: wp-admin/includes/class-wp-media-list-table.php:132
10354
- msgctxt "column name"
10355
- msgid "File"
10356
- msgstr "Datei"
10357
-
10358
- #: wp-admin/includes/class-wp-media-list-table.php:137
10359
- msgctxt "column name"
10360
- msgid "Attached to"
10361
- msgstr "Verwendet in"
10362
-
10363
- #: wp-admin/includes/class-wp-media-list-table.php:142
10364
- msgctxt "column name"
10365
- msgid "Date"
10366
- msgstr "Datum"
10367
-
10368
- #: wp-admin/includes/class-wp-media-list-table.php:284
10369
- msgid "%s from now"
10370
- msgstr "%s ab jetzt"
10371
-
10372
- #: wp-admin/includes/class-wp-media-list-table.php:314
10373
- msgid "(Unattached)"
10374
- msgstr "(Nirgendwo verwendet)"
10375
-
10376
- #: wp-admin/includes/class-wp-media-list-table.php:319
10377
- #: wp-admin/includes/class-wp-media-list-table.php:369
10378
- msgid "Attach"
10379
- msgstr "Verknüpfen"
10380
-
10381
- #: wp-admin/includes/post.php:59
10382
- msgid "You are not allowed to edit pages as this user."
10383
- msgstr "Dieser Benutzer darf keine Seiten bearbeiten."
10384
-
10385
- #: wp-admin/includes/post.php:60
10386
- msgid "You are not allowed to create pages as this user."
10387
- msgstr "Dieser Benutzer darf in diesem Blog keine Seiten schreiben."
10388
-
10389
- #: wp-admin/includes/post.php:64
10390
- msgid "You are not allowed to edit posts as this user."
10391
- msgstr "Dieser Benutzer darf keine Artikel bearbeiten."
10392
-
10393
- #: wp-admin/includes/post.php:65
10394
- msgid "You are not allowed to post as this user."
10395
- msgstr "Dieser Benutzer darf keine Artikel schreiben."
10396
-
10397
- #: wp-admin/includes/post.php:271
10398
- msgid "You are not allowed to edit pages."
10399
- msgstr "Du darfst keine Seiten bearbeiten."
10400
-
10401
- #: wp-admin/includes/post.php:273
10402
- msgid "You are not allowed to edit posts."
10403
- msgstr "Du darfst keine Artikel bearbeiten."
10404
-
10405
- #: wp-admin/includes/post.php:422
10406
- msgid "Auto Draft"
10407
- msgstr "Automatisch gespeicherter Entwurf"
10408
-
10409
- #: wp-admin/includes/post.php:543
10410
- msgid "You are not allowed to create pages on this site."
10411
- msgstr "Du hast nicht die nötigen Rechte, um eine neue Seite zu erstellen."
10412
-
10413
- #: wp-admin/includes/post.php:545
10414
- msgid "You are not allowed to create posts or drafts on this site."
10415
- msgstr "Du hast nicht die benötigten Rechte, um Artikel oder Entwürfe zu erstellen."
10416
-
10417
- #: wp-admin/includes/post.php:909
10418
- msgid "Images"
10419
- msgstr "Bilder"
10420
-
10421
- #: wp-admin/includes/post.php:909
10422
- msgid "Manage Images"
10423
- msgstr "Bilder verwalten"
10424
-
10425
- #: wp-admin/includes/post.php:909
10426
- msgid "Image <span class=\"count\">(%s)</span>"
10427
- msgid_plural "Images <span class=\"count\">(%s)</span>"
10428
- msgstr[0] "Bild <span class=\"count\">(%s)</span>"
10429
- msgstr[1] "Bilder <span class=\"count\">(%s)</span>"
10430
-
10431
- #: wp-admin/includes/post.php:910
10432
- msgid "Audio"
10433
- msgstr "Audio"
10434
-
10435
- #: wp-admin/includes/post.php:910
10436
- msgid "Manage Audio"
10437
- msgstr "Audio verwalten"
10438
-
10439
- #: wp-admin/includes/post.php:910
10440
- msgid "Audio <span class=\"count\">(%s)</span>"
10441
- msgid_plural "Audio <span class=\"count\">(%s)</span>"
10442
- msgstr[0] "Audio <span class=\"count\">(%s)</span>"
10443
- msgstr[1] "Audios <span class=\"count\">(%s)</span>"
10444
-
10445
- #: wp-admin/includes/post.php:911
10446
- msgid "Video"
10447
- msgstr "Video"
10448
-
10449
- #: wp-admin/includes/post.php:911
10450
- msgid "Manage Video"
10451
- msgstr "Videos verwalten"
10452
-
10453
- #: wp-admin/includes/post.php:911
10454
- msgid "Video <span class=\"count\">(%s)</span>"
10455
- msgid_plural "Video <span class=\"count\">(%s)</span>"
10456
- msgstr[0] "Video <span class=\"count\">(%s)</span>"
10457
- msgstr[1] "Videos <span class=\"count\">(%s)</span>"
10458
-
10459
- #: wp-admin/includes/post.php:1090
10460
- msgid "Click to edit this part of the permalink"
10461
- msgstr "Klicke, um diesen Teil des Permalinks zu bearbeiten"
10462
-
10463
- #: wp-admin/includes/post.php:1092
10464
- msgid "Temporary permalink. Click to edit this part."
10465
- msgstr "Temporärer Permalink. Klicke, um diesen Teil zu bearbeiten."
10466
-
10467
- #: wp-admin/includes/post.php:1096 wp-admin/includes/post.php:1124
10468
- msgid "Permalink:"
10469
- msgstr "Permalink:"
10470
-
10471
- #: wp-admin/includes/post.php:1098
10472
- msgid "Change Permalinks"
10473
- msgstr "Permalinks ändern"
10474
-
10475
- #: wp-admin/includes/post.php:1147 wp-admin/includes/post.php:1148
10476
- msgid "Set featured image"
10477
- msgstr "Artikelbild festlegen"
10478
-
10479
- #: wp-admin/includes/post.php:1160
10480
- msgid "Remove featured image"
10481
- msgstr "Artikelbild entfernen"
10482
-
10483
- #: wp-admin/includes/post.php:1232
10484
- msgid "Warning: %s is currently editing this post"
10485
- msgstr "Achtung: %s bearbeitet diesen Artikel gerade"
10486
-
10487
- #: wp-admin/includes/post.php:1235
10488
- msgid "Warning: %s is currently editing this page"
10489
- msgstr "Achtung: %s bearbeitet diese Seite gerade "
10490
-
10491
- #: wp-admin/includes/post.php:1238
10492
- msgid "Warning: %s is currently editing this."
10493
- msgstr "Achtung: %s bearbeitet dies aktuell."
10494
-
10495
- #: wp-admin/includes/post.php:1299
10496
- msgid "Preview not available. Please save as a draft first."
10497
- msgstr "Vorschau ist nicht verfügbar. Bitte zuerst als Entwurf speichern."
10498
-
10499
- #: wp-admin/includes/schema.php:357
10500
- msgid "My Site"
10501
- msgstr "Mein Blog"
10502
-
10503
- #: wp-admin/includes/schema.php:359
10504
- msgid "Just another WordPress site"
10505
- msgstr "Ein weiterer WordPress-Blog"
10506
-
10507
- #: wp-admin/includes/schema.php:384
10508
- msgid "F j, Y g:i a"
10509
- msgstr "d. F Y H:i"
10510
-
10511
- #: wp-admin/includes/schema.php:492
10512
- msgid "Just another %s site"
10513
- msgstr "Ein weiterer %s Blog"
10514
-
10515
- #: wp-includes/capabilities.php:542 wp-includes/capabilities.php:562
10516
- #: wp-includes/capabilities.php:588
10517
- msgid "Use <code>WP_User->ID</code> instead."
10518
- msgstr "Benutze <code>WP_User->ID</code> stattdessen."
10519
-
10520
- #: wp-includes/capabilities.php:850
10521
- msgid "Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead."
10522
- msgstr "Die Benutzung von <code>user_level</code> in Plugins und Themes ist veraltet. Nutze stattdessen das Abfragen von <code>roles</code> oder <code>capabilities</code>."
10523
-
10524
- #: wp-includes/functions.wp-styles.php:28
10525
- #: wp-includes/functions.wp-styles.php:55
10526
- #: wp-includes/functions.wp-styles.php:83
10527
- #: wp-includes/functions.wp-styles.php:104
10528
- #: wp-includes/functions.wp-styles.php:135
10529
- #: wp-includes/functions.wp-styles.php:157
10530
- #: wp-includes/functions.wp-styles.php:181
10531
- #: wp-includes/functions.wp-scripts.php:29
10532
- #: wp-includes/functions.wp-scripts.php:56
10533
- #: wp-includes/functions.wp-scripts.php:90
10534
- #: wp-includes/functions.wp-scripts.php:109
10535
- #: wp-includes/functions.wp-scripts.php:129
10536
- #: wp-includes/functions.wp-scripts.php:153
10537
- #: wp-includes/functions.wp-scripts.php:177
10538
- msgid "Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks."
10539
- msgstr "Skripte und Styles sollten nicht vor den %1$s, %2$s, or %3$s hooks registriert oder enqueued werden."
10540
-
10541
- #: wp-includes/pluggable.php:468
10542
- msgid "<strong>ERROR</strong>: Invalid username or incorrect password."
10543
- msgstr "<strong>Fehler:</strong> Falscher Benutzername oder E-Mail-Adresse."
10544
-
10545
- #: wp-includes/pluggable.php:802
10546
- msgid "You should specify a nonce action to be verified by using the first parameter."
10547
- msgstr "Du solltest eine \"nonce action\" spezifizieren, welche bei bei Benutzung des ersten Parameters verifiziert wird."
10548
-
10549
- #: wp-includes/pluggable.php:1004
10550
- msgid "New comment on your post \"%s\""
10551
- msgstr "Neue Kommentare zu deinem Artikel \"%s\""
10552
-
10553
- #: wp-includes/pluggable.php:1006 wp-includes/pluggable.php:1119
10554
- msgid "Author : %1$s (IP: %2$s , %3$s)"
10555
- msgstr "Autor: %1$s (IP: %2$s , %3$s)"
10556
-
10557
- #: wp-includes/pluggable.php:1007 wp-includes/pluggable.php:1120
10558
- msgid "E-mail : %s"
10559
- msgstr "E-Mail : %s"
10560
-
10561
- #: wp-includes/pluggable.php:1008 wp-includes/pluggable.php:1018
10562
- #: wp-includes/pluggable.php:1027 wp-includes/pluggable.php:1106
10563
- #: wp-includes/pluggable.php:1113 wp-includes/pluggable.php:1121
10564
- msgid "URL : %s"
10565
- msgstr "URL: %s"
10566
-
10567
- #: wp-includes/pluggable.php:1009 wp-includes/pluggable.php:1122
10568
- msgid "Whois : http://whois.arin.net/rest/ip/%s"
10569
- msgstr "Whois: http://whois.arin.net/rest/ip/%s"
10570
-
10571
- #: wp-includes/pluggable.php:1010 wp-includes/pluggable.php:1123
10572
- msgid "Comment: "
10573
- msgstr "Kommentar: "
10574
-
10575
- #: wp-includes/pluggable.php:1011
10576
- msgid "You can see all comments on this post here: "
10577
- msgstr "Du kannst alle Kommentare zu diesem Artikel hier sehen:"
10578
-
10579
- #: wp-includes/pluggable.php:1013
10580
- msgid "[%1$s] Comment: \"%2$s\""
10581
- msgstr "[%1$s] Kommentar: \"%2$s\""
10582
-
10583
- #: wp-includes/pluggable.php:1015
10584
- msgid "New trackback on your post \"%s\""
10585
- msgstr "Neuer Trackback zum Artikel \"%s\""
10586
-
10587
- #: wp-includes/pluggable.php:1017 wp-includes/pluggable.php:1026
10588
- msgid "Website: %1$s (IP: %2$s , %3$s)"
10589
- msgstr "Website: %1$s (IP: %2$s , %3$s)"
10590
-
10591
- #: wp-includes/pluggable.php:1019 wp-includes/pluggable.php:1028
10592
- msgid "Excerpt: "
10593
- msgstr "Kurzfassung: "
10594
-
10595
- #: wp-includes/pluggable.php:1020
10596
- msgid "You can see all trackbacks on this post here: "
10597
- msgstr "Du kannst alle Trackbacks zu diesem Artikel hier sehen: "
10598
-
10599
- #: wp-includes/pluggable.php:1022
10600
- msgid "[%1$s] Trackback: \"%2$s\""
10601
- msgstr "[%1$s] Trackback: \"%2$s\""
10602
-
10603
- #: wp-includes/pluggable.php:1024
10604
- msgid "New pingback on your post \"%s\""
10605
- msgstr "Neuer Pingback zum Artikel \"%s\""
10606
-
10607
- #: wp-includes/pluggable.php:1029
10608
- msgid "You can see all pingbacks on this post here: "
10609
- msgstr "Du kannst alle Pingbacks zu diesem Artikel hier sehen: "
10610
-
10611
- #: wp-includes/pluggable.php:1031
10612
- msgid "[%1$s] Pingback: \"%2$s\""
10613
- msgstr "[%1$s] Pingback: \"%2$s\""
10614
-
10615
- #: wp-includes/pluggable.php:1034
10616
- msgid "Permalink: %s"
10617
- msgstr "Permalink: %s"
10618
-
10619
- #: wp-includes/pluggable.php:1036 wp-includes/pluggable.php:1129
10620
- msgid "Trash it: %s"
10621
- msgstr "In den Papierkorb legen: %s"
10622
-
10623
- #: wp-includes/pluggable.php:1038 wp-includes/pluggable.php:1131
10624
- msgid "Delete it: %s"
10625
- msgstr "Lösche %s"
10626
-
10627
- #: wp-includes/pluggable.php:1039 wp-includes/pluggable.php:1132
10628
- msgid "Spam it: %s"
10629
- msgstr "Spam: %s"
10630
-
10631
- #: wp-includes/pluggable.php:1103
10632
- msgid "A new trackback on the post \"%s\" is waiting for your approval"
10633
- msgstr "Ein neuer Trackback zum Artikel \"%s\" wartet auf Freigabe"
10634
-
10635
- #: wp-includes/pluggable.php:1105 wp-includes/pluggable.php:1112
10636
- msgid "Website : %1$s (IP: %2$s , %3$s)"
10637
- msgstr "Website: %1$s (IP: %2$s , %3$s)"
10638
-
10639
- #: wp-includes/pluggable.php:1107
10640
- msgid "Trackback excerpt: "
10641
- msgstr "Trackback (Kurzfassung):"
10642
-
10643
- #: wp-includes/pluggable.php:1110
10644
- msgid "A new pingback on the post \"%s\" is waiting for your approval"
10645
- msgstr "Ein neuer Pingback zum Artikel \"%s\" wartet auf deine Freigabe."
10646
-
10647
- #: wp-includes/pluggable.php:1114
10648
- msgid "Pingback excerpt: "
10649
- msgstr "Pingback (Kurzfassung):"
10650
-
10651
- #: wp-includes/pluggable.php:1117
10652
- msgid "A new comment on the post \"%s\" is waiting for your approval"
10653
- msgstr "Ein neuer Kommentar zum Artikel \"%s\" wartet auf seine Freischaltung."
10654
-
10655
- #: wp-includes/pluggable.php:1127
10656
- msgid "Approve it: %s"
10657
- msgstr "Genehmige %s"
10658
-
10659
- #: wp-includes/pluggable.php:1134
10660
- msgid "Currently %s comment is waiting for approval. Please visit the moderation panel:"
10661
- msgid_plural "Currently %s comments are waiting for approval. Please visit the moderation panel:"
10662
- msgstr[0] "Zurzeit wartet %s Kommentar auf Freigabe. Bitte gehe zur Moderationsansicht:"
10663
- msgstr[1] "Zurzeit warten %s Kommentare auf Freigabe. Bitte gehe zur Moderationsansicht:"
10664
-
10665
- #: wp-includes/pluggable.php:1138
10666
- msgid "[%1$s] Please moderate: \"%2$s\""
10667
- msgstr "[%1$s] Bitte moderiere: \"%2$s\""
10668
-
10669
- #: wp-includes/pluggable.php:1164
10670
- msgid "Password Lost and Changed for user: %s"
10671
- msgstr "Passwort verloren und geändert für Benutzer: %s"
10672
-
10673
- #: wp-includes/pluggable.php:1168
10674
- msgid "[%s] Password Lost/Changed"
10675
- msgstr "[%s] Passwort verloren/ändern"
10676
-
10677
- #: wp-includes/pluggable.php:1192
10678
- msgid "New user registration on your site %s:"
10679
- msgstr "Neue Benutzerregistrierung in deinem Blog %s:"
10680
-
10681
- #: wp-includes/pluggable.php:1193 wp-includes/pluggable.php:1201
10682
- #: wp-login.php:212
10683
- msgid "Username: %s"
10684
- msgstr "Benutzername: %s"
10685
-
10686
- #: wp-includes/pluggable.php:1194
10687
- #: wp-admin/includes/class-wp-users-list-table.php:291
10688
- msgid "E-mail: %s"
10689
- msgstr "E-Mail: %s"
10690
-
10691
- #: wp-includes/pluggable.php:1196
10692
- msgid "[%s] New User Registration"
10693
- msgstr "[%s] Registrierung eines neuen Benutzers"
10694
-
10695
- #: wp-includes/pluggable.php:1202
10696
- msgid "Password: %s"
10697
- msgstr "Passwort: %s"
10698
-
10699
- #: wp-includes/pluggable.php:1205
10700
- msgid "[%s] Your username and password"
10701
- msgstr "[%s] Dein Benutzername und Passwort"
10702
-
10703
- #: wp-includes/theme-compat/footer.php:10
10704
- #: wp-includes/theme-compat/sidebar.php:10
10705
- #: wp-includes/theme-compat/comments.php:10
10706
- #: wp-includes/theme-compat/header.php:10
10707
- #: wp-includes/theme-compat/comments-popup.php:10
10708
- msgid "Theme without %1$s"
10709
- msgstr "Theme ohne %1$s"
10710
-
10711
- #: wp-includes/theme-compat/footer.php:10
10712
- #: wp-includes/theme-compat/sidebar.php:10
10713
- #: wp-includes/theme-compat/comments.php:10
10714
- #: wp-includes/theme-compat/header.php:10
10715
- #: wp-includes/theme-compat/comments-popup.php:10
10716
- msgid "Please include a %1$s template in your theme."
10717
- msgstr "Bitte statte deine Theme mit einer %1$s-Datei aus, damit es auch in zukünftigen WordPress-Versionen nutzbar ist."
10718
-
10719
- #: wp-includes/theme-compat/footer.php:17
10720
- msgid "%1$s is proudly powered by %2$s"
10721
- msgstr "%1$s is proudly powered by %2$s"
10722
-
10723
- #: wp-includes/theme-compat/footer.php:19
10724
- msgid "%1$s and %2$s."
10725
- msgstr "%1$s und %2$s."
10726
-
10727
- #: wp-includes/theme-compat/footer.php:19
10728
- msgid "Entries (RSS)"
10729
- msgstr "Artikel (RSS)"
10730
-
10731
- #: wp-includes/theme-compat/footer.php:19
10732
- msgid "Comments (RSS)"
10733
- msgstr "Kommentare (RSS)"
10734
-
10735
- #: wp-includes/theme-compat/footer.php:20
10736
- msgid "%d queries. %s seconds."
10737
- msgstr "%d Datenbankanfragen. %s Sekunden."
10738
-
10739
- #: wp-includes/theme-compat/sidebar.php:21 wp-includes/post-template.php:1423
10740
- #: wp-includes/js/tinymce/langs/wp-langs.php:305
10741
- #: wp-admin/edit-form-advanced.php:148 wp-admin/comment.php:165
10742
- #: wp-admin/includes/class-wp-posts-list-table.php:270
10743
- #: wp-admin/includes/class-wp-posts-list-table.php:776
10744
- #: wp-admin/includes/plugin-install.php:127
10745
- #: wp-admin/includes/class-wp-comments-list-table.php:254
10746
- #: wp-admin/includes/class-wp-comments-list-table.php:526
10747
- #: wp-admin/includes/theme-install.php:62
10748
- #: wp-admin/includes/class-wp-media-list-table.php:133
10749
- #: wp-admin/includes/meta-boxes.php:528 wp-admin/edit-form-comment.php:86
10750
- msgid "Author"
10751
- msgstr "Autor"
10752
-
10753
- #: wp-includes/theme-compat/sidebar.php:32
10754
- msgid "You are currently browsing the archives for the %s category."
10755
- msgstr "Du befindest dich im Moment im Archiv für die Kategorie %s."
10756
-
10757
- #: wp-includes/theme-compat/sidebar.php:35
10758
- msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the day %3$s."
10759
- msgstr "Du befindest dich im Moment im <a href=\"%1$s/\">%2$s</a> Blogarchiv für den Tag %3$s."
10760
-
10761
- #: wp-includes/theme-compat/sidebar.php:35
10762
- msgid "l, F jS, Y"
10763
- msgstr "l, d. F Y"
10764
-
10765
- #: wp-includes/theme-compat/sidebar.php:38
10766
- msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s."
10767
- msgstr "Du befindest dich im Moment im <a href=\"%1$s/\">%2$s</a> Blogarchiv für %3$s."
10768
-
10769
- #: wp-includes/theme-compat/sidebar.php:38
10770
- msgid "F, Y"
10771
- msgstr "F Y"
10772
-
10773
- #: wp-includes/theme-compat/sidebar.php:41
10774
- msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s."
10775
- msgstr "Du befindest dich im Moment im <a href=\"%1$s/\">%2$s</a> Blogarchiv für das Jahr %3$s."
10776
-
10777
- #: wp-includes/theme-compat/sidebar.php:44
10778
- msgid "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for <strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links."
10779
- msgstr "Du hast das <a href=\"%1$s/\">%2$s</a> Blogarchives nach <strong>&#8216;%3$s&#8217;</strong> durchsucht. Wenn du nicht das Gewünschte gefunden hast, probier mal einen dieser Links."
10780
-
10781
- #: wp-includes/theme-compat/sidebar.php:47
10782
- msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
10783
- msgstr "Du befindest dich im Moment im <a href=\"%1$s/\">%2$s</a> Blogarchiv."
10784
-
10785
- #: wp-includes/theme-compat/sidebar.php:55 wp-includes/post-template.php:816
10786
- #: wp-includes/default-widgets.php:18 wp-includes/default-widgets.php:24
10787
- #: wp-admin/export.php:172 wp-admin/menu.php:68
10788
- msgid "Pages"
10789
- msgstr "Seiten"
10790
-
10791
- #: wp-includes/theme-compat/sidebar.php:57 wp-includes/default-widgets.php:218
10792
- #: wp-includes/default-widgets.php:225 wp-admin/includes/file.php:21
10793
- msgid "Archives"
10794
- msgstr "Archive"
10795
-
10796
- #: wp-includes/theme-compat/sidebar.php:63
10797
- #: wp-includes/category-template.php:427 wp-includes/default-widgets.php:422
10798
- #: wp-includes/default-widgets.php:428 wp-admin/edit-link-form.php:28
10799
- #: wp-admin/includes/class-wp-posts-list-table.php:273
10800
- #: wp-admin/includes/class-wp-links-list-table.php:82
10801
- #: wp-admin/press-this.php:498
10802
- msgid "Categories"
10803
- msgstr "Kategorien"
10804
-
10805
- #: wp-includes/theme-compat/sidebar.php:69 wp-includes/default-widgets.php:283
10806
- #: wp-includes/default-widgets.php:288
10807
- msgid "Meta"
10808
- msgstr "Meta"
10809
-
10810
- #: wp-includes/theme-compat/sidebar.php:73
10811
- msgid "This page validates as XHTML 1.0 Transitional"
10812
- msgstr "Diese Seite ist valide als XHTML 1.0 Transitional."
10813
-
10814
- #: wp-includes/theme-compat/sidebar.php:73
10815
- msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
10816
- msgstr "Valides <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
10817
-
10818
- #: wp-includes/theme-compat/sidebar.php:74
10819
- msgid "XHTML Friends Network"
10820
- msgstr "XHTML Friends Network"
10821
-
10822
- #: wp-includes/theme-compat/sidebar.php:74
10823
- msgid "XFN"
10824
- msgstr "XFN"
10825
-
10826
- #: wp-includes/theme-compat/sidebar.php:75 wp-includes/default-widgets.php:299
10827
- msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
10828
- msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
10829
-
10830
- #: wp-includes/theme-compat/comments.php:17
10831
- msgid "This post is password protected. Enter the password to view comments."
10832
- msgstr "Dieser Artikel ist passwortgeschützt. Um die Kommentare zu sehen, musst du das Passwort eingeben."
10833
-
10834
- #: wp-includes/theme-compat/comments.php:26
10835
- msgid "One Response to %2$s"
10836
- msgid_plural "%1$s Responses to %2$s"
10837
- msgstr[0] "Ein Kommentar zu %2$s"
10838
- msgstr[1] "%1$s Kommentare zu %2$s"
10839
-
10840
- #: wp-includes/theme-compat/comments.php:49
10841
- msgid "Comments are closed."
10842
- msgstr "Kommentare sind geschlossen."
10843
-
10844
- #: wp-includes/theme-compat/comments.php:59
10845
- #: wp-includes/comment-template.php:1197 wp-includes/comment-template.php:1543
10846
- msgid "Leave a Reply"
10847
- msgstr "Hinterlasse eine Antwort"
10848
-
10849
- #: wp-includes/theme-compat/comments.php:59
10850
- #: wp-includes/comment-template.php:1198 wp-includes/comment-template.php:1544
10851
- msgid "Leave a Reply to %s"
10852
- msgstr "Hinterlasse einen Kommentar zu %s"
10853
-
10854
- #: wp-includes/theme-compat/comments.php:66
10855
- #: wp-includes/comment-template.php:1537
10856
- msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
10857
- msgstr "Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar abzugeben."
10858
-
10859
- #: wp-includes/theme-compat/comments.php:73
10860
- msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
10861
- msgstr "Angemeldet <a href=\"%1$s\">%2$s</a>."
10862
-
10863
- #: wp-includes/theme-compat/comments.php:73
10864
- msgid "Log out of this account"
10865
- msgstr "Diesen Benutzer abmelden"
10866
-
10867
- #: wp-includes/theme-compat/comments.php:73
10868
- msgid "Log out &raquo;"
10869
- msgstr "Abmelden &raquo;"
10870
-
10871
- #: wp-includes/theme-compat/comments.php:78
10872
- #: wp-includes/theme-compat/comments-popup.php:75
10873
- #: wp-includes/comment-template.php:1525
10874
- #: wp-admin/includes/class-wp-users-list-table.php:164
10875
- #: wp-admin/includes/template.php:318 wp-admin/user-edit.php:241
10876
- msgid "Name"
10877
- msgstr "Name"
10878
-
10879
- #: wp-includes/theme-compat/comments.php:78
10880
- #: wp-includes/theme-compat/comments.php:81 wp-admin/user-new.php:313
10881
- #: wp-admin/user-new.php:317 wp-admin/user-edit.php:292
10882
- #: wp-admin/user-edit.php:337
10883
- msgid "(required)"
10884
- msgstr "(erforderlich)"
10885
-
10886
- #: wp-includes/theme-compat/comments.php:81
10887
- msgid "Mail (will not be published)"
10888
- msgstr "E-Mail-Adresse (wird nicht veröffentlicht)"
10889
-
10890
- #: wp-includes/theme-compat/comments.php:84
10891
- #: wp-includes/comment-template.php:1529 wp-admin/user-new.php:330
10892
- #: wp-admin/user-edit.php:350
10893
- msgid "Website"
10894
- msgstr "Website"
10895
-
10896
- #: wp-includes/theme-compat/comments.php:88
10897
- msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
10898
- msgstr "<strong>XHTML:</strong> Diese Tags kannst du nutzen: <code>%s</code>"
10899
-
10900
- #: wp-includes/theme-compat/comments.php:92
10901
- msgid "Submit Comment"
10902
- msgstr "Kommentar senden"
10903
-
10904
- #: wp-includes/theme-compat/comments-popup.php:14
10905
- msgid "%1$s - Comments on %2$s"
10906
- msgstr "%1$s – Kommentare zu %2$s"
10907
-
10908
- #: wp-includes/theme-compat/comments-popup.php:33
10909
- #: wp-admin/edit-form-advanced.php:141 wp-admin/edit-comments.php:110
10910
- #: wp-admin/edit-comments.php:155
10911
- #: wp-admin/includes/class-wp-posts-list-table.php:280
10912
- #: wp-admin/includes/class-wp-posts-list-table.php:912
10913
- #: wp-admin/includes/class-wp-comments-list-table.php:218
10914
- #: wp-admin/includes/file.php:16 wp-admin/includes/screen.php:833
10915
- #: wp-admin/includes/class-wp-media-list-table.php:139
10916
- #: wp-content/plugins/akismet/legacy.php:214
10917
- msgid "Comments"
10918
- msgstr "Kommentare"
10919
-
10920
- #: wp-includes/theme-compat/comments-popup.php:35
10921
- msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."
10922
- msgstr "<abbr title=\"Really Simple Syndication\">RSS</abbr> Feed für Kommentare zu diesem Artikel."
10923
-
10924
- #: wp-includes/theme-compat/comments-popup.php:38
10925
- msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>"
10926
- msgstr "Die <abbr title=\"Universal Resource Locator\">URL</abbr>, um einen Trackback zu senden, lautet: <em>%s</em>"
10927
-
10928
- #: wp-includes/theme-compat/comments-popup.php:56
10929
- msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
10930
- msgstr "von %1$s &#8212; %2$s zu <a href=\"#comment-%3$s\">%4$s</a>"
10931
-
10932
- #: wp-includes/theme-compat/comments-popup.php:62
10933
- #: wp-admin/includes/dashboard.php:665 wp-admin/includes/meta-boxes.php:484
10934
- msgid "No comments yet."
10935
- msgstr "Noch keine Kommentare"
10936
-
10937
- #: wp-includes/theme-compat/comments-popup.php:66
10938
- msgid "Leave a comment"
10939
- msgstr "Hinterlasse einen Kommentar"
10940
-
10941
- #: wp-includes/theme-compat/comments-popup.php:67
10942
- msgid "Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%s</code>"
10943
- msgstr "Zeilen und Absätze brechen automatisch um, E-Mail-Adressen werden niemals angezeigt, erlaubtes <acronym title=\"Hypertext Markup Language\">HTML</acronym>: <code>%s</code>"
10944
-
10945
- #: wp-includes/theme-compat/comments-popup.php:71
10946
- msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out &raquo;</a>"
10947
- msgstr "Angemeldet als <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Dieses Konto abmelden\">Abmelden &raquo;</a>"
10948
-
10949
- #: wp-includes/theme-compat/comments-popup.php:80 wp-login.php:516
10950
- #: wp-admin/user-new.php:255 wp-admin/user-new.php:317 wp-admin/comment.php:170
10951
- #: wp-admin/includes/class-wp-users-list-table.php:165
10952
- #: wp-admin/includes/template.php:323 wp-admin/user-edit.php:337
10953
- msgid "E-mail"
10954
- msgstr "E-Mail"
10955
-
10956
- #: wp-includes/theme-compat/comments-popup.php:85
10957
- msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
10958
- msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>"
10959
-
10960
- #: wp-includes/theme-compat/comments-popup.php:90
10961
- msgid "Your Comment"
10962
- msgstr "Dein Kommentar"
10963
-
10964
- #: wp-includes/theme-compat/comments-popup.php:98
10965
- msgid "Say It!"
10966
- msgstr "Senden"
10967
-
10968
- #: wp-includes/theme-compat/comments-popup.php:103
10969
- msgid "Sorry, the comment form is closed at this time."
10970
- msgstr "Entschuldige, das Kommentarformular ist zurzeit geschlossen."
10971
-
10972
- #: wp-includes/theme-compat/comments-popup.php:108
10973
- msgid "Close this window."
10974
- msgstr "Fenster schliessen."
10975
-
10976
- #: wp-includes/theme-compat/comments-popup.php:114
10977
- msgid "Sorry, no posts matched your criteria."
10978
- msgstr "Entschuldige, kein Artikel passt zu deiner Suche."
10979
-
10980
- #: wp-includes/theme-compat/comments-popup.php:118
10981
- msgid "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
10982
- msgstr "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
10983
-
10984
- #: wp-includes/media.php:251
10985
- msgid "File &#8220;%s&#8221; doesn&#8217;t exist?"
10986
- msgstr "Existiert die Datei &#8220;%s&#8221; nicht?"
10987
-
10988
- #: wp-includes/media.php:254
10989
- msgid "The GD image library is not installed."
10990
- msgstr "Die GD Image Library ist nicht installiert."
10991
-
10992
- #: wp-includes/media.php:261
10993
- msgid "File &#8220;%s&#8221; is not an image."
10994
- msgstr "Die Datei &#8220;%s&#8221; ist kein Bild."
10995
-
10996
- #: wp-includes/media.php:418
10997
- msgid "Could not read image size"
10998
- msgstr "Die Bildgröße konnte nicht gelesen werden."
10999
-
11000
- #: wp-includes/media.php:423
11001
- msgid "Could not calculate resized image dimensions"
11002
- msgstr "Die Abmessungen des größenveränderten Bildes konnten nicht berechnet werden."
11003
-
11004
- #: wp-includes/media.php:452 wp-includes/media.php:455
11005
- #: wp-includes/media.php:460
11006
- msgid "Resize path invalid"
11007
- msgstr "Miniaturbild-Pfad ist ungültig"
11008
-
11009
- #: wp-includes/class-pop3.php:82
11010
- msgid "No server specified"
11011
- msgstr "Kein Server spezifiziert"
11012
-
11013
- #: wp-includes/class-pop3.php:90 wp-includes/class-pop3.php:102
11014
- #: wp-includes/class-pop3.php:123 wp-includes/class-pop3.php:246
11015
- #: wp-includes/class-pop3.php:300 wp-includes/class-pop3.php:311
11016
- #: wp-includes/class-pop3.php:359 wp-includes/class-pop3.php:393
11017
- #: wp-includes/class-pop3.php:426 wp-includes/class-pop3.php:525
11018
- #: wp-includes/class-pop3.php:548
11019
- msgid "Error "
11020
- msgstr "Fehler"
11021
-
11022
- #: wp-includes/class-pop3.php:115
11023
- msgid "no login ID submitted"
11024
- msgstr "es wurde keine Anmelde-ID übertragen"
11025
-
11026
- #: wp-includes/class-pop3.php:118 wp-includes/class-pop3.php:138
11027
- msgid "connection not established"
11028
- msgstr "es konnte keine Verbindung etabliert werden"
11029
-
11030
- #: wp-includes/class-pop3.php:135 wp-includes/class-pop3.php:171
11031
- msgid "No password submitted"
11032
- msgstr "Es wurde kein Passwort übermittelt"
11033
-
11034
- #: wp-includes/class-pop3.php:143
11035
- msgid "Authentication failed"
11036
- msgstr "Die Authentifizierung ist fehlgeschlagen"
11037
-
11038
- #: wp-includes/class-pop3.php:162 wp-includes/class-pop3.php:205
11039
- #: wp-includes/class-pop3.php:230 wp-includes/class-pop3.php:272
11040
- #: wp-includes/class-pop3.php:346 wp-includes/class-pop3.php:386
11041
- #: wp-includes/class-pop3.php:416 wp-includes/class-pop3.php:450
11042
- #: wp-includes/class-pop3.php:513 wp-includes/class-pop3.php:578
11043
- msgid "No connection to server"
11044
- msgstr "Keine Verbindung zum Server"
11045
-
11046
- #: wp-includes/class-pop3.php:168
11047
- msgid "No login ID submitted"
11048
- msgstr "Es wurde keine Anmelde-ID übertragen"
11049
-
11050
- #: wp-includes/class-pop3.php:176
11051
- msgid "No server banner"
11052
- msgstr "Kein Server-Banner"
11053
-
11054
- #: wp-includes/class-pop3.php:176 wp-includes/class-pop3.php:186
11055
- msgid "abort"
11056
- msgstr "abbrechen"
11057
-
11058
- #: wp-includes/class-pop3.php:186
11059
- msgid "apop authentication failed"
11060
- msgstr "apop-Authentifizierung ist fehlgeschlagen"
11061
-
11062
- #: wp-includes/class-pop3.php:323
11063
- msgid "Premature end of list"
11064
- msgstr "Vorzeitiges Ende der Liste"
11065
-
11066
- #: wp-includes/class-pop3.php:456
11067
- msgid "Empty command string"
11068
- msgstr "Leerer Befehls-String"
11069
-
11070
- #: wp-includes/class-pop3.php:476
11071
- msgid "connection does not exist"
11072
- msgstr "Die Verbindung existiert nicht"
11073
-
11074
- #: wp-includes/class-pop3.php:583
11075
- msgid "No msg number submitted"
11076
- msgstr "Es wurde keine msg-Nummer übertragen"
11077
-
11078
- #: wp-includes/class-pop3.php:589
11079
- msgid "Command failed "
11080
- msgstr "Der Befehl wurde nicht angenommen"
11081
-
11082
- #: wp-includes/deprecated.php:62
11083
- msgid "new WordPress Loop"
11084
- msgstr "Neue WordPress-Loop"
11085
-
11086
- #: wp-includes/deprecated.php:707 wp-includes/js/tinymce/langs/wp-langs.php:481
11087
- #: wp-admin/includes/media.php:685 wp-admin/includes/media.php:779
11088
- #: wp-admin/includes/media.php:1974 wp-admin/includes/media.php:1990
11089
- #: wp-admin/includes/class-wp-users-list-table.php:264
11090
- #: wp-admin/edit-tags.php:374 wp-admin/edit-tag-form.php:55
11091
- msgid "None"
11092
- msgstr "Keine"
11093
-
11094
- #: wp-includes/deprecated.php:987
11095
- msgid "Last updated"
11096
- msgstr "Zuletzt aktualisiert"
11097
-
11098
- #: wp-includes/deprecated.php:1898 wp-includes/post-template.php:1160
11099
- msgid "Missing Attachment"
11100
- msgstr "Anlage fehlt"
11101
-
11102
- #: wp-includes/deprecated.php:2730
11103
- msgid "First Post"
11104
- msgstr "Erster Artikel"
11105
-
11106
- #: wp-includes/deprecated.php:2730
11107
- msgid "Last Post"
11108
- msgstr "Letzter Artikel"
11109
-
11110
- #: wp-includes/deprecated.php:2845 wp-includes/admin-bar.php:247
11111
- #: wp-includes/admin-bar.php:378
11112
- msgid "Visit Site"
11113
- msgstr "Zur Seite"
11114
-
11115
- #: wp-includes/deprecated.php:2847 wp-includes/deprecated.php:2849
11116
- #: wp-includes/admin-bar.php:257 wp-includes/admin-bar.php:304
11117
- #: wp-includes/admin-bar.php:356 wp-admin/index.php:22
11118
- #: wp-admin/user/menu.php:10 wp-admin/menu.php:25
11119
- msgid "Dashboard"
11120
- msgstr "Dashboard"
11121
-
11122
- #: wp-includes/category-template.php:59 wp-includes/category-template.php:174
11123
- #: wp-includes/category-template.php:177 wp-includes/category-template.php:184
11124
- #: wp-includes/category-template.php:197 wp-includes/category-template.php:200
11125
- #: wp-includes/category-template.php:207
11126
- msgid "View all posts in %s"
11127
- msgstr "Alle Artikel in %s ansehen"
11128
-
11129
- #: wp-includes/category-template.php:161
11130
- #: wp-admin/includes/class-wp-posts-list-table.php:614
11131
- #: wp-admin/includes/upgrade.php:109
11132
- msgid "Uncategorized"
11133
- msgstr "Allgemein"
11134
-
11135
- #: wp-includes/category-template.php:419
11136
- msgid "No categories"
11137
- msgstr "Keine Kategorien"
11138
-
11139
- #: wp-includes/category-template.php:571
11140
- msgid "%s topic"
11141
- msgid_plural "%s topics"
11142
- msgstr[0] "%s Thema"
11143
- msgstr[1] "%s Themen"
11144
-
11145
- #: wp-includes/category-template.php:840
11146
- msgid "View all posts filed under %s"
11147
- msgstr "Alle unter %s abgelegten Artikel ansehen"
11148
-
11149
- #: wp-includes/category-template.php:855
11150
- msgid "Feed for all posts filed under %s"
11151
- msgstr "Feed für alle unter %s abgelegten Artikel"
11152
-
11153
- #: wp-includes/category-template.php:1033
11154
- msgid "Tags: "
11155
- msgstr "Schlagwörter: "
11156
-
11157
- #: wp-includes/script-loader.php:66
11158
- msgid ""
11159
- "You are about to permanently delete the selected items.\n"
11160
- " 'Cancel' to stop, 'OK' to delete."
11161
- msgstr "Du bist dabei, die ausgewählten Punkte endültig zu löschen. Drücke 'Abbrechen' zum stoppen, 'OK' zum löschen."
11162
-
11163
- #: wp-includes/script-loader.php:73
11164
- msgid "Enter a word to look up:"
11165
- msgstr "Welches Wort soll nachgeschlagen werden:"
11166
-
11167
- #: wp-includes/script-loader.php:74
11168
- msgid "Dictionary lookup"
11169
- msgstr "Im Wörterbuch nachschlagen"
11170
-
11171
- #: wp-includes/script-loader.php:75
11172
- msgid "lookup"
11173
- msgstr "nachschlagen"
11174
-
11175
- #: wp-includes/script-loader.php:76
11176
- msgid "Close all open tags"
11177
- msgstr "Alle offenen Tags schließen"
11178
-
11179
- #: wp-includes/script-loader.php:77
11180
- msgid "close tags"
11181
- msgstr "Tags schließen"
11182
-
11183
- #: wp-includes/script-loader.php:78
11184
- msgid "Enter the URL"
11185
- msgstr "Gib eine URL an"
11186
-
11187
- #: wp-includes/script-loader.php:79
11188
- msgid "Enter the URL of the image"
11189
- msgstr "Gib die URL des Bildes an"
11190
-
11191
- #: wp-includes/script-loader.php:80
11192
- msgid "Enter a description of the image"
11193
- msgstr "Gib eine Beschreibung des Bildes an"
11194
-
11195
- #: wp-includes/script-loader.php:81
11196
- msgid "fullscreen"
11197
- msgstr "Vollbild"
11198
-
11199
- #: wp-includes/script-loader.php:82
11200
- msgid "Toggle fullscreen mode"
11201
- msgstr "Vollbildmodus ein/aus"
11202
-
11203
- #: wp-includes/script-loader.php:95 wp-includes/script-loader.php:296
11204
- msgid "You do not have permission to do that."
11205
- msgstr "Du hast nicht die nötigen Rechte das zu tun."
11206
-
11207
- #: wp-includes/script-loader.php:96 wp-includes/script-loader.php:297
11208
- msgid "An unidentified error has occurred."
11209
- msgstr "Ein unbekannter Fehler ist aufgetreten."
11210
-
11211
- #: wp-includes/script-loader.php:174
11212
- #: wp-includes/js/tinymce/langs/wp-langs.php:17
11213
- #: wp-includes/js/tinymce/wp-mce-help.php:287 wp-login.php:578
11214
- #: wp-admin/includes/template.php:1311 wp-admin/includes/widgets.php:207
11215
- msgid "Close"
11216
- msgstr "Schließen"
11217
-
11218
- #: wp-includes/script-loader.php:170
11219
- msgid "Next &gt;"
11220
- msgstr "nächste &gt;"
11221
-
11222
- #: wp-includes/script-loader.php:171
11223
- msgid "&lt; Prev"
11224
- msgstr "&lt; vorherige"
11225
-
11226
- #: wp-includes/script-loader.php:172 wp-admin/includes/media.php:1942
11227
- msgid "Image"
11228
- msgstr "Bild"
11229
-
11230
- #: wp-includes/script-loader.php:173
11231
- msgid "of"
11232
- msgstr "von"
11233
-
11234
- #: wp-includes/script-loader.php:175
11235
- msgid "This feature requires inline frames. You have iframes disabled or your browser does not support them."
11236
- msgstr "Diese Funktion benötigt Iframes. Du hast jedoch Iframes deaktiviert oder dein Browser unterstützt diese nicht."
11237
-
11238
- #: wp-includes/script-loader.php:188
11239
- msgid "not configured"
11240
- msgstr "nicht konfiguriert"
11241
-
11242
- #: wp-includes/script-loader.php:192
11243
- msgid "You have attempted to queue too many files."
11244
- msgstr "Du hast versucht, zu viele Dateien in die Warteschlange zu stellen."
11245
-
11246
- #: wp-includes/script-loader.php:194
11247
- msgid "This file is empty. Please try another."
11248
- msgstr "Die ausgewählte Datei ist leer. Bitte versuch es mit einer anderen."
11249
-
11250
- #: wp-includes/script-loader.php:195
11251
- msgid "This file type is not allowed. Please try another."
11252
- msgstr "Der gewählte Dateityp ist nicht zulässig."
11253
-
11254
- #: wp-includes/script-loader.php:196
11255
- msgid "This file is not an image. Please try another."
11256
- msgstr "Diese Datei ist keine Bilddatei. Bitte probiere ein anderes."
11257
-
11258
- #: wp-includes/script-loader.php:197
11259
- msgid "Memory exceeded. Please try another smaller file."
11260
- msgstr "Der Speicher reicht nicht aus. Bitte nimm eine kleinere Datei."
11261
-
11262
- #: wp-includes/script-loader.php:198
11263
- msgid "This is larger than the maximum size. Please try another."
11264
- msgstr "Das Bild ist größer als die Maximalgröße. Bitte probiere ein anderes Bild."
11265
-
11266
- #: wp-includes/script-loader.php:199
11267
- msgid "An error occurred in the upload. Please try again later."
11268
- msgstr "Bei dem Upload ist ein Fehler aufgetaucht. Probiere es später noch einmal."
11269
-
11270
- #: wp-includes/script-loader.php:200
11271
- msgid "There was a configuration error. Please contact the server administrator."
11272
- msgstr "Die Konfiguration ist fehlerhaft. Bitte wende dich an deinen Serveradministrator."
11273
-
11274
- #: wp-includes/script-loader.php:201
11275
- msgid "You may only upload 1 file."
11276
- msgstr "Du möchtest nur 1 Datei hochladen."
11277
-
11278
- #: wp-includes/script-loader.php:202
11279
- msgid "HTTP error."
11280
- msgstr "HTTP Fehler."
11281
-
11282
- #: wp-includes/script-loader.php:203
11283
- msgid "Upload failed."
11284
- msgstr "Upload fehlgeschlagen."
11285
-
11286
- #: wp-includes/script-loader.php:206
11287
- msgid "IO error."
11288
- msgstr "IO Fehler."
11289
-
11290
- #: wp-includes/script-loader.php:207
11291
- msgid "Security error."
11292
- msgstr "Sicherheitsfehler."
11293
-
11294
- #: wp-includes/script-loader.php:208
11295
- msgid "File canceled."
11296
- msgstr "Datei abgebrochen."
11297
-
11298
- #: wp-includes/script-loader.php:209
11299
- msgid "Upload stopped."
11300
- msgstr "Upload gestoppt."
11301
-
11302
- #: wp-includes/script-loader.php:101 wp-includes/script-loader.php:210
11303
- #: wp-admin/async-upload.php:55 wp-admin/includes/dashboard.php:1197
11304
- #: wp-admin/includes/dashboard.php:1289
11305
- msgid "Dismiss"
11306
- msgstr "Ausblenden"
11307
-
11308
- #: wp-includes/script-loader.php:211
11309
- msgid "Crunching&hellip;"
11310
- msgstr "Verarbeiten&hellip;"
11311
-
11312
- #: wp-includes/script-loader.php:212
11313
- msgid "moved to the trash."
11314
- msgstr "in den Papierkorb gelegt."
11315
-
11316
- #: wp-admin/async-upload.php:56
11317
- msgid "&#8220;%s&#8221; has failed to upload due to an error"
11318
- msgstr "&#8220;%s&#8221; konnte wegen eines Fehlers nicht hochgeladen werden"
11319
-
11320
- #: wp-includes/script-loader.php:252 wp-login.php:463 wp-admin/user-new.php:340
11321
- #: wp-admin/install.php:122 wp-admin/user-edit.php:383
11322
- msgid "Strength indicator"
11323
- msgstr "Passwortstärke"
11324
-
11325
- #: wp-includes/script-loader.php:253
11326
- msgid "Very weak"
11327
- msgstr "Ganz schwach"
11328
-
11329
- #: wp-includes/script-loader.php:254
11330
- msgid "Weak"
11331
- msgstr "Schwach"
11332
-
11333
- #: wp-includes/script-loader.php:256
11334
- msgctxt "password strength"
11335
- msgid "Medium"
11336
- msgstr "Mittelgroß"
11337
-
11338
- #: wp-includes/script-loader.php:257
11339
- msgid "Strong"
11340
- msgstr "Stark"
11341
-
11342
- #: wp-includes/script-loader.php:258
11343
- msgid "Mismatch"
11344
- msgstr "Keine Übereinstimmung"
11345
-
11346
- #: wp-includes/script-loader.php:267
11347
- #: wp-includes/js/tinymce/langs/wp-langs.php:131
11348
- #: wp-includes/js/tinymce/langs/wp-langs.php:339
11349
- msgid "Insert/edit link"
11350
- msgstr "Link einfügen/ändern"
11351
-
11352
- #: wp-includes/script-loader.php:268 wp-includes/script-loader.php:325
11353
- #: wp-includes/class-wp-editor.php:598
11354
- #: wp-includes/js/tinymce/langs/wp-langs.php:15
11355
- #: wp-admin/includes/class-wp-posts-list-table.php:1032
11356
- #: wp-admin/includes/class-wp-posts-list-table.php:1034
11357
- #: wp-admin/includes/class-wp-posts-list-table.php:1037
11358
- #: wp-admin/includes/template.php:480
11359
- #: wp-admin/includes/class-wp-plugins-list-table.php:260
11360
- #: wp-admin/includes/meta-boxes.php:224 wp-admin/includes/meta-boxes.php:225
11361
- #: wp-admin/edit-form-comment.php:74 wp-admin/edit-tag-form.php:90
11362
- msgid "Update"
11363
- msgstr "Aktualisieren"
11364
-
11365
- #: wp-includes/script-loader.php:269 wp-includes/class-wp-editor.php:790
11366
- #: wp-admin/edit-link-form.php:20 wp-admin/includes/meta-boxes.php:650
11367
- msgid "Add Link"
11368
- msgstr "Link hinzufügen"
11369
-
11370
- #: wp-includes/script-loader.php:270 wp-includes/script-loader.php:356
11371
- #: wp-admin/includes/template.php:1345
11372
- msgid "(no title)"
11373
- msgstr "(kein Titel)"
11374
-
11375
- #: wp-includes/script-loader.php:271
11376
- msgid "No matches found."
11377
- msgstr "Keine Übereinstimmungen gefunden."
11378
-
11379
- #: wp-includes/script-loader.php:288 wp-admin/includes/widgets.php:182
11380
- #: wp-admin/includes/meta-boxes.php:293 wp-admin/includes/meta-boxes.php:697
11381
- #: wp-admin/press-this.php:556
11382
- msgid "Add"
11383
- msgstr "Hinzu"
11384
-
11385
- #: wp-includes/script-loader.php:289
11386
- msgid "Separate multiple categories with commas."
11387
- msgstr "Mehrere Kategorien durch Kommas trennen."
11388
-
11389
- #: wp-includes/script-loader.php:306
11390
- msgid "Approve and Reply"
11391
- msgstr "Genehmigen und Antworten"
11392
-
11393
- #: wp-includes/script-loader.php:307 wp-includes/comment-template.php:1039
11394
- #: wp-admin/includes/dashboard.php:702
11395
- #: wp-admin/includes/class-wp-comments-list-table.php:417
11396
- msgid "Reply"
11397
- msgstr "Antworten"
11398
-
11399
- #: wp-includes/script-loader.php:316 wp-admin/includes/template.php:619
11400
- #: wp-admin/includes/meta-boxes.php:103 wp-admin/includes/meta-boxes.php:149
11401
- msgid "OK"
11402
- msgstr "OK"
11403
-
11404
- #: wp-includes/script-loader.php:317 wp-includes/class-wp-editor.php:787
11405
- #: wp-includes/js/tinymce/langs/wp-langs.php:16
11406
- #: wp-admin/includes/dashboard.php:156
11407
- #: wp-admin/includes/class-wp-posts-list-table.php:1029
11408
- #: wp-admin/includes/image-edit.php:74 wp-admin/includes/media.php:1156
11409
- #: wp-admin/includes/media.php:1384 wp-admin/includes/template.php:342
11410
- #: wp-admin/includes/template.php:532 wp-admin/includes/template.php:620
11411
- #: wp-admin/includes/theme-install.php:285 wp-admin/includes/nav-menu.php:189
11412
- #: wp-admin/includes/class-wp-terms-list-table.php:366
11413
- #: wp-admin/includes/meta-boxes.php:104 wp-admin/includes/meta-boxes.php:150
11414
- #: wp-admin/press-this.php:130 wp-admin/press-this.php:160
11415
- #: wp-admin/press-this.php:291 wp-admin/widgets.php:286
11416
- msgid "Cancel"
11417
- msgstr "Abbrechen"
11418
-
11419
- #: wp-includes/script-loader.php:318
11420
- msgid "Publish on:"
11421
- msgstr "Veröffentlichen am:"
11422
-
11423
- #: wp-includes/script-loader.php:319
11424
- msgid "Schedule for:"
11425
- msgstr "Geplant für:"
11426
-
11427
- #: wp-includes/script-loader.php:320
11428
- msgid "Published on:"
11429
- msgstr "Veröffentlicht am:"
11430
-
11431
- #: wp-includes/script-loader.php:321
11432
- msgid "Show more comments"
11433
- msgstr "Mehr Kommentare zeigen"
11434
-
11435
- #: wp-includes/script-loader.php:322
11436
- msgid "No more comments found."
11437
- msgstr "Es wurden keine weiteren Kommentare gefunden."
11438
-
11439
- #: wp-includes/script-loader.php:323 wp-admin/edit-form-advanced.php:102
11440
- #: wp-admin/includes/dashboard.php:563 wp-admin/includes/meta-boxes.php:215
11441
- #: wp-admin/includes/meta-boxes.php:216 wp-admin/press-this.php:470
11442
- msgid "Publish"
11443
- msgstr "Veröffentlichen"
11444
-
11445
- #: wp-includes/script-loader.php:324 wp-admin/includes/meta-boxes.php:212
11446
- #: wp-admin/includes/meta-boxes.php:213
11447
- msgid "Schedule"
11448
- msgstr "Planen"
11449
-
11450
- #: wp-includes/script-loader.php:326 wp-admin/includes/meta-boxes.php:33
11451
- msgid "Save as Pending"
11452
- msgstr "Als Unerledigt speichern"
11453
-
11454
- #: wp-includes/script-loader.php:327 wp-admin/includes/dashboard.php:560
11455
- #: wp-admin/includes/meta-boxes.php:31 wp-admin/press-this.php:468
11456
- msgid "Save Draft"
11457
- msgstr "Speichern"
11458
-
11459
- #: wp-includes/script-loader.php:328 wp-includes/post.php:601
11460
- #: wp-includes/post.php:621 wp-admin/includes/class-wp-posts-list-table.php:803
11461
- #: wp-admin/includes/class-wp-posts-list-table.php:961
11462
- #: wp-admin/includes/template.php:1454 wp-admin/includes/meta-boxes.php:116
11463
- #: wp-admin/includes/meta-boxes.php:146
11464
- msgid "Private"
11465
- msgstr "Privat"
11466
-
11467
- #: wp-includes/script-loader.php:329 wp-admin/includes/meta-boxes.php:125
11468
- #: wp-admin/includes/meta-boxes.php:140
11469
- msgid "Public"
11470
- msgstr "Öffentlich"
11471
-
11472
- #: wp-includes/script-loader.php:330 wp-admin/includes/meta-boxes.php:122
11473
- msgid "Public, Sticky"
11474
- msgstr "Öffentlich, Oben gehalten"
11475
-
11476
- #: wp-includes/script-loader.php:331
11477
- msgid "Password Protected"
11478
- msgstr "Passwortgeschützt"
11479
-
11480
- #: wp-includes/script-loader.php:332 wp-admin/includes/meta-boxes.php:65
11481
- #: wp-admin/includes/meta-boxes.php:92
11482
- msgid "Privately Published"
11483
- msgstr "Privat veröffentlicht"
11484
-
11485
- #: wp-includes/script-loader.php:333 wp-includes/post.php:602
11486
- #: wp-includes/post.php:622 wp-admin/admin-ajax.php:1320
11487
- #: wp-admin/includes/class-wp-posts-list-table.php:588
11488
- #: wp-admin/includes/class-wp-posts-list-table.php:958
11489
- #: wp-admin/includes/meta-boxes.php:68 wp-admin/includes/meta-boxes.php:90
11490
- msgid "Published"
11491
- msgstr "Veröffentlicht"
11492
-
11493
- #: wp-includes/script-loader.php:341
11494
- msgid "Submitted on:"
11495
- msgstr "Eingereicht am:"
11496
-
11497
- #: wp-includes/script-loader.php:354 wp-includes/script-loader.php:361
11498
- msgid "Error while saving the changes."
11499
- msgstr "Fehler beim Speichern der Änderungen."
11500
-
11501
- #: wp-includes/script-loader.php:355
11502
- msgid "Remove From Bulk Edit"
11503
- msgstr "Aus der Massenbearbeitung entfernen"
11504
-
11505
- #: wp-includes/script-loader.php:366
11506
- msgid "Plugin Information:"
11507
- msgstr "Plugin Information:"
11508
-
11509
- #: wp-includes/script-loader.php:367
11510
- msgid "Are you sure you want to install this plugin?"
11511
- msgstr "Bist du sicher, dass du dieses Plugin installieren möchtest?"
11512
-
11513
- #: wp-includes/script-loader.php:380
11514
- msgid "Could not load the preview image. Please reload the page and try again."
11515
- msgstr "Konnte das Vorschaubild nicht laden. Bitte lade die Seite neu und probiere es erneut. "
11516
-
11517
- #: wp-includes/script-loader.php:385 wp-admin/includes/media.php:1175
11518
- msgid "Use as featured image"
11519
- msgstr "Als Artikelbild nutzen"
11520
-
11521
- #: wp-includes/script-loader.php:386
11522
- msgid "Saving..."
11523
- msgstr "Speichere …"
11524
-
11525
- #: wp-includes/script-loader.php:387
11526
- msgid "Could not set that as the thumbnail image. Try a different attachment."
11527
- msgstr "Das Bild konnte nicht als Miniaturbild gesetzt werden. Versuche es mit einem anderen."
11528
-
11529
- #: wp-includes/script-loader.php:388
11530
- msgid "Done"
11531
- msgstr "Fertig"
11532
-
11533
- #: wp-includes/script-loader.php:394
11534
- msgctxt "search results"
11535
- msgid "No results found."
11536
- msgstr "Es wurden keine Ergebnisse gefunden."
11537
-
11538
- #: wp-includes/script-loader.php:395
11539
- msgid ""
11540
- "You are about to permanently delete this menu. \n"
11541
- " 'Cancel' to stop, 'OK' to delete."
11542
- msgstr "Du bist dabei dieses Menü endgültig zu löschen. Klicke auf \"Abbrechen\", um den Vorgang zu beenden, oder auf \"OK\", um das Menü zu löschen."
11543
-
11544
- #: wp-includes/script-loader.php:396 wp-includes/script-loader.php:506
11545
- #: wp-includes/js/tinymce/langs/wp-langs.php:179
11546
- msgid "The changes you made will be lost if you navigate away from this page."
11547
- msgstr "Beim Verlassen der Seite werden deine Änderungen verworfen."
11548
-
11549
- #: wp-includes/script-loader.php:505
11550
- msgid "Saving Draft&#8230;"
11551
- msgstr "Entwurf wird gespeichert&#8230;"
11552
-
11553
- #: wp-includes/post-template.php:112
11554
- msgid "Protected: %s"
11555
- msgstr "Geschützt: %s"
11556
-
11557
- #: wp-includes/post-template.php:115
11558
- msgid "Private: %s"
11559
- msgstr "Privat: %s"
11560
-
11561
- #: wp-includes/post-template.php:185
11562
- msgid "(more...)"
11563
- msgstr "(weiterlesen …)"
11564
-
11565
- #: wp-includes/post-template.php:268
11566
- msgid "There is no excerpt because this is a protected post."
11567
- msgstr "Es gibt keine Kurzfassung, da dies ein geschützter Artikel ist."
11568
-
11569
- #: wp-includes/post-template.php:632
11570
- msgid "Pages:"
11571
- msgstr "Seiten:"
11572
-
11573
- #: wp-includes/post-template.php:634
11574
- msgid "Next page"
11575
- msgstr "Nächste Seite"
11576
-
11577
- #: wp-includes/post-template.php:635
11578
- msgid "Previous page"
11579
- msgstr "Vorherige Seite"
11580
-
11581
- #: wp-includes/post-template.php:896 wp-admin/menu.php:27
11582
- msgid "Home"
11583
- msgstr "Home"
11584
-
11585
- #: wp-includes/post-template.php:1220
11586
- msgid "This post is password protected. To view it please enter your password below:"
11587
- msgstr "Dieser Artikel ist passwortgeschützt. Um ihn anzusehen, trage das Passwort bitte hier ein:"
11588
-
11589
- #: wp-includes/post-template.php:1221 wp-admin/includes/meta-boxes.php:145
11590
- msgid "Password:"
11591
- msgstr "Passwort:"
11592
-
11593
- #: wp-includes/post-template.php:1221 wp-admin/includes/dashboard.php:186
11594
- msgid "Submit"
11595
- msgstr "Senden"
11596
-
11597
- #: wp-includes/post-template.php:1284
11598
- msgctxt "revision date format"
11599
- msgid "j F, Y @ G:i"
11600
- msgstr "d.m.Y H:i"
11601
-
11602
- #: wp-includes/post-template.php:1286
11603
- msgid "%1$s [Autosave]"
11604
- msgstr "%1$s [Automatische Speicherung]"
11605
-
11606
- #: wp-includes/post-template.php:1288
11607
- msgid "%1$s [Current Revision]"
11608
- msgstr "%1$s [Aktuelle Überarbeitung]"
11609
-
11610
- #: wp-includes/post-template.php:1354
11611
- msgctxt "post revision"
11612
- msgid "%1$s by %2$s"
11613
- msgstr "%1$s von %2$s"
11614
-
11615
- #: wp-includes/post-template.php:1381
11616
- #: wp-admin/includes/class-wp-posts-list-table.php:188
11617
- #: wp-admin/includes/class-wp-posts-list-table.php:542
11618
- #: wp-admin/includes/class-wp-comments-list-table.php:195
11619
- #: wp-admin/includes/class-wp-comments-list-table.php:405
11620
- #: wp-admin/includes/class-wp-media-list-table.php:376
11621
- msgid "Restore"
11622
- msgstr "Wiederherstellen"
11623
-
11624
- #: wp-includes/post-template.php:1404
11625
- msgid "Compare Revisions"
11626
- msgstr "Überarbeitungen vergleichen"
11627
-
11628
- #: wp-includes/post-template.php:1420
11629
- msgctxt "revisions column name"
11630
- msgid "Old"
11631
- msgstr "Alt"
11632
-
11633
- #: wp-includes/post-template.php:1421
11634
- msgctxt "revisions column name"
11635
- msgid "New"
11636
- msgstr "Neu"
11637
-
11638
- #: wp-includes/post-template.php:1422
11639
- msgctxt "revisions column name"
11640
- msgid "Date Created"
11641
- msgstr "Erstellungsdatum"
11642
-
11643
- #: wp-includes/post-template.php:1424 wp-admin/users.php:54
11644
- #: wp-admin/includes/media.php:1648
11645
- msgid "Actions"
11646
- msgstr "Aktionen"
11647
-
11648
- #: wp-includes/author-template.php:55
11649
- msgid "Use <code>get_the_author()</code> instead if you do not want the value echoed."
11650
- msgstr "Wenn du den Wert nicht ausgegeben bekommen möchtest, verwende stattdessen <code>get_the_author()</code>."
11651
-
11652
- #: wp-includes/author-template.php:143
11653
- msgid "Visit %s&#8217;s website"
11654
- msgstr "Besuche %ss Website"
11655
-
11656
- #: wp-includes/author-template.php:211 wp-includes/author-template.php:325
11657
- msgid "Posts by %s"
11658
- msgstr "Artikel von %s"
11659
-
11660
- #: wp-includes/comment-template.php:30 wp-includes/theme.php:236
11661
- msgid "Anonymous"
11662
- msgstr "Anonymous"
11663
-
11664
- #: wp-includes/comment-template.php:580 wp-includes/comment-template.php:976
11665
- msgid "% Comments"
11666
- msgstr "% Kommentare"
11667
-
11668
- #: wp-includes/comment-template.php:582 wp-includes/comment-template.php:974
11669
- msgid "No Comments"
11670
- msgstr "Keine Kommentare"
11671
-
11672
- #: wp-includes/comment-template.php:584 wp-includes/comment-template.php:975
11673
- msgid "1 Comment"
11674
- msgstr "1 Kommentar"
11675
-
11676
- #: wp-includes/comment-template.php:678 wp-includes/comment-template.php:1536
11677
- #: wp-admin/comment.php:181
11678
- msgctxt "noun"
11679
- msgid "Comment"
11680
- msgstr "Kommentar"
11681
-
11682
- #: wp-includes/comment-template.php:679 wp-admin/includes/dashboard.php:744
11683
- msgid "Trackback"
11684
- msgstr "Trackback"
11685
-
11686
- #: wp-includes/comment-template.php:680 wp-admin/includes/dashboard.php:741
11687
- msgid "Pingback"
11688
- msgstr "Pingback"
11689
-
11690
- #: wp-includes/comment-template.php:726
11691
- msgid "Use <code>get_trackback_url()</code> instead if you do not want the value echoed."
11692
- msgstr "Wenn du den Wert nicht ausgegeben bekommen möchtest, verwende stattdessen <code>get_trackback_url()</code>."
11693
-
11694
- #: wp-includes/comment-template.php:977
11695
- msgid "Comments Off"
11696
- msgstr "Kommentare deaktiviert"
11697
-
11698
- #: wp-includes/comment-template.php:987
11699
- msgid "Enter your password to view comments."
11700
- msgstr "Auch die Kommentare sind durch das Passwort geschützt."
11701
-
11702
- #: wp-includes/comment-template.php:1014
11703
- msgid "Comment on %s"
11704
- msgstr "Kommentiere %s"
11705
-
11706
- #: wp-includes/comment-template.php:1040
11707
- msgid "Log in to Reply"
11708
- msgstr "Zum Antworten anmelden"
11709
-
11710
- #: wp-includes/comment-template.php:1100
11711
- msgid "Leave a Comment"
11712
- msgstr "Hinterlasse einen Kommentar"
11713
-
11714
- #: wp-includes/comment-template.php:1101
11715
- msgid "Log in to leave a Comment"
11716
- msgstr "Melde dich an, um einen Kommentar zu hinterlassen"
11717
-
11718
- #: wp-includes/comment-template.php:1140
11719
- msgid "Click here to cancel reply."
11720
- msgstr "Hier klicken, um die Antwort abzubrechen."
11721
-
11722
- #: wp-includes/comment-template.php:1355
11723
- msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
11724
- msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">sagt:</span>"
11725
-
11726
- #: wp-includes/comment-template.php:1358
11727
- msgid "Your comment is awaiting moderation."
11728
- msgstr "Dein Kommentar wartet auf Freischaltung."
11729
-
11730
- #: wp-includes/comment-template.php:1365
11731
- msgid "%1$s at %2$s"
11732
- msgstr "%1$s um %2$s"
11733
-
11734
- #: wp-includes/comment-template.php:1365
11735
- msgid "(Edit)"
11736
- msgstr "(Bearbeiten)"
11737
-
11738
- #: wp-includes/comment-template.php:1527
11739
- msgid "Email"
11740
- msgstr "E-Mail-Adresse"
11741
-
11742
- #: wp-includes/comment-template.php:1533
11743
- msgid "Required fields are marked %s"
11744
- msgstr "Erforderliche Felder sind markiert %s"
11745
-
11746
- #: wp-includes/comment-template.php:1538
11747
- msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out?</a>"
11748
- msgstr "Angemeldet als <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Vom Benutzerkonto ausloggen\">Abmelden?</a>"
11749
-
11750
- #: wp-includes/comment-template.php:1539
11751
- msgid "Your email address will not be published."
11752
- msgstr "Deine E-Mail-Adresse wird nicht veröffentlicht."
11753
-
11754
- #: wp-includes/comment-template.php:1540
11755
- msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes: %s"
11756
- msgstr "Du kannst folgende <abbr title=\"HyperText Markup Language\">HTML</abbr>-Tags benutzen: %s"
11757
-
11758
- #: wp-includes/comment-template.php:1545
11759
- msgid "Cancel reply"
11760
- msgstr "Antworten abbrechen"
11761
-
11762
- #: wp-includes/comment-template.php:1546
11763
- msgid "Post Comment"
11764
- msgstr "Kommentar abschicken"
11765
-
11766
- #: wp-includes/comment.php:387
11767
- msgid "Unapproved"
11768
- msgstr "Nicht genehmigt"
11769
-
11770
- #: wp-includes/comment.php:389 wp-admin/edit-form-comment.php:50
11771
- msgctxt "adjective"
11772
- msgid "Approved"
11773
- msgstr "Genehmigt"
11774
-
11775
- #: wp-includes/comment.php:391 wp-admin/edit-form-comment.php:52
11776
- msgctxt "adjective"
11777
- msgid "Spam"
11778
- msgstr "Spam"
11779
-
11780
- #: wp-includes/comment.php:628 wp-includes/comment.php:630
11781
- msgid "Duplicate comment detected; it looks as though you&#8217;ve already said that!"
11782
- msgstr "Doppelter Kommentar wurde entdeckt. Es sieht stark danach aus, dass du das schon einmal gesagt hast!"
11783
-
11784
- #: wp-includes/comment.php:688 wp-includes/comment.php:690
11785
- msgid "You are posting comments too quickly. Slow down."
11786
- msgstr "Du kommentierst zu schnell. Immer locker bleiben."
11787
-
11788
- #: wp-includes/comment.php:1412
11789
- msgid "Could not update comment status"
11790
- msgstr "Der Kommentarstatus konnte nicht aktualisiert werden"
11791
-
11792
- #: wp-includes/class-http.php:123
11793
- msgid "A valid URL was not provided."
11794
- msgstr "Es wurde keine gültige URL übermittelt."
11795
-
11796
- #: wp-includes/class-http.php:126
11797
- msgid "User has blocked requests through HTTP."
11798
- msgstr "Der Benutzer hat Anfragen über HTTP blockiert."
11799
-
11800
- #: wp-includes/class-http.php:146
11801
- msgid "Destination directory for file streaming does not exist or is not writable."
11802
- msgstr "Das Zielverzeichnis für das Datei-Streaming existiert nicht oder ist nicht beschreibbar."
11803
-
11804
- #: wp-includes/class-http.php:249
11805
- msgid "There are no HTTP transports available which can complete the requested request."
11806
- msgstr "Es sind keine HTTP-Transports verfügbar, welche die gewünschte Abfrage ausführen könnten."
11807
-
11808
- #: wp-includes/class-http.php:698 wp-includes/class-http.php:880
11809
- #: wp-includes/class-http.php:899 wp-includes/class-http.php:1073
11810
- msgid "Could not open handle for fopen() to %s"
11811
- msgstr "Konnte Verbindung zu fopen() für %s nicht öffnen"
11812
-
11813
- #: wp-includes/class-http.php:738 wp-includes/class-http.php:922
11814
- #: wp-includes/class-http.php:1118 wp-includes/class-http.php:1137
11815
- msgid "Too many redirects."
11816
- msgstr "Zu viele Weiterleitungen."
11817
-
11818
- #: wp-includes/class-http.php:822
11819
- msgid "Malformed URL: %s"
11820
- msgstr "Fehlerhafte URL: %s"
11821
-
11822
- #: wp-includes/user.php:80
11823
- msgid "<strong>ERROR</strong>: The username field is empty."
11824
- msgstr "<strong>Fehler:</strong> Das Benutzerfeld ist leer."
11825
-
11826
- #: wp-includes/user.php:83
11827
- msgid "<strong>ERROR</strong>: The password field is empty."
11828
- msgstr "<strong>Fehler:</strong> Das Passwortfeld ist leer."
11829
-
11830
- #: wp-includes/user.php:91
11831
- msgid "<strong>ERROR</strong>: Invalid username. <a href=\"%s\" title=\"Password Lost and Found\">Lost your password</a>?"
11832
- msgstr "<strong>Fehler:</strong> Falscher Benutzername. <a href=\"%s\" title=\"Passwort zurücksetzen\">Passwort vergessen</a>?"
11833
-
11834
- #: wp-includes/user.php:96
11835
- msgid "<strong>ERROR</strong>: Your account has been marked as a spammer."
11836
- msgstr "<strong>Fehler:</strong> Dein Account wurde als Spam markiert."
11837
-
11838
- #: wp-includes/user.php:102
11839
- msgid "Site Suspended."
11840
- msgstr "Blog deaktiviert."
11841
-
11842
- #: wp-includes/user.php:111
11843
- msgid "<strong>ERROR</strong>: The password you entered for the username <strong>%1$s</strong> is incorrect. <a href=\"%2$s\" title=\"Password Lost and Found\">Lost your password</a>?"
11844
- msgstr "<strong>FEHLER:</strong>: Das Passwort welches du für den Benutzernamen <strong>%1$s</strong> eingegeben hast, ist falsch. Hast du dein <a href=\"%2$s\" title=\"Passwort zurücksetzen\">Passwort vergessen</a>?"
11845
-
11846
- #: wp-includes/user.php:137
11847
- msgid "Please log in again."
11848
- msgstr "Bitte melde dich nochmal an."
11849
-
11850
- #: wp-includes/user.php:1276
11851
- msgid "Cannot create a user with an empty login name."
11852
- msgstr "Ohne Benutzername kann kein neuer Benutzer angelegt werden."
11853
-
11854
- #: wp-includes/user.php:1279
11855
- msgid "This username is already registered."
11856
- msgstr "Dieser Benutzername existiert bereits."
11857
-
11858
- #: wp-includes/user.php:1294
11859
- msgid "This email address is already registered."
11860
- msgstr "Diese E-Mail-Adresse ist bereits registriert."
11861
-
11862
- #: wp-includes/user.php:1489
11863
- msgid "AIM"
11864
- msgstr "AIM"
11865
-
11866
- #: wp-includes/user.php:1490
11867
- msgid "Yahoo IM"
11868
- msgstr "Yahoo IM"
11869
-
11870
- #: wp-includes/user.php:1491
11871
- msgid "Jabber / Google Talk"
11872
- msgstr "Jabber / Google Talk"
11873
-
11874
- #: wp-includes/load.php:428
11875
- msgid "The site you have requested is not installed properly. Please contact the system administrator."
11876
- msgstr "Der Blog den du aufrufen möchtest, wurde nicht korrekt installiert. Bitte kontaktiere den Administrator."
11877
-
11878
- #: wp-includes/registration-functions.php:7 wp-includes/registration.php:7
11879
- msgid "This file no longer needs to be included."
11880
- msgstr "Diese Datei muss nicht mehr per include() oder require() eingebunden werden."
11881
-
11882
- #: wp-includes/functions.php:407
11883
- msgid "%s is a protected WP option and may not be modified"
11884
- msgstr "%s ist eine geschützte WP-Option und sollte nicht verändert werden"
11885
-
11886
- #: wp-includes/functions.php:1783
11887
- msgid "ERROR: %s is not a valid feed template."
11888
- msgstr "FEHLER: %s ist kein gültiges Feed-Template"
11889
-
11890
- #: wp-includes/functions.php:2282 wp-includes/functions.php:2400
11891
- msgid "Unable to create directory %s. Is its parent directory writable by the server?"
11892
- msgstr "Das Verzeichnis %s kann nicht angelegt werden. Ist das übergeordnete Verzeichnis durch den Server beschreibbar?"
11893
-
11894
- #: wp-includes/functions.php:2379
11895
- msgid "Empty filename"
11896
- msgstr "leerer Dateiname"
11897
-
11898
- #: wp-includes/functions.php:2383
11899
- msgid "Invalid file type"
11900
- msgstr "Ungültiger Dateityp"
11901
-
11902
- #: wp-includes/functions.php:2406
11903
- msgid "Could not write file %s"
11904
- msgstr "Konnte folgende Datei nicht schreiben %s"
11905
-
11906
- #: wp-includes/functions.php:2657
11907
- msgid "Your attempt to edit this attachment: &#8220;%s&#8221; has failed."
11908
- msgstr "Dein Versuch, den Anhang &#8220;%s&#8221; zu bearbeiten, ist fehlgeschlagen."
11909
-
11910
- #: wp-includes/functions.php:2659
11911
- msgid "Your attempt to add this category has failed."
11912
- msgstr "Dein Versuch, die Kategorie hinzuzufügen, ist fehlgeschlagen."
11913
-
11914
- #: wp-includes/functions.php:2660
11915
- msgid "Your attempt to delete this category: &#8220;%s&#8221; has failed."
11916
- msgstr "Dein Versuch, die Kategorie &#8220;%s&#8221; zu löschen, ist fehlgeschlagen."
11917
-
11918
- #: wp-includes/functions.php:2661
11919
- msgid "Your attempt to edit this category: &#8220;%s&#8221; has failed."
11920
- msgstr "Dein Versuch, die Kategorie &#8220;%s&#8221; zu bearbeiten, ist fehlgeschlagen."
11921
-
11922
- #: wp-includes/functions.php:2663
11923
- msgid "Your attempt to delete this comment: &#8220;%s&#8221; has failed."
11924
- msgstr "Dein Versuch, den Kommentar &#8220;%s&#8221; zu löschen, ist fehlgeschlagen."
11925
-
11926
- #: wp-includes/functions.php:2664
11927
- msgid "Your attempt to unapprove this comment: &#8220;%s&#8221; has failed."
11928
- msgstr "Dein Versuch, den Kommentar &#8220;%s&#8221; nicht zu genehmigen, ist fehlgeschlagen."
11929
-
11930
- #: wp-includes/functions.php:2665
11931
- msgid "Your attempt to approve this comment: &#8220;%s&#8221; has failed."
11932
- msgstr "Dein Versuch, den Kommentar &#8220;%s&#8221; zu genehmigen, ist fehlgeschlagen."
11933
-
11934
- #: wp-includes/functions.php:2666
11935
- msgid "Your attempt to edit this comment: &#8220;%s&#8221; has failed."
11936
- msgstr "Dein Versuch, den Kommentar &#8220;%s&#8221; zu bearbeiten, ist fehlgeschlagen."
11937
-
11938
- #: wp-includes/functions.php:2667
11939
- msgid "Your attempt to bulk modify comments has failed."
11940
- msgstr "Dein Versuch der Massenbearbeitung der Kommentare ist fehlgeschlagen."
11941
-
11942
- #: wp-includes/functions.php:2668
11943
- msgid "Your attempt to moderate comments has failed."
11944
- msgstr "Dein Versuch, Kommentare zu moderieren, ist fehlgeschlagen."
11945
-
11946
- #: wp-includes/functions.php:2670
11947
- msgid "Your attempt to add this link has failed."
11948
- msgstr "Dein Versuch, den Link hinzuzufügen, ist fehlgeschlagen."
11949
-
11950
- #: wp-includes/functions.php:2671
11951
- msgid "Your attempt to delete this link: &#8220;%s&#8221; has failed."
11952
- msgstr "Dein Versuch, den Link &#8220;%s&#8221; zu löschen, ist fehlgeschlagen."
11953
-
11954
- #: wp-includes/functions.php:2672
11955
- msgid "Your attempt to edit this link: &#8220;%s&#8221; has failed."
11956
- msgstr "Dein Versuch, den Link &#8220;%s&#8221; zu bearbeiten, ist fehlgeschlagen."
11957
-
11958
- #: wp-includes/functions.php:2673
11959
- msgid "Your attempt to bulk modify links has failed."
11960
- msgstr "Dein Versuch der Massenbearbeitung der Links ist fehlgeschlagen."
11961
-
11962
- #: wp-includes/functions.php:2675
11963
- msgid "Your attempt to add this page has failed."
11964
- msgstr "Dein Versuch, die Seite hinzuzufügen, ist fehlgeschlagen."
11965
-
11966
- #: wp-includes/functions.php:2676
11967
- msgid "Your attempt to delete this page: &#8220;%s&#8221; has failed."
11968
- msgstr "Dein Versuch, die Seite &#8220;%s&#8221; zu löschen, ist fehlgeschlagen."
11969
-
11970
- #: wp-includes/functions.php:2677
11971
- msgid "Your attempt to edit this page: &#8220;%s&#8221; has failed."
11972
- msgstr "Dein Versuch, die Seite &#8220;%s&#8221; zu bearbeiten, ist fehlgeschlagen."
11973
-
11974
- #: wp-includes/functions.php:2679
11975
- msgid "Your attempt to edit this plugin file: &#8220;%s&#8221; has failed."
11976
- msgstr "Dein Versuch, das Plugin &#8220;%s&#8221; zu bearbeiten, ist fehlgeschlagen."
11977
-
11978
- #: wp-includes/functions.php:2680
11979
- msgid "Your attempt to activate this plugin: &#8220;%s&#8221; has failed."
11980
- msgstr "Dein Versuch, das Plugin &#8220;%s&#8221; zu aktivieren, ist fehlgeschlagen."
11981
-
11982
- #: wp-includes/functions.php:2681
11983
- msgid "Your attempt to deactivate this plugin: &#8220;%s&#8221; has failed."
11984
- msgstr "Dein Versuch, das Plugin &#8220;%s&#8221; zu deaktivieren, ist fehlgeschlagen."
11985
-
11986
- #: wp-includes/functions.php:2682
11987
- msgid "Your attempt to update this plugin: &#8220;%s&#8221; has failed."
11988
- msgstr "Dein Versuch, das Plugin &#8220;%s&#8221; zu aktualisieren ist fehlgeschlagen."
11989
-
11990
- #: wp-includes/functions.php:2684
11991
- msgid "Your attempt to add this post has failed."
11992
- msgstr "Dein Versuch, diesen Artikel zu erstellen, ist fehlgeschlagen."
11993
-
11994
- #: wp-includes/functions.php:2685
11995
- msgid "Your attempt to delete this post: &#8220;%s&#8221; has failed."
11996
- msgstr "Dein Versuch, den Artikel &#8220;%s&#8221; zu löschen, ist fehlgeschlagen."
11997
-
11998
- #: wp-includes/functions.php:2686
11999
- msgid "Your attempt to edit this post: &#8220;%s&#8221; has failed."
12000
- msgstr "Dein Versuch, den Artikel &#8220;%s&#8221; zu bearbeiten, ist fehlgeschlagen."
12001
-
12002
- #: wp-includes/functions.php:2688
12003
- msgid "Your attempt to add this user has failed."
12004
- msgstr "Dein Versuch, den Benutzer hinzuzufügen, ist fehlgeschlagen."
12005
-
12006
- #: wp-includes/functions.php:2689
12007
- msgid "Your attempt to delete users has failed."
12008
- msgstr "Dein Versuch, Benutzer zu löschen, ist fehlgeschlagen."
12009
-
12010
- #: wp-includes/functions.php:2690
12011
- msgid "Your attempt to bulk modify users has failed."
12012
- msgstr "Dein Versuch der Massenbearbeitung der Benutzer ist fehlgeschlagen."
12013
-
12014
- #: wp-includes/functions.php:2691
12015
- msgid "Your attempt to edit this user: &#8220;%s&#8221; has failed."
12016
- msgstr "Dein Versuch, den Benutzer &#8220;%s&#8221; zu bearbeiten, ist fehlgeschlagen."
12017
-
12018
- #: wp-includes/functions.php:2692
12019
- msgid "Your attempt to modify the profile for: &#8220;%s&#8221; has failed."
12020
- msgstr "Dein Versuch, das Profil von &#8220;%s&#8221; zu ändern, ist fehlgeschlagen."
12021
-
12022
- #: wp-includes/functions.php:2694
12023
- msgid "Your attempt to edit your settings has failed."
12024
- msgstr "Dein Versuch, deine Einstellungen zu bearbeiten, ist fehlgeschlagen."
12025
-
12026
- #: wp-includes/functions.php:2695
12027
- msgid "Your attempt to change your permalink structure to: %s has failed."
12028
- msgstr "Dein Versuch, die Permalinkstruktur wie folgt zu verändern, ist fehlgeschlagen: <em>%s</em>."
12029
-
12030
- #: wp-includes/functions.php:2696
12031
- msgid "Your attempt to edit this file: &#8220;%s&#8221; has failed."
12032
- msgstr "Dein Versuch, die Datei &#8220;%s&#8221; zu bearbeiten, ist fehlgeschlagen."
12033
-
12034
- #: wp-includes/functions.php:2697
12035
- msgid "Your attempt to edit this theme file: &#8220;%s&#8221; has failed."
12036
- msgstr "Dein Versuch, das Theme &#8220;%s&#8221; zu bearbeiten, ist fehlgeschlagen."
12037
-
12038
- #: wp-includes/functions.php:2698
12039
- msgid "Your attempt to switch to this theme: &#8220;%s&#8221; has failed."
12040
- msgstr "Dein Versuch, zum Theme &#8220;%s&#8221; zu wechseln, ist fehlgeschlagen."
12041
-
12042
- #: wp-includes/functions.php:2700
12043
- msgid "You are attempting to log out of %s"
12044
- msgstr "Du hast vor, dich von der Website %s abzumelden"
12045
-
12046
- #: wp-includes/functions.php:2720 wp-includes/functions.php:2722
12047
- #: wp-admin/comment.php:186
12048
- msgid "Are you sure you want to do this?"
12049
- msgstr "Bist du sicher, dass du das tun möchtest?"
12050
-
12051
- #: wp-includes/functions.php:2739
12052
- msgid "WordPress Failure Notice"
12053
- msgstr "WordPress-Fehlermeldung"
12054
-
12055
- #: wp-includes/functions.php:2742
12056
- msgid "Do you really want to <a href='%s'>log out</a>?"
12057
- msgstr "Willst du dich wirklich <a href='%s'>abmelden</a>?"
12058
-
12059
- #: wp-includes/functions.php:2744
12060
- msgid "Please try again."
12061
- msgstr "Bitte nochmal versuchen."
12062
-
12063
- #: wp-includes/functions.php:2820
12064
- msgid "&laquo; Back"
12065
- msgstr "&laquo; Zurück"
12066
-
12067
- #: wp-includes/functions.php:2832
12068
- msgid "WordPress &rsaquo; Error"
12069
- msgstr "WordPress &rsaquo; Fehler"
12070
-
12071
- #: wp-includes/functions.php:3312 wp-includes/admin-bar.php:572
12072
- #: wp-admin/widgets.php:35
12073
- msgid "Widgets"
12074
- msgstr "Widgets"
12075
-
12076
- #: wp-includes/functions.php:3458 wp-includes/functions.php:3498
12077
- msgid "%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead."
12078
- msgstr "%1$s ist seit Version %2$s <strong>veraltet</strong>! Benutze stattdessen %3$s."
12079
-
12080
- #: wp-includes/functions.php:3460 wp-includes/functions.php:3500
12081
- msgid "%1$s is <strong>deprecated</strong> since version %2$s with no alternative available."
12082
- msgstr "%1$s ist seit Version %2$s <strong>veraltet</strong>. Es ist keine Alternative erhältlich."
12083
-
12084
- #: wp-includes/functions.php:3542
12085
- msgid "%1$s was called with an argument that is <strong>deprecated</strong> since version %2$s! %3$s"
12086
- msgstr "%1$s wurde mit einem Parameter oder Argument aufgerufen, der seit Version %2$s <strong>veraltet ist</strong>! %3$s"
12087
-
12088
- #: wp-includes/functions.php:3544
12089
- msgid "%1$s was called with an argument that is <strong>deprecated</strong> since version %2$s with no alternative available."
12090
- msgstr "%1$s wurde mit einem Parameter oder Argument aufgerufen, der seit Version %2$s <strong>veraltet ist</strong>! Es gibt jedoch keine alternative Möglichkeit."
12091
-
12092
- #: wp-includes/functions.php:3577
12093
- msgid "Please see <a href=\"http://codex.wordpress.org/Debugging_in_WordPress\">Debugging in WordPress</a> for more information."
12094
- msgstr "Schau Dir <a href=\"http://codex.wordpress.org/Debugging_in_WordPress\">Debugging in WordPress</a> an, um mehr darüber zu erfahren."
12095
-
12096
- #: wp-includes/functions.php:3576
12097
- msgid "(This message was added in version %s.)"
12098
- msgstr "(Diese Meldung wurde in Version %s hinzugefügt.)"
12099
-
12100
- #: wp-includes/functions.php:3578
12101
- msgid "%1$s was called <strong>incorrectly</strong>. %2$s %3$s"
12102
- msgstr "%1$s wurde <strong>fehlerhaft aufgerufen</strong>. %2$s %3$s"
12103
-
12104
- #: wp-includes/functions.php:4289
12105
- msgid "Select a city"
12106
- msgstr "Wähle eine Stadt"
12107
-
12108
- #: wp-includes/functions.php:4334 wp-includes/functions.php:4338
12109
- msgid "UTC"
12110
- msgstr "UTC"
12111
-
12112
- #: wp-includes/functions.php:4342
12113
- msgid "Manual Offsets"
12114
- msgstr "Manuelle Offsets"
12115
-
12116
- #: wp-includes/bookmark-template.php:82
12117
- msgid "Last updated: %s"
12118
- msgstr "Zuletzt aktualisiert: %s"
12119
-
12120
- #: wp-includes/bookmark-template.php:206
12121
- msgid "Bookmarks"
12122
- msgstr "Lesezeichen"
12123
-
12124
- #: wp-includes/rss.php:900
12125
- msgid "An error has occurred, which probably means the feed is down. Try again later."
12126
- msgstr "Ein Fehler ist aufgetreten – der Feed funktioniert zur Zeit nicht. Probiere es später noch einmal."
12127
-
12128
- #: wp-includes/cron.php:159
12129
- msgid "This argument has changed to an array to match the behavior of the other cron functions."
12130
- msgstr "Das Argument wurde durch ein Feld ersetzt, um das gleiche Verhalten wie die \"Cron-Funktionen\" zu erhalten."
12131
-
12132
- #: wp-includes/cron.php:316
12133
- msgid "Once Hourly"
12134
- msgstr "einmal pro Stunde"
12135
-
12136
- #: wp-includes/cron.php:317
12137
- msgid "Twice Daily"
12138
- msgstr "Zweimal täglich"
12139
-
12140
- #: wp-includes/cron.php:318
12141
- msgid "Once Daily"
12142
- msgstr "Einmal täglich"
12143
-
12144
- #: wp-includes/taxonomy.php:47
12145
- msgid "Navigation Menus"
12146
- msgstr "Navigationsmenüs"
12147
-
12148
- #: wp-includes/taxonomy.php:48
12149
- msgid "Navigation Menu"
12150
- msgstr "Individuelles Menü"
12151
-
12152
- #: wp-includes/taxonomy.php:60 wp-admin/menu.php:66
12153
- msgid "Link Categories"
12154
- msgstr "Kategorien"
12155
-
12156
- #: wp-includes/taxonomy.php:61
12157
- msgid "Link Category"
12158
- msgstr "Linkkategorie"
12159
-
12160
- #: wp-includes/taxonomy.php:62
12161
- msgid "Search Link Categories"
12162
- msgstr "Linkkategorien suchen"
12163
-
12164
- #: wp-includes/taxonomy.php:64
12165
- msgid "All Link Categories"
12166
- msgstr "Alle Linkkategorien"
12167
-
12168
- #: wp-includes/taxonomy.php:65
12169
- msgid "Edit Link Category"
12170
- msgstr "Linkkategorie bearbeiten"
12171
-
12172
- #: wp-includes/taxonomy.php:66
12173
- msgid "Update Link Category"
12174
- msgstr "Linkkategorie überarbeiten"
12175
-
12176
- #: wp-includes/taxonomy.php:67
12177
- msgid "Add New Link Category"
12178
- msgstr "Neue Linkkategorie hinzufügen"
12179
-
12180
- #: wp-includes/taxonomy.php:68
12181
- msgid "New Link Category Name"
12182
- msgstr "Name der neuen Linkkategorie"
12183
-
12184
- #: wp-includes/taxonomy.php:90 wp-includes/taxonomy.php:91
12185
- #: wp-admin/edit-form-advanced.php:105
12186
- msgctxt "post format"
12187
- msgid "Format"
12188
- msgstr "Formatvorlage"
12189
-
12190
- #: wp-includes/taxonomy.php:401
12191
- msgctxt "taxonomy general name"
12192
- msgid "Tags"
12193
- msgstr "Schlagworte"
12194
-
12195
- #: wp-includes/taxonomy.php:401
12196
- msgctxt "taxonomy general name"
12197
- msgid "Categories"
12198
- msgstr "Kategorien"
12199
-
12200
- #: wp-includes/taxonomy.php:402
12201
- msgctxt "taxonomy singular name"
12202
- msgid "Tag"
12203
- msgstr "Schlagwort"
12204
-
12205
- #: wp-includes/taxonomy.php:402
12206
- msgctxt "taxonomy singular name"
12207
- msgid "Category"
12208
- msgstr "Kategorie"
12209
-
12210
- #: wp-includes/taxonomy.php:403
12211
- msgid "Search Tags"
12212
- msgstr "Schlagwörter suchen"
12213
-
12214
- #: wp-includes/taxonomy.php:403
12215
- msgid "Search Categories"
12216
- msgstr "Kategorien suchen"
12217
-
12218
- #: wp-includes/taxonomy.php:404
12219
- msgid "Popular Tags"
12220
- msgstr "Beliebte Schlagwörter"
12221
-
12222
- #: wp-includes/taxonomy.php:405
12223
- msgid "All Tags"
12224
- msgstr "Alle Schlagwörter"
12225
-
12226
- #: wp-includes/taxonomy.php:405 wp-admin/includes/meta-boxes.php:671
12227
- msgid "All Categories"
12228
- msgstr "Alle Kategorien"
12229
-
12230
- #: wp-includes/taxonomy.php:406
12231
- msgid "Parent Category"
12232
- msgstr "Übergeordnete Kategorie"
12233
-
12234
- #: wp-includes/taxonomy.php:407
12235
- msgid "Parent Category:"
12236
- msgstr "Übergeordnete Kategorie:"
12237
-
12238
- #: wp-includes/taxonomy.php:408
12239
- msgid "Edit Tag"
12240
- msgstr "Schlagwort bearbeiten"
12241
-
12242
- #: wp-includes/taxonomy.php:408
12243
- msgid "Edit Category"
12244
- msgstr "Kategorie bearbeiten"
12245
-
12246
- #: wp-includes/taxonomy.php:409
12247
- msgid "View Tag"
12248
- msgstr "Schlagwort ansehen"
12249
-
12250
- #: wp-includes/taxonomy.php:409
12251
- msgid "View Category"
12252
- msgstr "Kategorie ansehen"
12253
-
12254
- #: wp-includes/taxonomy.php:410
12255
- msgid "Update Tag"
12256
- msgstr "Schlagwort aktualisieren"
12257
-
12258
- #: wp-includes/taxonomy.php:410
12259
- msgid "Update Category"
12260
- msgstr "Kategorie aktualisieren"
12261
-
12262
- #: wp-includes/taxonomy.php:411
12263
- msgid "Add New Tag"
12264
- msgstr "Neues Schlagwort erstellen"
12265
-
12266
- #: wp-includes/taxonomy.php:411
12267
- msgid "Add New Category"
12268
- msgstr "Neue Kategorie hinzufügen"
12269
-
12270
- #: wp-includes/taxonomy.php:412
12271
- msgid "New Tag Name"
12272
- msgstr "Neuer Schlagwortname"
12273
-
12274
- #: wp-includes/taxonomy.php:412
12275
- msgid "New Category Name"
12276
- msgstr "Neuer Kategoriename"
12277
-
12278
- #: wp-includes/taxonomy.php:413
12279
- msgid "Separate tags with commas"
12280
- msgstr "Trenne Schlagwörter durch Kommas"
12281
-
12282
- #: wp-includes/taxonomy.php:414
12283
- msgid "Add or remove tags"
12284
- msgstr "Schlagworte hinzufügen oder entfernen"
12285
-
12286
- #: wp-includes/taxonomy.php:415 wp-admin/press-this.php:561
12287
- msgid "Choose from the most used tags"
12288
- msgstr "Wähle aus häufig genutzten Schlagwörtern"
12289
-
12290
- #: wp-includes/taxonomy.php:492 wp-includes/taxonomy.php:845
12291
- #: wp-includes/taxonomy.php:974 wp-includes/taxonomy.php:1164
12292
- #: wp-includes/taxonomy.php:1837 wp-includes/taxonomy.php:2108
12293
- msgid "Invalid Taxonomy"
12294
- msgstr "Ungültige Taxonomie"
12295
-
12296
- #: wp-includes/taxonomy.php:840 wp-includes/taxonomy.php:2938
12297
- msgid "Empty Term"
12298
- msgstr "Leerer Ausdruck"
12299
-
12300
- #: wp-includes/taxonomy.php:1977 wp-includes/taxonomy.php:2282
12301
- #: wp-admin/includes/class-wp-terms-list-table.php:23 wp-admin/edit-tags.php:13
12302
- #: wp-admin/edit-tags.php:18
12303
- msgid "Invalid taxonomy"
12304
- msgstr "Ungültige Taxonomie"
12305
-
12306
- #: wp-includes/taxonomy.php:1984
12307
- msgid "Invalid term ID"
12308
- msgstr "Ungültige Begriffs-ID."
12309
-
12310
- #: wp-includes/taxonomy.php:1987 wp-includes/taxonomy.php:2308
12311
- msgid "A name is required for this term"
12312
- msgstr "Für diesen Begriff ist ein Name erforderlich"
12313
-
12314
- #: wp-includes/taxonomy.php:2025
12315
- msgid "A term with the name provided already exists with this parent."
12316
- msgstr "Dieses Schlagwort mit dem gleichen übergeordneten Schlagwort gibt es bereits."
12317
-
12318
- #: wp-includes/taxonomy.php:2029 wp-includes/taxonomy.php:2036
12319
- #: wp-includes/taxonomy.php:2046
12320
- msgid "Could not insert term into the database"
12321
- msgstr "Der Begriff konnte nicht in die Datenbank eingefügt werden"
12322
-
12323
- #: wp-includes/taxonomy.php:2040
12324
- msgid "A term with the name provided already exists."
12325
- msgstr "Es existiert bereits ein Schlagwort mit diesem Namen."
12326
-
12327
- #: wp-includes/taxonomy.php:2341
12328
- msgid "The slug &#8220;%s&#8221; is already in use by another term"
12329
- msgstr "Die Titelform &#8220;%s&#8221; wird bereits verwendet"
12330
-
12331
- #: wp-includes/taxonomy.php:3102
12332
- msgid "Invalid object ID"
12333
- msgstr "Ungültige Objekt-ID"
12334
-
12335
- #: wp-includes/default-widgets.php:17
12336
- msgid "Your site&#8217;s WordPress Pages"
12337
- msgstr "Die Seiten deines WordPress Blogs"
12338
-
12339
- #: wp-includes/default-widgets.php:66 wp-includes/default-widgets.php:196
12340
- #: wp-includes/default-widgets.php:262 wp-includes/default-widgets.php:317
12341
- #: wp-includes/default-widgets.php:357 wp-includes/default-widgets.php:403
12342
- #: wp-includes/default-widgets.php:489 wp-includes/default-widgets.php:585
12343
- #: wp-includes/default-widgets.php:685 wp-includes/default-widgets.php:1032
12344
- #: wp-includes/default-widgets.php:1105
12345
- #: wp-content/plugins/akismet/widget.php:51
12346
- msgid "Title:"
12347
- msgstr "Titel:"
12348
-
12349
- #: wp-includes/default-widgets.php:68
12350
- msgid "Sort by:"
12351
- msgstr "Sortiert nach:"
12352
-
12353
- #: wp-includes/default-widgets.php:70
12354
- msgid "Page title"
12355
- msgstr "Seitentitel"
12356
-
12357
- #: wp-includes/default-widgets.php:71
12358
- msgid "Page order"
12359
- msgstr "Reihenfolge der Seiten"
12360
-
12361
- #: wp-includes/default-widgets.php:72
12362
- msgid "Page ID"
12363
- msgstr "Seiten-ID"
12364
-
12365
- #: wp-includes/default-widgets.php:76
12366
- msgid "Exclude:"
12367
- msgstr "Ausschliessen:"
12368
-
12369
- #: wp-includes/default-widgets.php:78
12370
- msgid "Page IDs, separated by commas."
12371
- msgstr "Seiten-IDs, durch Kommas getrennt."
12372
-
12373
- #: wp-includes/default-widgets.php:93
12374
- msgid "Your blogroll"
12375
- msgstr "Deine Blogroll"
12376
-
12377
- #: wp-includes/default-widgets.php:94 wp-admin/link-manager.php:40
12378
- #: wp-admin/includes/class-wp-terms-list-table.php:106 wp-admin/menu.php:62
12379
- msgid "Links"
12380
- msgstr "Links"
12381
-
12382
- #: wp-includes/default-widgets.php:141
12383
- msgid "Select Link Category"
12384
- msgstr "Link-Kategorie auswählen"
12385
-
12386
- #: wp-includes/default-widgets.php:154
12387
- msgid "Show Link Image"
12388
- msgstr "Zeige Link-Grafik"
12389
-
12390
- #: wp-includes/default-widgets.php:156
12391
- msgid "Show Link Name"
12392
- msgstr "Zeige Link-Namen"
12393
-
12394
- #: wp-includes/default-widgets.php:158
12395
- msgid "Show Link Description"
12396
- msgstr "Zeige Link-Beschreibung"
12397
-
12398
- #: wp-includes/default-widgets.php:160
12399
- msgid "Show Link Rating"
12400
- msgstr "Zeige Link-Bewertung"
12401
-
12402
- #: wp-includes/default-widgets.php:174
12403
- msgid "A search form for your site"
12404
- msgstr "Ein Suchformular für deine Website"
12405
-
12406
- #: wp-includes/default-widgets.php:175 wp-includes/general-template.php:163
12407
- #: wp-includes/class-wp-editor.php:765 wp-includes/admin-bar.php:619
12408
- #: wp-admin/includes/plugin-install.php:86
12409
- #: wp-admin/includes/class-wp-theme-install-list-table.php:29
12410
- #: wp-admin/includes/template.php:1293 wp-admin/includes/template.php:1295
12411
- #: wp-admin/includes/theme-install.php:66 wp-admin/includes/nav-menu.php:666
12412
- #: wp-admin/includes/nav-menu.php:695 wp-admin/includes/nav-menu.php:697
12413
- #: wp-admin/includes/nav-menu.php:880 wp-admin/includes/nav-menu.php:929
12414
- #: wp-admin/includes/nav-menu.php:931
12415
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:29
12416
- #: wp-content/plugins/akismet/legacy.php:176
12417
- msgid "Search"
12418
- msgstr "Suchen"
12419
-
12420
- #: wp-includes/default-widgets.php:217
12421
- msgid "A monthly archive of your site&#8217;s posts"
12422
- msgstr "Ein Monatsarchiv von deinen Artikeln"
12423
-
12424
- #: wp-includes/default-widgets.php:233
12425
- msgid "Select Month"
12426
- msgstr "Wähle den Monat"
12427
-
12428
- #: wp-includes/default-widgets.php:264 wp-includes/default-widgets.php:493
12429
- msgid "Display as dropdown"
12430
- msgstr "Als Auswahlbox darstellen"
12431
-
12432
- #: wp-includes/default-widgets.php:266 wp-includes/default-widgets.php:496
12433
- msgid "Show post counts"
12434
- msgstr "Zeige Artikel-Zähler"
12435
-
12436
- #: wp-includes/default-widgets.php:282
12437
- msgid "Log in/out, admin, feed and WordPress links"
12438
- msgstr "An-/Abmelden, Adminbereich, Newsfeeds und WordPress-Links"
12439
-
12440
- #: wp-includes/default-widgets.php:297
12441
- msgid "Syndicate this site using RSS 2.0"
12442
- msgstr "Abonniere diese Website mit RSS 2.0"
12443
-
12444
- #: wp-includes/default-widgets.php:297
12445
- msgid "Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>"
12446
- msgstr "Artikel-Feed (<abbr title=\"Really Simple Syndication\">RSS</abbr>)"
12447
-
12448
- #: wp-includes/default-widgets.php:298
12449
- msgid "The latest comments to all posts in RSS"
12450
- msgstr "Die neuesten Kommentare zu allen Beiträgen als RSS"
12451
-
12452
- #: wp-includes/default-widgets.php:298
12453
- msgid "Comments <abbr title=\"Really Simple Syndication\">RSS</abbr>"
12454
- msgstr "Kommentare als <abbr title=\"Really Simple Syndication\">RSS</abbr>"
12455
-
12456
- #: wp-includes/default-widgets.php:330
12457
- msgid "A calendar of your site&#8217;s posts"
12458
- msgstr "Ein Kalender der Blog-Artikel "
12459
-
12460
- #: wp-includes/default-widgets.php:331
12461
- msgid "Calendar"
12462
- msgstr "Kalender"
12463
-
12464
- #: wp-includes/default-widgets.php:371
12465
- msgid "Arbitrary text or HTML"
12466
- msgstr "Block für eigenen Text oder HTML"
12467
-
12468
- #: wp-includes/default-widgets.php:373
12469
- msgid "Text"
12470
- msgstr "Text"
12471
-
12472
- #: wp-includes/default-widgets.php:408
12473
- msgid "Automatically add paragraphs"
12474
- msgstr "Absätze automatisch hinzufügen"
12475
-
12476
- #: wp-includes/default-widgets.php:421
12477
- msgid "A list or dropdown of categories"
12478
- msgstr "Eine Auflistung deiner Kategorien"
12479
-
12480
- #: wp-includes/default-widgets.php:440
12481
- msgid "Select Category"
12482
- msgstr "Kategorie auswählen"
12483
-
12484
- #: wp-includes/default-widgets.php:499
12485
- msgid "Show hierarchy"
12486
- msgstr "Zeige die Hierarchie an"
12487
-
12488
- #: wp-includes/default-widgets.php:513
12489
- msgid "The most recent posts on your site"
12490
- msgstr "Die letzten Beiträge deines Blogs"
12491
-
12492
- #: wp-includes/default-widgets.php:514 wp-includes/default-widgets.php:539
12493
- msgid "Recent Posts"
12494
- msgstr "Letzte Artikel"
12495
-
12496
- #: wp-includes/default-widgets.php:588
12497
- msgid "Number of posts to show:"
12498
- msgstr "Anzahl der Artikel, die angezeigt werden:"
12499
-
12500
- #: wp-includes/default-widgets.php:602
12501
- msgid "The most recent comments"
12502
- msgstr "Die letzten Kommentare"
12503
-
12504
- #: wp-includes/default-widgets.php:603 wp-includes/default-widgets.php:644
12505
- #: wp-admin/includes/dashboard.php:53
12506
- msgid "Recent Comments"
12507
- msgstr "Letzte Kommentare"
12508
-
12509
- #: wp-includes/default-widgets.php:657
12510
- msgctxt "widgets"
12511
- msgid "%1$s on %2$s"
12512
- msgstr "%1$s bei %2$s"
12513
-
12514
- #: wp-includes/default-widgets.php:688 wp-admin/includes/dashboard.php:784
12515
- msgid "Number of comments to show:"
12516
- msgstr "Wieviele Kommentare sollen angezeigt werden:"
12517
-
12518
- #: wp-includes/default-widgets.php:702
12519
- msgid "Entries from any RSS or Atom feed"
12520
- msgstr "Externe RSS- oder Atom-Feeds"
12521
-
12522
- #: wp-includes/default-widgets.php:704 wp-admin/import.php:41
12523
- msgid "RSS"
12524
- msgstr "RSS"
12525
-
12526
- #: wp-includes/default-widgets.php:740 wp-admin/includes/dashboard.php:1122
12527
- msgid "Unknown Feed"
12528
- msgstr "unbekannter Feed"
12529
-
12530
- #: wp-includes/default-widgets.php:746
12531
- msgid "Syndicate this content"
12532
- msgstr "Den Inhalt auslesen"
12533
-
12534
- #: wp-includes/default-widgets.php:794 wp-admin/includes/dashboard.php:805
12535
- #: wp-admin/includes/dashboard.php:921
12536
- msgid "<strong>RSS Error</strong>: %s"
12537
- msgstr "<strong>RSS-Fehler</strong>: %s"
12538
-
12539
- #: wp-includes/default-widgets.php:810
12540
- msgid "An error has occurred; the feed is probably down. Try again later."
12541
- msgstr "Es ist ein Fehler aufgetreten – der Feed funktioniert zur Zeit nicht. Probiere es später noch einmal."
12542
-
12543
- #: wp-includes/default-widgets.php:824
12544
- msgid "Untitled"
12545
- msgstr "unbetitelt"
12546
-
12547
- #: wp-includes/default-widgets.php:904
12548
- msgid "RSS Error: %s"
12549
- msgstr "RSS Fehler: %s"
12550
-
12551
- #: wp-includes/default-widgets.php:908
12552
- msgid "Enter the RSS feed URL here:"
12553
- msgstr "Gib die URL des RSS-Feeds hier ein:"
12554
-
12555
- #: wp-includes/default-widgets.php:911
12556
- msgid "Give the feed a title (optional):"
12557
- msgstr "Gib dem Feed einen Titel (optional):"
12558
-
12559
- #: wp-includes/default-widgets.php:914
12560
- msgid "How many items would you like to display?"
12561
- msgstr "Wieviele Einträge sollen angezeigt werden?"
12562
-
12563
- #: wp-includes/default-widgets.php:923
12564
- msgid "Display item content?"
12565
- msgstr "Artikel-Inhalt anzeigen?"
12566
-
12567
- #: wp-includes/default-widgets.php:926
12568
- msgid "Display item author if available?"
12569
- msgstr "Artikel-Autor anzeigen, wenn verfügbar?"
12570
-
12571
- #: wp-includes/default-widgets.php:929
12572
- msgid "Display item date?"
12573
- msgstr "Artikel-Datum anzeigen?"
12574
-
12575
- #: wp-includes/default-widgets.php:995
12576
- msgid "Your most used tags in cloud format"
12577
- msgstr "Deine Schlagworte in einer Wolke"
12578
-
12579
- #: wp-includes/default-widgets.php:996
12580
- msgid "Tag Cloud"
12581
- msgstr "Schlagwörter-Wolke"
12582
-
12583
- #: wp-includes/default-widgets.php:1006 wp-admin/includes/dashboard.php:550
12584
- #: wp-admin/includes/class-wp-posts-list-table.php:276
12585
- #: wp-admin/press-this.php:548 wp-admin/press-this.php:552
12586
- msgid "Tags"
12587
- msgstr "Schlagwörter"
12588
-
12589
- #: wp-includes/default-widgets.php:1034
12590
- msgid "Taxonomy:"
12591
- msgstr "Taxonomie"
12592
-
12593
- #: wp-includes/default-widgets.php:1062
12594
- msgid "Use this widget to add one of your custom menus as a widget."
12595
- msgstr "Nutze dieses Widget, um eines deiner selbsterstellten Navigationsmenüs anzuzeigen. Über den Menüpunkt \"Design\" &gt; \"Menüs\" kannst du ein individuelles Menü erstellen."
12596
-
12597
- #: wp-includes/default-widgets.php:1063 wp-admin/includes/theme.php:317
12598
- msgid "Custom Menu"
12599
- msgstr "Individuelles Menü"
12600
-
12601
- #: wp-includes/default-widgets.php:1100
12602
- msgid "No menus have been created yet. <a href=\"%s\">Create some</a>."
12603
- msgstr "Es wurden noch keine Menüs erstellt. <a href=\"%s\">Erstelle welche</a>."
12604
-
12605
- #: wp-includes/default-widgets.php:1109 wp-admin/nav-menus.php:495
12606
- msgid "Select Menu:"
12607
- msgstr "Wähle ein Menü:"
12608
-
12609
- #: wp-includes/feed-rss2-comments.php:22
12610
- msgid "Comments on: %s"
12611
- msgstr "Kommentare zu: %s"
12612
-
12613
- #: wp-includes/feed-rss2-comments.php:24
12614
- msgid "Comments for %s searching on %s"
12615
- msgstr "Kommentare für %s gesucht in %s"
12616
-
12617
- #: wp-includes/feed-rss2-comments.php:26 wp-includes/feed-atom-comments.php:23
12618
- msgid "Comments for %s"
12619
- msgstr "Kommentare für %s"
12620
-
12621
- #: wp-includes/feed-rss2-comments.php:44 wp-includes/feed-atom-comments.php:52
12622
- msgid "Comment on %1$s by %2$s"
12623
- msgstr "Kommentar zu %1$s von %2$s"
12624
-
12625
- #: wp-includes/feed-rss2-comments.php:46 wp-includes/feed-atom-comments.php:54
12626
- msgid "By: %s"
12627
- msgstr "Von: %s"
12628
-
12629
- #: wp-includes/feed-rss2-comments.php:54
12630
- msgid "Protected Comments: Please enter your password to view comments."
12631
- msgstr "Auch die Kommentare sind durch das Passwort geschützt."
12632
-
12633
- #: wp-includes/feed-atom-comments.php:19
12634
- msgid "Comments on %s"
12635
- msgstr "Kommentare zu %s"
12636
-
12637
- #: wp-includes/feed-atom-comments.php:21
12638
- msgid "Comments for %1$s searching on %2$s"
12639
- msgstr "Kommentare für %1$s in %2$s gesucht"
12640
-
12641
- #: wp-includes/nav-menu.php:226 wp-includes/nav-menu.php:233
12642
- msgid "The menu name <strong>%s</strong> conflicts with another menu name. Please try another."
12643
- msgstr "Der Menüname <strong>%s</strong> kann nicht genutzt werden, da er schon genutzt wird. Probiere einen anderen Namen."
12644
-
12645
- #: wp-includes/nav-menu.php:275
12646
- msgid "The given object ID is not that of a menu item."
12647
- msgstr "Die übergebene ID gehört zu keinem Menüelement."
12648
-
12649
- #: wp-includes/nav-menu.php:613
12650
- msgid "Custom"
12651
- msgstr "Benutzerdefiniert"
12652
-
12653
- #: wp-includes/query.php:146 wp-includes/query.php:167
12654
- #: wp-includes/query.php:187 wp-includes/query.php:211
12655
- #: wp-includes/query.php:235 wp-includes/query.php:259
12656
- #: wp-includes/query.php:288 wp-includes/query.php:308
12657
- #: wp-includes/query.php:328 wp-includes/query.php:348
12658
- #: wp-includes/query.php:369 wp-includes/query.php:389
12659
- #: wp-includes/query.php:419 wp-includes/query.php:448
12660
- #: wp-includes/query.php:468 wp-includes/query.php:495
12661
- #: wp-includes/query.php:515 wp-includes/query.php:535
12662
- #: wp-includes/query.php:555 wp-includes/query.php:575
12663
- #: wp-includes/query.php:604 wp-includes/query.php:631
12664
- #: wp-includes/query.php:651 wp-includes/query.php:671
12665
- #: wp-includes/query.php:691 wp-includes/query.php:711
12666
- msgid "Conditional query tags do not work before the query is run. Before then, they always return false."
12667
- msgstr "Bedingungsabfragen (Conditional Tags) funktionieren nicht, wenn die Artikel-Abfrage (query_posts) noch nicht durchgeführt wurde. Sie geben dann immer 'false' zurück."
12668
-
12669
- #: wp-includes/query.php:1957
12670
- msgid "\"caller_get_posts\" is deprecated. Use \"ignore_sticky_posts\" instead."
12671
- msgstr "\"caller_get_posts\" ist veraltet. Bitte nutze stattdessen \"ignore_sticky_posts\"."
12672
-
12673
- #: wp-includes/formatting.php:36 wp-includes/formatting.php:2986
12674
- msgctxt "opening curly quote"
12675
- msgid "&#8220;"
12676
- msgstr "&#8220;"
12677
-
12678
- #: wp-includes/formatting.php:38
12679
- msgctxt "closing curly quote"
12680
- msgid "&#8221;"
12681
- msgstr "&#8221;"
12682
-
12683
- #: wp-includes/formatting.php:1862
12684
- msgid "%s min"
12685
- msgid_plural "%s mins"
12686
- msgstr[0] "%s Minute"
12687
- msgstr[1] "%s Minuten"
12688
-
12689
- #: wp-includes/formatting.php:1868
12690
- msgid "%s hour"
12691
- msgid_plural "%s hours"
12692
- msgstr[0] "%s Stunde"
12693
- msgstr[1] "%s Stunden"
12694
-
12695
- #: wp-includes/formatting.php:1874
12696
- msgid "%s day"
12697
- msgid_plural "%s days"
12698
- msgstr[0] "%s Tag"
12699
- msgstr[1] "%s Tage"
12700
-
12701
- #: wp-includes/formatting.php:1922 wp-includes/general-template.php:1977
12702
- msgid "&hellip;"
12703
- msgstr "&hellip;"
12704
-
12705
- #: wp-includes/formatting.php:2499 wp-includes/formatting.php:2508
12706
- msgid "The email address entered did not appear to be a valid email address. Please enter a valid email address."
12707
- msgstr "Diese E-Mail-Adresse scheint keine gültige Email-Adresse zu sein. Bitte gib eine gültige E-Mail-Adresse an."
12708
-
12709
- #: wp-includes/formatting.php:2592
12710
- msgid "The WordPress address you entered did not appear to be a valid URL. Please enter a valid URL."
12711
- msgstr "Die angegebene WordPress-Adresse scheint keine gültige URL zu sein. Bitte gib eine gültige URL an."
12712
-
12713
- #: wp-includes/formatting.php:2602
12714
- msgid "The Site address you entered did not appear to be a valid URL. Please enter a valid URL."
12715
- msgstr "Die Blog-Adresse die du eingegeben hast, scheint keine gültige URL zu sein. Bitte gebe eine gültige URL ein."
12716
-
12717
- #: wp-includes/formatting.php:2617
12718
- msgid "The timezone you have entered is not valid. Please select a valid timezone."
12719
- msgstr "Die von dir eingegebene Zeitzone ist ungültig. Bitte wähle eine gültige Zeitzone aus."
12720
-
12721
- #: wp-includes/formatting.php:2770
12722
- msgid ", "
12723
- msgstr ", "
12724
-
12725
- #: wp-includes/formatting.php:2772
12726
- msgid ", and "
12727
- msgstr ", und "
12728
-
12729
- #: wp-includes/formatting.php:2774
12730
- msgid " and "
12731
- msgstr " und "
12732
-
12733
- #: wp-includes/general-template.php:161
12734
- msgid "Search for:"
12735
- msgstr "Suche nach:"
12736
-
12737
- #: wp-includes/general-template.php:187 wp-login.php:415 wp-login.php:440
12738
- #: wp-login.php:471 wp-login.php:527
12739
- msgid "Log in"
12740
- msgstr "Anmelden"
12741
-
12742
- #: wp-includes/general-template.php:189
12743
- msgid "Log out"
12744
- msgstr "Abmelden"
12745
-
12746
- #: wp-includes/general-template.php:258 wp-login.php:512 wp-login.php:632
12747
- #: wp-admin/user-new.php:313 wp-admin/install.php:101 wp-admin/install.php:226
12748
- #: wp-admin/includes/file.php:1003
12749
- #: wp-admin/includes/class-wp-users-list-table.php:163
12750
- #: wp-admin/user-edit.php:245
12751
- msgid "Username"
12752
- msgstr "Benutzername"
12753
-
12754
- #: wp-includes/general-template.php:259 wp-login.php:636
12755
- #: wp-admin/user-new.php:335 wp-admin/install.php:230
12756
- #: wp-admin/options-writing.php:151
12757
- #: wp-admin/includes/class-wp-posts-list-table.php:791
12758
- #: wp-admin/includes/file.php:1004
12759
- msgid "Password"
12760
- msgstr "Passwort"
12761
-
12762
- #: wp-includes/general-template.php:260 wp-login.php:640
12763
- msgid "Remember Me"
12764
- msgstr "Erinnere dich an mich"
12765
-
12766
- #: wp-includes/general-template.php:261 wp-login.php:623 wp-login.php:642
12767
- #: wp-admin/install.php:145 wp-admin/install.php:239
12768
- msgid "Log In"
12769
- msgstr "Anmelden"
12770
-
12771
- #: wp-includes/general-template.php:336 wp-login.php:417 wp-login.php:473
12772
- #: wp-login.php:523 wp-login.php:656
12773
- msgid "Register"
12774
- msgstr "Registrieren"
12775
-
12776
- #: wp-includes/general-template.php:340
12777
- msgid "Site Admin"
12778
- msgstr "Admin"
12779
-
12780
- #: wp-includes/general-template.php:405
12781
- msgid "The <code>%s</code> option is deprecated for the family of <code>bloginfo()</code> functions."
12782
- msgstr "Der genutzte Parameter <code>%s</code> für die Funktion <code>bloginfo()</code> ist veraltet."
12783
-
12784
- #: wp-includes/general-template.php:405
12785
- msgid "Use the <code>%s</code> option instead."
12786
- msgstr "Verwende stattdessen die Option <code>%s</code>."
12787
-
12788
- #: wp-includes/general-template.php:587
12789
- msgid "Search Results %1$s %2$s"
12790
- msgstr "Suchergebnisse %1$s %2$s"
12791
-
12792
- #: wp-includes/general-template.php:592
12793
- msgid "Page not found"
12794
- msgstr "Seite nicht gefunden"
12795
-
12796
- #: wp-includes/general-template.php:939
12797
- msgid "%1$s %2$d"
12798
- msgstr "%1$s %2$d"
12799
-
12800
- #: wp-includes/general-template.php:1147
12801
- msgctxt "calendar caption"
12802
- msgid "%1$s %2$s"
12803
- msgstr "%1$s %2$s"
12804
-
12805
- #: wp-includes/general-template.php:1173 wp-includes/general-template.php:1181
12806
- msgid "View posts for %1$s %2$s"
12807
- msgstr "Zeige Artikel für %1$s %2$s"
12808
-
12809
- #: wp-includes/general-template.php:1603 wp-includes/general-template.php:1626
12810
- msgctxt "feed link"
12811
- msgid "&raquo;"
12812
- msgstr "&raquo;"
12813
-
12814
- #: wp-includes/general-template.php:1605
12815
- msgid "%1$s %2$s Feed"
12816
- msgstr "%1$s %2$s Feed"
12817
-
12818
- #: wp-includes/general-template.php:1607
12819
- msgid "%1$s %2$s Comments Feed"
12820
- msgstr "%1$s %2$s Kommentar Feed"
12821
-
12822
- #: wp-includes/general-template.php:1628
12823
- msgid "%1$s %2$s %3$s Comments Feed"
12824
- msgstr "%1$s %2$s %3$s Kommentar Feed"
12825
-
12826
- #: wp-includes/general-template.php:1630
12827
- msgid "%1$s %2$s %3$s Category Feed"
12828
- msgstr "%1$s %2$s %3$s Kategorie Newsfeed"
12829
-
12830
- #: wp-includes/general-template.php:1632
12831
- msgid "%1$s %2$s %3$s Tag Feed"
12832
- msgstr "%1$s %2$s %3$s Tag Newsfeed"
12833
-
12834
- #: wp-includes/general-template.php:1634
12835
- msgid "%1$s %2$s Posts by %3$s Feed"
12836
- msgstr "%1$s %2$s Artikel nach %3$s Newsfeed"
12837
-
12838
- #: wp-includes/general-template.php:1636
12839
- msgid "%1$s %2$s Search Results for &#8220;%3$s&#8221; Feed"
12840
- msgstr "%1$s %2$s Suchergebnisse für &#8220;%3$s&#8221; Feed"
12841
-
12842
- #: wp-includes/general-template.php:1929
12843
- msgid "&laquo; Previous"
12844
- msgstr "&laquo; Zurück"
12845
-
12846
- #: wp-includes/general-template.php:1930
12847
- msgid "Next &raquo;"
12848
- msgstr "Weiter &raquo;"
12849
-
12850
- #: wp-includes/general-template.php:2037
12851
- msgctxt "admin color scheme"
12852
- msgid "Blue"
12853
- msgstr "Blau"
12854
-
12855
- #: wp-includes/general-template.php:2039
12856
- msgctxt "admin color scheme"
12857
- msgid "Gray"
12858
- msgstr "Grau"
12859
-
12860
- #: wp-includes/atomlib.php:133
12861
- msgid "XML error: %s at line %d"
12862
- msgstr "XML-Fehler: %s in der Zeile %d"
12863
-
12864
- #: wp-includes/plugin.php:676
12865
- msgid "Only a static class method or function can be used in an uninstall hook."
12866
- msgstr "Nur eine Methode oder Funktion einer statischen Klasse kann in einem <em>uninstall hook</em> verwendet werden."
12867
-
12868
- #: wp-includes/post.php:22
12869
- msgctxt "add new on admin bar"
12870
- msgid "Post"
12871
- msgstr "Artikel"
12872
-
12873
- #: wp-includes/post.php:37
12874
- msgctxt "add new on admin bar"
12875
- msgid "Page"
12876
- msgstr "Seite"
12877
-
12878
- #: wp-includes/post.php:53 wp-admin/includes/media.php:1646
12879
- #: wp-admin/menu.php:56 wp-admin/menu.php:204
12880
- msgid "Media"
12881
- msgstr "Mediathek"
12882
-
12883
- #: wp-includes/post.php:54 wp-admin/media.php:45
12884
- msgid "Edit Media"
12885
- msgstr "Medien bearbeiten"
12886
-
12887
- #: wp-includes/post.php:71 wp-admin/revision.php:97 wp-admin/revision.php:123
12888
- #: wp-admin/edit-form-advanced.php:152
12889
- msgid "Revisions"
12890
- msgstr "Revisionen"
12891
-
12892
- #: wp-includes/post.php:72
12893
- msgid "Revision"
12894
- msgstr "Revision"
12895
-
12896
- #: wp-includes/post.php:87
12897
- msgid "Navigation Menu Items"
12898
- msgstr "Elemente des Navigations-Menüs"
12899
-
12900
- #: wp-includes/post.php:88
12901
- msgid "Navigation Menu Item"
12902
- msgstr "Element des Navigations-Menüs"
12903
-
12904
- #: wp-includes/post.php:98
12905
- msgctxt "post"
12906
- msgid "Published"
12907
- msgstr "Veröffentlicht"
12908
-
12909
- #: wp-includes/post.php:101
12910
- msgid "Published <span class=\"count\">(%s)</span>"
12911
- msgid_plural "Published <span class=\"count\">(%s)</span>"
12912
- msgstr[0] "Veröffentlicht <span class=\"count\">(%s)</span>"
12913
- msgstr[1] "Veröffentlichte <span class=\"count\">(%s)</span>"
12914
-
12915
- #: wp-includes/post.php:105
12916
- msgctxt "post"
12917
- msgid "Scheduled"
12918
- msgstr "Geplant"
12919
-
12920
- #: wp-includes/post.php:108
12921
- msgid "Scheduled <span class=\"count\">(%s)</span>"
12922
- msgid_plural "Scheduled <span class=\"count\">(%s)</span>"
12923
- msgstr[0] "Geplant <span class=\"count\">(%s)</span>"
12924
- msgstr[1] "Geplante <span class=\"count\">(%s)</span>"
12925
-
12926
- #: wp-includes/post.php:112
12927
- msgctxt "post"
12928
- msgid "Draft"
12929
- msgstr "Entwurf"
12930
-
12931
- #: wp-includes/post.php:115
12932
- msgid "Draft <span class=\"count\">(%s)</span>"
12933
- msgid_plural "Drafts <span class=\"count\">(%s)</span>"
12934
- msgstr[0] "Entwurf <span class=\"count\">(%s)</span>"
12935
- msgstr[1] "Entwürfe <span class=\"count\">(%s)</span>"
12936
-
12937
- #: wp-includes/post.php:119
12938
- msgctxt "post"
12939
- msgid "Pending"
12940
- msgstr "Ausstehend"
12941
-
12942
- #: wp-includes/post.php:122
12943
- msgid "Pending <span class=\"count\">(%s)</span>"
12944
- msgid_plural "Pending <span class=\"count\">(%s)</span>"
12945
- msgstr[0] "Austehend <span class=\"count\">(%s)</span>"
12946
- msgstr[1] "Austehend <span class=\"count\">(%s)</span>"
12947
-
12948
- #: wp-includes/post.php:126
12949
- msgctxt "post"
12950
- msgid "Private"
12951
- msgstr "Privat"
12952
-
12953
- #: wp-includes/post.php:129
12954
- msgid "Private <span class=\"count\">(%s)</span>"
12955
- msgid_plural "Private <span class=\"count\">(%s)</span>"
12956
- msgstr[0] "Privat <span class=\"count\">(%s)</span>"
12957
- msgstr[1] "Private <span class=\"count\">(%s)</span>"
12958
-
12959
- #: wp-includes/post.php:133
12960
- msgctxt "post"
12961
- msgid "Trash"
12962
- msgstr "Papierkorb"
12963
-
12964
- #: wp-includes/post.php:136
12965
- msgid "Trash <span class=\"count\">(%s)</span>"
12966
- msgid_plural "Trash <span class=\"count\">(%s)</span>"
12967
- msgstr[0] "Papierkorb <span class=\"count\">(%s)</span>"
12968
- msgstr[1] "Papierkorb <span class=\"count\">(%s)</span>"
12969
-
12970
- #: wp-includes/post.php:541
12971
- msgid "Invalid post"
12972
- msgstr "Ungültiger Artikel"
12973
-
12974
- #: wp-includes/post.php:599 wp-includes/post.php:620
12975
- #: wp-admin/admin-ajax.php:1329
12976
- #: wp-admin/includes/class-wp-posts-list-table.php:965
12977
- #: wp-admin/includes/template.php:1456 wp-admin/includes/meta-boxes.php:78
12978
- #: wp-admin/includes/meta-boxes.php:98 wp-admin/includes/meta-boxes.php:100
12979
- msgid "Draft"
12980
- msgstr "Entwurf"
12981
-
12982
- #: wp-includes/post.php:600 wp-admin/admin-ajax.php:1326
12983
- #: wp-admin/includes/class-wp-posts-list-table.php:964
12984
- #: wp-admin/includes/meta-boxes.php:74 wp-admin/includes/meta-boxes.php:96
12985
- msgid "Pending Review"
12986
- msgstr "Ausstehender Review"
12987
-
12988
- #: wp-includes/post.php:937
12989
- msgid "Post types cannot exceed 20 characters in length"
12990
- msgstr "Namen von Artikelformatvorlagen dürfen maximal 20 Zeichen lang sein"
12991
-
12992
- #: wp-includes/post.php:1184
12993
- msgctxt "post type general name"
12994
- msgid "Posts"
12995
- msgstr "Artikel"
12996
-
12997
- #: wp-includes/post.php:1184
12998
- msgctxt "post type general name"
12999
- msgid "Pages"
13000
- msgstr "Seiten"
13001
-
13002
- #: wp-includes/post.php:1185
13003
- msgctxt "post type singular name"
13004
- msgid "Post"
13005
- msgstr "Artikel"
13006
-
13007
- #: wp-includes/post.php:1185
13008
- msgctxt "post type singular name"
13009
- msgid "Page"
13010
- msgstr "Seite"
13011
-
13012
- #: wp-includes/post.php:1186 wp-admin/menu.php:45
13013
- msgctxt "post"
13014
- msgid "Add New"
13015
- msgstr "Erstellen"
13016
-
13017
- #: wp-includes/post.php:1186 wp-admin/menu.php:71
13018
- msgctxt "page"
13019
- msgid "Add New"
13020
- msgstr "Erstellen"
13021
-
13022
- #: wp-includes/post.php:1187
13023
- msgid "Add New Post"
13024
- msgstr "Neuen Artikel erstellen"
13025
-
13026
- #: wp-includes/post.php:1187
13027
- msgid "Add New Page"
13028
- msgstr "Neue Seite erstellen"
13029
-
13030
- #: wp-includes/post.php:1188 wp-admin/press-this.php:583
13031
- msgid "Edit Post"
13032
- msgstr "Artikel bearbeiten"
13033
-
13034
- #: wp-includes/post.php:1188
13035
- msgid "Edit Page"
13036
- msgstr "Seite bearbeiten"
13037
-
13038
- #: wp-includes/post.php:1189 wp-includes/admin-bar.php:364
13039
- msgid "New Post"
13040
- msgstr "Neuer Artikel"
13041
-
13042
- #: wp-includes/post.php:1189
13043
- msgid "New Page"
13044
- msgstr "Neue Seite"
13045
-
13046
- #: wp-includes/post.php:1190 wp-content/plugins/akismet/legacy.php:294
13047
- msgid "View Post"
13048
- msgstr "Artikel ansehen"
13049
-
13050
- #: wp-includes/post.php:1190
13051
- msgid "View Page"
13052
- msgstr "Seite ansehen"
13053
-
13054
- #: wp-includes/post.php:1191
13055
- msgid "Search Posts"
13056
- msgstr "Artikel suchen"
13057
-
13058
- #: wp-includes/post.php:1191
13059
- msgid "Search Pages"
13060
- msgstr "Seiten suchen"
13061
-
13062
- #: wp-includes/post.php:1192
13063
- msgid "No posts found."
13064
- msgstr "Keine Artikel gefunden."
13065
-
13066
- #: wp-includes/post.php:1192
13067
- msgid "No pages found."
13068
- msgstr "Keine Seiten gefunden."
13069
-
13070
- #: wp-includes/post.php:1193
13071
- msgid "No posts found in Trash."
13072
- msgstr "Keine Artikel im Papierkorb gefunden."
13073
-
13074
- #: wp-includes/post.php:1193
13075
- msgid "No pages found in Trash."
13076
- msgstr "Keine Seiten im Papierkorb gefunden."
13077
-
13078
- #: wp-includes/post.php:1194
13079
- msgid "Parent Page:"
13080
- msgstr "Übergeordnete Seite:"
13081
-
13082
- #: wp-includes/post.php:1195 wp-admin/menu.php:43
13083
- msgid "All Posts"
13084
- msgstr "Alle Artikel"
13085
-
13086
- #: wp-includes/post.php:1195 wp-admin/menu.php:69
13087
- msgid "All Pages"
13088
- msgstr "Alle Seiten"
13089
-
13090
- #: wp-includes/post.php:2304
13091
- msgid "Passing an integer number of posts is deprecated. Pass an array of arguments instead."
13092
- msgstr "Eine Anzahl von Artikeln als integer-Zahl an die Abfrage zu übergeben, ist veraltet. Nutze stattdessen ein Array mit Parametern."
13093
-
13094
- #: wp-includes/post.php:2446
13095
- msgid "Content, title, and excerpt are empty."
13096
- msgstr "Inhalt, Titel und Auszug sind leer."
13097
-
13098
- #: wp-includes/post.php:2575
13099
- msgid "Could not update post in the database"
13100
- msgstr "Der Artikel konnte nicht in der Datenbank aktualisiert werden"
13101
-
13102
- #: wp-includes/post.php:2591
13103
- msgid "Could not insert post into the database"
13104
- msgstr "Der Artikel konnte nicht in die Datenbank eingefügt werden"
13105
-
13106
- #: wp-includes/post.php:2641
13107
- msgid "The page template is invalid."
13108
- msgstr "Das Seitentemplate ist ungültig."
13109
-
13110
- #: wp-includes/post.php:4688 wp-includes/class-wp-editor.php:754
13111
- #: wp-includes/js/tinymce/langs/wp-langs.php:344
13112
- #: wp-includes/js/tinymce/langs/wp-langs.php:508 wp-admin/admin-ajax.php:1314
13113
- #: wp-admin/includes/dashboard.php:532
13114
- #: wp-admin/includes/class-wp-posts-list-table.php:739
13115
- #: wp-admin/includes/media.php:924 wp-admin/includes/media.php:1690
13116
- #: wp-admin/includes/media.php:1954
13117
- msgid "Title"
13118
- msgstr "Titel"
13119
-
13120
- #: wp-includes/post.php:4689 wp-admin/index.php:73
13121
- #: wp-admin/includes/dashboard.php:261 wp-admin/includes/dashboard.php:543
13122
- msgid "Content"
13123
- msgstr "Inhalt"
13124
-
13125
- #: wp-includes/post.php:4690 wp-admin/edit-form-advanced.php:128
13126
- #: wp-admin/includes/meta-boxes.php:382
13127
- msgid "Excerpt"
13128
- msgstr "Auszug"
13129
-
13130
- #: wp-includes/post.php:4880
13131
- msgid "Cannot create a revision of a revision"
13132
- msgstr "Kann keine Überarbeitung einer Überarbeitung erstellen."
13133
-
13134
- #: wp-includes/post.php:5055
13135
- msgid "You do not have permission to preview drafts."
13136
- msgstr "Du hast nicht die nötigen Rechte, um die Entwurfsvorschau zu sehen."
13137
-
13138
- #: wp-includes/post.php:5129
13139
- #: wp-admin/includes/class-wp-posts-list-table.php:1006
13140
- #: wp-admin/press-this.php:485
13141
- msgctxt "Post format"
13142
- msgid "Standard"
13143
- msgstr "Standard"
13144
-
13145
- #: wp-includes/post.php:5130
13146
- msgctxt "Post format"
13147
- msgid "Aside"
13148
- msgstr "Kurzmitteilung"
13149
-
13150
- #: wp-includes/post.php:5131
13151
- msgctxt "Post format"
13152
- msgid "Chat"
13153
- msgstr "Chatprotokoll"
13154
-
13155
- #: wp-includes/post.php:5132
13156
- msgctxt "Post format"
13157
- msgid "Gallery"
13158
- msgstr "Galerie"
13159
-
13160
- #: wp-includes/post.php:5133
13161
- msgctxt "Post format"
13162
- msgid "Link"
13163
- msgstr "Link"
13164
-
13165
- #: wp-includes/post.php:5134
13166
- msgctxt "Post format"
13167
- msgid "Image"
13168
- msgstr "Bild"
13169
-
13170
- #: wp-includes/post.php:5135
13171
- msgctxt "Post format"
13172
- msgid "Quote"
13173
- msgstr "Zitat"
13174
-
13175
- #: wp-includes/post.php:5136
13176
- msgctxt "Post format"
13177
- msgid "Status"
13178
- msgstr "Statusmitteilung"
13179
-
13180
- #: wp-includes/post.php:5137
13181
- msgctxt "Post format"
13182
- msgid "Video"
13183
- msgstr "Video"
13184
-
13185
- #: wp-includes/post.php:5138
13186
- msgctxt "Post format"
13187
- msgid "Audio"
13188
- msgstr "Audio"
13189
-
13190
- #: wp-includes/class-wp-editor.php:86 wp-includes/class-wp-editor.php:608
13191
- msgid "HTML"
13192
- msgstr "HTML"
13193
-
13194
- #: wp-includes/class-wp-editor.php:87 wp-includes/class-wp-editor.php:607
13195
- msgid "Visual"
13196
- msgstr "Visuell"
13197
-
13198
- #: wp-includes/class-wp-editor.php:598
13199
- #: wp-includes/js/tinymce/langs/wp-langs.php:107 wp-admin/edit-link-form.php:27
13200
- #: wp-admin/includes/image-edit.php:75 wp-admin/includes/nav-menu.php:516
13201
- #: wp-admin/includes/widgets.php:211 wp-admin/includes/meta-boxes.php:25
13202
- #: wp-admin/includes/meta-boxes.php:617
13203
- msgid "Save"
13204
- msgstr "Speichern"
13205
-
13206
- #: wp-includes/class-wp-editor.php:603
13207
- msgid "Exit fullscreen"
13208
- msgstr "Vollbild schließen"
13209
-
13210
- #: wp-includes/class-wp-editor.php:616
13211
- #: wp-includes/js/tinymce/langs/wp-langs.php:252
13212
- msgid "Bold (Ctrl + B)"
13213
- msgstr "Fett (STRG + B)"
13214
-
13215
- #: wp-includes/class-wp-editor.php:617
13216
- #: wp-includes/js/tinymce/langs/wp-langs.php:253
13217
- msgid "Italic (Ctrl + I)"
13218
- msgstr "Kursiv (STRG + I)"
13219
-
13220
- #: wp-includes/class-wp-editor.php:619
13221
- #: wp-includes/js/tinymce/langs/wp-langs.php:260
13222
- msgid "Unordered list (Alt + Shift + U)"
13223
- msgstr "Liste (ALT + Großschreibung + U)"
13224
-
13225
- #: wp-includes/class-wp-editor.php:620
13226
- #: wp-includes/js/tinymce/langs/wp-langs.php:261
13227
- msgid "Ordered list (Alt + Shift + O)"
13228
- msgstr "Nummerierte Liste (ALT + Großschreibung + O)"
13229
-
13230
- #: wp-includes/class-wp-editor.php:623
13231
- #: wp-includes/js/tinymce/langs/wp-langs.php:268
13232
- msgid "Insert/edit image (Alt + Shift + M)"
13233
- msgstr "Bild einfügen/bearbeiten (ALT + Großschreibung + M)"
13234
-
13235
- #: wp-includes/class-wp-editor.php:625
13236
- #: wp-includes/js/tinymce/langs/wp-langs.php:266
13237
- msgid "Insert/edit link (Alt + Shift + A)"
13238
- msgstr "Link einfügen/bearbeiten (ALT + Großschreibung + A)"
13239
-
13240
- #: wp-includes/class-wp-editor.php:626
13241
- #: wp-includes/js/tinymce/langs/wp-langs.php:267
13242
- msgid "Unlink (Alt + Shift + S)"
13243
- msgstr "Link entfernen (ALT + Großschreibung + S)"
13244
-
13245
- #: wp-includes/class-wp-editor.php:628
13246
- #: wp-includes/js/tinymce/langs/wp-langs.php:466
13247
- msgid "Help (Alt + Shift + H)"
13248
- msgstr "Hilfe (ALT + Großschreibung + H)"
13249
-
13250
- #: wp-includes/class-wp-editor.php:650
13251
- msgid "Updated."
13252
- msgstr "Aktualisiert."
13253
-
13254
- #: wp-includes/class-wp-editor.php:650 wp-admin/admin-ajax.php:1528
13255
- #: wp-admin/includes/media.php:564
13256
- msgid "Saved."
13257
- msgstr "Gespeichert."
13258
-
13259
- #: wp-includes/class-wp-editor.php:661 wp-admin/edit-form-advanced.php:290
13260
- msgid "Enter title here"
13261
- msgstr "Gib hier den Titel an"
13262
-
13263
- #: wp-includes/class-wp-editor.php:670 wp-admin/edit-form-advanced.php:323
13264
- msgid "Word count: %s"
13265
- msgstr "Wörteranzahl: %s"
13266
-
13267
- #: wp-includes/class-wp-editor.php:671
13268
- msgid "Just write."
13269
- msgstr "Einfach schreiben."
13270
-
13271
- #: wp-includes/class-wp-editor.php:722 wp-admin/admin-ajax.php:1337
13272
- #: wp-admin/includes/class-wp-posts-list-table.php:578
13273
- #: wp-admin/includes/class-wp-comments-list-table.php:356
13274
- #: wp-admin/includes/class-wp-media-list-table.php:288
13275
- #: wp-admin/includes/class-wp-media-list-table.php:309
13276
- msgid "Y/m/d"
13277
- msgstr "d.m.Y"
13278
-
13279
- #: wp-includes/class-wp-editor.php:749
13280
- msgid "Enter the destination URL"
13281
- msgstr "Gib die Ziel-Adresse ein"
13282
-
13283
- #: wp-includes/class-wp-editor.php:751 wp-admin/comment.php:176
13284
- #: wp-admin/includes/media.php:1946 wp-admin/includes/template.php:328
13285
- #: wp-admin/includes/template.php:704 wp-admin/includes/nav-menu.php:129
13286
- #: wp-admin/includes/nav-menu.php:550
13287
- #: wp-admin/includes/class-wp-links-list-table.php:81
13288
- #: wp-admin/press-this.php:644
13289
- msgid "URL"
13290
- msgstr "URL"
13291
-
13292
- #: wp-includes/class-wp-editor.php:757 wp-admin/includes/nav-menu.php:149
13293
- msgid "Open link in a new window/tab"
13294
- msgstr "Link in neuem Fenster oder Tab öffnen"
13295
-
13296
- #: wp-includes/class-wp-editor.php:761
13297
- msgid "Or link to existing content"
13298
- msgstr "Oder verlinke auf bestehende Inhalte"
13299
-
13300
- #: wp-includes/class-wp-editor.php:777
13301
- msgid "No search term specified. Showing recent items."
13302
- msgstr "Es wurde kein Suchbegriff angegeben. Es werden die aktuellsten Artikel/Seiten angezeigt."
13303
-
13304
- #: wp-includes/widgets.php:67 wp-admin/includes/widgets.php:194
13305
- #: wp-admin/widgets.php:248
13306
- msgid "There are no options for this widget."
13307
- msgstr "Für dieses Widget gibt es keine weiteren Einstellungen."
13308
-
13309
- #: wp-includes/widgets.php:488 wp-includes/widgets.php:547
13310
- msgid "Sidebar %d"
13311
- msgstr "Sidebar %d"
13312
-
13313
- #: wp-includes/widgets.php:490 wp-admin/includes/file.php:20
13314
- #: wp-admin/widgets.php:253
13315
- msgid "Sidebar"
13316
- msgstr "Sidebar"
13317
-
13318
- #: wp-includes/theme.php:242
13319
- #: wp-admin/includes/class-wp-plugins-list-table.php:427
13320
- #: wp-admin/includes/plugin.php:141
13321
- msgid "Visit author homepage"
13322
- msgstr "Besuch die Homepage des Autors"
13323
-
13324
- #: wp-includes/theme.php:282
13325
- msgid "File not readable."
13326
- msgstr "Datei nicht lesbar."
13327
-
13328
- #: wp-includes/theme.php:334
13329
- msgid "Template is missing."
13330
- msgstr "Das Template fehlt."
13331
-
13332
- #: wp-includes/theme.php:336
13333
- msgid "The parent theme is missing. Please install the \"%s\" parent theme."
13334
- msgstr "Das Übergeordnete Theme fehlt. Bitte installiere das übergeordnete Theme \"%s\", da du Child-Themes sonst nicht nutzen kannst."
13335
-
13336
- #: wp-includes/theme.php:642
13337
- msgid "Stylesheet is missing."
13338
- msgstr "Es fehlt ein Stylesheet."
13339
-
13340
- #: wp-admin/freedoms.php:12 wp-admin/freedoms.php:32 wp-admin/about.php:32
13341
- #: wp-admin/credits.php:63
13342
- msgid "Freedoms"
13343
- msgstr "Freiheiten"
13344
-
13345
- #: wp-admin/freedoms.php:30 wp-admin/about.php:30 wp-admin/credits.php:12
13346
- #: wp-admin/credits.php:61
13347
- msgid "Credits"
13348
- msgstr "Mitwirkende"
13349
-
13350
- #: wp-includes/admin-bar.php:98
13351
- msgid "WordPress.org"
13352
- msgstr "WordPress.org"
13353
-
13354
- #: wp-includes/admin-bar.php:106
13355
- msgid "Documentation"
13356
- msgstr "Dokumentation"
13357
-
13358
- #: wp-includes/admin-bar.php:114
13359
- msgid "Support Forums"
13360
- msgstr "Support Foren"
13361
-
13362
- #: wp-includes/admin-bar.php:122
13363
- msgid "Feedback"
13364
- msgstr "Feedback"
13365
-
13366
- #: wp-includes/admin-bar.php:141
13367
- msgid "Howdy, %1$s"
13368
- msgstr "Willkommen, %1$s"
13369
-
13370
- #: wp-includes/admin-bar.php:192
13371
- msgid "Edit My Profile"
13372
- msgstr "Profil bearbeiten"
13373
-
13374
- #: wp-includes/admin-bar.php:198
13375
- msgid "Log Out"
13376
- msgstr "Abmelden"
13377
-
13378
- #: wp-includes/admin-bar.php:225
13379
- msgid "Network Admin: %s"
13380
- msgstr "Netzwerkadministrator: %s"
13381
-
13382
- #: wp-includes/admin-bar.php:227
13383
- msgid "Global Dashboard: %s"
13384
- msgstr "Globales Dashboard: %s"
13385
-
13386
- #: wp-includes/admin-bar.php:284 wp-admin/menu.php:30
13387
- msgid "My Sites"
13388
- msgstr "Meine Blogs"
13389
-
13390
- #: wp-includes/admin-bar.php:297 wp-admin/admin-header.php:25
13391
- msgid "Network Admin"
13392
- msgstr "Netzwerkadministrator"
13393
-
13394
- #: wp-includes/admin-bar.php:341 wp-admin/includes/theme.php:312
13395
- msgid "Blavatar"
13396
- msgstr "Blavatar"
13397
-
13398
- #: wp-includes/admin-bar.php:370
13399
- msgid "Manage Comments"
13400
- msgstr "Kommentare verwalten"
13401
-
13402
- #: wp-includes/admin-bar.php:400
13403
- msgid "Shortlink"
13404
- msgstr "Kurzlink"
13405
-
13406
- #: wp-includes/admin-bar.php:485
13407
- msgctxt "add new from admin bar"
13408
- msgid "Media"
13409
- msgstr "Datei"
13410
-
13411
- #: wp-includes/admin-bar.php:488
13412
- msgctxt "add new from admin bar"
13413
- msgid "Link"
13414
- msgstr "Link"
13415
-
13416
- #: wp-includes/admin-bar.php:505
13417
- msgctxt "add new from admin bar"
13418
- msgid "User"
13419
- msgstr "Benutzer"
13420
-
13421
- #: wp-includes/admin-bar.php:517
13422
- msgctxt "admin bar menu group label"
13423
- msgid "Add New"
13424
- msgstr "Hinzufügen"
13425
-
13426
- #: wp-admin/menu.php:127 wp-admin/menu.php:132
13427
- msgid "Appearance"
13428
- msgstr "Design"
13429
-
13430
- #: wp-includes/admin-bar.php:566 wp-admin/update-core.php:284
13431
- #: wp-admin/update-core.php:292 wp-admin/menu.php:128 wp-admin/menu.php:133
13432
- msgid "Themes"
13433
- msgstr "Themes"
13434
-
13435
- #: wp-includes/admin-bar.php:575 wp-admin/menu.php:130 wp-admin/menu.php:135
13436
- #: wp-admin/nav-menus.php:474
13437
- msgid "Menus"
13438
- msgstr "Menüs"
13439
-
13440
- #: wp-includes/admin-bar.php:578 wp-includes/js/tinymce/langs/wp-langs.php:375
13441
- #: wp-admin/custom-background.php:67
13442
- msgid "Background"
13443
- msgstr "Hintergrund"
13444
-
13445
- #: wp-includes/admin-bar.php:581 wp-admin/custom-header.php:86
13446
- #: wp-admin/includes/file.php:19
13447
- msgid "Header"
13448
- msgstr "Kopfzeile"
13449
-
13450
- #: wp-admin/export.php:136 wp-admin/includes/class-wp-users-list-table.php:167
13451
- #: wp-admin/includes/class-wp-terms-list-table.php:109 wp-admin/menu.php:42
13452
- msgid "Posts"
13453
- msgstr "Artikel"
13454
-
13455
- #: wp-admin/menu.php:57
13456
- msgid "Library"
13457
- msgstr "Medienübersicht"
13458
-
13459
- #: wp-admin/media.php:110 wp-admin/upload.php:179 wp-admin/menu.php:60
13460
- msgctxt "file"
13461
- msgid "Add New"
13462
- msgstr "Datei hinzufügen"
13463
-
13464
- #: wp-admin/link-manager.php:73 wp-admin/edit-link-form.php:62
13465
- #: wp-admin/menu.php:65
13466
- msgctxt "link"
13467
- msgid "Add New"
13468
- msgstr "Link hinzufügen"
13469
-
13470
- #: wp-includes/js/tinymce/langs/wp-langs.php:303 wp-admin/update-core.php:203
13471
- #: wp-admin/update-core.php:215 wp-admin/includes/dashboard.php:75
13472
- #: wp-admin/plugins.php:342
13473
- msgid "Plugins"
13474
- msgstr "Plugins"
13475
-
13476
- #: wp-admin/menu.php:157
13477
- msgid "Installed Plugins"
13478
- msgstr "Plugins anzeigen"
13479
-
13480
- #: wp-admin/plugins.php:395 wp-admin/menu.php:161
13481
- msgctxt "plugin"
13482
- msgid "Add New"
13483
- msgstr "Installieren"
13484
-
13485
- #: wp-includes/admin-bar.php:316 wp-admin/users.php:17 wp-admin/menu.php:168
13486
- msgid "Users"
13487
- msgstr "Benutzer"
13488
-
13489
- #: wp-admin/user/menu.php:14 wp-admin/user-edit.php:28 wp-admin/menu.php:170
13490
- msgid "Profile"
13491
- msgstr "Profil"
13492
-
13493
- #: wp-admin/menu.php:174
13494
- msgid "All Users"
13495
- msgstr "Alle Benutzer"
13496
-
13497
- #: wp-admin/users.php:396 wp-admin/user-edit.php:186 wp-admin/menu.php:176
13498
- #: wp-admin/menu.php:178
13499
- msgctxt "user"
13500
- msgid "Add New"
13501
- msgstr "Hinzufügen"
13502
-
13503
- #: wp-admin/menu.php:180 wp-admin/menu.php:183
13504
- msgid "Your Profile"
13505
- msgstr "Dein Profil"
13506
-
13507
- #: wp-admin/user-new.php:135 wp-admin/user-new.php:291 wp-admin/menu.php:185
13508
- #: wp-admin/menu.php:187
13509
- msgid "Add New User"
13510
- msgstr "Neuen Benutzer hinzufügen"
13511
-
13512
- #: wp-admin/tools.php:12 wp-admin/menu.php:190
13513
- msgid "Tools"
13514
- msgstr "Werkzeuge"
13515
-
13516
- #: wp-admin/menu.php:191
13517
- msgid "Available Tools"
13518
- msgstr "Verfügbare Werkzeuge"
13519
-
13520
- #: wp-admin/import.php:17 wp-admin/menu.php:192 wp-admin/admin.php:193
13521
- msgid "Import"
13522
- msgstr "Daten importieren"
13523
-
13524
- #: wp-admin/export.php:17 wp-admin/menu.php:193
13525
- msgid "Export"
13526
- msgstr "Daten exportieren"
13527
-
13528
- #: wp-admin/menu.php:195
13529
- msgid "Delete Site"
13530
- msgstr "Blog löschen"
13531
-
13532
- #: wp-admin/menu.php:197
13533
- msgid "Network Setup"
13534
- msgstr "Netzwerk-Einrichtung"
13535
-
13536
- #: wp-admin/menu.php:199 wp-admin/options.php:21
13537
- #: wp-content/plugins/akismet/admin.php:45
13538
- msgid "Settings"
13539
- msgstr "Einstellungen"
13540
-
13541
- #: wp-admin/menu.php:200
13542
- msgctxt "settings screen"
13543
- msgid "General"
13544
- msgstr "Allgemein"
13545
-
13546
- #: wp-admin/menu.php:201
13547
- msgid "Writing"
13548
- msgstr "Schreiben"
13549
-
13550
- #: wp-admin/menu.php:202
13551
- msgid "Reading"
13552
- msgstr "Lesen"
13553
-
13554
- #: wp-admin/edit-form-advanced.php:138 wp-admin/includes/dashboard.php:332
13555
- #: wp-admin/menu.php:203
13556
- msgid "Discussion"
13557
- msgstr "Diskussion"
13558
-
13559
- #: wp-admin/install.php:133 wp-admin/menu.php:205
13560
- msgid "Privacy"
13561
- msgstr "Privatsphäre"
13562
-
13563
- #: wp-admin/menu.php:206
13564
- msgid "Permalinks"
13565
- msgstr "Permalinks"
13566
-
13567
- #: wp-admin/menu.php:37
13568
- msgid "Updates %s"
13569
- msgstr "Updates %s"
13570
-
13571
- #: wp-includes/js/tinymce/langs/wp-langs.php:285
13572
- #: wp-includes/js/tinymce/langs/wp-langs.php:301
13573
- #: wp-includes/js/tinymce/wp-mce-help.php:260 wp-admin/includes/screen.php:744
13574
- msgid "Help"
13575
- msgstr "Hilfe"
13576
-
13577
- #: wp-includes/link-template.php:517
13578
- msgid "Comments Feed"
13579
- msgstr "RSS Kommentare"
13580
-
13581
- #: wp-includes/link-template.php:731 wp-includes/link-template.php:938
13582
- #: wp-includes/link-template.php:1013 wp-includes/link-template.php:1054
13583
- msgid "Edit This"
13584
- msgstr "Bearbeiten"
13585
-
13586
- #: wp-includes/link-template.php:1015 wp-admin/edit-comments.php:212
13587
- #: wp-admin/edit-comments.php:218 wp-admin/includes/dashboard.php:701
13588
- #: wp-admin/includes/class-wp-comments-list-table.php:415
13589
- msgid "Edit comment"
13590
- msgstr "Kommentar bearbeiten"
13591
-
13592
- #: wp-includes/link-template.php:1056 wp-admin/link.php:104
13593
- msgid "Edit Link"
13594
- msgstr "Link bearbeiten"
13595
-
13596
- #: wp-includes/link-template.php:1123
13597
- msgid "Use commas instead of %s to separate excluded categories."
13598
- msgstr "Benutze Kommas anstatt von %s um ausgeschlossene Kategorien zu trennen."
13599
-
13600
- #: wp-includes/link-template.php:1188 wp-includes/link-template.php:1355
13601
- msgid "Previous Post"
13602
- msgstr "vorheriger Artikel"
13603
-
13604
- #: wp-includes/link-template.php:1188 wp-includes/link-template.php:1355
13605
- msgid "Next Post"
13606
- msgstr "nächster Artikel"
13607
-
13608
- #: wp-includes/link-template.php:1494 wp-includes/link-template.php:1602
13609
- #: wp-content/plugins/akismet/legacy.php:260
13610
- #: wp-content/plugins/akismet/legacy.php:327
13611
- msgid "Next Page &raquo;"
13612
- msgstr "Nächste Seite &raquo;"
13613
-
13614
- #: wp-includes/link-template.php:1565 wp-includes/link-template.php:1601
13615
- #: wp-content/plugins/akismet/legacy.php:239
13616
- #: wp-content/plugins/akismet/legacy.php:306
13617
- msgid "&laquo; Previous Page"
13618
- msgstr "&laquo; Vorherige Seite"
13619
-
13620
- #: wp-includes/link-template.php:1703
13621
- msgid "Newer Comments &raquo;"
13622
- msgstr "Neuere Kommentare &raquo;"
13623
-
13624
- #: wp-includes/link-template.php:1740
13625
- msgid "&laquo; Older Comments"
13626
- msgstr "&laquo; Ältere Kommentare"
13627
-
13628
- #: wp-includes/link-template.php:2364
13629
- msgid "This is the short link."
13630
- msgstr "Dies ist der Kurzlink."
13631
-
13632
- #: wp-includes/locale.php:108 wp-includes/locale.php:118
13633
- #: wp-includes/locale.php:131 wp-includes/js/tinymce/langs/wp-langs.php:86
13634
- msgid "Sunday"
13635
- msgstr "Sonntag"
13636
-
13637
- #: wp-includes/locale.php:109 wp-includes/locale.php:119
13638
- #: wp-includes/locale.php:132 wp-includes/js/tinymce/langs/wp-langs.php:86
13639
- msgid "Monday"
13640
- msgstr "Montag"
13641
-
13642
- #: wp-includes/locale.php:110 wp-includes/locale.php:120
13643
- #: wp-includes/locale.php:133 wp-includes/js/tinymce/langs/wp-langs.php:86
13644
- msgid "Tuesday"
13645
- msgstr "Dienstag"
13646
-
13647
- #: wp-includes/locale.php:111 wp-includes/locale.php:121
13648
- #: wp-includes/locale.php:134 wp-includes/js/tinymce/langs/wp-langs.php:86
13649
- msgid "Wednesday"
13650
- msgstr "Mittwoch"
13651
-
13652
- #: wp-includes/locale.php:112 wp-includes/locale.php:122
13653
- #: wp-includes/locale.php:135 wp-includes/js/tinymce/langs/wp-langs.php:86
13654
- msgid "Thursday"
13655
- msgstr "Donnerstag"
13656
-
13657
- #: wp-includes/locale.php:113 wp-includes/locale.php:123
13658
- #: wp-includes/locale.php:136 wp-includes/js/tinymce/langs/wp-langs.php:86
13659
- msgid "Friday"
13660
- msgstr "Freitag"
13661
-
13662
- #: wp-includes/locale.php:114 wp-includes/locale.php:124
13663
- #: wp-includes/locale.php:137 wp-includes/js/tinymce/langs/wp-langs.php:86
13664
- msgid "Saturday"
13665
- msgstr "Samstag"
13666
-
13667
- #: wp-includes/locale.php:118
13668
- msgid "S_Sunday_initial"
13669
- msgstr "S_Sonntag_initial"
13670
-
13671
- #: wp-includes/locale.php:119
13672
- msgid "M_Monday_initial"
13673
- msgstr "M_Montag_initial"
13674
-
13675
- #: wp-includes/locale.php:120
13676
- msgid "T_Tuesday_initial"
13677
- msgstr "D_Dienstag_initial"
13678
-
13679
- #: wp-includes/locale.php:121
13680
- msgid "W_Wednesday_initial"
13681
- msgstr "M_Mittwoch_initial"
13682
-
13683
- #: wp-includes/locale.php:122
13684
- msgid "T_Thursday_initial"
13685
- msgstr "D_Donnerstag_initial"
13686
-
13687
- #: wp-includes/locale.php:123
13688
- msgid "F_Friday_initial"
13689
- msgstr "F_Freitag_initial"
13690
-
13691
- #: wp-includes/locale.php:124
13692
- msgid "S_Saturday_initial"
13693
- msgstr "S_Samstag_initial"
13694
-
13695
- #: wp-includes/locale.php:131 wp-includes/js/tinymce/langs/wp-langs.php:87
13696
- msgid "Sun"
13697
- msgstr "So"
13698
-
13699
- #: wp-includes/locale.php:132 wp-includes/js/tinymce/langs/wp-langs.php:87
13700
- msgid "Mon"
13701
- msgstr "Mo"
13702
-
13703
- #: wp-includes/locale.php:133 wp-includes/js/tinymce/langs/wp-langs.php:87
13704
- msgid "Tue"
13705
- msgstr "Di"
13706
-
13707
- #: wp-includes/locale.php:134 wp-includes/js/tinymce/langs/wp-langs.php:87
13708
- msgid "Wed"
13709
- msgstr "Mi"
13710
-
13711
- #: wp-includes/locale.php:135 wp-includes/js/tinymce/langs/wp-langs.php:87
13712
- msgid "Thu"
13713
- msgstr "Do"
13714
-
13715
- #: wp-includes/locale.php:136 wp-includes/js/tinymce/langs/wp-langs.php:87
13716
- msgid "Fri"
13717
- msgstr "Fr"
13718
-
13719
- #: wp-includes/locale.php:137 wp-includes/js/tinymce/langs/wp-langs.php:87
13720
- msgid "Sat"
13721
- msgstr "Sa"
13722
-
13723
- #: wp-includes/locale.php:140 wp-includes/locale.php:155
13724
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13725
- msgid "January"
13726
- msgstr "Januar"
13727
-
13728
- #: wp-includes/locale.php:141 wp-includes/locale.php:156
13729
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13730
- msgid "February"
13731
- msgstr "Februar"
13732
-
13733
- #: wp-includes/locale.php:142 wp-includes/locale.php:157
13734
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13735
- msgid "March"
13736
- msgstr "März"
13737
-
13738
- #: wp-includes/locale.php:143 wp-includes/locale.php:158
13739
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13740
- msgid "April"
13741
- msgstr "April"
13742
-
13743
- #: wp-includes/locale.php:144 wp-includes/locale.php:159
13744
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13745
- msgid "May"
13746
- msgstr "Mai"
13747
-
13748
- #: wp-includes/locale.php:145 wp-includes/locale.php:160
13749
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13750
- msgid "June"
13751
- msgstr "Juni"
13752
-
13753
- #: wp-includes/locale.php:146 wp-includes/locale.php:161
13754
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13755
- msgid "July"
13756
- msgstr "Juli"
13757
-
13758
- #: wp-includes/locale.php:147 wp-includes/locale.php:162
13759
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13760
- msgid "August"
13761
- msgstr "August"
13762
-
13763
- #: wp-includes/locale.php:148 wp-includes/locale.php:163
13764
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13765
- msgid "September"
13766
- msgstr "September"
13767
-
13768
- #: wp-includes/locale.php:149 wp-includes/locale.php:164
13769
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13770
- msgid "October"
13771
- msgstr "Oktober"
13772
-
13773
- #: wp-includes/locale.php:150 wp-includes/locale.php:165
13774
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13775
- msgid "November"
13776
- msgstr "November"
13777
-
13778
- #: wp-includes/locale.php:151 wp-includes/locale.php:166
13779
- #: wp-includes/js/tinymce/langs/wp-langs.php:84
13780
- msgid "December"
13781
- msgstr "Dezember"
13782
-
13783
- #: wp-includes/locale.php:155 wp-includes/js/tinymce/langs/wp-langs.php:85
13784
- msgid "Jan_January_abbreviation"
13785
- msgstr "Jan_Januar_abbreviation"
13786
-
13787
- #: wp-includes/locale.php:156 wp-includes/js/tinymce/langs/wp-langs.php:85
13788
- msgid "Feb_February_abbreviation"
13789
- msgstr "Feb_Februar_abbreviation"
13790
-
13791
- #: wp-includes/locale.php:157 wp-includes/js/tinymce/langs/wp-langs.php:85
13792
- msgid "Mar_March_abbreviation"
13793
- msgstr "Mrz_März_abbreviation"
13794
-
13795
- #: wp-includes/locale.php:158 wp-includes/js/tinymce/langs/wp-langs.php:85
13796
- msgid "Apr_April_abbreviation"
13797
- msgstr "Apr_April_abbreviation"
13798
-
13799
- #: wp-includes/locale.php:159 wp-includes/js/tinymce/langs/wp-langs.php:85
13800
- msgid "May_May_abbreviation"
13801
- msgstr "Mai_Mai_abbreviation"
13802
-
13803
- #: wp-includes/locale.php:160 wp-includes/js/tinymce/langs/wp-langs.php:85
13804
- msgid "Jun_June_abbreviation"
13805
- msgstr "Jun_Juni_abbreviation"
13806
-
13807
- #: wp-includes/locale.php:161 wp-includes/js/tinymce/langs/wp-langs.php:85
13808
- msgid "Jul_July_abbreviation"
13809
- msgstr "Jul_Juli_abbreviation"
13810
-
13811
- #: wp-includes/locale.php:162 wp-includes/js/tinymce/langs/wp-langs.php:85
13812
- msgid "Aug_August_abbreviation"
13813
- msgstr "Aug_August_abbreviation"
13814
-
13815
- #: wp-includes/locale.php:163 wp-includes/js/tinymce/langs/wp-langs.php:85
13816
- msgid "Sep_September_abbreviation"
13817
- msgstr "Sep_September_abbreviation"
13818
-
13819
- #: wp-includes/locale.php:164 wp-includes/js/tinymce/langs/wp-langs.php:85
13820
- msgid "Oct_October_abbreviation"
13821
- msgstr "Okt_Oktober_abbreviation"
13822
-
13823
- #: wp-includes/locale.php:165 wp-includes/js/tinymce/langs/wp-langs.php:85
13824
- msgid "Nov_November_abbreviation"
13825
- msgstr "Nov_November_abbreviation"
13826
-
13827
- #: wp-includes/locale.php:166 wp-includes/js/tinymce/langs/wp-langs.php:85
13828
- msgid "Dec_December_abbreviation"
13829
- msgstr "Dez_Dezember_abbreviation"
13830
-
13831
- #: wp-includes/locale.php:173
13832
- msgid "am"
13833
- msgstr "am"
13834
-
13835
- #: wp-includes/locale.php:174
13836
- msgid "pm"
13837
- msgstr "pm"
13838
-
13839
- #: wp-includes/locale.php:175
13840
- msgid "AM"
13841
- msgstr "AM"
13842
-
13843
- #: wp-includes/locale.php:176
13844
- msgid "PM"
13845
- msgstr "PM"
13846
-
13847
- #: wp-includes/locale.php:182
13848
- msgid "number_format_thousands_sep"
13849
- msgstr "."
13850
-
13851
- #: wp-includes/locale.php:186
13852
- msgid "number_format_decimal_point"
13853
- msgstr ","
13854
-
13855
- #: wp-includes/update.php:326
13856
- msgid "%d WordPress Update"
13857
- msgstr "%d WordPress-Aktualisierung"
13858
-
13859
- #: wp-includes/update.php:328
13860
- msgid "%d Plugin Update"
13861
- msgid_plural "%d Plugin Updates"
13862
- msgstr[0] "%d Plugin Update"
13863
- msgstr[1] "%d Plugin Updates"
13864
-
13865
- #: wp-includes/update.php:330
13866
- msgid "%d Theme Update"
13867
- msgid_plural "%d Theme Updates"
13868
- msgstr[0] "%d Theme-Aktualisierung"
13869
- msgstr[1] "%d Theme-Aktualisierungen"
13870
-
13871
- #: wp-includes/js/tinymce/langs/wp-langs.php:12
13872
- msgid "Do you want to use the WYSIWYG mode for this textarea?"
13873
- msgstr "Möchtest Du den WYSIWYG-Modus für diese Textarea benutzen?"
13874
-
13875
- #: wp-includes/js/tinymce/langs/wp-langs.php:13
13876
- #: wp-admin/includes/screen.php:946
13877
- #: wp-admin/includes/class-wp-list-table.php:303
13878
- msgid "Apply"
13879
- msgstr "Übernehmen"
13880
-
13881
- #: wp-includes/js/tinymce/langs/wp-langs.php:14
13882
- msgid "Insert"
13883
- msgstr "Einfügen"
13884
-
13885
- #: wp-includes/js/tinymce/langs/wp-langs.php:18
13886
- msgid "Browse"
13887
- msgstr "Durchsuchen"
13888
-
13889
- #: wp-includes/js/tinymce/langs/wp-langs.php:19
13890
- #: wp-includes/js/tinymce/langs/wp-langs.php:364
13891
- msgid "Class"
13892
- msgstr "Klasse"
13893
-
13894
- #: wp-includes/js/tinymce/langs/wp-langs.php:20
13895
- msgid "-- Not set --"
13896
- msgstr "-- Leer --"
13897
-
13898
- #: wp-includes/js/tinymce/langs/wp-langs.php:21
13899
- #: wp-includes/js/tinymce/langs/wp-langs.php:287
13900
- msgid "Copy/Cut/Paste is not available in Mozilla and Firefox."
13901
- msgstr "Kopieren, Ausschneiden und Einfügen ist in Mozilla und Firefox nicht verfügbar."
13902
-
13903
- #: wp-includes/js/tinymce/langs/wp-langs.php:22
13904
- msgid "Currently not supported by your browser, use keyboard shortcuts instead."
13905
- msgstr "Wird zur Zeit von deinem Browser nicht unterstützt, benutze stattdessen Tastenkürzel."
13906
-
13907
- #: wp-includes/js/tinymce/langs/wp-langs.php:23
13908
- msgid "Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool."
13909
- msgstr "Dein Pop-up-Blocker hat die Anzeige eines Fensters mit wichtigen Programmfunktionen unterbunden. Um diese Seite vollumfänglich nutzen zu können, musst du deren Pop-ups zulassen."
13910
-
13911
- #: wp-includes/js/tinymce/langs/wp-langs.php:24
13912
- msgid "ERROR: Invalid values entered, these are marked in red."
13913
- msgstr "FEHLER: Es wurden ungültige Werte eingegeben, sie wurden rot gekennzeichnet."
13914
-
13915
- #: wp-includes/js/tinymce/langs/wp-langs.php:25
13916
- msgid "{#field} must be a number"
13917
- msgstr "{#field} muss eine Zahl sein"
13918
-
13919
- #: wp-includes/js/tinymce/langs/wp-langs.php:26
13920
- msgid "{#field} must be a number greater than {#min}"
13921
- msgstr "{#field} muss eine Zahl größer als {#min} sein"
13922
-
13923
- #: wp-includes/js/tinymce/langs/wp-langs.php:27
13924
- msgid "{#field} must be a number or percentage"
13925
- msgstr "{#field} muss eine Zahl oder Prozentangabe sein"
13926
-
13927
- #: wp-includes/js/tinymce/langs/wp-langs.php:28
13928
- #: wp-includes/js/tinymce/langs/wp-langs.php:291
13929
- msgid "More colors"
13930
- msgstr "Weitere Farbe"
13931
-
13932
- #: wp-includes/js/tinymce/langs/wp-langs.php:31 wp-admin/includes/theme.php:280
13933
- msgid "Black"
13934
- msgstr "Schwarz"
13935
-
13936
- #: wp-includes/js/tinymce/langs/wp-langs.php:32
13937
- msgid "Burnt orange"
13938
- msgstr "Dunkles Orange"
13939
-
13940
- #: wp-includes/js/tinymce/langs/wp-langs.php:33
13941
- msgid "Dark olive"
13942
- msgstr "Dunkles Oliv"
13943
-
13944
- #: wp-includes/js/tinymce/langs/wp-langs.php:34
13945
- msgid "Dark green"
13946
- msgstr "Dunkles Grün"
13947
-
13948
- #: wp-includes/js/tinymce/langs/wp-langs.php:35
13949
- msgid "Dark azure"
13950
- msgstr "Dunkles Azurblau"
13951
-
13952
- #: wp-includes/js/tinymce/langs/wp-langs.php:36
13953
- msgid "Navy Blue"
13954
- msgstr "Marines Blau"
13955
-
13956
- #: wp-includes/js/tinymce/langs/wp-langs.php:37
13957
- msgid "Indigo"
13958
- msgstr "Indigo"
13959
-
13960
- #: wp-includes/js/tinymce/langs/wp-langs.php:38
13961
- msgid "Very dark gray"
13962
- msgstr "Sehr dunkles Grau"
13963
-
13964
- #: wp-includes/js/tinymce/langs/wp-langs.php:39
13965
- msgid "Maroon"
13966
- msgstr "Kastanienbraun"
13967
-
13968
- #: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-admin/includes/theme.php:285
13969
- msgid "Orange"
13970
- msgstr "Orange"
13971
-
13972
- #: wp-includes/js/tinymce/langs/wp-langs.php:41
13973
- msgid "Olive"
13974
- msgstr "Oliv"
13975
-
13976
- #: wp-includes/js/tinymce/langs/wp-langs.php:42 wp-admin/includes/theme.php:284
13977
- msgid "Green"
13978
- msgstr "Grün"
13979
-
13980
- #: wp-includes/js/tinymce/langs/wp-langs.php:43
13981
- msgid "Teal"
13982
- msgstr "Petrol"
13983
-
13984
- #: wp-includes/js/tinymce/langs/wp-langs.php:44 wp-admin/includes/theme.php:281
13985
- msgid "Blue"
13986
- msgstr "Blau"
13987
-
13988
- #: wp-includes/js/tinymce/langs/wp-langs.php:45
13989
- msgid "Grayish blue"
13990
- msgstr "Graublau"
13991
-
13992
- #: wp-includes/js/tinymce/langs/wp-langs.php:46 wp-admin/includes/theme.php:283
13993
- msgid "Gray"
13994
- msgstr "Grau"
13995
-
13996
- #: wp-includes/js/tinymce/langs/wp-langs.php:47 wp-admin/includes/theme.php:288
13997
- msgid "Red"
13998
- msgstr "Rot"
13999
-
14000
- #: wp-includes/js/tinymce/langs/wp-langs.php:48
14001
- msgid "Amber"
14002
- msgstr "Bernstein"
14003
-
14004
- #: wp-includes/js/tinymce/langs/wp-langs.php:49
14005
- msgid "Yellow green"
14006
- msgstr "Gelbgrün"
14007
-
14008
- #: wp-includes/js/tinymce/langs/wp-langs.php:50
14009
- msgid "Sea green"
14010
- msgstr "Meergrün"
14011
-
14012
- #: wp-includes/js/tinymce/langs/wp-langs.php:51
14013
- msgid "Turquoise"
14014
- msgstr "Türkis"
14015
-
14016
- #: wp-includes/js/tinymce/langs/wp-langs.php:52
14017
- msgid "Royal blue"
14018
- msgstr "Königsblau"
14019
-
14020
- #: wp-includes/js/tinymce/langs/wp-langs.php:53 wp-admin/includes/theme.php:287
14021
- msgid "Purple"
14022
- msgstr "Violett"
14023
-
14024
- #: wp-includes/js/tinymce/langs/wp-langs.php:54
14025
- msgid "Medium gray"
14026
- msgstr "Mittelgrau"
14027
-
14028
- #: wp-includes/js/tinymce/langs/wp-langs.php:55
14029
- msgid "Magenta"
14030
- msgstr "Magenta"
14031
-
14032
- #: wp-includes/js/tinymce/langs/wp-langs.php:56
14033
- msgid "Gold"
14034
- msgstr "Gold"
14035
-
14036
- #: wp-includes/js/tinymce/langs/wp-langs.php:57 wp-admin/includes/theme.php:292
14037
- msgid "Yellow"
14038
- msgstr "Gelb"
14039
-
14040
- #: wp-includes/js/tinymce/langs/wp-langs.php:58
14041
- msgid "Lime"
14042
- msgstr "Hellgrün"
14043
-
14044
- #: wp-includes/js/tinymce/langs/wp-langs.php:59
14045
- msgid "Aqua"
14046
- msgstr "Aquamarin"
14047
-
14048
- #: wp-includes/js/tinymce/langs/wp-langs.php:60
14049
- msgid "Sky blue"
14050
- msgstr "Himmelblau"
14051
-
14052
- #: wp-includes/js/tinymce/langs/wp-langs.php:61 wp-admin/includes/theme.php:282
14053
- msgid "Brown"
14054
- msgstr "Braun"
14055
-
14056
- #: wp-includes/js/tinymce/langs/wp-langs.php:62 wp-admin/includes/theme.php:289
14057
- msgid "Silver"
14058
- msgstr "Silber"
14059
-
14060
- #: wp-includes/js/tinymce/langs/wp-langs.php:63 wp-admin/includes/theme.php:286
14061
- msgid "Pink"
14062
- msgstr "Pink"
14063
-
14064
- #: wp-includes/js/tinymce/langs/wp-langs.php:64
14065
- msgid "Peach"
14066
- msgstr "Pfirsich"
14067
-
14068
- #: wp-includes/js/tinymce/langs/wp-langs.php:65
14069
- msgid "Light yellow"
14070
- msgstr "Hellgelb"
14071
-
14072
- #: wp-includes/js/tinymce/langs/wp-langs.php:66
14073
- msgid "Pale green"
14074
- msgstr "Blasses Grün"
14075
-
14076
- #: wp-includes/js/tinymce/langs/wp-langs.php:67
14077
- msgid "Pale cyan"
14078
- msgstr "Blasses Zyan"
14079
-
14080
- #: wp-includes/js/tinymce/langs/wp-langs.php:68
14081
- msgid "Light sky blue"
14082
- msgstr "Helles Himmelblau"
14083
-
14084
- #: wp-includes/js/tinymce/langs/wp-langs.php:69
14085
- msgid "Plum"
14086
- msgstr "Pflaume"
14087
-
14088
- #: wp-includes/js/tinymce/langs/wp-langs.php:70 wp-admin/includes/theme.php:291
14089
- msgid "White"
14090
- msgstr "Weiss"
14091
-
14092
- #: wp-includes/js/tinymce/langs/wp-langs.php:73
14093
- #: wp-includes/js/tinymce/langs/wp-langs.php:330
14094
- #: wp-admin/includes/media.php:809 wp-admin/includes/media.php:1971
14095
- msgid "Alignment"
14096
- msgstr "Ausrichtung"
14097
-
14098
- #: wp-includes/js/tinymce/langs/wp-langs.php:74
14099
- #: wp-includes/js/tinymce/langs/wp-langs.php:337
14100
- #: wp-includes/js/tinymce/langs/wp-langs.php:436
14101
- #: wp-admin/custom-background.php:265 wp-admin/includes/media.php:685
14102
- #: wp-admin/includes/media.php:1976
14103
- msgid "Left"
14104
- msgstr "Links"
14105
-
14106
- #: wp-includes/js/tinymce/langs/wp-langs.php:75
14107
- #: wp-includes/js/tinymce/langs/wp-langs.php:416
14108
- #: wp-includes/js/tinymce/langs/wp-langs.php:437
14109
- #: wp-admin/custom-background.php:269 wp-admin/includes/media.php:685
14110
- #: wp-admin/includes/media.php:1978
14111
- msgid "Center"
14112
- msgstr "Zentriert"
14113
-
14114
- #: wp-includes/js/tinymce/langs/wp-langs.php:76
14115
- #: wp-includes/js/tinymce/langs/wp-langs.php:338
14116
- #: wp-includes/js/tinymce/langs/wp-langs.php:434
14117
- #: wp-admin/custom-background.php:273 wp-admin/includes/media.php:685
14118
- #: wp-admin/includes/media.php:1980
14119
- msgid "Right"
14120
- msgstr "Rechts"
14121
-
14122
- #: wp-includes/js/tinymce/langs/wp-langs.php:77
14123
- msgid "Full"
14124
- msgstr "Blocksatz"
14125
-
14126
- #: wp-includes/js/tinymce/langs/wp-langs.php:80
14127
- msgid "%Y-%m-%d"
14128
- msgstr "%Y-%m-%d"
14129
-
14130
- #: wp-includes/js/tinymce/langs/wp-langs.php:81
14131
- msgid "%H:%M:%S"
14132
- msgstr "%H:%M:%S"
14133
-
14134
- #: wp-includes/js/tinymce/langs/wp-langs.php:82
14135
- msgid "Insert date"
14136
- msgstr "Datum einfügen"
14137
-
14138
- #: wp-includes/js/tinymce/langs/wp-langs.php:83
14139
- msgid "Insert time"
14140
- msgstr "Zeit einfügen"
14141
-
14142
- #: wp-includes/js/tinymce/langs/wp-langs.php:90
14143
- msgid "Print"
14144
- msgstr "Drucken"
14145
-
14146
- #: wp-includes/js/tinymce/langs/wp-langs.php:93
14147
- #: wp-includes/js/tinymce/langs/wp-langs.php:359 wp-admin/custom-header.php:491
14148
- #: wp-admin/custom-background.php:193
14149
- #: wp-admin/includes/class-wp-posts-list-table.php:551
14150
- #: wp-admin/includes/class-wp-themes-list-table.php:153
14151
- #: wp-admin/includes/class-wp-upgrader.php:1421
14152
- #: wp-admin/includes/class-wp-upgrader.php:1477
14153
- #: wp-admin/includes/theme-install.php:145 wp-admin/includes/meta-boxes.php:48
14154
- msgid "Preview"
14155
- msgstr "Vorschau"
14156
-
14157
- #: wp-includes/js/tinymce/langs/wp-langs.php:96
14158
- msgid "Direction left to right"
14159
- msgstr "Von links nach rechts"
14160
-
14161
- #: wp-includes/js/tinymce/langs/wp-langs.php:97
14162
- msgid "Direction right to left"
14163
- msgstr "Von rechts nach links"
14164
-
14165
- #: wp-includes/js/tinymce/langs/wp-langs.php:100
14166
- msgid "Insert new layer"
14167
- msgstr "Neue Ebene einfügen"
14168
-
14169
- #: wp-includes/js/tinymce/langs/wp-langs.php:101
14170
- msgid "Move forward"
14171
- msgstr "Vorwärts gehen"
14172
-
14173
- #: wp-includes/js/tinymce/langs/wp-langs.php:102
14174
- msgid "Move backward"
14175
- msgstr "Rückwärts gehen"
14176
-
14177
- #: wp-includes/js/tinymce/langs/wp-langs.php:103
14178
- msgid "Toggle absolute positioning"
14179
- msgstr "Absolute Platzierung ein/aus"
14180
-
14181
- #: wp-includes/js/tinymce/langs/wp-langs.php:104
14182
- msgid "New layer..."
14183
- msgstr "Neue Ebene …"
14184
-
14185
- #: wp-includes/js/tinymce/langs/wp-langs.php:108
14186
- msgid "Cancel all changes"
14187
- msgstr "Alle Änderungen verwerfen"
14188
-
14189
- #: wp-includes/js/tinymce/langs/wp-langs.php:111
14190
- msgid "Insert non-breaking space character"
14191
- msgstr "Geschütztes Leerzeichen einfügen"
14192
-
14193
- #: wp-includes/js/tinymce/langs/wp-langs.php:114
14194
- msgid "Run spell checking"
14195
- msgstr "Rechtschreibprüfung durchführen"
14196
-
14197
- #: wp-includes/js/tinymce/langs/wp-langs.php:115
14198
- msgid "ieSpell not detected. Do you want to install it now?"
14199
- msgstr "ieSpell nicht gefunden. Jetzt installieren?"
14200
-
14201
- #: wp-includes/js/tinymce/langs/wp-langs.php:118
14202
- msgid "Horizontale rule"
14203
- msgstr "Waagerechtes Lineal"
14204
-
14205
- #: wp-includes/js/tinymce/langs/wp-langs.php:121
14206
- msgid "Emotions"
14207
- msgstr "Gefühle"
14208
-
14209
- #: wp-includes/js/tinymce/langs/wp-langs.php:124
14210
- msgid "Find"
14211
- msgstr "Suchen"
14212
-
14213
- #: wp-includes/js/tinymce/langs/wp-langs.php:125
14214
- msgid "Find/Replace"
14215
- msgstr "Suchen/Ersetzen"
14216
-
14217
- #: wp-includes/js/tinymce/langs/wp-langs.php:128
14218
- #: wp-includes/js/tinymce/langs/wp-langs.php:322
14219
- msgid "Insert/edit image"
14220
- msgstr "Bild einfügen/ändern"
14221
-
14222
- #: wp-includes/js/tinymce/langs/wp-langs.php:134
14223
- msgid "Citation"
14224
- msgstr "Zitat"
14225
-
14226
- #: wp-includes/js/tinymce/langs/wp-langs.php:135
14227
- msgid "Abbreviation"
14228
- msgstr "Abkürzung"
14229
-
14230
- #: wp-includes/js/tinymce/langs/wp-langs.php:136
14231
- msgid "Acronym"
14232
- msgstr "Akronym"
14233
-
14234
- #: wp-includes/js/tinymce/langs/wp-langs.php:137
14235
- msgid "Deletion"
14236
- msgstr "Löschung"
14237
-
14238
- #: wp-includes/js/tinymce/langs/wp-langs.php:138
14239
- msgid "Insertion"
14240
- msgstr "Einfügung"
14241
-
14242
- #: wp-includes/js/tinymce/langs/wp-langs.php:139
14243
- msgid "Insert/Edit Attributes"
14244
- msgstr "Attribute einfügen/ändern"
14245
-
14246
- #: wp-includes/js/tinymce/langs/wp-langs.php:142
14247
- msgid "Edit CSS Style"
14248
- msgstr "Stylesheet bearbeiten"
14249
-
14250
- #: wp-includes/js/tinymce/langs/wp-langs.php:145
14251
- msgid "Paste as Plain Text"
14252
- msgstr "Als unformatierten Text einfügen"
14253
-
14254
- #: wp-includes/js/tinymce/langs/wp-langs.php:146
14255
- msgid "Paste from Word"
14256
- msgstr "Aus Word einfügen"
14257
-
14258
- #: wp-includes/js/tinymce/langs/wp-langs.php:147 wp-admin/update-core.php:224
14259
- #: wp-admin/update-core.php:231 wp-admin/update-core.php:302
14260
- #: wp-admin/update-core.php:309 wp-admin/includes/nav-menu.php:781
14261
- #: wp-admin/includes/nav-menu.php:958
14262
- msgid "Select All"
14263
- msgstr "Alle auswählen"
14264
-
14265
- #: wp-includes/js/tinymce/langs/wp-langs.php:148
14266
- msgid "Paste is now in plain text mode. Click again to toggle back to regular paste mode. After you paste something you will be returned to regular paste mode."
14267
- msgstr "Einfügen ist nun im Modus für unformatierten Text. Klicke noch mal, um zum normalen Einfügemodus zurückzukehren. Nach dem du etwas eingefügt hast, wird wieder zum normalen Modus gewechselt."
14268
-
14269
- #: wp-includes/js/tinymce/langs/wp-langs.php:149
14270
- msgid "Paste is now in plain text mode. Click again to toggle back to regular paste mode."
14271
- msgstr "Einfügen ist nun im Modus für unformatierten Text. Klicke noch mal, um zum normalen Einfügemodus zurückzukehren."
14272
-
14273
- #: wp-includes/js/tinymce/langs/wp-langs.php:152
14274
- #: wp-includes/js/tinymce/langs/wp-langs.php:154
14275
- msgid "Use CTRL+V on your keyboard to paste the text into the window."
14276
- msgstr "STRG+V drücken, um den Text in das Fenster einzufügen."
14277
-
14278
- #: wp-includes/js/tinymce/langs/wp-langs.php:153
14279
- msgid "Keep linebreaks"
14280
- msgstr "Zeilenumbrüche erhalten"
14281
-
14282
- #: wp-includes/js/tinymce/langs/wp-langs.php:157
14283
- msgid "Inserts a new table"
14284
- msgstr "Neue Tabelle einfügen"
14285
-
14286
- #: wp-includes/js/tinymce/langs/wp-langs.php:158
14287
- msgid "Insert row before"
14288
- msgstr "Zeile einfügen"
14289
-
14290
- #: wp-includes/js/tinymce/langs/wp-langs.php:159
14291
- msgid "Insert row after"
14292
- msgstr "Zeile einfügen"
14293
-
14294
- #: wp-includes/js/tinymce/langs/wp-langs.php:160
14295
- msgid "Delete row"
14296
- msgstr "Zeile löschen"
14297
-
14298
- #: wp-includes/js/tinymce/langs/wp-langs.php:161
14299
- msgid "Insert column before"
14300
- msgstr "Spalte einfügen"
14301
-
14302
- #: wp-includes/js/tinymce/langs/wp-langs.php:162
14303
- msgid "Insert column after"
14304
- msgstr "Spalte einfügen"
14305
-
14306
- #: wp-includes/js/tinymce/langs/wp-langs.php:163
14307
- msgid "Remove column"
14308
- msgstr "Spalte entfernen"
14309
-
14310
- #: wp-includes/js/tinymce/langs/wp-langs.php:164
14311
- msgid "Split merged table cells"
14312
- msgstr "Verbundene Zellen wieder teilen"
14313
-
14314
- #: wp-includes/js/tinymce/langs/wp-langs.php:165
14315
- msgid "Merge table cells"
14316
- msgstr "Zellen verbinden"
14317
-
14318
- #: wp-includes/js/tinymce/langs/wp-langs.php:166
14319
- msgid "Table row properties"
14320
- msgstr "Zeileneigenschaften"
14321
-
14322
- #: wp-includes/js/tinymce/langs/wp-langs.php:167
14323
- msgid "Table cell properties"
14324
- msgstr "Zelleneigenschaften"
14325
-
14326
- #: wp-includes/js/tinymce/langs/wp-langs.php:168
14327
- msgid "Table properties"
14328
- msgstr "Tabelleneigenschaften"
14329
-
14330
- #: wp-includes/js/tinymce/langs/wp-langs.php:169
14331
- msgid "Paste table row before"
14332
- msgstr "Zeile mit Inhalt davor einfügen"
14333
-
14334
- #: wp-includes/js/tinymce/langs/wp-langs.php:170
14335
- msgid "Paste table row after"
14336
- msgstr "Zeile mit Inhalt danach einfügen"
14337
-
14338
- #: wp-includes/js/tinymce/langs/wp-langs.php:171
14339
- msgid "Cut table row"
14340
- msgstr "Zeile ausschneiden"
14341
-
14342
- #: wp-includes/js/tinymce/langs/wp-langs.php:172
14343
- msgid "Copy table row"
14344
- msgstr "Zeile kopieren"
14345
-
14346
- #: wp-includes/js/tinymce/langs/wp-langs.php:173
14347
- msgid "Delete table"
14348
- msgstr "Tabelle löschen"
14349
-
14350
- #: wp-includes/js/tinymce/langs/wp-langs.php:174
14351
- msgid "Row"
14352
- msgstr "Zeile"
14353
-
14354
- #: wp-includes/js/tinymce/langs/wp-langs.php:175
14355
- msgid "Column"
14356
- msgstr "Spalte"
14357
-
14358
- #: wp-includes/js/tinymce/langs/wp-langs.php:176
14359
- msgid "Cell"
14360
- msgstr "Zelle"
14361
-
14362
- #: wp-includes/js/tinymce/langs/wp-langs.php:185
14363
- #: wp-includes/js/tinymce/langs/wp-langs.php:353
14364
- msgid "Insert / edit embedded media"
14365
- msgstr "Medien einbetten/bearbeiten"
14366
-
14367
- #: wp-includes/js/tinymce/langs/wp-langs.php:186
14368
- msgid "Edit embedded media"
14369
- msgstr "Eingebettete Medien bearbeiten"
14370
-
14371
- #: wp-includes/js/tinymce/langs/wp-langs.php:189
14372
- msgid "Document properties"
14373
- msgstr "Dokumenteigenschaften"
14374
-
14375
- #: wp-includes/js/tinymce/langs/wp-langs.php:192
14376
- msgid "Insert predefined template content"
14377
- msgstr "Vordefinierten Template-Inhalt einfügen"
14378
-
14379
- #: wp-includes/js/tinymce/langs/wp-langs.php:195
14380
- msgid "Visual control characters on/off."
14381
- msgstr "Sichtbare Steuerzeichen ein/aus."
14382
-
14383
- #: wp-includes/js/tinymce/langs/wp-langs.php:199
14384
- msgid "Spellchecker settings"
14385
- msgstr "Einstellungen für die Rechtschreibprüfung"
14386
-
14387
- #: wp-includes/js/tinymce/langs/wp-langs.php:200
14388
- msgid "Ignore word"
14389
- msgstr "Wort ignorieren"
14390
-
14391
- #: wp-includes/js/tinymce/langs/wp-langs.php:201
14392
- msgid "Ignore all"
14393
- msgstr "Alles ignorieren"
14394
-
14395
- #: wp-includes/js/tinymce/langs/wp-langs.php:202
14396
- msgid "Languages"
14397
- msgstr "Sprachen"
14398
-
14399
- #: wp-includes/js/tinymce/langs/wp-langs.php:203
14400
- msgid "Please wait..."
14401
- msgstr "Bitte warten …"
14402
-
14403
- #: wp-includes/js/tinymce/langs/wp-langs.php:204
14404
- msgid "Suggestions"
14405
- msgstr "Vorschläge"
14406
-
14407
- #: wp-includes/js/tinymce/langs/wp-langs.php:205
14408
- msgid "No suggestions"
14409
- msgstr "Keine Vorschläge"
14410
-
14411
- #: wp-includes/js/tinymce/langs/wp-langs.php:206
14412
- msgid "No misspellings found."
14413
- msgstr "Es wurden keine Rechtschreibfehler gefunden."
14414
-
14415
- #: wp-includes/js/tinymce/langs/wp-langs.php:207
14416
- msgid "Learn word"
14417
- msgstr "Wort lernen"
14418
-
14419
- #: wp-includes/js/tinymce/langs/wp-langs.php:210
14420
- msgid "Insert Page Break"
14421
- msgstr "Seitenumbruch einfügen"
14422
-
14423
- #: wp-includes/js/tinymce/langs/wp-langs.php:213
14424
- msgid "Types"
14425
- msgstr "Aufzählungspunkttypen"
14426
-
14427
- #: wp-includes/js/tinymce/langs/wp-langs.php:214
14428
- #: wp-admin/options-permalink.php:196
14429
- msgid "Default"
14430
- msgstr "Standard"
14431
-
14432
- #: wp-includes/js/tinymce/langs/wp-langs.php:215
14433
- msgid "Lower alpha"
14434
- msgstr "Buchstaben (klein)"
14435
-
14436
- #: wp-includes/js/tinymce/langs/wp-langs.php:216
14437
- msgid "Lower greek"
14438
- msgstr "Griechische Buchstaben (klein)"
14439
-
14440
- #: wp-includes/js/tinymce/langs/wp-langs.php:217
14441
- msgid "Lower roman"
14442
- msgstr "Römische Ziffern (klein)"
14443
-
14444
- #: wp-includes/js/tinymce/langs/wp-langs.php:218
14445
- msgid "Upper alpha"
14446
- msgstr "Buchstaben (groß)"
14447
-
14448
- #: wp-includes/js/tinymce/langs/wp-langs.php:219
14449
- msgid "Upper roman"
14450
- msgstr "Römische Ziffern (groß)"
14451
-
14452
- #: wp-includes/js/tinymce/langs/wp-langs.php:220
14453
- msgid "Circle"
14454
- msgstr "Kreis"
14455
-
14456
- #: wp-includes/js/tinymce/langs/wp-langs.php:221
14457
- msgid "Disc"
14458
- msgstr "Gefüllter Kreis"
14459
-
14460
- #: wp-includes/js/tinymce/langs/wp-langs.php:222
14461
- msgid "Square"
14462
- msgstr "Quadrat"
14463
-
14464
- #: wp-includes/js/tinymce/langs/wp-langs.php:225
14465
- #: wp-includes/js/tinymce/langs/wp-langs.php:294
14466
- msgid "Rich Text Area"
14467
- msgstr "Textfeld mit Formatierungsmöglichkeiten"
14468
-
14469
- #: wp-includes/js/tinymce/langs/wp-langs.php:228
14470
- msgid "Words:"
14471
- msgstr "Wörter:"
14472
-
14473
- #: wp-includes/js/tinymce/langs/wp-langs.php:233
14474
- msgctxt "TinyMCE font styles"
14475
- msgid "Styles"
14476
- msgstr "Stylesheets"
14477
-
14478
- #: wp-includes/js/tinymce/langs/wp-langs.php:234
14479
- msgid "Font size"
14480
- msgstr "Schriftgröße"
14481
-
14482
- #: wp-includes/js/tinymce/langs/wp-langs.php:235
14483
- msgid "Font family"
14484
- msgstr "Schriftname"
14485
-
14486
- #: wp-includes/js/tinymce/langs/wp-langs.php:236
14487
- msgid "Format"
14488
- msgstr "Format"
14489
-
14490
- #: wp-includes/js/tinymce/langs/wp-langs.php:237
14491
- msgid "Paragraph"
14492
- msgstr "Absatz"
14493
-
14494
- #: wp-includes/js/tinymce/langs/wp-langs.php:238
14495
- msgid "Div"
14496
- msgstr "Div"
14497
-
14498
- #: wp-includes/js/tinymce/langs/wp-langs.php:239
14499
- #: wp-includes/js/tinymce/wp-mce-help.php:245
14500
- msgid "Address"
14501
- msgstr "Adresse"
14502
-
14503
- #: wp-includes/js/tinymce/langs/wp-langs.php:240
14504
- msgid "Preformatted"
14505
- msgstr "Monospace"
14506
-
14507
- #: wp-includes/js/tinymce/langs/wp-langs.php:241
14508
- #: wp-includes/js/tinymce/wp-mce-help.php:242
14509
- msgid "Heading 1"
14510
- msgstr "Überschrift 1"
14511
-
14512
- #: wp-includes/js/tinymce/langs/wp-langs.php:242
14513
- #: wp-includes/js/tinymce/wp-mce-help.php:243
14514
- msgid "Heading 2"
14515
- msgstr "Überschrift 2"
14516
-
14517
- #: wp-includes/js/tinymce/langs/wp-langs.php:243
14518
- #: wp-includes/js/tinymce/wp-mce-help.php:243
14519
- msgid "Heading 3"
14520
- msgstr "Überschrift 3"
14521
-
14522
- #: wp-includes/js/tinymce/langs/wp-langs.php:244
14523
- #: wp-includes/js/tinymce/wp-mce-help.php:244
14524
- msgid "Heading 4"
14525
- msgstr "Überschrift 4"
14526
-
14527
- #: wp-includes/js/tinymce/langs/wp-langs.php:245
14528
- #: wp-includes/js/tinymce/wp-mce-help.php:244
14529
- msgid "Heading 5"
14530
- msgstr "Überschrift 5"
14531
-
14532
- #: wp-includes/js/tinymce/langs/wp-langs.php:246
14533
- #: wp-includes/js/tinymce/wp-mce-help.php:245
14534
- msgid "Heading 6"
14535
- msgstr "Überschrift 6"
14536
-
14537
- #: wp-includes/js/tinymce/langs/wp-langs.php:247
14538
- msgid "Blockquote"
14539
- msgstr "Zitat"
14540
-
14541
- #: wp-includes/js/tinymce/langs/wp-langs.php:248
14542
- msgid "Code"
14543
- msgstr "Code"
14544
-
14545
- #: wp-includes/js/tinymce/langs/wp-langs.php:249
14546
- msgid "Code sample"
14547
- msgstr "Codebeispiel"
14548
-
14549
- #: wp-includes/js/tinymce/langs/wp-langs.php:250
14550
- msgid "Definition term "
14551
- msgstr "Definitionsbegriff"
14552
-
14553
- #: wp-includes/js/tinymce/langs/wp-langs.php:251
14554
- msgid "Definition description"
14555
- msgstr "Beschreibung der Definition"
14556
-
14557
- #: wp-includes/js/tinymce/wp-mce-help.php:241
14558
- #: wp-includes/js/tinymce/wp-mce-help.php:251
14559
- msgid "Bold"
14560
- msgstr "Fett"
14561
-
14562
- #: wp-includes/js/tinymce/wp-mce-help.php:241
14563
- #: wp-includes/js/tinymce/wp-mce-help.php:251
14564
- msgid "Italic"
14565
- msgstr "Kursiv"
14566
-
14567
- #: wp-includes/js/tinymce/langs/wp-langs.php:254
14568
- #: wp-includes/js/tinymce/wp-mce-help.php:242
14569
- msgid "Underline"
14570
- msgstr "Unterstreichen"
14571
-
14572
- #: wp-includes/js/tinymce/wp-mce-help.php:255
14573
- msgid "Strikethrough"
14574
- msgstr "Durchgestrichen"
14575
-
14576
- #: wp-includes/js/tinymce/wp-mce-help.php:253
14577
- msgid "Align Left"
14578
- msgstr "Linksbündig"
14579
-
14580
- #: wp-includes/js/tinymce/wp-mce-help.php:254
14581
- msgid "Align Center"
14582
- msgstr "Zentrieren"
14583
-
14584
- #: wp-includes/js/tinymce/wp-mce-help.php:255
14585
- msgid "Align Right"
14586
- msgstr "Rechtsbündig"
14587
-
14588
- #: wp-includes/js/tinymce/langs/wp-langs.php:262
14589
- msgid "Outdent"
14590
- msgstr "Ausrücken"
14591
-
14592
- #: wp-includes/js/tinymce/langs/wp-langs.php:263
14593
- msgid "Indent"
14594
- msgstr "Einrücken"
14595
-
14596
- #: wp-includes/js/tinymce/wp-mce-help.php:239 wp-admin/edit-comments.php:192
14597
- #: wp-admin/edit-comments.php:200 wp-admin/edit.php:254 wp-admin/upload.php:203
14598
- #: wp-admin/upload.php:215 wp-admin/includes/image-edit.php:56
14599
- #: wp-admin/includes/media.php:1160 wp-admin/includes/template.php:381
14600
- #: wp-admin/includes/template.php:384
14601
- msgid "Undo"
14602
- msgstr "Widerrufen"
14603
-
14604
- #: wp-includes/js/tinymce/wp-mce-help.php:239
14605
- #: wp-admin/includes/image-edit.php:57
14606
- msgid "Redo"
14607
- msgstr "Wiederholen"
14608
-
14609
- #: wp-includes/js/tinymce/langs/wp-langs.php:269
14610
- msgid "Cleanup messy code"
14611
- msgstr "Code bereinigen"
14612
-
14613
- #: wp-includes/js/tinymce/langs/wp-langs.php:270
14614
- msgid "Edit HTML Source"
14615
- msgstr "HTML bearbeiten"
14616
-
14617
- #: wp-includes/js/tinymce/langs/wp-langs.php:271
14618
- msgid "Subscript"
14619
- msgstr "Tiefgestellt"
14620
-
14621
- #: wp-includes/js/tinymce/langs/wp-langs.php:272
14622
- msgid "Superscript"
14623
- msgstr "Hochgestellt"
14624
-
14625
- #: wp-includes/js/tinymce/langs/wp-langs.php:273
14626
- msgid "Insert horizontal ruler"
14627
- msgstr "Horizontales Lineal einfügen"
14628
-
14629
- #: wp-includes/js/tinymce/langs/wp-langs.php:274
14630
- msgid "Remove formatting"
14631
- msgstr "Formatierung entfernen"
14632
-
14633
- #: wp-includes/js/tinymce/langs/wp-langs.php:275
14634
- msgid "Select text color"
14635
- msgstr "Textfarbe auswählen"
14636
-
14637
- #: wp-includes/js/tinymce/langs/wp-langs.php:276
14638
- msgid "Select background color"
14639
- msgstr "Hintergrundfarbe auswählen"
14640
-
14641
- #: wp-includes/js/tinymce/langs/wp-langs.php:277
14642
- msgid "Insert custom character"
14643
- msgstr "Sonderzeichen einfügen"
14644
-
14645
- #: wp-includes/js/tinymce/langs/wp-langs.php:278
14646
- msgid "Toggle guidelines/invisible elements"
14647
- msgstr "Zwischen Vorgaben und unsichtbaren Elementen umschalten"
14648
-
14649
- #: wp-includes/js/tinymce/langs/wp-langs.php:279
14650
- #: wp-includes/js/tinymce/langs/wp-langs.php:308
14651
- msgid "Insert/edit anchor"
14652
- msgstr "Anker einfügen/ändern"
14653
-
14654
- #: wp-includes/js/tinymce/langs/wp-langs.php:280
14655
- #: wp-includes/js/tinymce/wp-mce-help.php:238
14656
- msgid "Cut"
14657
- msgstr "Ausschneiden"
14658
-
14659
- #: wp-includes/js/tinymce/langs/wp-langs.php:281
14660
- #: wp-includes/js/tinymce/wp-mce-help.php:237
14661
- msgid "Copy"
14662
- msgstr "Kopieren"
14663
-
14664
- #: wp-includes/js/tinymce/langs/wp-langs.php:282
14665
- #: wp-includes/js/tinymce/wp-mce-help.php:237
14666
- msgid "Paste"
14667
- msgstr "Einfügen"
14668
-
14669
- #: wp-includes/js/tinymce/langs/wp-langs.php:283
14670
- msgid "Image properties"
14671
- msgstr "Bildeigenschaften"
14672
-
14673
- #: wp-includes/js/tinymce/langs/wp-langs.php:284
14674
- msgid "New document"
14675
- msgstr "Neues Dokument"
14676
-
14677
- #: wp-includes/js/tinymce/langs/wp-langs.php:288
14678
- msgid "Path"
14679
- msgstr "Pfad"
14680
-
14681
- #: wp-includes/js/tinymce/langs/wp-langs.php:289
14682
- msgid "Are you sure you want to clear all contents?"
14683
- msgstr "Bist du sicher, dass du den gesamten Inhalt entfernen möchtest?"
14684
-
14685
- #: wp-includes/js/tinymce/langs/wp-langs.php:290
14686
- msgid "Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X"
14687
- msgstr "Zu Werkzeugbuttons wechseln – Alt+Q, Zum Editor wechseln – Alt+Z, Zum Elementpfad wechseln – Alt+X"
14688
-
14689
- #: wp-includes/js/tinymce/langs/wp-langs.php:292
14690
- #: wp-includes/js/tinymce/langs/wp-langs.php:348
14691
- msgid "Accessibility Help"
14692
- msgstr "Zugänglichkeitshilfe"
14693
-
14694
- #: wp-includes/js/tinymce/langs/wp-langs.php:293
14695
- msgid "Press ALT F10 for toolbar. Press ALT 0 for help."
14696
- msgstr "Drücke ALT + F10 für die Werkzeugleiste. Drücke ALT + 0 für die Hilfe."
14697
-
14698
- #: wp-includes/js/tinymce/langs/wp-langs.php:295 wp-admin/user-edit.php:226
14699
- #: wp-admin/user-edit.php:227
14700
- msgid "Toolbar"
14701
- msgstr "Werkzeugleiste"
14702
-
14703
- #: wp-includes/js/tinymce/langs/wp-langs.php:299
14704
- #: wp-includes/js/tinymce/wp-mce-help.php:271
14705
- msgid "About TinyMCE"
14706
- msgstr "Über TinyMCE"
14707
-
14708
- #: wp-includes/js/tinymce/langs/wp-langs.php:300
14709
- #: wp-includes/js/tinymce/wp-mce-help.php:206 wp-admin/about.php:12
14710
- msgid "About"
14711
- msgstr "Über"
14712
-
14713
- #: wp-includes/js/tinymce/langs/wp-langs.php:302
14714
- msgid "License"
14715
- msgstr "Lizenz"
14716
-
14717
- #: wp-includes/js/tinymce/langs/wp-langs.php:304
14718
- #: wp-admin/includes/class-wp-plugins-list-table.php:187
14719
- msgid "Plugin"
14720
- msgstr "Plugin"
14721
-
14722
- #: wp-includes/js/tinymce/langs/wp-langs.php:306
14723
- #: wp-admin/includes/class-wp-plugin-install-list-table.php:142
14724
- msgid "Version"
14725
- msgstr "Version"
14726
-
14727
- #: wp-includes/js/tinymce/langs/wp-langs.php:307
14728
- msgid "Loaded plugins"
14729
- msgstr "Geladene Plugins"
14730
-
14731
- #: wp-includes/js/tinymce/langs/wp-langs.php:309
14732
- msgid "Anchor name"
14733
- msgstr "Ankerbezeichnung"
14734
-
14735
- #: wp-includes/js/tinymce/langs/wp-langs.php:310
14736
- msgid "HTML Source Editor"
14737
- msgstr "HTML-Quelltext-Editor"
14738
-
14739
- #: wp-includes/js/tinymce/langs/wp-langs.php:311
14740
- msgid "Word wrap"
14741
- msgstr "Zeilenumbruch"
14742
-
14743
- #: wp-includes/js/tinymce/langs/wp-langs.php:312
14744
- msgid "Select a color"
14745
- msgstr "Textfarbe auswählen"
14746
-
14747
- #: wp-includes/js/tinymce/langs/wp-langs.php:313
14748
- msgid "Picker"
14749
- msgstr "Picker"
14750
-
14751
- #: wp-includes/js/tinymce/langs/wp-langs.php:314
14752
- msgid "Color picker"
14753
- msgstr "Pipette-Werkzeug"
14754
-
14755
- #: wp-includes/js/tinymce/langs/wp-langs.php:315
14756
- msgid "Palette"
14757
- msgstr "Palette"
14758
-
14759
- #: wp-includes/js/tinymce/langs/wp-langs.php:316
14760
- msgid "Palette colors"
14761
- msgstr "Farbpalette"
14762
-
14763
- #: wp-includes/js/tinymce/langs/wp-langs.php:317
14764
- msgid "Named"
14765
- msgstr "Benannt"
14766
-
14767
- #: wp-includes/js/tinymce/langs/wp-langs.php:318
14768
- msgid "Named colors"
14769
- msgstr "Farbnamen"
14770
-
14771
- #: wp-includes/js/tinymce/langs/wp-langs.php:319
14772
- msgid "Color:"
14773
- msgstr "Schriftfarbe:"
14774
-
14775
- #: wp-includes/js/tinymce/langs/wp-langs.php:320
14776
- msgctxt "html attribute"
14777
- msgid "Name:"
14778
- msgstr "Name"
14779
-
14780
- #: wp-includes/js/tinymce/langs/wp-langs.php:321
14781
- msgid "Select custom character"
14782
- msgstr "Sonderzeichen auswählen"
14783
-
14784
- #: wp-includes/js/tinymce/langs/wp-langs.php:323
14785
- msgid "Image URL"
14786
- msgstr "Bild-URL"
14787
-
14788
- #: wp-includes/js/tinymce/langs/wp-langs.php:324
14789
- msgid "Image description"
14790
- msgstr "Bildbeschreibung"
14791
-
14792
- #: wp-includes/js/tinymce/langs/wp-langs.php:325
14793
- msgid "Image list"
14794
- msgstr "Bildliste"
14795
-
14796
- #: wp-includes/js/tinymce/langs/wp-langs.php:326
14797
- msgid "Border"
14798
- msgstr "Rand"
14799
-
14800
- #: wp-includes/js/tinymce/langs/wp-langs.php:327
14801
- #: wp-includes/js/tinymce/langs/wp-langs.php:358
14802
- msgid "Dimensions"
14803
- msgstr "Größe"
14804
-
14805
- #: wp-includes/js/tinymce/langs/wp-langs.php:328
14806
- msgid "Vertical space"
14807
- msgstr "Vertikaler Abstand"
14808
-
14809
- #: wp-includes/js/tinymce/langs/wp-langs.php:329
14810
- msgid "Horizontal space"
14811
- msgstr "Horizontaler Abstand"
14812
-
14813
- #: wp-includes/js/tinymce/langs/wp-langs.php:331
14814
- msgid "Baseline"
14815
- msgstr "Grundlinie"
14816
-
14817
- #: wp-includes/js/tinymce/langs/wp-langs.php:332
14818
- #: wp-includes/js/tinymce/langs/wp-langs.php:433
14819
- msgid "Top"
14820
- msgstr "Oben"
14821
-
14822
- #: wp-includes/js/tinymce/langs/wp-langs.php:333
14823
- msgid "Middle"
14824
- msgstr "Mitte"
14825
-
14826
- #: wp-includes/js/tinymce/langs/wp-langs.php:334
14827
- #: wp-includes/js/tinymce/langs/wp-langs.php:435
14828
- msgid "Bottom"
14829
- msgstr "Unten"
14830
-
14831
- #: wp-includes/js/tinymce/langs/wp-langs.php:335
14832
- msgid "Text top"
14833
- msgstr "Textbündig oben"
14834
-
14835
- #: wp-includes/js/tinymce/langs/wp-langs.php:336
14836
- msgid "Text bottom"
14837
- msgstr "Textbündig unten"
14838
-
14839
- #: wp-includes/js/tinymce/langs/wp-langs.php:340
14840
- #: wp-admin/includes/media.php:938
14841
- msgid "Link URL"
14842
- msgstr "URL"
14843
-
14844
- #: wp-includes/js/tinymce/langs/wp-langs.php:341
14845
- #: wp-includes/js/tinymce/langs/wp-langs.php:392 wp-admin/edit-link-form.php:29
14846
- #: wp-admin/includes/meta-boxes.php:714
14847
- msgid "Target"
14848
- msgstr "Target"
14849
-
14850
- #: wp-includes/js/tinymce/langs/wp-langs.php:342
14851
- msgid "Open link in the same window"
14852
- msgstr "Link in diesem Fenster öffnen"
14853
-
14854
- #: wp-includes/js/tinymce/langs/wp-langs.php:343
14855
- msgid "Open link in a new window"
14856
- msgstr "Link in neuem Fenster öffnen"
14857
-
14858
- #: wp-includes/js/tinymce/langs/wp-langs.php:345
14859
- msgid "The URL you entered seems to be an email address, do you want to add the required mailto: prefix?"
14860
- msgstr "Die eingegebene URL scheint eine E-Mail-Adresse zu sein. Soll \"mailto:\" vorangestellt werden?"
14861
-
14862
- #: wp-includes/js/tinymce/langs/wp-langs.php:346
14863
- msgid "The URL you entered seems to external link, do you want to add the required http:// prefix?"
14864
- msgstr "Die eingegebene URL scheint ein externer Link zu sein. Soll \"http://\" vorangestellt werden?"
14865
-
14866
- #: wp-includes/js/tinymce/langs/wp-langs.php:347
14867
- msgid "Link list"
14868
- msgstr "Linkliste"
14869
-
14870
- #: wp-includes/js/tinymce/langs/wp-langs.php:349
14871
- msgid "General Usage"
14872
- msgstr "Generelle Verwendung"
14873
-
14874
- #: wp-includes/js/tinymce/langs/wp-langs.php:354
14875
- msgid "General"
14876
- msgstr "Allgemein"
14877
-
14878
- #: wp-includes/js/tinymce/langs/wp-langs.php:355
14879
- #: wp-includes/js/tinymce/wp-mce-help.php:204 wp-admin/edit-link-form.php:31
14880
- msgid "Advanced"
14881
- msgstr "Fortgeschritten"
14882
-
14883
- #: wp-includes/js/tinymce/langs/wp-langs.php:356
14884
- msgid "File/URL"
14885
- msgstr "Datei/URL"
14886
-
14887
- #: wp-includes/js/tinymce/langs/wp-langs.php:357
14888
- #: wp-includes/js/tinymce/wp-mce-help.php:256
14889
- #: wp-includes/js/tinymce/wp-mce-help.php:257
14890
- msgid "List"
14891
- msgstr "Liste"
14892
-
14893
- #: wp-includes/js/tinymce/langs/wp-langs.php:360
14894
- msgid "Constrain proportions"
14895
- msgstr "Proportionen beschränken"
14896
-
14897
- #: wp-includes/js/tinymce/langs/wp-langs.php:361
14898
- msgid "Type"
14899
- msgstr "Typ"
14900
-
14901
- #: wp-includes/js/tinymce/langs/wp-langs.php:362
14902
- msgid "Id"
14903
- msgstr "ID"
14904
-
14905
- #: wp-includes/js/tinymce/langs/wp-langs.php:363
14906
- msgctxt "html attribute"
14907
- msgid "Name"
14908
- msgstr "Name"
14909
-
14910
- #: wp-includes/js/tinymce/langs/wp-langs.php:365
14911
- msgid "V-Space"
14912
- msgstr "Vertikaler Abstand"
14913
-
14914
- #: wp-includes/js/tinymce/langs/wp-langs.php:366
14915
- msgid "H-Space"
14916
- msgstr "Horizontaler Abstand"
14917
-
14918
- #: wp-includes/js/tinymce/langs/wp-langs.php:367
14919
- msgid "Auto play"
14920
- msgstr "Automatische Wiedergabe"
14921
-
14922
- #: wp-includes/js/tinymce/langs/wp-langs.php:368
14923
- #: wp-includes/js/tinymce/langs/wp-langs.php:450
14924
- msgid "Loop"
14925
- msgstr "Schleife"
14926
-
14927
- #: wp-includes/js/tinymce/langs/wp-langs.php:369
14928
- msgid "Show menu"
14929
- msgstr "Menü anzeigen"
14930
-
14931
- #: wp-includes/js/tinymce/langs/wp-langs.php:370
14932
- msgid "Quality"
14933
- msgstr "Qualität"
14934
-
14935
- #: wp-includes/js/tinymce/langs/wp-langs.php:371
14936
- #: wp-admin/includes/image-edit.php:89
14937
- msgid "Scale"
14938
- msgstr "Skalierung"
14939
-
14940
- #: wp-includes/js/tinymce/langs/wp-langs.php:372
14941
- msgid "Align"
14942
- msgstr "Ausrichtung"
14943
-
14944
- #: wp-includes/js/tinymce/langs/wp-langs.php:373
14945
- msgid "SAlign"
14946
- msgstr "S-Ausrichtung"
14947
-
14948
- #: wp-includes/js/tinymce/langs/wp-langs.php:374
14949
- msgid "WMode"
14950
- msgstr "W-Modus"
14951
-
14952
- #: wp-includes/js/tinymce/langs/wp-langs.php:376
14953
- msgid "Base"
14954
- msgstr "Basis"
14955
-
14956
- #: wp-includes/js/tinymce/langs/wp-langs.php:377
14957
- msgid "Flashvars"
14958
- msgstr "Flash-Variablen"
14959
-
14960
- #: wp-includes/js/tinymce/langs/wp-langs.php:378
14961
- msgid "SWLiveConnect"
14962
- msgstr "SWLiveConnect"
14963
-
14964
- #: wp-includes/js/tinymce/langs/wp-langs.php:379
14965
- msgid "AutoHREF"
14966
- msgstr "Automatischer Hyperlink"
14967
-
14968
- #: wp-includes/js/tinymce/langs/wp-langs.php:380
14969
- msgid "Cache"
14970
- msgstr "Cache"
14971
-
14972
- #: wp-includes/js/tinymce/langs/wp-langs.php:381
14973
- msgid "Hidden"
14974
- msgstr "Versteckt"
14975
-
14976
- #: wp-includes/js/tinymce/langs/wp-langs.php:382
14977
- msgid "Controller"
14978
- msgstr "Controller"
14979
-
14980
- #: wp-includes/js/tinymce/langs/wp-langs.php:383
14981
- msgid "Kiosk mode"
14982
- msgstr "Kiosk-Modus"
14983
-
14984
- #: wp-includes/js/tinymce/langs/wp-langs.php:384
14985
- msgid "Play every frame"
14986
- msgstr "Jeden Frame abspielen"
14987
-
14988
- #: wp-includes/js/tinymce/langs/wp-langs.php:385
14989
- msgid "Target cache"
14990
- msgstr "Target-Cache"
14991
-
14992
- #: wp-includes/js/tinymce/langs/wp-langs.php:386
14993
- msgid "No correction"
14994
- msgstr "Keine Korrektur"
14995
-
14996
- #: wp-includes/js/tinymce/langs/wp-langs.php:387
14997
- msgid "Enable JavaScript"
14998
- msgstr "Erlaube JavaScript"
14999
-
15000
- #: wp-includes/js/tinymce/langs/wp-langs.php:388
15001
- #: wp-includes/js/tinymce/langs/wp-langs.php:446
15002
- msgid "Start time"
15003
- msgstr "Startzeit"
15004
-
15005
- #: wp-includes/js/tinymce/langs/wp-langs.php:389
15006
- msgid "End time"
15007
- msgstr "Endzeit"
15008
-
15009
- #: wp-includes/js/tinymce/langs/wp-langs.php:390
15010
- msgid "href"
15011
- msgstr "href"
15012
-
15013
- #: wp-includes/js/tinymce/langs/wp-langs.php:391
15014
- msgid "Choke speed"
15015
- msgstr "Geschwindigkeit drosseln"
15016
-
15017
- #: wp-includes/js/tinymce/langs/wp-langs.php:393
15018
- msgid "Volume"
15019
- msgstr "Lautstärke"
15020
-
15021
- #: wp-includes/js/tinymce/langs/wp-langs.php:394
15022
- #: wp-includes/js/tinymce/langs/wp-langs.php:449
15023
- msgid "Auto start"
15024
- msgstr "Automatisch starten"
15025
-
15026
- #: wp-includes/js/tinymce/langs/wp-langs.php:395
15027
- msgid "Enabled"
15028
- msgstr "Erlaubt"
15029
-
15030
- #: wp-includes/js/tinymce/langs/wp-langs.php:396
15031
- msgid "Fullscreen"
15032
- msgstr "Vollbild"
15033
-
15034
- #: wp-includes/js/tinymce/langs/wp-langs.php:397
15035
- msgid "Invoke URLs"
15036
- msgstr "URLs aufrufen"
15037
-
15038
- #: wp-includes/js/tinymce/langs/wp-langs.php:398
15039
- msgid "Mute"
15040
- msgstr "Stumm"
15041
-
15042
- #: wp-includes/js/tinymce/langs/wp-langs.php:399
15043
- msgid "Stretch to fit"
15044
- msgstr "An Fenster anpassen"
15045
-
15046
- #: wp-includes/js/tinymce/langs/wp-langs.php:400
15047
- msgid "Windowless video"
15048
- msgstr "Video ohne Fenster"
15049
-
15050
- #: wp-includes/js/tinymce/langs/wp-langs.php:401
15051
- msgid "Balance"
15052
- msgstr "Balance"
15053
-
15054
- #: wp-includes/js/tinymce/langs/wp-langs.php:402
15055
- msgid "Base URL"
15056
- msgstr "Basis-URL"
15057
-
15058
- #: wp-includes/js/tinymce/langs/wp-langs.php:403
15059
- msgid "Captioning id"
15060
- msgstr "Untertitelkennung"
15061
-
15062
- #: wp-includes/js/tinymce/langs/wp-langs.php:404
15063
- msgid "Current marker"
15064
- msgstr "Aktuelle Marke"
15065
-
15066
- #: wp-includes/js/tinymce/langs/wp-langs.php:405
15067
- msgid "Current position"
15068
- msgstr "Aktuelle Position"
15069
-
15070
- #: wp-includes/js/tinymce/langs/wp-langs.php:406
15071
- msgid "Default frame"
15072
- msgstr "Standard-Frame"
15073
-
15074
- #: wp-includes/js/tinymce/langs/wp-langs.php:407
15075
- msgid "Play count"
15076
- msgstr "Wiedergabezähler"
15077
-
15078
- #: wp-includes/js/tinymce/langs/wp-langs.php:408
15079
- msgid "Rate"
15080
- msgstr "Frequenz"
15081
-
15082
- #: wp-includes/js/tinymce/langs/wp-langs.php:409
15083
- msgid "UI Mode"
15084
- msgstr "UI-Modus"
15085
-
15086
- #: wp-includes/js/tinymce/langs/wp-langs.php:410
15087
- msgid "Flash options"
15088
- msgstr "Flash-Einstellungen"
15089
-
15090
- #: wp-includes/js/tinymce/langs/wp-langs.php:411
15091
- msgid "Quicktime options"
15092
- msgstr "Quicktime-Einstellungen"
15093
-
15094
- #: wp-includes/js/tinymce/langs/wp-langs.php:412
15095
- msgid "Windows media player options"
15096
- msgstr "Einstellungen für Windows-Media-Player"
15097
-
15098
- #: wp-includes/js/tinymce/langs/wp-langs.php:413
15099
- msgid "Real media player options"
15100
- msgstr "Einstellungen für Real-Media-Player"
15101
-
15102
- #: wp-includes/js/tinymce/langs/wp-langs.php:414
15103
- msgid "Shockwave options"
15104
- msgstr "Shockwave-Einstellungen"
15105
-
15106
- #: wp-includes/js/tinymce/langs/wp-langs.php:415
15107
- msgid "Auto goto URL"
15108
- msgstr "Gehe automatisch zu URL"
15109
-
15110
- #: wp-includes/js/tinymce/langs/wp-langs.php:417
15111
- msgid "Image status"
15112
- msgstr "Bildstatus"
15113
-
15114
- #: wp-includes/js/tinymce/langs/wp-langs.php:418
15115
- msgid "Maintain aspect"
15116
- msgstr "Seitenverhältnis beibehalten"
15117
-
15118
- #: wp-includes/js/tinymce/langs/wp-langs.php:419
15119
- msgid "No java"
15120
- msgstr "Kein Java"
15121
-
15122
- #: wp-includes/js/tinymce/langs/wp-langs.php:420
15123
- msgid "Prefetch"
15124
- msgstr "Vorhalten"
15125
-
15126
- #: wp-includes/js/tinymce/langs/wp-langs.php:421
15127
- msgid "Shuffle"
15128
- msgstr "Mischen"
15129
-
15130
- #: wp-includes/js/tinymce/langs/wp-langs.php:422
15131
- msgid "Console"
15132
- msgstr "Konsole"
15133
-
15134
- #: wp-includes/js/tinymce/langs/wp-langs.php:423
15135
- msgid "Num loops"
15136
- msgstr "Anzahl Wiederholungen"
15137
-
15138
- #: wp-includes/js/tinymce/langs/wp-langs.php:424
15139
- msgid "Controls"
15140
- msgstr "Steuerelemente"
15141
-
15142
- #: wp-includes/js/tinymce/langs/wp-langs.php:425
15143
- msgid "Script callbacks"
15144
- msgstr "Skript-Callbacks"
15145
-
15146
- #: wp-includes/js/tinymce/langs/wp-langs.php:426
15147
- msgid "Stretch style"
15148
- msgstr "Strecken"
15149
-
15150
- #: wp-includes/js/tinymce/langs/wp-langs.php:427
15151
- msgid "Stretch H-Align"
15152
- msgstr "Beim Strecken horizontal ausrichten"
15153
-
15154
- #: wp-includes/js/tinymce/langs/wp-langs.php:428
15155
- msgid "Stretch V-Align"
15156
- msgstr "Beim Strecken vertikal ausrichten"
15157
-
15158
- #: wp-includes/js/tinymce/langs/wp-langs.php:429
15159
- msgid "Sound"
15160
- msgstr "Ton"
15161
-
15162
- #: wp-includes/js/tinymce/langs/wp-langs.php:430
15163
- msgid "Progress"
15164
- msgstr "Fortschritt"
15165
-
15166
- #: wp-includes/js/tinymce/langs/wp-langs.php:431
15167
- msgid "QT Src"
15168
- msgstr "QuickTime-Quelle"
15169
-
15170
- #: wp-includes/js/tinymce/langs/wp-langs.php:432
15171
- msgid "Streamed rtsp resources should be added to the QT Src field under the advanced tab."
15172
- msgstr "RTSP-Streaming-Ressourcen bitte in das QT-Src-Feld eintragen (Karte: Erweitert)"
15173
-
15174
- #: wp-includes/js/tinymce/langs/wp-langs.php:438
15175
- msgid "Top left"
15176
- msgstr "Oben links"
15177
-
15178
- #: wp-includes/js/tinymce/langs/wp-langs.php:439
15179
- msgid "Top right"
15180
- msgstr "Oben rechts"
15181
-
15182
- #: wp-includes/js/tinymce/langs/wp-langs.php:440
15183
- msgid "Bottom left"
15184
- msgstr "Unten links"
15185
-
15186
- #: wp-includes/js/tinymce/langs/wp-langs.php:441
15187
- msgid "Bottom right"
15188
- msgstr "Unten rechts"
15189
-
15190
- #: wp-includes/js/tinymce/langs/wp-langs.php:442
15191
- msgid "Flash video options"
15192
- msgstr "Flash Video Einstellungen"
15193
-
15194
- #: wp-includes/js/tinymce/langs/wp-langs.php:443
15195
- msgid "Scale mode"
15196
- msgstr "Skalierungsmodus"
15197
-
15198
- #: wp-includes/js/tinymce/langs/wp-langs.php:444
15199
- msgid "Buffer"
15200
- msgstr "Buffer"
15201
-
15202
- #: wp-includes/js/tinymce/langs/wp-langs.php:445
15203
- msgid "Start image"
15204
- msgstr "Bild starten"
15205
-
15206
- #: wp-includes/js/tinymce/langs/wp-langs.php:447
15207
- msgid "Default volume"
15208
- msgstr "Standardlautstärke"
15209
-
15210
- #: wp-includes/js/tinymce/langs/wp-langs.php:448
15211
- msgid "Hidden GUI"
15212
- msgstr "GUI verstecken"
15213
-
15214
- #: wp-includes/js/tinymce/langs/wp-langs.php:451
15215
- msgid "Show scale modes"
15216
- msgstr "Zeige Skalierungsmodi"
15217
-
15218
- #: wp-includes/js/tinymce/langs/wp-langs.php:452
15219
- msgid "Smooth video"
15220
- msgstr "Ruckelfreies Video"
15221
-
15222
- #: wp-includes/js/tinymce/langs/wp-langs.php:453
15223
- msgid "JS Callback"
15224
- msgstr "JS-Callback"
15225
-
15226
- #: wp-includes/js/tinymce/langs/wp-langs.php:454
15227
- msgid "HTML5 Video Options"
15228
- msgstr "HTML5 Video-Optionen"
15229
-
15230
- #: wp-includes/js/tinymce/langs/wp-langs.php:455
15231
- msgid "Alternative source 1"
15232
- msgstr "Alternative Quelle 1"
15233
 
15234
- #: wp-includes/js/tinymce/langs/wp-langs.php:456
15235
- msgid "Alternative source 2"
15236
- msgstr "Alternative Quelle 2"
15237
 
15238
- #: wp-includes/js/tinymce/langs/wp-langs.php:457
15239
- msgid "Preload"
15240
- msgstr "Vorspann vor dem Laden"
15241
 
15242
- #: wp-includes/js/tinymce/langs/wp-langs.php:458
15243
- msgid "Poster"
15244
- msgstr "Poster"
15245
 
15246
- #: wp-includes/js/tinymce/langs/wp-langs.php:459
15247
- #: wp-includes/js/tinymce/langs/wp-langs.php:490
15248
- msgid "Source"
15249
- msgstr "Quelle"
15250
-
15251
- #: wp-includes/js/tinymce/wp-mce-help.php:259
15252
- msgid "Insert More Tag"
15253
- msgstr "\"Weiterlesen\"-Link einfügen"
1
+ # Copyright (C) 2012
2
+ # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Advanced Custom Fields\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
+ "POT-Creation-Date: 2012-10-04 14:37+0100\n"
8
+ "PO-Revision-Date: 2012-10-04 14:38+0100\n"
9
+ "Last-Translator: Martin Lettner <m.lettner@gmail.com>\n"
10
+ "Language-Team: \n"
11
+ "Language: de\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.5.3\n"
 
 
16
 
17
+ #: acf.php:286 core/views/meta_box_options.php:94
18
+ msgid "Custom Fields"
19
+ msgstr "Eigene Felder"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
+ #: acf.php:307
22
+ msgid "Field&nbsp;Groups"
23
+ msgstr "Felder-Gruppen"
24
 
25
+ #: acf.php:308 core/controllers/field_groups.php:234
26
+ #: core/controllers/upgrade.php:70
27
+ msgid "Advanced Custom Fields"
28
+ msgstr "Erweiterte Eigene Felder"
29
 
30
+ #: acf.php:309 core/fields/flexible_content.php:325
31
+ msgid "Add New"
32
+ msgstr "Neu erstellen"
33
 
34
+ #: acf.php:310
35
+ msgid "Add New Field Group"
36
+ msgstr "Neue Felder-Gruppe erstellen"
37
 
38
+ #: acf.php:311
39
+ msgid "Edit Field Group"
40
+ msgstr "Felder-Gruppe bearbeiten"
41
 
42
+ #: acf.php:312
43
+ msgid "New Field Group"
44
+ msgstr "Neue Felder-Gruppe"
45
 
46
+ #: acf.php:313
47
+ msgid "View Field Group"
48
+ msgstr "Felder-Gruppe anzeigen"
49
 
50
+ #: acf.php:314
51
+ msgid "Search Field Groups"
52
+ msgstr "Felder-Gruppe suchen"
53
 
54
+ #: acf.php:315
55
+ msgid "No Field Groups found"
56
+ msgstr "Keine Felder-Gruppen gefunden"
57
 
58
+ #: acf.php:316
59
+ msgid "No Field Groups found in Trash"
60
+ msgstr "Keine Felder-Gruppen im Papierkorb gefunden"
61
 
62
+ #: acf.php:351 acf.php:354
63
+ msgid "Field group updated."
64
+ msgstr "Felder-Gruppe aktualisiert"
65
 
66
+ #: acf.php:352
67
+ msgid "Custom field updated."
68
+ msgstr "Eigenes Feld aktualisiert"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
 
70
+ #: acf.php:353
71
+ msgid "Custom field deleted."
72
+ msgstr "Eigenes Feld gelöscht"
73
 
74
+ #: acf.php:356
75
+ #, php-format
76
+ msgid "Field group restored to revision from %s"
77
+ msgstr "Felder-Gruppe wiederhergestellt von Revision vom %s"
 
 
 
78
 
79
+ #: acf.php:357
80
+ msgid "Field group published."
81
+ msgstr "Felder-Gruppe veröffentlicht"
82
 
83
+ #: acf.php:358
84
+ msgid "Field group saved."
85
+ msgstr "Felder-Gruppe gespeichert"
86
 
87
+ #: acf.php:359
88
+ msgid "Field group submitted."
89
+ msgstr "Felder-Gruppe übertragen"
90
 
91
+ #: acf.php:360
92
+ msgid "Field group scheduled for."
93
+ msgstr "Felder-Gruppe geplant für"
94
 
95
+ #: acf.php:361
96
+ msgid "Field group draft updated."
97
+ msgstr "Entwurf der Felder-Gruppe aktualisiert"
98
 
99
+ #: acf.php:380 core/fields/gallery.php:66 core/fields/gallery.php:229
100
+ msgid "Title"
101
+ msgstr "Titel"
102
 
103
+ #: acf.php:623
104
+ msgid "Error: Field Type does not exist!"
105
+ msgstr "Fehler: Feld-Typ existiert nicht!"
106
 
107
+ #: acf.php:1709
108
+ msgid "Thumbnail"
109
+ msgstr "Miniaturbild"
110
 
111
+ #: acf.php:1710
112
+ msgid "Medium"
113
+ msgstr "Mittel"
114
 
115
+ #: acf.php:1711
116
+ msgid "Large"
117
+ msgstr "Groß"
118
 
119
+ #: acf.php:1712 core/fields/wysiwyg.php:105
120
+ msgid "Full"
121
+ msgstr "Volle Größe"
122
 
123
+ #: core/actions/export.php:26
124
+ msgid "No ACF groups selected"
125
+ msgstr "Keine ACF-Gruppen ausgewählt"
126
 
127
+ #: core/controllers/field_group.php:148 core/controllers/field_group.php:167
128
+ #: core/controllers/field_groups.php:144
129
+ msgid "Fields"
130
+ msgstr "Felder"
131
 
132
+ #: core/controllers/field_group.php:149
133
+ msgid "Location"
134
+ msgstr "Position"
135
 
136
+ #: core/controllers/field_group.php:150 core/controllers/field_group.php:427
137
+ #: core/controllers/options_page.php:62 core/controllers/options_page.php:74
138
+ #: core/views/meta_box_location.php:143
139
+ msgid "Options"
140
+ msgstr "Optionen"
141
 
142
+ #: core/controllers/field_group.php:355
143
+ msgid "Parent Page"
144
+ msgstr "Übergeordnete Seite"
145
 
146
+ #: core/controllers/field_group.php:356
147
+ msgid "Child Page"
148
+ msgstr "Untergeordnete Seite"
149
 
150
+ #: core/controllers/field_group.php:364
151
+ msgid "Default Template"
152
+ msgstr "Standard-Vorlage"
153
 
154
+ #: core/controllers/field_group.php:451 core/controllers/field_group.php:472
155
+ #: core/controllers/field_group.php:479 core/fields/page_link.php:76
156
+ #: core/fields/post_object.php:223 core/fields/post_object.php:251
157
+ #: core/fields/relationship.php:392 core/fields/relationship.php:421
158
+ msgid "All"
159
+ msgstr "Alle"
160
 
161
+ #: core/controllers/field_groups.php:197 core/views/meta_box_options.php:50
162
+ msgid "Normal"
163
+ msgstr "Normal"
164
 
165
+ #: core/controllers/field_groups.php:198 core/views/meta_box_options.php:51
166
+ msgid "Side"
167
+ msgstr "Seitlich"
168
 
169
+ #: core/controllers/field_groups.php:208 core/views/meta_box_options.php:71
170
+ msgid "Standard Metabox"
171
+ msgstr "Normale Metabox"
172
 
173
+ #: core/controllers/field_groups.php:209 core/views/meta_box_options.php:70
174
+ msgid "No Metabox"
175
+ msgstr "Keine Metabox"
176
 
177
+ #: core/controllers/field_groups.php:236
178
+ msgid "Changelog"
179
+ msgstr "Versionshinweise"
180
 
181
+ #: core/controllers/field_groups.php:237
182
+ msgid "See what's new in"
183
+ msgstr "Neuerungen anzeigen der Version"
 
 
 
 
 
184
 
185
+ #: core/controllers/field_groups.php:239
186
+ msgid "Resources"
187
+ msgstr "Ressourcen"
188
 
189
+ #: core/controllers/field_groups.php:240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  msgid ""
191
+ "Read documentation, learn the functions and find some tips &amp; tricks for "
192
+ "your next web project."
 
 
 
 
 
193
  msgstr ""
194
+ "Dokumentation, Erklärung der Funktionen und Tipps für Ihr nächstes Web-"
195
+ "Projekt."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
 
197
+ #: core/controllers/field_groups.php:241
198
+ msgid "Visit the ACF website"
199
+ msgstr "Die ACF-Website besuchen"
200
 
201
+ #: core/controllers/field_groups.php:246
202
+ msgid "Created by"
203
+ msgstr "Erstellt von"
204
 
205
+ #: core/controllers/field_groups.php:249
206
+ msgid "Vote"
207
+ msgstr "Bewerten"
208
 
209
+ #: core/controllers/field_groups.php:250
210
+ msgid "Follow"
211
+ msgstr "Folgen"
212
 
213
+ #: core/controllers/input.php:528
214
+ msgid "Validation Failed. One or more fields below are required."
215
+ msgstr "Fehler bei Überprüfung: Ein oder mehrere Felder werden benötigt."
216
 
217
+ #: core/controllers/input.php:529
218
+ msgid "Add File to Field"
219
+ msgstr "Datei dem Feld hinzufügen"
220
 
221
+ #: core/controllers/input.php:530
222
+ msgid "Edit File"
223
+ msgstr "Datei bearbeiten"
224
 
225
+ #: core/controllers/input.php:531
226
+ msgid "Add Image to Field"
227
+ msgstr "Bild dem Feld hinzufügen"
228
 
229
+ #: core/controllers/input.php:532 core/controllers/input.php:535
230
+ msgid "Edit Image"
231
+ msgstr "Bild bearbeiten"
 
 
 
 
232
 
233
+ #: core/controllers/input.php:533
234
+ msgid "Maximum values reached ( {max} values )"
235
+ msgstr "Max. Werte erreicht ( {max} Werte )"
236
 
237
+ #: core/controllers/input.php:534
238
+ msgid "Add Image to Gallery"
239
+ msgstr "Bild der Galerie hinzufügen"
240
 
241
+ #: core/controllers/input.php:625
242
+ msgid "Attachment updated"
243
+ msgstr "Anhang aktualisiert"
244
 
245
+ #: core/controllers/options_page.php:121
246
+ msgid "Options Updated"
247
+ msgstr "Optionen aktualisiert"
248
 
249
+ #: core/controllers/options_page.php:251
250
+ msgid "No Custom Field Group found for the options page"
251
+ msgstr "Keine eigene Felder-Gruppe für die Options-Seite gefunden"
252
 
253
+ #: core/controllers/options_page.php:251
254
+ msgid "Create a Custom Field Group"
255
+ msgstr "Eigene Felder-Gruppe erstellen"
256
 
257
+ #: core/controllers/options_page.php:262
258
+ msgid "Publish"
259
+ msgstr "Veröffentlichen"
260
 
261
+ #: core/controllers/options_page.php:265
262
+ msgid "Save Options"
263
+ msgstr "Optionen speichern"
264
 
265
+ #: core/controllers/settings.php:49
266
+ msgid "Settings"
267
+ msgstr "Einstellungen"
268
 
269
+ #: core/controllers/settings.php:111
270
+ msgid "Repeater field deactivated"
271
+ msgstr "Wiederholungs-Feld deaktiviert"
272
 
273
+ #: core/controllers/settings.php:115
274
+ msgid "Options page deactivated"
275
+ msgstr "Optionen-Seite deaktiviert"
276
 
277
+ #: core/controllers/settings.php:119
278
+ msgid "Flexible Content field deactivated"
279
+ msgstr "Flexibles Inhalts-Feld deaktiviert"
280
 
281
+ #: core/controllers/settings.php:123
282
+ msgid "Gallery field deactivated"
283
+ msgstr "Galerie-Feld deaktiviert"
284
 
285
+ #: core/controllers/settings.php:147
286
+ msgid "Repeater field activated"
287
+ msgstr "Wiederholungs-Feld aktiviert"
288
 
289
+ #: core/controllers/settings.php:151
290
+ msgid "Options page activated"
291
+ msgstr "Optionen-Seite aktiviert"
292
 
293
+ #: core/controllers/settings.php:155
294
+ msgid "Flexible Content field activated"
295
+ msgstr "Flexibles Inhalts-Feld aktiviert"
296
 
297
+ #: core/controllers/settings.php:159
298
+ msgid "Gallery field activated"
299
+ msgstr "Galerie-Feld aktiviert"
300
 
301
+ #: core/controllers/settings.php:164
302
+ msgid "License key unrecognised"
303
+ msgstr "Lizenzschlüssel nicht erkannt!"
304
 
305
+ #: core/controllers/settings.php:216
306
+ msgid "Activate Add-ons."
307
+ msgstr "Add-Ons aktivieren"
308
 
309
+ #: core/controllers/settings.php:217
310
+ msgid ""
311
+ "Add-ons can be unlocked by purchasing a license key. Each key can be used on "
312
+ "multiple sites."
313
+ msgstr ""
314
+ "Add-Ons werden durch Kauf eines Lizenz-Schlüssels freigeschalten. Jeder "
315
+ "Schlüssel kann auf beliebig vielen Websites verwendet werden."
316
 
317
+ #: core/controllers/settings.php:218
318
+ msgid "Find Add-ons"
319
+ msgstr "Add-Ons finden"
320
 
321
+ #: core/controllers/settings.php:225 core/fields/flexible_content.php:380
322
+ #: core/fields/flexible_content.php:456 core/fields/repeater.php:330
323
+ #: core/fields/repeater.php:406 core/views/meta_box_fields.php:63
324
+ #: core/views/meta_box_fields.php:138
325
+ msgid "Field Type"
326
+ msgstr "Feld-Typ"
327
 
328
+ #: core/controllers/settings.php:226
329
+ msgid "Status"
330
+ msgstr "Status"
331
 
332
+ #: core/controllers/settings.php:227
333
+ msgid "Activation Code"
334
+ msgstr "Aktivierungs-Code"
335
 
336
+ #: core/controllers/settings.php:232
337
+ msgid "Repeater Field"
338
+ msgstr "Wiederholungs-Feld"
339
 
340
+ #: core/controllers/settings.php:233 core/controllers/settings.php:252
341
+ #: core/controllers/settings.php:271 core/controllers/settings.php:290
342
+ msgid "Active"
343
+ msgstr "Aktiv"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
344
 
345
+ #: core/controllers/settings.php:233 core/controllers/settings.php:252
346
+ #: core/controllers/settings.php:271 core/controllers/settings.php:290
347
+ msgid "Inactive"
348
+ msgstr "Inaktiv"
349
 
350
+ #: core/controllers/settings.php:239 core/controllers/settings.php:258
351
+ #: core/controllers/settings.php:277 core/controllers/settings.php:296
352
+ msgid "Deactivate"
353
+ msgstr "Deaktivieren"
354
 
355
+ #: core/controllers/settings.php:245 core/controllers/settings.php:264
356
+ #: core/controllers/settings.php:283 core/controllers/settings.php:302
357
+ msgid "Activate"
358
+ msgstr "Aktivieren"
359
 
360
+ #: core/controllers/settings.php:251
361
+ msgid "Flexible Content Field"
362
+ msgstr "Flexibles Inhalts-Feld"
363
 
364
+ #: core/controllers/settings.php:270
365
+ msgid "Gallery Field"
366
+ msgstr "Galerie-Feld"
367
 
368
+ #: core/controllers/settings.php:289 core/views/meta_box_location.php:74
369
+ msgid "Options Page"
370
+ msgstr "Optionen-Seite"
371
 
372
+ #: core/controllers/settings.php:314
373
+ msgid "Export Field Groups to XML"
374
+ msgstr "Felder-Gruppen als XML exportieren"
375
 
376
+ #: core/controllers/settings.php:315
377
  msgid ""
378
+ "ACF will create a .xml export file which is compatible with the native WP "
379
+ "import plugin."
 
 
 
 
 
 
 
 
 
 
 
380
  msgstr ""
381
+ "ACF erstellt eine .xml-Export-Datei welche kompatibel ist zum Standard-WP-"
382
+ "Import-Plugin."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
383
 
384
+ #: core/controllers/settings.php:316 core/controllers/settings.php:355
385
+ msgid "Instructions"
386
+ msgstr "Anweisungen"
387
 
388
+ #: core/controllers/settings.php:318
389
+ msgid "Import Field Groups"
390
+ msgstr "Felder-Gruppen importieren"
 
 
391
 
392
+ #: core/controllers/settings.php:319
 
393
  msgid ""
394
+ "Imported field groups <b>will</b> appear in the list of editable field "
395
+ "groups. This is useful for migrating fields groups between Wp websites."
396
  msgstr ""
397
+ "Importierte Felder-Gruppen <b>werden</b> in der Liste der bearbeitbaren "
398
+ "Felder-Gruppen <b>angezeigt</b> um Felder-Gruppen zwischen WP-Websites "
399
+ "auszutauschen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400
 
401
+ #: core/controllers/settings.php:321
402
+ msgid "Select field group(s) from the list and click \"Export XML\""
403
+ msgstr ""
404
+ "Wählen Sie die Felder-Gruppen aus der Liste und wählen Sie \"XML exportieren"
405
+ "\""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
 
407
+ #: core/controllers/settings.php:322
408
+ msgid "Save the .xml file when prompted"
409
+ msgstr "Speichern Sie die .xml-Datei bei Nachfrage"
410
 
411
+ #: core/controllers/settings.php:323
412
+ msgid "Navigate to Tools &raquo; Import and select WordPress"
413
+ msgstr "Wechseln Sie zu Werkzeuge &raquo; Importieren und wählen Sie WordPress"
414
 
415
+ #: core/controllers/settings.php:324
416
+ msgid "Install WP import plugin if prompted"
417
+ msgstr "Installieren Sie das WP-Import-Plugin falls nötig"
418
 
419
+ #: core/controllers/settings.php:325
420
+ msgid "Upload and import your exported .xml file"
421
+ msgstr "Importieren Sie Ihre exportierte .xml-Datei"
422
 
423
+ #: core/controllers/settings.php:326
424
+ msgid "Select your user and ignore Import Attachments"
425
+ msgstr "Wählen Sie Ihren Benutzer und ignorieren Sie \"Anhänge importieren\""
426
 
427
+ #: core/controllers/settings.php:327
428
+ msgid "That's it! Happy WordPressing"
429
+ msgstr "Das war's! Viel Spaß mit Wordpress!"
430
 
431
+ #: core/controllers/settings.php:346
432
+ msgid "Export XML"
433
+ msgstr "XML exportieren"
434
 
435
+ #: core/controllers/settings.php:353
436
+ msgid "Export Field Groups to PHP"
437
+ msgstr "Felder-Gruppen als PHP exportieren"
438
 
439
+ #: core/controllers/settings.php:354
440
+ msgid "ACF will create the PHP code to include in your theme."
441
+ msgstr "ACF erstellt einen PHP-Code der in einem Theme verwendet werden kann."
442
 
443
+ #: core/controllers/settings.php:357 core/controllers/settings.php:474
444
+ msgid "Register Field Groups"
445
+ msgstr "Felder-Gruppen registrieren"
446
 
447
+ #: core/controllers/settings.php:358 core/controllers/settings.php:475
448
+ msgid ""
449
+ "Registered field groups <b>will not</b> appear in the list of editable field "
450
+ "groups. This is useful for including fields in themes."
451
+ msgstr ""
452
 
453
+ #: core/controllers/settings.php:359 core/controllers/settings.php:476
454
+ msgid ""
455
+ "Please note that if you export and register field groups within the same WP, "
456
+ "you will see duplicate fields on your edit screens. To fix this, please move "
457
+ "the origional field group to the trash or remove the code from your "
458
+ "functions.php file."
459
+ msgstr ""
460
 
461
+ #: core/controllers/settings.php:361
462
+ msgid "Select field group(s) from the list and click \"Create PHP\""
463
+ msgstr ""
464
+ "Felder-Gruppen aus der Liste auswählen und \"PHP-Code erzeugen\" anklicken"
465
 
466
+ #: core/controllers/settings.php:362 core/controllers/settings.php:478
467
+ msgid "Copy the PHP code generated"
468
+ msgstr "Den generierten PHP-Code kopieren"
469
 
470
+ #: core/controllers/settings.php:363 core/controllers/settings.php:479
471
+ msgid "Paste into your functions.php file"
472
+ msgstr "In der Datei functions.php einfügen"
473
 
474
+ #: core/controllers/settings.php:364 core/controllers/settings.php:480
475
+ msgid "To activate any Add-ons, edit and use the code in the first few lines."
476
+ msgstr ""
477
 
478
+ #: core/controllers/settings.php:383
479
+ msgid "Create PHP"
480
+ msgstr "PHP-Code erzeugen"
481
 
482
+ #: core/controllers/settings.php:469
483
+ msgid "Back to settings"
484
+ msgstr "Zurück zu den Einstellungen"
485
 
486
+ #: core/controllers/settings.php:504
487
+ msgid ""
488
+ "/**\n"
489
+ " * Activate Add-ons\n"
490
+ " * Here you can enter your activation codes to unlock Add-ons to use in your "
491
+ "theme. \n"
492
+ " * Since all activation codes are multi-site licenses, you are allowed to "
493
+ "include your key in premium themes. \n"
494
+ " * Use the commented out code to update the database with your activation "
495
+ "code. \n"
496
+ " * You may place this code inside an IF statement that only runs on theme "
497
+ "activation.\n"
498
+ " */"
499
+ msgstr ""
500
 
501
+ #: core/controllers/settings.php:519
502
+ msgid ""
503
+ "/**\n"
504
+ " * Register field groups\n"
505
+ " * The register_field_group function accepts 1 array which holds the "
506
+ "relevant data to register a field group\n"
507
+ " * You may edit the array as you see fit. However, this may result in errors "
508
+ "if the array is not compatible with ACF\n"
509
+ " * This code must run every time the functions.php file is read\n"
510
+ " */"
511
+ msgstr ""
512
 
513
+ #: core/controllers/settings.php:558
514
+ msgid "No field groups were selected"
515
+ msgstr "Keine Felder-Gruppe ausgewählt"
516
 
517
+ #: core/controllers/settings.php:608
518
+ msgid "Advanced Custom Fields Settings"
519
+ msgstr "Einstellungen für Erweiterte Eigene Felder"
520
 
521
+ #: core/controllers/upgrade.php:51
522
+ msgid "Upgrade"
523
+ msgstr "Aktualisieren"
524
 
525
+ #: core/controllers/upgrade.php:70
526
+ msgid "requires a database upgrade"
527
+ msgstr "benötigt eine Aktualisierung der Datenbank"
528
 
529
+ #: core/controllers/upgrade.php:70
530
+ msgid "why?"
531
+ msgstr "warum?"
532
 
533
+ #: core/controllers/upgrade.php:70
534
+ msgid "Please"
535
+ msgstr "Bitte"
536
 
537
+ #: core/controllers/upgrade.php:70
538
+ msgid "backup your database"
539
+ msgstr "sichern Sie Ihre Datenbank"
540
 
541
+ #: core/controllers/upgrade.php:70
542
+ msgid "then click"
543
+ msgstr "und wählen Sie dann"
544
 
545
+ #: core/controllers/upgrade.php:70
546
+ msgid "Upgrade Database"
547
+ msgstr "Datenbank aktualisieren"
548
 
549
+ #: core/controllers/upgrade.php:604
550
+ msgid "Modifying field group options 'show on page'"
551
+ msgstr ""
552
 
553
+ #: core/controllers/upgrade.php:658
554
+ msgid "Modifying field option 'taxonomy'"
555
+ msgstr ""
556
 
557
+ #: core/controllers/upgrade.php:755
558
+ msgid "Moving user custom fields from wp_options to wp_usermeta'"
559
+ msgstr ""
560
 
561
+ #: core/fields/checkbox.php:21
562
+ msgid "Checkbox"
563
+ msgstr ""
564
 
565
+ #: core/fields/checkbox.php:55 core/fields/radio.php:45
566
+ #: core/fields/select.php:54
567
+ msgid "No choices to choose from"
568
+ msgstr "Keine Auswahlmöglichkeiten"
569
 
570
+ #: core/fields/checkbox.php:113 core/fields/radio.php:114
571
+ #: core/fields/select.php:174
572
+ msgid "Choices"
573
+ msgstr "Auswahlmöglichkeiten"
574
 
575
+ #: core/fields/checkbox.php:114 core/fields/radio.php:115
576
+ #: core/fields/select.php:175
577
+ msgid "Enter your choices one per line"
578
+ msgstr "Eine Auswahlmöglichkeit pro Zeile"
579
 
580
+ #: core/fields/checkbox.php:116 core/fields/radio.php:117
581
+ #: core/fields/select.php:177
582
+ msgid "Red"
583
+ msgstr "Rot"
584
 
585
+ #: core/fields/checkbox.php:117 core/fields/radio.php:118
586
+ #: core/fields/select.php:178
587
+ msgid "Blue"
588
+ msgstr "Blau"
589
 
590
+ #: core/fields/checkbox.php:119 core/fields/radio.php:120
591
+ #: core/fields/select.php:180
592
+ msgid "red : Red"
593
+ msgstr "rot : Rot"
594
 
595
+ #: core/fields/checkbox.php:120 core/fields/radio.php:121
596
+ #: core/fields/select.php:181
597
+ msgid "blue : Blue"
598
+ msgstr "blau : Blau"
599
 
600
+ #: core/fields/color_picker.php:21
601
+ msgid "Color Picker"
602
+ msgstr "Farbe"
603
 
604
+ #: core/fields/color_picker.php:92 core/fields/number.php:65
605
+ #: core/fields/radio.php:130 core/fields/select.php:190
606
+ #: core/fields/text.php:65 core/fields/textarea.php:62
607
+ #: core/fields/wysiwyg.php:81
608
+ msgid "Default Value"
609
+ msgstr "Standardwert"
610
 
611
+ #: core/fields/color_picker.php:93
612
+ msgid "eg: #ffffff"
613
+ msgstr "z.B.: #ffffff"
614
 
615
+ #: core/fields/file.php:21
616
+ msgid "File"
617
+ msgstr "Datei"
618
 
619
+ #: core/fields/file.php:49
620
+ msgid "File Updated."
621
+ msgstr "Datei aktualisiert"
622
 
623
+ #: core/fields/file.php:90 core/fields/flexible_content.php:407
624
+ #: core/fields/gallery.php:251 core/fields/gallery.php:281
625
+ #: core/fields/image.php:187 core/fields/repeater.php:356
626
+ #: core/views/meta_box_fields.php:88
627
+ msgid "Edit"
628
+ msgstr "Bearbeiten"
629
 
630
+ #: core/fields/file.php:91 core/fields/gallery.php:250
631
+ #: core/fields/gallery.php:280 core/fields/image.php:186
632
+ msgid "Remove"
633
+ msgstr "Entfernen"
634
 
635
+ #: core/fields/file.php:196
636
+ msgid "No File Selected"
637
+ msgstr "Keine Datei ausgewählt"
638
 
639
+ #: core/fields/file.php:196
640
+ msgid "Add File"
641
+ msgstr "Datei hinzufügen"
642
 
643
+ #: core/fields/file.php:229 core/fields/image.php:223
644
+ msgid "Return Value"
645
+ msgstr "Rückgabewert"
646
 
647
+ #: core/fields/file.php:239
648
+ msgid "File Object"
649
+ msgstr "Datei"
650
 
651
+ #: core/fields/file.php:240
652
+ msgid "File URL"
653
+ msgstr "Datei-URL"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
 
655
+ #: core/fields/file.php:241
656
+ msgid "File ID"
657
+ msgstr "Datei-ID"
658
 
659
+ #: core/fields/file.php:273 core/fields/image.php:291
660
+ msgid "Media attachment updated."
661
+ msgstr "Medien-Anhang aktualisiert"
662
 
663
+ #: core/fields/file.php:407
664
+ msgid "No files selected"
665
+ msgstr "Keine Datei ausgewählt"
666
 
667
+ #: core/fields/file.php:502
668
+ msgid "Add Selected Files"
669
+ msgstr "Gewählte Dateien hinzufügen"
670
 
671
+ #: core/fields/file.php:532
672
+ msgid "Select File"
673
+ msgstr "Datei auswählen"
674
 
675
+ #: core/fields/file.php:535
676
+ msgid "Update File"
677
+ msgstr "Datei aktualisieren"
678
 
679
+ #: core/fields/flexible_content.php:21
680
+ msgid "Flexible Content"
681
+ msgstr "Flexibler Inhalt"
682
 
683
+ #: core/fields/flexible_content.php:38 core/fields/flexible_content.php:286
684
+ msgid "+ Add Row"
685
+ msgstr "+ Zeile hinzufügen"
686
 
687
+ #: core/fields/flexible_content.php:313 core/fields/repeater.php:302
688
+ #: core/views/meta_box_fields.php:25
689
+ msgid "New Field"
690
+ msgstr "Neues Feld"
691
 
692
+ #: core/fields/flexible_content.php:322 core/fields/radio.php:144
693
+ #: core/fields/repeater.php:523
694
+ msgid "Layout"
695
+ msgstr "Layout"
696
 
697
+ #: core/fields/flexible_content.php:324
698
+ msgid "Reorder Layout"
699
+ msgstr "Layout neu anordnen"
700
 
701
+ #: core/fields/flexible_content.php:324
702
+ msgid "Reorder"
703
+ msgstr "Anordnung"
704
 
705
+ #: core/fields/flexible_content.php:325
706
+ msgid "Add New Layout"
707
+ msgstr "Neues Layout hinzufügen"
708
 
709
+ #: core/fields/flexible_content.php:326
710
+ msgid "Delete Layout"
711
+ msgstr "Layout löschen"
712
 
713
+ #: core/fields/flexible_content.php:326 core/fields/flexible_content.php:410
714
+ #: core/fields/repeater.php:359 core/views/meta_box_fields.php:91
715
+ msgid "Delete"
716
+ msgstr "Löschen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
717
 
718
+ #: core/fields/flexible_content.php:336
719
+ msgid "Label"
720
+ msgstr "Bezeichnung"
721
 
722
+ #: core/fields/flexible_content.php:346
 
723
  msgid "Name"
724
  msgstr "Name"
725
 
726
+ #: core/fields/flexible_content.php:356
727
+ msgid "Display"
728
+ msgstr "Darstellung"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
729
 
730
+ #: core/fields/flexible_content.php:363
731
+ msgid "Table"
732
+ msgstr "Tabelle"
733
 
734
+ #: core/fields/flexible_content.php:364 core/fields/repeater.php:534
735
+ msgid "Row"
736
+ msgstr "Zeile"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
737
 
738
+ #: core/fields/flexible_content.php:377 core/fields/repeater.php:327
739
+ #: core/views/meta_box_fields.php:60
740
+ msgid "Field Order"
741
+ msgstr "Sortierung"
742
+
743
+ #: core/fields/flexible_content.php:378 core/fields/flexible_content.php:425
744
+ #: core/fields/repeater.php:328 core/fields/repeater.php:375
745
+ #: core/views/meta_box_fields.php:61 core/views/meta_box_fields.php:107
746
+ msgid "Field Label"
747
+ msgstr "Bezeichnung"
748
+
749
+ #: core/fields/flexible_content.php:379 core/fields/flexible_content.php:441
750
+ #: core/fields/repeater.php:329 core/fields/repeater.php:391
751
+ #: core/views/meta_box_fields.php:62 core/views/meta_box_fields.php:123
752
+ msgid "Field Name"
753
+ msgstr "Name"
754
 
755
+ #: core/fields/flexible_content.php:388 core/fields/repeater.php:338
756
+ msgid ""
757
+ "No fields. Click the \"+ Add Sub Field button\" to create your first field."
758
+ msgstr ""
759
+ "Keine Felder vorhanden. Klicken Sie die Schaltfläche zum Erstellen neuer "
760
+ "Felder um zu beginnen."
761
+
762
+ #: core/fields/flexible_content.php:404 core/fields/flexible_content.php:407
763
+ #: core/fields/repeater.php:353 core/fields/repeater.php:356
764
+ #: core/views/meta_box_fields.php:85 core/views/meta_box_fields.php:88
765
+ msgid "Edit this Field"
766
+ msgstr "Dieses Feld bearbeiten"
767
+
768
+ #: core/fields/flexible_content.php:408 core/fields/repeater.php:357
769
+ #: core/views/meta_box_fields.php:89
770
+ msgid "Read documentation for this field"
771
+ msgstr "Dokumentation für dieses Feld lesen"
772
+
773
+ #: core/fields/flexible_content.php:408 core/fields/repeater.php:357
774
+ #: core/views/meta_box_fields.php:89
775
+ msgid "Docs"
776
+ msgstr "Dokumentation"
777
 
778
+ #: core/fields/flexible_content.php:409 core/fields/repeater.php:358
779
+ #: core/views/meta_box_fields.php:90
780
+ msgid "Duplicate this Field"
781
+ msgstr "Dieses Feld duplizieren"
782
+
783
+ #: core/fields/flexible_content.php:409 core/fields/repeater.php:358
784
+ #: core/views/meta_box_fields.php:90
785
+ msgid "Duplicate"
786
+ msgstr "Duplizieren"
787
+
788
+ #: core/fields/flexible_content.php:410 core/fields/repeater.php:359
789
+ #: core/views/meta_box_fields.php:91
790
+ msgid "Delete this Field"
791
+ msgstr "Dieses Feld löschen"
792
+
793
+ #: core/fields/flexible_content.php:426 core/fields/repeater.php:376
794
+ #: core/views/meta_box_fields.php:108
795
+ msgid "This is the name which will appear on the EDIT page"
796
+ msgstr "Diese Bezeichnung wird im Bearbeiten-Fenster angezeigt."
797
+
798
+ #: core/fields/flexible_content.php:442 core/fields/repeater.php:392
799
+ #: core/views/meta_box_fields.php:124
800
+ msgid "Single word, no spaces. Underscores and dashes allowed"
801
+ msgstr ""
802
+ "Ein Wort, keine Leerzeichen, Unterstrich (_) und Bindestrich (-) erlaubt."
803
 
804
+ #: core/fields/flexible_content.php:476 core/fields/repeater.php:467
805
+ msgid "Save Field"
806
+ msgstr "Feld speichern"
807
 
808
+ #: core/fields/flexible_content.php:481 core/fields/repeater.php:472
809
+ #: core/views/meta_box_fields.php:190
810
+ msgid "Close Field"
811
+ msgstr "Feld schließen"
812
 
813
+ #: core/fields/flexible_content.php:481 core/fields/repeater.php:472
814
+ msgid "Close Sub Field"
815
+ msgstr "Unter-Feld schließen"
816
 
817
+ #: core/fields/flexible_content.php:495 core/fields/repeater.php:487
818
+ #: core/views/meta_box_fields.php:203
819
+ msgid "Drag and drop to reorder"
820
+ msgstr "Mit Drag&amp;Drop anordnen"
821
 
822
+ #: core/fields/flexible_content.php:496 core/fields/repeater.php:488
823
+ msgid "+ Add Sub Field"
824
+ msgstr "+ Unter-Feld hinzufügen"
825
 
826
+ #: core/fields/flexible_content.php:503 core/fields/repeater.php:542
827
+ msgid "Button Label"
828
+ msgstr "Beschriftung der Schalftfläche"
829
 
830
+ #: core/fields/gallery.php:25
831
+ msgid "Gallery"
832
+ msgstr "Galerie"
833
 
834
+ #: core/fields/gallery.php:70 core/fields/gallery.php:233
835
+ msgid "Alternate Text"
836
+ msgstr "Alternativer Text"
837
 
838
+ #: core/fields/gallery.php:74 core/fields/gallery.php:237
839
+ msgid "Caption"
840
+ msgstr "Bildunterschrift"
841
 
842
+ #: core/fields/gallery.php:78 core/fields/gallery.php:241
843
+ msgid "Description"
844
+ msgstr "Beschreibung"
845
 
846
+ #: core/fields/gallery.php:117 core/fields/image.php:243
847
+ msgid "Preview Size"
848
+ msgstr "Größe der Vorschau"
849
 
850
+ #: core/fields/gallery.php:118
851
+ msgid "Thumbnail is advised"
852
+ msgstr "Miniaturbild wird empfohlen"
853
 
854
+ #: core/fields/gallery.php:179
855
+ msgid "Image Updated"
856
+ msgstr "Bild aktualisiert"
857
 
858
+ #: core/fields/gallery.php:262 core/fields/gallery.php:669
859
+ #: core/fields/image.php:193
860
+ msgid "Add Image"
861
+ msgstr "Bild hinzufügen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
862
 
863
+ #: core/fields/gallery.php:263
864
+ msgid "Grid"
865
+ msgstr "Raster"
866
 
867
+ #: core/fields/gallery.php:264
868
+ msgid "List"
869
+ msgstr "Liste"
870
 
871
+ #: core/fields/gallery.php:266 core/fields/image.php:429
872
+ msgid "No images selected"
873
+ msgstr "Kein Bild ausgewählt"
874
 
875
+ #: core/fields/gallery.php:266
876
+ msgid "1 image selected"
877
+ msgstr "Ein Bild ausgewählt"
878
 
879
+ #: core/fields/gallery.php:266
880
+ msgid "{count} images selected"
881
+ msgstr "{count} Bilder ausgewählt"
882
 
883
+ #: core/fields/gallery.php:591
884
+ msgid "Added"
885
+ msgstr "Hinzugefügt"
886
 
887
+ #: core/fields/gallery.php:611
888
+ msgid "Image already exists in gallery"
889
+ msgstr "Bild ist bereits in der Galerie"
890
 
891
+ #: core/fields/gallery.php:617
892
+ msgid "Image Added"
893
+ msgstr "Bild hinzugefügt"
894
 
895
+ #: core/fields/gallery.php:672 core/fields/image.php:557
896
+ msgid "Update Image"
897
+ msgstr "Bild aktualisieren"
898
 
899
+ #: core/fields/image.php:21
900
+ msgid "Image"
901
+ msgstr "Bild"
902
 
903
+ #: core/fields/image.php:49
904
+ msgid "Image Updated."
905
+ msgstr "Bild aktualisiert"
906
 
907
+ #: core/fields/image.php:193
908
+ msgid "No image selected"
909
+ msgstr "Kein Bild ausgewählt"
910
 
911
+ #: core/fields/image.php:233
912
+ msgid "Image Object"
913
+ msgstr "Bild"
914
 
915
+ #: core/fields/image.php:234
916
+ msgid "Image URL"
917
+ msgstr "Bild-URL"
918
 
919
+ #: core/fields/image.php:235
920
+ msgid "Image ID"
921
+ msgstr "Bild-ID"
922
+
923
+ #: core/fields/image.php:525
924
+ msgid "Add selected Images"
925
+ msgstr "Ausgewählte Bilder hinzufügen"
926
+
927
+ #: core/fields/image.php:554
928
+ msgid "Select Image"
929
+ msgstr "Bild auswählen"
930
+
931
+ #: core/fields/number.php:21
932
+ msgid "Number"
933
+ msgstr "Nummer"
934
+
935
+ #: core/fields/page_link.php:21
936
+ msgid "Page Link"
937
+ msgstr "Link zu Seite"
938
+
939
+ #: core/fields/page_link.php:70 core/fields/post_object.php:217
940
+ #: core/fields/relationship.php:386 core/views/meta_box_location.php:48
941
+ msgid "Post Type"
942
+ msgstr "Artikel-Typ"
943
+
944
+ #: core/fields/page_link.php:98 core/fields/post_object.php:268
945
+ #: core/fields/select.php:204
946
+ msgid "Allow Null?"
947
+ msgstr "Nichts (NULL) erlauben?"
948
+
949
+ #: core/fields/page_link.php:107 core/fields/page_link.php:126
950
+ #: core/fields/post_object.php:277 core/fields/post_object.php:296
951
+ #: core/fields/select.php:213 core/fields/select.php:232
952
+ #: core/fields/wysiwyg.php:124 core/fields/wysiwyg.php:145
953
+ #: core/views/meta_box_fields.php:172
954
+ msgid "Yes"
955
+ msgstr "Ja"
956
 
957
+ #: core/fields/page_link.php:108 core/fields/page_link.php:127
958
+ #: core/fields/post_object.php:278 core/fields/post_object.php:297
959
+ #: core/fields/select.php:214 core/fields/select.php:233
960
+ #: core/fields/wysiwyg.php:125 core/fields/wysiwyg.php:146
961
+ #: core/views/meta_box_fields.php:173
962
+ msgid "No"
963
+ msgstr "Nein"
964
 
965
+ #: core/fields/page_link.php:117 core/fields/post_object.php:287
966
+ #: core/fields/select.php:223
967
+ msgid "Select multiple values?"
968
+ msgstr "Mehrere Werte auswählen?"
969
 
970
+ #: core/fields/post_object.php:21
971
+ msgid "Post Object"
972
+ msgstr "Artikel"
973
 
974
+ #: core/fields/post_object.php:245 core/fields/relationship.php:415
975
+ msgid "Filter from Taxonomy"
976
+ msgstr "Mit Beziehung filtern"
977
 
978
+ #: core/fields/radio.php:21
979
+ msgid "Radio Button"
980
+ msgstr ""
981
 
982
+ #: core/fields/radio.php:154
983
+ msgid "Vertical"
984
+ msgstr "Vertikal"
985
 
986
+ #: core/fields/radio.php:155
987
+ msgid "Horizontal"
988
+ msgstr "Horizontal"
989
 
990
+ #: core/fields/relationship.php:21
991
+ msgid "Relationship"
992
+ msgstr "Beziehung"
993
 
994
+ #: core/fields/relationship.php:288
995
+ msgid "Search"
996
+ msgstr "Suchen"
997
 
998
+ #: core/fields/relationship.php:438
999
+ msgid "Maximum posts"
1000
+ msgstr "Max. Artikel"
1001
 
1002
+ #: core/fields/repeater.php:21
1003
+ msgid "Repeater"
1004
+ msgstr "Wiederholung"
1005
 
1006
+ #: core/fields/repeater.php:66 core/fields/repeater.php:289
1007
+ msgid "Add Row"
1008
+ msgstr "Zeile hinzufügen"
1009
 
1010
+ #: core/fields/repeater.php:319
1011
+ msgid "Repeater Fields"
1012
+ msgstr "Wiederholungs-Felder"
1013
 
1014
+ #: core/fields/repeater.php:420 core/views/meta_box_fields.php:151
1015
+ msgid "Field Instructions"
1016
+ msgstr "Feld-Anweisungen"
1017
 
1018
+ #: core/fields/repeater.php:440
1019
+ msgid "Column Width"
1020
+ msgstr "Spaltenbreite"
1021
 
1022
+ #: core/fields/repeater.php:441
1023
+ msgid "Leave blank for auto"
1024
+ msgstr "Leer lassen für automatisch"
1025
 
1026
+ #: core/fields/repeater.php:495
1027
+ msgid "Minimum Rows"
1028
+ msgstr "Mind. Zeilen"
1029
 
1030
+ #: core/fields/repeater.php:509
1031
+ msgid "Maximum Rows"
1032
+ msgstr "Max. Zeilen"
1033
 
1034
+ #: core/fields/repeater.php:533
1035
+ msgid "Table (default)"
1036
+ msgstr "Tabelle (standard)"
1037
 
1038
+ #: core/fields/select.php:21
1039
+ msgid "Select"
1040
+ msgstr "Auswahlmenü"
1041
 
1042
+ #: core/fields/text.php:21
1043
+ msgid "Text"
1044
+ msgstr "Text"
1045
 
1046
+ #: core/fields/text.php:79 core/fields/textarea.php:76
1047
+ msgid "Formatting"
1048
+ msgstr "Formatierung"
1049
 
1050
+ #: core/fields/text.php:80
1051
+ msgid "Define how to render html tags"
1052
+ msgstr "Wie soll HTML-Inhalt dargestellt werden:"
1053
 
1054
+ #: core/fields/text.php:89 core/fields/textarea.php:86
1055
+ msgid "None"
1056
+ msgstr "Nur Text"
1057
 
1058
+ #: core/fields/text.php:90 core/fields/textarea.php:88
1059
+ msgid "HTML"
1060
+ msgstr "HTML"
1061
 
1062
+ #: core/fields/textarea.php:21
1063
+ msgid "Text Area"
1064
+ msgstr "Textfeld"
1065
 
1066
+ #: core/fields/textarea.php:77
1067
+ msgid "Define how to render html tags / new lines"
1068
+ msgstr "Wie sollen HTML-Inhalt und neue Zeilen dargestellt werden:"
1069
 
1070
+ #: core/fields/textarea.php:87
1071
+ msgid "auto &lt;br /&gt;"
1072
+ msgstr "automatisch &lt;br /&gt; einfügen"
1073
 
1074
+ #: core/fields/true_false.php:21
1075
+ msgid "True / False"
1076
+ msgstr "Ja/Nein"
1077
 
1078
+ #: core/fields/true_false.php:68
1079
+ msgid "Message"
1080
+ msgstr "Nachricht"
1081
 
1082
+ #: core/fields/true_false.php:69
1083
+ msgid "eg. Show extra content"
1084
+ msgstr "z.B. Mehr Inhalt anzeigen"
1085
 
1086
+ #: core/fields/wysiwyg.php:21
1087
+ msgid "Wysiwyg Editor"
1088
+ msgstr "WYSIWYG-Editor"
 
1089
 
1090
+ #: core/fields/wysiwyg.php:95
1091
+ msgid "Toolbar"
1092
+ msgstr "Werkzeugleiste"
1093
 
1094
+ #: core/fields/wysiwyg.php:106 core/views/meta_box_location.php:47
1095
+ msgid "Basic"
1096
+ msgstr "Grundlegend"
1097
 
1098
+ #: core/fields/wysiwyg.php:114
1099
+ msgid "Show Media Upload Buttons?"
1100
+ msgstr "Buttons zum Hochladen von Medien anzeigen?"
1101
 
1102
+ #: core/fields/wysiwyg.php:133
1103
+ msgid "Run filter \"the_content\"?"
1104
+ msgstr "Filter \"the_content\" ausführen?"
 
1105
 
1106
+ #: core/fields/wysiwyg.php:134
1107
+ msgid "Enable this filter to use shortcodes within the WYSIWYG field"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1108
  msgstr ""
1109
+ "Aktivieren Sie diesen Filter um Shortcodes im WYSIWYG-Feld verwenden zu "
1110
+ "können."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
 
1112
+ #: core/fields/wysiwyg.php:135
1113
+ msgid ""
1114
+ "Disable this filter if you encounter recursive template problems with "
1115
+ "plugins / themes"
 
 
 
 
 
 
1116
  msgstr ""
1117
+ "Deaktivieren Sie diesen Filter wenn Sie Probleme mit rekursiven Vorlagen mit "
1118
+ "Plugins oder Themse haben."
 
 
 
 
1119
 
1120
+ #: core/fields/date_picker/date_picker.php:21
1121
+ msgid "Date Picker"
1122
+ msgstr "Datum"
 
 
 
 
1123
 
1124
+ #: core/fields/date_picker/date_picker.php:106
1125
+ msgid "Save format"
1126
+ msgstr "Daten-Format"
1127
 
1128
+ #: core/fields/date_picker/date_picker.php:107
1129
+ msgid ""
1130
+ "This format will determin the value saved to the database and returned via "
1131
+ "the API"
1132
+ msgstr ""
1133
+ "Dieses Format wird in der Datenbank gespeichert und per API zurückgegeben."
1134
 
1135
+ #: core/fields/date_picker/date_picker.php:108
1136
+ msgid "\"yymmdd\" is the most versatile save format. Read more about"
1137
+ msgstr ""
1138
+ "\"yymmdd\" ist das gebräuchlichste Format zum Speichern. Lesen Sie mehr über"
1139
 
1140
+ #: core/fields/date_picker/date_picker.php:108
1141
+ #: core/fields/date_picker/date_picker.php:118
1142
+ msgid "jQuery date formats"
1143
+ msgstr "jQuery-Datums-Format"
1144
 
1145
+ #: core/fields/date_picker/date_picker.php:116
1146
+ msgid "Display format"
1147
+ msgstr "Darstellungs-Format"
1148
 
1149
+ #: core/fields/date_picker/date_picker.php:117
1150
+ msgid "This format will be seen by the user when entering a value"
1151
+ msgstr "Dieses Format wird dem Benutzer angezeigt."
1152
 
1153
+ #: core/fields/date_picker/date_picker.php:118
1154
+ msgid ""
1155
+ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1156
+ "about"
1157
+ msgstr ""
1158
+ "\"dd/mm/yy\" oder \"dd.mm.yy\" sind häufig verwendete Formate. Lesen Sie "
1159
+ "mehr über"
1160
 
1161
+ #: core/views/meta_box_fields.php:26
1162
+ msgid "new_field"
1163
+ msgstr "neues_Feld"
1164
 
1165
+ #: core/views/meta_box_fields.php:47
1166
+ msgid "Move to trash. Are you sure?"
1167
+ msgstr "Wirklich in den Papierkorb verschieben?"
1168
 
1169
+ #: core/views/meta_box_fields.php:64
1170
+ msgid "Field Key"
1171
+ msgstr "Feld-Schlüssel"
1172
 
1173
+ #: core/views/meta_box_fields.php:74
1174
+ msgid ""
1175
+ "No fields. Click the <strong>+ Add Field</strong> button to create your "
1176
+ "first field."
1177
+ msgstr ""
1178
+ "Keine Felder vorhanden. Wählen Sie <strong>+ Feld hinzufügen</strong> und "
1179
+ "erstellen Sie das erste Feld."
1180
 
1181
+ #: core/views/meta_box_fields.php:152
1182
+ msgid "Instructions for authors. Shown when submitting data"
1183
+ msgstr "Anweisungen für Autoren, wird beim Absenden von Daten angezeigt."
1184
 
1185
+ #: core/views/meta_box_fields.php:164
1186
+ msgid "Required?"
1187
+ msgstr "Erforderlich?"
1188
 
1189
+ #: core/views/meta_box_fields.php:204
1190
+ msgid "+ Add Field"
1191
+ msgstr "+ Feld hinzufügen"
1192
 
1193
+ #: core/views/meta_box_location.php:35
1194
+ msgid "Rules"
1195
+ msgstr "Regeln"
1196
 
1197
+ #: core/views/meta_box_location.php:36
1198
+ msgid ""
1199
+ "Create a set of rules to determine which edit screens will use these "
1200
+ "advanced custom fields"
1201
+ msgstr ""
1202
+ "Legen Sie mit diesen Regeln fest auf welchen Bearbeitungs-Seiten diese "
1203
+ "eigenen Felder angezeigt werden sollen."
1204
 
1205
+ #: core/views/meta_box_location.php:49
1206
+ msgid "Logged in User Type"
1207
+ msgstr "Angemeldete Benutzer-Rolle"
1208
 
1209
+ #: core/views/meta_box_location.php:51
1210
+ msgid "Page Specific"
1211
+ msgstr "Seiten"
 
1212
 
1213
+ #: core/views/meta_box_location.php:52
1214
+ msgid "Page"
1215
+ msgstr "Seite"
1216
 
1217
+ #: core/views/meta_box_location.php:53
1218
+ msgid "Page Type"
1219
+ msgstr "Seiten-Typ"
 
1220
 
1221
+ #: core/views/meta_box_location.php:54
1222
+ msgid "Page Parent"
1223
+ msgstr "Übergeordnete Seite"
1224
 
1225
+ #: core/views/meta_box_location.php:55
1226
+ msgid "Page Template"
1227
+ msgstr "Seiten-Vorlage"
 
1228
 
1229
+ #: core/views/meta_box_location.php:57
1230
+ msgid "Post Specific"
1231
+ msgstr "Artikel"
1232
 
1233
+ #: core/views/meta_box_location.php:58
1234
+ msgid "Post"
1235
+ msgstr "Artikel"
1236
 
1237
+ #: core/views/meta_box_location.php:59
1238
+ msgid "Post Category"
1239
+ msgstr "Artikel-Kategorie"
1240
 
1241
+ #: core/views/meta_box_location.php:60
1242
+ msgid "Post Format"
1243
+ msgstr "Artikel-Format"
1244
 
1245
+ #: core/views/meta_box_location.php:61
1246
+ msgid "Post Taxonomy"
1247
+ msgstr "Artikel-Beziehung"
1248
 
1249
+ #: core/views/meta_box_location.php:63
1250
+ msgid "Other"
1251
+ msgstr "Sonstige"
1252
 
1253
+ #: core/views/meta_box_location.php:64
1254
+ msgid "Taxonomy (Add / Edit)"
1255
+ msgstr "Beziehung (Hinzufügen/Bearbeiten)"
 
1256
 
1257
+ #: core/views/meta_box_location.php:65
1258
+ msgid "User (Add / Edit)"
1259
+ msgstr "Benutzer (Hinzufügen/Bearbeiten)"
1260
 
1261
+ #: core/views/meta_box_location.php:66
1262
+ msgid "Media (Edit)"
1263
+ msgstr "Medien (Bearbeiten)"
1264
 
1265
+ #: core/views/meta_box_location.php:96
1266
+ msgid "is equal to"
1267
+ msgstr "ist gleich"
1268
 
1269
+ #: core/views/meta_box_location.php:97
1270
+ msgid "is not equal to"
1271
+ msgstr "ist nicht gleich"
1272
 
1273
+ #: core/views/meta_box_location.php:121
1274
+ msgid "match"
1275
+ msgstr "Von den Bedingungen müssen"
1276
 
1277
+ #: core/views/meta_box_location.php:127
1278
+ msgid "all"
1279
+ msgstr "alle"
1280
 
1281
+ #: core/views/meta_box_location.php:128
1282
+ msgid "any"
1283
+ msgstr "mindestens eine"
1284
 
1285
+ #: core/views/meta_box_location.php:131
1286
+ msgid "of the above"
1287
+ msgstr "übereinstimmen."
1288
 
1289
+ #: core/views/meta_box_location.php:144
1290
+ msgid "Unlock options add-on with an activation code"
1291
+ msgstr "Optionen-Add-On per Aktivierungs-Code freischalten"
1292
 
1293
+ #: core/views/meta_box_options.php:23
1294
+ msgid "Order No."
1295
+ msgstr "Sortierungs-Nr."
1296
 
1297
+ #: core/views/meta_box_options.php:24
1298
+ msgid "Field groups are created in order <br />from lowest to highest"
1299
+ msgstr ""
1300
+ "Felder-Gruppen werden nach diesem Wert sortiert, vom niedrigsten zum "
1301
+ "höchsten Wert."
1302
 
1303
+ #: core/views/meta_box_options.php:40
1304
+ msgid "Position"
1305
+ msgstr "Position"
1306
 
1307
+ #: core/views/meta_box_options.php:60
1308
+ msgid "Style"
1309
+ msgstr "Stil"
 
1310
 
1311
+ #: core/views/meta_box_options.php:80
1312
+ msgid "Hide on screen"
1313
+ msgstr "Verstecken"
1314
 
1315
+ #: core/views/meta_box_options.php:81
1316
+ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1317
+ msgstr ""
1318
+ "<strong>Ausgewählte</strong> Elemente warden <strong>versteckt</strong>."
1319
 
1320
+ #: core/views/meta_box_options.php:82
1321
+ msgid ""
1322
+ "If multiple field groups appear on an edit screen, the first field group's "
1323
+ "options will be used. (the one with the lowest order number)"
1324
+ msgstr ""
1325
 
1326
+ #: core/views/meta_box_options.php:92
1327
+ msgid "Content Editor"
1328
+ msgstr "Inhalts-Editor"
1329
 
1330
+ #: core/views/meta_box_options.php:93
1331
+ msgid "Excerpt"
1332
+ msgstr "Auszug"
1333
 
1334
+ #: core/views/meta_box_options.php:95
1335
+ msgid "Discussion"
1336
+ msgstr "Diskussion"
1337
 
1338
+ #: core/views/meta_box_options.php:96
1339
+ msgid "Comments"
1340
+ msgstr "Kommentare"
1341
 
1342
+ #: core/views/meta_box_options.php:97
1343
+ msgid "Revisions"
1344
+ msgstr "Revisionen"
1345
 
1346
+ #: core/views/meta_box_options.php:98
1347
+ msgid "Slug"
1348
+ msgstr "Titelform (Slug)"
1349
 
1350
+ #: core/views/meta_box_options.php:99
1351
+ msgid "Author"
1352
+ msgstr "Autor"
1353
 
1354
+ #: core/views/meta_box_options.php:100
1355
+ msgid "Format"
1356
+ msgstr "Format"
1357
 
1358
+ #: core/views/meta_box_options.php:101
1359
+ msgid "Featured Image"
1360
+ msgstr "Artikelbild"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1361
 
1362
+ #~ msgid "Add Fields to Edit Screens"
1363
+ #~ msgstr "Felder den Bearbeiten-Fenstern hinzufügen"
 
1364
 
1365
+ #~ msgid "Customise the edit page"
1366
+ #~ msgstr "Bearbeiten-Seite anpassen"
 
1367
 
1368
+ #~ msgid "eg. dd/mm/yy. read more about"
1369
+ #~ msgstr "z.B.: dd/mm/yy. Lesen Sie mehr darüber"
 
1370
 
1371
+ #~ msgid "Attachment ID"
1372
+ #~ msgstr "Anhang-ID"
 
 
 
 
 
 
lang/acf.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
- "POT-Creation-Date: 2012-08-11 08:33:20+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,117 +12,118 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: acf.php:281 core/views/meta_box_options.php:94
16
  msgid "Custom Fields"
17
  msgstr ""
18
 
19
- #: acf.php:302
20
  msgid "Field&nbsp;Groups"
21
  msgstr ""
22
 
23
- #: acf.php:303 core/controllers/field_groups.php:283
24
  #: core/controllers/upgrade.php:70
25
  msgid "Advanced Custom Fields"
26
  msgstr ""
27
 
28
- #: acf.php:304 core/fields/flexible_content.php:325
29
  msgid "Add New"
30
  msgstr ""
31
 
32
- #: acf.php:305
33
  msgid "Add New Field Group"
34
  msgstr ""
35
 
36
- #: acf.php:306
37
  msgid "Edit Field Group"
38
  msgstr ""
39
 
40
- #: acf.php:307
41
  msgid "New Field Group"
42
  msgstr ""
43
 
44
- #: acf.php:308
45
  msgid "View Field Group"
46
  msgstr ""
47
 
48
- #: acf.php:309
49
  msgid "Search Field Groups"
50
  msgstr ""
51
 
52
- #: acf.php:310
53
  msgid "No Field Groups found"
54
  msgstr ""
55
 
56
- #: acf.php:311
57
  msgid "No Field Groups found in Trash"
58
  msgstr ""
59
 
60
- #: acf.php:346 acf.php:349
61
  msgid "Field group updated."
62
  msgstr ""
63
 
64
- #: acf.php:347
65
  msgid "Custom field updated."
66
  msgstr ""
67
 
68
- #: acf.php:348
69
  msgid "Custom field deleted."
70
  msgstr ""
71
 
72
  #. translators: %s: date and time of the revision
73
- #: acf.php:351
74
  msgid "Field group restored to revision from %s"
75
  msgstr ""
76
 
77
- #: acf.php:352
78
  msgid "Field group published."
79
  msgstr ""
80
 
81
- #: acf.php:353
82
  msgid "Field group saved."
83
  msgstr ""
84
 
85
- #: acf.php:354
86
  msgid "Field group submitted."
87
  msgstr ""
88
 
89
- #: acf.php:355
90
  msgid "Field group scheduled for."
91
  msgstr ""
92
 
93
- #: acf.php:356
94
  msgid "Field group draft updated."
95
  msgstr ""
96
 
97
- #: acf.php:375 core/fields/gallery.php:66 core/fields/gallery.php:229
98
  msgid "Title"
99
  msgstr ""
100
 
101
- #: acf.php:597
102
  msgid "Error: Field Type does not exist!"
103
  msgstr ""
104
 
105
- #: acf.php:1599
106
  msgid "Thumbnail"
107
  msgstr ""
108
 
109
- #: acf.php:1600
110
  msgid "Medium"
111
  msgstr ""
112
 
113
- #: acf.php:1601
114
  msgid "Large"
115
  msgstr ""
116
 
117
- #: acf.php:1602 core/fields/wysiwyg.php:85
118
  msgid "Full"
119
  msgstr ""
120
 
121
- #: core/actions/export.php:19
122
  msgid "No ACF groups selected"
123
  msgstr ""
124
 
125
- #: core/controllers/field_group.php:148 core/controllers/field_groups.php:190
 
126
  msgid "Fields"
127
  msgstr ""
128
 
@@ -130,138 +131,130 @@ msgstr ""
130
  msgid "Location"
131
  msgstr ""
132
 
133
- #: core/controllers/field_group.php:149
134
- msgid "Add Fields to Edit Screens"
135
- msgstr ""
136
-
137
- #: core/controllers/field_group.php:150 core/controllers/field_group.php:400
138
  #: core/controllers/options_page.php:62 core/controllers/options_page.php:74
139
  #: core/views/meta_box_location.php:143
140
  msgid "Options"
141
  msgstr ""
142
 
143
- #: core/controllers/field_group.php:150
144
- msgid "Customise the edit page"
145
- msgstr ""
146
-
147
- #: core/controllers/field_group.php:328
148
  msgid "Parent Page"
149
  msgstr ""
150
 
151
- #: core/controllers/field_group.php:329
152
  msgid "Child Page"
153
  msgstr ""
154
 
155
- #: core/controllers/field_group.php:337
156
  msgid "Default Template"
157
  msgstr ""
158
 
159
- #: core/controllers/field_group.php:424 core/controllers/field_group.php:445
160
- #: core/controllers/field_group.php:452 core/fields/page_link.php:76
161
- #: core/fields/post_object.php:222 core/fields/post_object.php:250
162
- #: core/fields/relationship.php:320 core/fields/relationship.php:349
163
  msgid "All"
164
  msgstr ""
165
 
166
- #: core/controllers/field_groups.php:243 core/views/meta_box_options.php:50
167
  msgid "Normal"
168
  msgstr ""
169
 
170
- #: core/controllers/field_groups.php:244 core/views/meta_box_options.php:51
171
  msgid "Side"
172
  msgstr ""
173
 
174
- #: core/controllers/field_groups.php:254 core/views/meta_box_options.php:70
175
  msgid "Standard Metabox"
176
  msgstr ""
177
 
178
- #: core/controllers/field_groups.php:255 core/views/meta_box_options.php:71
179
  msgid "No Metabox"
180
  msgstr ""
181
 
182
- #: core/controllers/field_groups.php:285
183
  msgid "Changelog"
184
  msgstr ""
185
 
186
- #: core/controllers/field_groups.php:286
187
  msgid "See what's new in"
188
  msgstr ""
189
 
190
- #: core/controllers/field_groups.php:288
191
  msgid "Resources"
192
  msgstr ""
193
 
194
- #: core/controllers/field_groups.php:289
195
  msgid ""
196
  "Read documentation, learn the functions and find some tips &amp; tricks for "
197
  "your next web project."
198
  msgstr ""
199
 
200
- #: core/controllers/field_groups.php:290
201
  msgid "Visit the ACF website"
202
  msgstr ""
203
 
204
- #: core/controllers/field_groups.php:295
205
  msgid "Created by"
206
  msgstr ""
207
 
208
- #: core/controllers/field_groups.php:298
209
  msgid "Vote"
210
  msgstr ""
211
 
212
- #: core/controllers/field_groups.php:299
213
  msgid "Follow"
214
  msgstr ""
215
 
216
- #: core/controllers/input.php:449
217
  msgid "Validation Failed. One or more fields below are required."
218
  msgstr ""
219
 
220
- #: core/controllers/input.php:450
221
  msgid "Add File to Field"
222
  msgstr ""
223
 
224
- #: core/controllers/input.php:451
225
  msgid "Edit File"
226
  msgstr ""
227
 
228
- #: core/controllers/input.php:452
229
  msgid "Add Image to Field"
230
  msgstr ""
231
 
232
- #: core/controllers/input.php:453 core/controllers/input.php:456
233
  msgid "Edit Image"
234
  msgstr ""
235
 
236
- #: core/controllers/input.php:454
237
  msgid "Maximum values reached ( {max} values )"
238
  msgstr ""
239
 
240
- #: core/controllers/input.php:455
241
  msgid "Add Image to Gallery"
242
  msgstr ""
243
 
244
- #: core/controllers/input.php:546
245
  msgid "Attachment updated"
246
  msgstr ""
247
 
248
- #: core/controllers/options_page.php:140
249
  msgid "Options Updated"
250
  msgstr ""
251
 
252
- #: core/controllers/options_page.php:249
253
  msgid "No Custom Field Group found for the options page"
254
  msgstr ""
255
 
256
- #: core/controllers/options_page.php:249
257
  msgid "Create a Custom Field Group"
258
  msgstr ""
259
 
260
- #: core/controllers/options_page.php:260
261
  msgid "Publish"
262
  msgstr ""
263
 
264
- #: core/controllers/options_page.php:263
265
  msgid "Save Options"
266
  msgstr ""
267
 
@@ -320,9 +313,9 @@ msgid "Find Add-ons"
320
  msgstr ""
321
 
322
  #: core/controllers/settings.php:225 core/fields/flexible_content.php:380
323
- #: core/fields/flexible_content.php:456 core/fields/repeater.php:288
324
- #: core/fields/repeater.php:364 core/views/meta_box_fields.php:63
325
- #: core/views/meta_box_fields.php:136
326
  msgid "Field Type"
327
  msgstr ""
328
 
@@ -380,7 +373,7 @@ msgid ""
380
  "import plugin."
381
  msgstr ""
382
 
383
- #: core/controllers/settings.php:316 core/controllers/settings.php:354
384
  msgid "Instructions"
385
  msgstr ""
386
 
@@ -422,29 +415,29 @@ msgstr ""
422
  msgid "That's it! Happy WordPressing"
423
  msgstr ""
424
 
425
- #: core/controllers/settings.php:345
426
  msgid "Export XML"
427
  msgstr ""
428
 
429
- #: core/controllers/settings.php:352
430
  msgid "Export Field Groups to PHP"
431
  msgstr ""
432
 
433
- #: core/controllers/settings.php:353
434
  msgid "ACF will create the PHP code to include in your theme."
435
  msgstr ""
436
 
437
- #: core/controllers/settings.php:356 core/controllers/settings.php:473
438
  msgid "Register Field Groups"
439
  msgstr ""
440
 
441
- #: core/controllers/settings.php:357 core/controllers/settings.php:474
442
  msgid ""
443
  "Registered field groups <b>will not</b> appear in the list of editable field "
444
  "groups. This is useful for including fields in themes."
445
  msgstr ""
446
 
447
- #: core/controllers/settings.php:358 core/controllers/settings.php:475
448
  msgid ""
449
  "Please note that if you export and register field groups within the same WP, "
450
  "you will see duplicate fields on your edit screens. To fix this, please move "
@@ -452,31 +445,31 @@ msgid ""
452
  "functions.php file."
453
  msgstr ""
454
 
455
- #: core/controllers/settings.php:360
456
  msgid "Select field group(s) from the list and click \"Create PHP\""
457
  msgstr ""
458
 
459
- #: core/controllers/settings.php:361 core/controllers/settings.php:477
460
  msgid "Copy the PHP code generated"
461
  msgstr ""
462
 
463
- #: core/controllers/settings.php:362 core/controllers/settings.php:478
464
  msgid "Paste into your functions.php file"
465
  msgstr ""
466
 
467
- #: core/controllers/settings.php:363 core/controllers/settings.php:479
468
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
469
  msgstr ""
470
 
471
- #: core/controllers/settings.php:382
472
  msgid "Create PHP"
473
  msgstr ""
474
 
475
- #: core/controllers/settings.php:468
476
  msgid "Back to settings"
477
  msgstr ""
478
 
479
- #: core/controllers/settings.php:503
480
  msgid ""
481
  "/**\n"
482
  " * Activate Add-ons\n"
@@ -491,7 +484,7 @@ msgid ""
491
  " */"
492
  msgstr ""
493
 
494
- #: core/controllers/settings.php:518
495
  msgid ""
496
  "/**\n"
497
  " * Register field groups\n"
@@ -503,11 +496,11 @@ msgid ""
503
  " */"
504
  msgstr ""
505
 
506
- #: core/controllers/settings.php:557
507
  msgid "No field groups were selected"
508
  msgstr ""
509
 
510
- #: core/controllers/settings.php:589
511
  msgid "Advanced Custom Fields Settings"
512
  msgstr ""
513
 
@@ -539,50 +532,54 @@ msgstr ""
539
  msgid "Upgrade Database"
540
  msgstr ""
541
 
542
- #: core/controllers/upgrade.php:598
543
  msgid "Modifying field group options 'show on page'"
544
  msgstr ""
545
 
546
- #: core/controllers/upgrade.php:651
547
  msgid "Modifying field option 'taxonomy'"
548
  msgstr ""
549
 
 
 
 
 
550
  #: core/fields/checkbox.php:21
551
  msgid "Checkbox"
552
  msgstr ""
553
 
554
  #: core/fields/checkbox.php:55 core/fields/radio.php:45
555
- #: core/fields/select.php:50
556
  msgid "No choices to choose from"
557
  msgstr ""
558
 
559
  #: core/fields/checkbox.php:113 core/fields/radio.php:114
560
- #: core/fields/select.php:164
561
  msgid "Choices"
562
  msgstr ""
563
 
564
  #: core/fields/checkbox.php:114 core/fields/radio.php:115
565
- #: core/fields/select.php:165
566
  msgid "Enter your choices one per line"
567
  msgstr ""
568
 
569
  #: core/fields/checkbox.php:116 core/fields/radio.php:117
570
- #: core/fields/select.php:167
571
  msgid "Red"
572
  msgstr ""
573
 
574
  #: core/fields/checkbox.php:117 core/fields/radio.php:118
575
- #: core/fields/select.php:168
576
  msgid "Blue"
577
  msgstr ""
578
 
579
  #: core/fields/checkbox.php:119 core/fields/radio.php:120
580
- #: core/fields/select.php:170
581
  msgid "red : Red"
582
  msgstr ""
583
 
584
  #: core/fields/checkbox.php:120 core/fields/radio.php:121
585
- #: core/fields/select.php:171
586
  msgid "blue : Blue"
587
  msgstr ""
588
 
@@ -590,75 +587,115 @@ msgstr ""
590
  msgid "Color Picker"
591
  msgstr ""
592
 
 
 
 
 
 
 
 
 
 
 
 
593
  #: core/fields/date_picker/date_picker.php:21
594
  msgid "Date Picker"
595
  msgstr ""
596
 
597
- #: core/fields/date_picker/date_picker.php:82
598
- msgid "Date format"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
599
  msgstr ""
600
 
601
- #: core/fields/date_picker/date_picker.php:83
602
- msgid "eg. dd/mm/yy. read more about"
603
  msgstr ""
604
 
605
- #: core/fields/file.php:20
 
 
 
 
 
 
606
  msgid "File"
607
  msgstr ""
608
 
609
- #: core/fields/file.php:48
610
  msgid "File Updated."
611
  msgstr ""
612
 
613
- #: core/fields/file.php:89 core/fields/flexible_content.php:407
614
  #: core/fields/gallery.php:251 core/fields/gallery.php:281
615
- #: core/fields/image.php:187 core/fields/repeater.php:314
616
- #: core/views/meta_box_fields.php:87
617
  msgid "Edit"
618
  msgstr ""
619
 
620
- #: core/fields/file.php:90 core/fields/gallery.php:250
621
  #: core/fields/gallery.php:280 core/fields/image.php:186
622
  msgid "Remove"
623
  msgstr ""
624
 
625
- #: core/fields/file.php:195
626
  msgid "No File Selected"
627
  msgstr ""
628
 
629
- #: core/fields/file.php:195
630
  msgid "Add File"
631
  msgstr ""
632
 
633
- #: core/fields/file.php:224 core/fields/image.php:223
634
  msgid "Return Value"
635
  msgstr ""
636
 
637
- #: core/fields/file.php:234
 
 
 
 
638
  msgid "File URL"
639
  msgstr ""
640
 
641
- #: core/fields/file.php:235
642
- msgid "Attachment ID"
643
  msgstr ""
644
 
645
- #: core/fields/file.php:268 core/fields/image.php:291
646
  msgid "Media attachment updated."
647
  msgstr ""
648
 
649
- #: core/fields/file.php:393
650
  msgid "No files selected"
651
  msgstr ""
652
 
653
- #: core/fields/file.php:488
654
  msgid "Add Selected Files"
655
  msgstr ""
656
 
657
- #: core/fields/file.php:518
658
  msgid "Select File"
659
  msgstr ""
660
 
661
- #: core/fields/file.php:521
662
  msgid "Update File"
663
  msgstr ""
664
 
@@ -670,13 +707,13 @@ msgstr ""
670
  msgid "+ Add Row"
671
  msgstr ""
672
 
673
- #: core/fields/flexible_content.php:313 core/fields/repeater.php:261
674
  #: core/views/meta_box_fields.php:25
675
  msgid "New Field"
676
  msgstr ""
677
 
678
  #: core/fields/flexible_content.php:322 core/fields/radio.php:144
679
- #: core/fields/repeater.php:440
680
  msgid "Layout"
681
  msgstr ""
682
 
@@ -697,7 +734,7 @@ msgid "Delete Layout"
697
  msgstr ""
698
 
699
  #: core/fields/flexible_content.php:326 core/fields/flexible_content.php:410
700
- #: core/fields/repeater.php:317 core/views/meta_box_fields.php:90
701
  msgid "Delete"
702
  msgstr ""
703
 
@@ -717,96 +754,96 @@ msgstr ""
717
  msgid "Table"
718
  msgstr ""
719
 
720
- #: core/fields/flexible_content.php:364 core/fields/repeater.php:451
721
  msgid "Row"
722
  msgstr ""
723
 
724
- #: core/fields/flexible_content.php:377 core/fields/repeater.php:285
725
  #: core/views/meta_box_fields.php:60
726
  msgid "Field Order"
727
  msgstr ""
728
 
729
  #: core/fields/flexible_content.php:378 core/fields/flexible_content.php:425
730
- #: core/fields/repeater.php:286 core/fields/repeater.php:333
731
- #: core/views/meta_box_fields.php:61 core/views/meta_box_fields.php:105
732
  msgid "Field Label"
733
  msgstr ""
734
 
735
  #: core/fields/flexible_content.php:379 core/fields/flexible_content.php:441
736
- #: core/fields/repeater.php:287 core/fields/repeater.php:349
737
- #: core/views/meta_box_fields.php:62 core/views/meta_box_fields.php:121
738
  msgid "Field Name"
739
  msgstr ""
740
 
741
- #: core/fields/flexible_content.php:388 core/fields/repeater.php:296
742
  msgid ""
743
  "No fields. Click the \"+ Add Sub Field button\" to create your first field."
744
  msgstr ""
745
 
746
  #: core/fields/flexible_content.php:404 core/fields/flexible_content.php:407
747
- #: core/fields/repeater.php:311 core/fields/repeater.php:314
748
- #: core/views/meta_box_fields.php:84 core/views/meta_box_fields.php:87
749
  msgid "Edit this Field"
750
  msgstr ""
751
 
752
- #: core/fields/flexible_content.php:408 core/fields/repeater.php:315
753
- #: core/views/meta_box_fields.php:88
754
  msgid "Read documentation for this field"
755
  msgstr ""
756
 
757
- #: core/fields/flexible_content.php:408 core/fields/repeater.php:315
758
- #: core/views/meta_box_fields.php:88
759
  msgid "Docs"
760
  msgstr ""
761
 
762
- #: core/fields/flexible_content.php:409 core/fields/repeater.php:316
763
- #: core/views/meta_box_fields.php:89
764
  msgid "Duplicate this Field"
765
  msgstr ""
766
 
767
- #: core/fields/flexible_content.php:409 core/fields/repeater.php:316
768
- #: core/views/meta_box_fields.php:89
769
  msgid "Duplicate"
770
  msgstr ""
771
 
772
- #: core/fields/flexible_content.php:410 core/fields/repeater.php:317
773
- #: core/views/meta_box_fields.php:90
774
  msgid "Delete this Field"
775
  msgstr ""
776
 
777
- #: core/fields/flexible_content.php:426 core/fields/repeater.php:334
778
- #: core/views/meta_box_fields.php:106
779
  msgid "This is the name which will appear on the EDIT page"
780
  msgstr ""
781
 
782
- #: core/fields/flexible_content.php:442 core/fields/repeater.php:350
783
- #: core/views/meta_box_fields.php:122
784
  msgid "Single word, no spaces. Underscores and dashes allowed"
785
  msgstr ""
786
 
787
- #: core/fields/flexible_content.php:476 core/fields/repeater.php:384
788
  msgid "Save Field"
789
  msgstr ""
790
 
791
- #: core/fields/flexible_content.php:481 core/fields/repeater.php:389
792
- #: core/views/meta_box_fields.php:188
793
  msgid "Close Field"
794
  msgstr ""
795
 
796
- #: core/fields/flexible_content.php:481 core/fields/repeater.php:389
797
  msgid "Close Sub Field"
798
  msgstr ""
799
 
800
- #: core/fields/flexible_content.php:495 core/fields/repeater.php:404
801
- #: core/views/meta_box_fields.php:201
802
  msgid "Drag and drop to reorder"
803
  msgstr ""
804
 
805
- #: core/fields/flexible_content.php:496 core/fields/repeater.php:405
806
  msgid "+ Add Sub Field"
807
  msgstr ""
808
 
809
- #: core/fields/flexible_content.php:503 core/fields/repeater.php:459
810
  msgid "Button Label"
811
  msgstr ""
812
 
@@ -838,7 +875,7 @@ msgstr ""
838
  msgid "Image Updated"
839
  msgstr ""
840
 
841
- #: core/fields/gallery.php:262 core/fields/gallery.php:642
842
  #: core/fields/image.php:193
843
  msgid "Add Image"
844
  msgstr ""
@@ -851,7 +888,7 @@ msgstr ""
851
  msgid "List"
852
  msgstr ""
853
 
854
- #: core/fields/gallery.php:266 core/fields/image.php:428
855
  msgid "No images selected"
856
  msgstr ""
857
 
@@ -863,15 +900,19 @@ msgstr ""
863
  msgid "{count} images selected"
864
  msgstr ""
865
 
866
- #: core/fields/gallery.php:585
 
 
 
 
867
  msgid "Image already exists in gallery"
868
  msgstr ""
869
 
870
- #: core/fields/gallery.php:591
871
  msgid "Image Added"
872
  msgstr ""
873
 
874
- #: core/fields/gallery.php:645 core/fields/image.php:556
875
  msgid "Update Image"
876
  msgstr ""
877
 
@@ -899,44 +940,50 @@ msgstr ""
899
  msgid "Image ID"
900
  msgstr ""
901
 
902
- #: core/fields/image.php:524
903
  msgid "Add selected Images"
904
  msgstr ""
905
 
906
- #: core/fields/image.php:553
907
  msgid "Select Image"
908
  msgstr ""
909
 
 
 
 
 
910
  #: core/fields/page_link.php:21
911
  msgid "Page Link"
912
  msgstr ""
913
 
914
- #: core/fields/page_link.php:70 core/fields/post_object.php:216
915
- #: core/fields/relationship.php:314 core/views/meta_box_location.php:48
916
  msgid "Post Type"
917
  msgstr ""
918
 
919
- #: core/fields/page_link.php:98 core/fields/post_object.php:267
920
- #: core/fields/select.php:194
921
  msgid "Allow Null?"
922
  msgstr ""
923
 
924
  #: core/fields/page_link.php:107 core/fields/page_link.php:126
925
- #: core/fields/post_object.php:276 core/fields/post_object.php:295
926
- #: core/fields/select.php:203 core/fields/select.php:222
927
- #: core/fields/wysiwyg.php:104 core/views/meta_box_fields.php:170
 
928
  msgid "Yes"
929
  msgstr ""
930
 
931
  #: core/fields/page_link.php:108 core/fields/page_link.php:127
932
- #: core/fields/post_object.php:277 core/fields/post_object.php:296
933
- #: core/fields/select.php:204 core/fields/select.php:223
934
- #: core/fields/wysiwyg.php:105 core/views/meta_box_fields.php:171
 
935
  msgid "No"
936
  msgstr ""
937
 
938
- #: core/fields/page_link.php:117 core/fields/post_object.php:286
939
- #: core/fields/select.php:213
940
  msgid "Select multiple values?"
941
  msgstr ""
942
 
@@ -944,7 +991,7 @@ msgstr ""
944
  msgid "Post Object"
945
  msgstr ""
946
 
947
- #: core/fields/post_object.php:244 core/fields/relationship.php:343
948
  msgid "Filter from Taxonomy"
949
  msgstr ""
950
 
@@ -952,11 +999,6 @@ msgstr ""
952
  msgid "Radio Button"
953
  msgstr ""
954
 
955
- #: core/fields/radio.php:130 core/fields/select.php:180
956
- #: core/fields/text.php:61 core/fields/textarea.php:62
957
- msgid "Default Value"
958
- msgstr ""
959
-
960
  #: core/fields/radio.php:154
961
  msgid "Vertical"
962
  msgstr ""
@@ -969,11 +1011,11 @@ msgstr ""
969
  msgid "Relationship"
970
  msgstr ""
971
 
972
- #: core/fields/relationship.php:236
973
  msgid "Search"
974
  msgstr ""
975
 
976
- #: core/fields/relationship.php:366
977
  msgid "Maximum posts"
978
  msgstr ""
979
 
@@ -981,23 +1023,35 @@ msgstr ""
981
  msgid "Repeater"
982
  msgstr ""
983
 
984
- #: core/fields/repeater.php:66 core/fields/repeater.php:248
985
  msgid "Add Row"
986
  msgstr ""
987
 
988
- #: core/fields/repeater.php:277
989
  msgid "Repeater Fields"
990
  msgstr ""
991
 
992
- #: core/fields/repeater.php:412
 
 
 
 
 
 
 
 
 
 
 
 
993
  msgid "Minimum Rows"
994
  msgstr ""
995
 
996
- #: core/fields/repeater.php:426
997
  msgid "Maximum Rows"
998
  msgstr ""
999
 
1000
- #: core/fields/repeater.php:450
1001
  msgid "Table (default)"
1002
  msgstr ""
1003
 
@@ -1009,19 +1063,19 @@ msgstr ""
1009
  msgid "Text"
1010
  msgstr ""
1011
 
1012
- #: core/fields/text.php:75 core/fields/textarea.php:76
1013
  msgid "Formatting"
1014
  msgstr ""
1015
 
1016
- #: core/fields/text.php:76
1017
  msgid "Define how to render html tags"
1018
  msgstr ""
1019
 
1020
- #: core/fields/text.php:85 core/fields/textarea.php:86
1021
  msgid "None"
1022
  msgstr ""
1023
 
1024
- #: core/fields/text.php:86 core/fields/textarea.php:88
1025
  msgid "HTML"
1026
  msgstr ""
1027
 
@@ -1053,18 +1107,32 @@ msgstr ""
1053
  msgid "Wysiwyg Editor"
1054
  msgstr ""
1055
 
1056
- #: core/fields/wysiwyg.php:75
1057
  msgid "Toolbar"
1058
  msgstr ""
1059
 
1060
- #: core/fields/wysiwyg.php:86 core/views/meta_box_location.php:47
1061
  msgid "Basic"
1062
  msgstr ""
1063
 
1064
- #: core/fields/wysiwyg.php:94
1065
  msgid "Show Media Upload Buttons?"
1066
  msgstr ""
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: core/views/meta_box_fields.php:26
1069
  msgid "new_field"
1070
  msgstr ""
@@ -1073,25 +1141,25 @@ msgstr ""
1073
  msgid "Move to trash. Are you sure?"
1074
  msgstr ""
1075
 
1076
- #: core/views/meta_box_fields.php:73
 
 
 
 
1077
  msgid ""
1078
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1079
  "first field."
1080
  msgstr ""
1081
 
1082
- #: core/views/meta_box_fields.php:149
1083
- msgid "Field Instructions"
1084
- msgstr ""
1085
-
1086
- #: core/views/meta_box_fields.php:150
1087
  msgid "Instructions for authors. Shown when submitting data"
1088
  msgstr ""
1089
 
1090
- #: core/views/meta_box_fields.php:162
1091
  msgid "Required?"
1092
  msgstr ""
1093
 
1094
- #: core/views/meta_box_fields.php:202
1095
  msgid "+ Add Field"
1096
  msgstr ""
1097
 
@@ -1198,7 +1266,7 @@ msgid "Order No."
1198
  msgstr ""
1199
 
1200
  #: core/views/meta_box_options.php:24
1201
- msgid "Field groups are created in order <br />from lowest to highest."
1202
  msgstr ""
1203
 
1204
  #: core/views/meta_box_options.php:40
@@ -1240,17 +1308,21 @@ msgid "Comments"
1240
  msgstr ""
1241
 
1242
  #: core/views/meta_box_options.php:97
1243
- msgid "Slug"
1244
  msgstr ""
1245
 
1246
  #: core/views/meta_box_options.php:98
1247
- msgid "Author"
1248
  msgstr ""
1249
 
1250
  #: core/views/meta_box_options.php:99
1251
- msgid "Format"
1252
  msgstr ""
1253
 
1254
  #: core/views/meta_box_options.php:100
 
 
 
 
1255
  msgid "Featured Image"
1256
  msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
+ "POT-Creation-Date: 2012-10-04 22:38:59+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: acf.php:286 core/views/meta_box_options.php:94
16
  msgid "Custom Fields"
17
  msgstr ""
18
 
19
+ #: acf.php:307
20
  msgid "Field&nbsp;Groups"
21
  msgstr ""
22
 
23
+ #: acf.php:308 core/controllers/field_groups.php:234
24
  #: core/controllers/upgrade.php:70
25
  msgid "Advanced Custom Fields"
26
  msgstr ""
27
 
28
+ #: acf.php:309 core/fields/flexible_content.php:325
29
  msgid "Add New"
30
  msgstr ""
31
 
32
+ #: acf.php:310
33
  msgid "Add New Field Group"
34
  msgstr ""
35
 
36
+ #: acf.php:311
37
  msgid "Edit Field Group"
38
  msgstr ""
39
 
40
+ #: acf.php:312
41
  msgid "New Field Group"
42
  msgstr ""
43
 
44
+ #: acf.php:313
45
  msgid "View Field Group"
46
  msgstr ""
47
 
48
+ #: acf.php:314
49
  msgid "Search Field Groups"
50
  msgstr ""
51
 
52
+ #: acf.php:315
53
  msgid "No Field Groups found"
54
  msgstr ""
55
 
56
+ #: acf.php:316
57
  msgid "No Field Groups found in Trash"
58
  msgstr ""
59
 
60
+ #: acf.php:351 acf.php:354
61
  msgid "Field group updated."
62
  msgstr ""
63
 
64
+ #: acf.php:352
65
  msgid "Custom field updated."
66
  msgstr ""
67
 
68
+ #: acf.php:353
69
  msgid "Custom field deleted."
70
  msgstr ""
71
 
72
  #. translators: %s: date and time of the revision
73
+ #: acf.php:356
74
  msgid "Field group restored to revision from %s"
75
  msgstr ""
76
 
77
+ #: acf.php:357
78
  msgid "Field group published."
79
  msgstr ""
80
 
81
+ #: acf.php:358
82
  msgid "Field group saved."
83
  msgstr ""
84
 
85
+ #: acf.php:359
86
  msgid "Field group submitted."
87
  msgstr ""
88
 
89
+ #: acf.php:360
90
  msgid "Field group scheduled for."
91
  msgstr ""
92
 
93
+ #: acf.php:361
94
  msgid "Field group draft updated."
95
  msgstr ""
96
 
97
+ #: acf.php:380 core/fields/gallery.php:66 core/fields/gallery.php:229
98
  msgid "Title"
99
  msgstr ""
100
 
101
+ #: acf.php:623
102
  msgid "Error: Field Type does not exist!"
103
  msgstr ""
104
 
105
+ #: acf.php:1709
106
  msgid "Thumbnail"
107
  msgstr ""
108
 
109
+ #: acf.php:1710
110
  msgid "Medium"
111
  msgstr ""
112
 
113
+ #: acf.php:1711
114
  msgid "Large"
115
  msgstr ""
116
 
117
+ #: acf.php:1712 core/fields/wysiwyg.php:105
118
  msgid "Full"
119
  msgstr ""
120
 
121
+ #: core/actions/export.php:26
122
  msgid "No ACF groups selected"
123
  msgstr ""
124
 
125
+ #: core/controllers/field_group.php:148 core/controllers/field_group.php:167
126
+ #: core/controllers/field_groups.php:144
127
  msgid "Fields"
128
  msgstr ""
129
 
131
  msgid "Location"
132
  msgstr ""
133
 
134
+ #: core/controllers/field_group.php:150 core/controllers/field_group.php:427
 
 
 
 
135
  #: core/controllers/options_page.php:62 core/controllers/options_page.php:74
136
  #: core/views/meta_box_location.php:143
137
  msgid "Options"
138
  msgstr ""
139
 
140
+ #: core/controllers/field_group.php:355
 
 
 
 
141
  msgid "Parent Page"
142
  msgstr ""
143
 
144
+ #: core/controllers/field_group.php:356
145
  msgid "Child Page"
146
  msgstr ""
147
 
148
+ #: core/controllers/field_group.php:364
149
  msgid "Default Template"
150
  msgstr ""
151
 
152
+ #: core/controllers/field_group.php:451 core/controllers/field_group.php:472
153
+ #: core/controllers/field_group.php:479 core/fields/page_link.php:76
154
+ #: core/fields/post_object.php:223 core/fields/post_object.php:251
155
+ #: core/fields/relationship.php:392 core/fields/relationship.php:421
156
  msgid "All"
157
  msgstr ""
158
 
159
+ #: core/controllers/field_groups.php:197 core/views/meta_box_options.php:50
160
  msgid "Normal"
161
  msgstr ""
162
 
163
+ #: core/controllers/field_groups.php:198 core/views/meta_box_options.php:51
164
  msgid "Side"
165
  msgstr ""
166
 
167
+ #: core/controllers/field_groups.php:208 core/views/meta_box_options.php:71
168
  msgid "Standard Metabox"
169
  msgstr ""
170
 
171
+ #: core/controllers/field_groups.php:209 core/views/meta_box_options.php:70
172
  msgid "No Metabox"
173
  msgstr ""
174
 
175
+ #: core/controllers/field_groups.php:236
176
  msgid "Changelog"
177
  msgstr ""
178
 
179
+ #: core/controllers/field_groups.php:237
180
  msgid "See what's new in"
181
  msgstr ""
182
 
183
+ #: core/controllers/field_groups.php:239
184
  msgid "Resources"
185
  msgstr ""
186
 
187
+ #: core/controllers/field_groups.php:240
188
  msgid ""
189
  "Read documentation, learn the functions and find some tips &amp; tricks for "
190
  "your next web project."
191
  msgstr ""
192
 
193
+ #: core/controllers/field_groups.php:241
194
  msgid "Visit the ACF website"
195
  msgstr ""
196
 
197
+ #: core/controllers/field_groups.php:246
198
  msgid "Created by"
199
  msgstr ""
200
 
201
+ #: core/controllers/field_groups.php:249
202
  msgid "Vote"
203
  msgstr ""
204
 
205
+ #: core/controllers/field_groups.php:250
206
  msgid "Follow"
207
  msgstr ""
208
 
209
+ #: core/controllers/input.php:528
210
  msgid "Validation Failed. One or more fields below are required."
211
  msgstr ""
212
 
213
+ #: core/controllers/input.php:529
214
  msgid "Add File to Field"
215
  msgstr ""
216
 
217
+ #: core/controllers/input.php:530
218
  msgid "Edit File"
219
  msgstr ""
220
 
221
+ #: core/controllers/input.php:531
222
  msgid "Add Image to Field"
223
  msgstr ""
224
 
225
+ #: core/controllers/input.php:532 core/controllers/input.php:535
226
  msgid "Edit Image"
227
  msgstr ""
228
 
229
+ #: core/controllers/input.php:533
230
  msgid "Maximum values reached ( {max} values )"
231
  msgstr ""
232
 
233
+ #: core/controllers/input.php:534
234
  msgid "Add Image to Gallery"
235
  msgstr ""
236
 
237
+ #: core/controllers/input.php:625
238
  msgid "Attachment updated"
239
  msgstr ""
240
 
241
+ #: core/controllers/options_page.php:121
242
  msgid "Options Updated"
243
  msgstr ""
244
 
245
+ #: core/controllers/options_page.php:251
246
  msgid "No Custom Field Group found for the options page"
247
  msgstr ""
248
 
249
+ #: core/controllers/options_page.php:251
250
  msgid "Create a Custom Field Group"
251
  msgstr ""
252
 
253
+ #: core/controllers/options_page.php:262
254
  msgid "Publish"
255
  msgstr ""
256
 
257
+ #: core/controllers/options_page.php:265
258
  msgid "Save Options"
259
  msgstr ""
260
 
313
  msgstr ""
314
 
315
  #: core/controllers/settings.php:225 core/fields/flexible_content.php:380
316
+ #: core/fields/flexible_content.php:456 core/fields/repeater.php:330
317
+ #: core/fields/repeater.php:406 core/views/meta_box_fields.php:63
318
+ #: core/views/meta_box_fields.php:138
319
  msgid "Field Type"
320
  msgstr ""
321
 
373
  "import plugin."
374
  msgstr ""
375
 
376
+ #: core/controllers/settings.php:316 core/controllers/settings.php:355
377
  msgid "Instructions"
378
  msgstr ""
379
 
415
  msgid "That's it! Happy WordPressing"
416
  msgstr ""
417
 
418
+ #: core/controllers/settings.php:346
419
  msgid "Export XML"
420
  msgstr ""
421
 
422
+ #: core/controllers/settings.php:353
423
  msgid "Export Field Groups to PHP"
424
  msgstr ""
425
 
426
+ #: core/controllers/settings.php:354
427
  msgid "ACF will create the PHP code to include in your theme."
428
  msgstr ""
429
 
430
+ #: core/controllers/settings.php:357 core/controllers/settings.php:474
431
  msgid "Register Field Groups"
432
  msgstr ""
433
 
434
+ #: core/controllers/settings.php:358 core/controllers/settings.php:475
435
  msgid ""
436
  "Registered field groups <b>will not</b> appear in the list of editable field "
437
  "groups. This is useful for including fields in themes."
438
  msgstr ""
439
 
440
+ #: core/controllers/settings.php:359 core/controllers/settings.php:476
441
  msgid ""
442
  "Please note that if you export and register field groups within the same WP, "
443
  "you will see duplicate fields on your edit screens. To fix this, please move "
445
  "functions.php file."
446
  msgstr ""
447
 
448
+ #: core/controllers/settings.php:361
449
  msgid "Select field group(s) from the list and click \"Create PHP\""
450
  msgstr ""
451
 
452
+ #: core/controllers/settings.php:362 core/controllers/settings.php:478
453
  msgid "Copy the PHP code generated"
454
  msgstr ""
455
 
456
+ #: core/controllers/settings.php:363 core/controllers/settings.php:479
457
  msgid "Paste into your functions.php file"
458
  msgstr ""
459
 
460
+ #: core/controllers/settings.php:364 core/controllers/settings.php:480
461
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
462
  msgstr ""
463
 
464
+ #: core/controllers/settings.php:383
465
  msgid "Create PHP"
466
  msgstr ""
467
 
468
+ #: core/controllers/settings.php:469
469
  msgid "Back to settings"
470
  msgstr ""
471
 
472
+ #: core/controllers/settings.php:504
473
  msgid ""
474
  "/**\n"
475
  " * Activate Add-ons\n"
484
  " */"
485
  msgstr ""
486
 
487
+ #: core/controllers/settings.php:519
488
  msgid ""
489
  "/**\n"
490
  " * Register field groups\n"
496
  " */"
497
  msgstr ""
498
 
499
+ #: core/controllers/settings.php:558
500
  msgid "No field groups were selected"
501
  msgstr ""
502
 
503
+ #: core/controllers/settings.php:608
504
  msgid "Advanced Custom Fields Settings"
505
  msgstr ""
506
 
532
  msgid "Upgrade Database"
533
  msgstr ""
534
 
535
+ #: core/controllers/upgrade.php:604
536
  msgid "Modifying field group options 'show on page'"
537
  msgstr ""
538
 
539
+ #: core/controllers/upgrade.php:658
540
  msgid "Modifying field option 'taxonomy'"
541
  msgstr ""
542
 
543
+ #: core/controllers/upgrade.php:755
544
+ msgid "Moving user custom fields from wp_options to wp_usermeta'"
545
+ msgstr ""
546
+
547
  #: core/fields/checkbox.php:21
548
  msgid "Checkbox"
549
  msgstr ""
550
 
551
  #: core/fields/checkbox.php:55 core/fields/radio.php:45
552
+ #: core/fields/select.php:54
553
  msgid "No choices to choose from"
554
  msgstr ""
555
 
556
  #: core/fields/checkbox.php:113 core/fields/radio.php:114
557
+ #: core/fields/select.php:174
558
  msgid "Choices"
559
  msgstr ""
560
 
561
  #: core/fields/checkbox.php:114 core/fields/radio.php:115
562
+ #: core/fields/select.php:175
563
  msgid "Enter your choices one per line"
564
  msgstr ""
565
 
566
  #: core/fields/checkbox.php:116 core/fields/radio.php:117
567
+ #: core/fields/select.php:177
568
  msgid "Red"
569
  msgstr ""
570
 
571
  #: core/fields/checkbox.php:117 core/fields/radio.php:118
572
+ #: core/fields/select.php:178
573
  msgid "Blue"
574
  msgstr ""
575
 
576
  #: core/fields/checkbox.php:119 core/fields/radio.php:120
577
+ #: core/fields/select.php:180
578
  msgid "red : Red"
579
  msgstr ""
580
 
581
  #: core/fields/checkbox.php:120 core/fields/radio.php:121
582
+ #: core/fields/select.php:181
583
  msgid "blue : Blue"
584
  msgstr ""
585
 
587
  msgid "Color Picker"
588
  msgstr ""
589
 
590
+ #: core/fields/color_picker.php:92 core/fields/number.php:65
591
+ #: core/fields/radio.php:130 core/fields/select.php:190
592
+ #: core/fields/text.php:65 core/fields/textarea.php:62
593
+ #: core/fields/wysiwyg.php:81
594
+ msgid "Default Value"
595
+ msgstr ""
596
+
597
+ #: core/fields/color_picker.php:93
598
+ msgid "eg: #ffffff"
599
+ msgstr ""
600
+
601
  #: core/fields/date_picker/date_picker.php:21
602
  msgid "Date Picker"
603
  msgstr ""
604
 
605
+ #: core/fields/date_picker/date_picker.php:106
606
+ msgid "Save format"
607
+ msgstr ""
608
+
609
+ #: core/fields/date_picker/date_picker.php:107
610
+ msgid ""
611
+ "This format will determin the value saved to the database and returned via "
612
+ "the API"
613
+ msgstr ""
614
+
615
+ #: core/fields/date_picker/date_picker.php:108
616
+ msgid "\"yymmdd\" is the most versatile save format. Read more about"
617
+ msgstr ""
618
+
619
+ #: core/fields/date_picker/date_picker.php:108
620
+ #: core/fields/date_picker/date_picker.php:118
621
+ msgid "jQuery date formats"
622
+ msgstr ""
623
+
624
+ #: core/fields/date_picker/date_picker.php:116
625
+ msgid "Display format"
626
  msgstr ""
627
 
628
+ #: core/fields/date_picker/date_picker.php:117
629
+ msgid "This format will be seen by the user when entering a value"
630
  msgstr ""
631
 
632
+ #: core/fields/date_picker/date_picker.php:118
633
+ msgid ""
634
+ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
635
+ "about"
636
+ msgstr ""
637
+
638
+ #: core/fields/file.php:21
639
  msgid "File"
640
  msgstr ""
641
 
642
+ #: core/fields/file.php:49
643
  msgid "File Updated."
644
  msgstr ""
645
 
646
+ #: core/fields/file.php:90 core/fields/flexible_content.php:407
647
  #: core/fields/gallery.php:251 core/fields/gallery.php:281
648
+ #: core/fields/image.php:187 core/fields/repeater.php:356
649
+ #: core/views/meta_box_fields.php:88
650
  msgid "Edit"
651
  msgstr ""
652
 
653
+ #: core/fields/file.php:91 core/fields/gallery.php:250
654
  #: core/fields/gallery.php:280 core/fields/image.php:186
655
  msgid "Remove"
656
  msgstr ""
657
 
658
+ #: core/fields/file.php:196
659
  msgid "No File Selected"
660
  msgstr ""
661
 
662
+ #: core/fields/file.php:196
663
  msgid "Add File"
664
  msgstr ""
665
 
666
+ #: core/fields/file.php:229 core/fields/image.php:223
667
  msgid "Return Value"
668
  msgstr ""
669
 
670
+ #: core/fields/file.php:239
671
+ msgid "File Object"
672
+ msgstr ""
673
+
674
+ #: core/fields/file.php:240
675
  msgid "File URL"
676
  msgstr ""
677
 
678
+ #: core/fields/file.php:241
679
+ msgid "File ID"
680
  msgstr ""
681
 
682
+ #: core/fields/file.php:273 core/fields/image.php:291
683
  msgid "Media attachment updated."
684
  msgstr ""
685
 
686
+ #: core/fields/file.php:407
687
  msgid "No files selected"
688
  msgstr ""
689
 
690
+ #: core/fields/file.php:502
691
  msgid "Add Selected Files"
692
  msgstr ""
693
 
694
+ #: core/fields/file.php:532
695
  msgid "Select File"
696
  msgstr ""
697
 
698
+ #: core/fields/file.php:535
699
  msgid "Update File"
700
  msgstr ""
701
 
707
  msgid "+ Add Row"
708
  msgstr ""
709
 
710
+ #: core/fields/flexible_content.php:313 core/fields/repeater.php:302
711
  #: core/views/meta_box_fields.php:25
712
  msgid "New Field"
713
  msgstr ""
714
 
715
  #: core/fields/flexible_content.php:322 core/fields/radio.php:144
716
+ #: core/fields/repeater.php:523
717
  msgid "Layout"
718
  msgstr ""
719
 
734
  msgstr ""
735
 
736
  #: core/fields/flexible_content.php:326 core/fields/flexible_content.php:410
737
+ #: core/fields/repeater.php:359 core/views/meta_box_fields.php:91
738
  msgid "Delete"
739
  msgstr ""
740
 
754
  msgid "Table"
755
  msgstr ""
756
 
757
+ #: core/fields/flexible_content.php:364 core/fields/repeater.php:534
758
  msgid "Row"
759
  msgstr ""
760
 
761
+ #: core/fields/flexible_content.php:377 core/fields/repeater.php:327
762
  #: core/views/meta_box_fields.php:60
763
  msgid "Field Order"
764
  msgstr ""
765
 
766
  #: core/fields/flexible_content.php:378 core/fields/flexible_content.php:425
767
+ #: core/fields/repeater.php:328 core/fields/repeater.php:375
768
+ #: core/views/meta_box_fields.php:61 core/views/meta_box_fields.php:107
769
  msgid "Field Label"
770
  msgstr ""
771
 
772
  #: core/fields/flexible_content.php:379 core/fields/flexible_content.php:441
773
+ #: core/fields/repeater.php:329 core/fields/repeater.php:391
774
+ #: core/views/meta_box_fields.php:62 core/views/meta_box_fields.php:123
775
  msgid "Field Name"
776
  msgstr ""
777
 
778
+ #: core/fields/flexible_content.php:388 core/fields/repeater.php:338
779
  msgid ""
780
  "No fields. Click the \"+ Add Sub Field button\" to create your first field."
781
  msgstr ""
782
 
783
  #: core/fields/flexible_content.php:404 core/fields/flexible_content.php:407
784
+ #: core/fields/repeater.php:353 core/fields/repeater.php:356
785
+ #: core/views/meta_box_fields.php:85 core/views/meta_box_fields.php:88
786
  msgid "Edit this Field"
787
  msgstr ""
788
 
789
+ #: core/fields/flexible_content.php:408 core/fields/repeater.php:357
790
+ #: core/views/meta_box_fields.php:89
791
  msgid "Read documentation for this field"
792
  msgstr ""
793
 
794
+ #: core/fields/flexible_content.php:408 core/fields/repeater.php:357
795
+ #: core/views/meta_box_fields.php:89
796
  msgid "Docs"
797
  msgstr ""
798
 
799
+ #: core/fields/flexible_content.php:409 core/fields/repeater.php:358
800
+ #: core/views/meta_box_fields.php:90
801
  msgid "Duplicate this Field"
802
  msgstr ""
803
 
804
+ #: core/fields/flexible_content.php:409 core/fields/repeater.php:358
805
+ #: core/views/meta_box_fields.php:90
806
  msgid "Duplicate"
807
  msgstr ""
808
 
809
+ #: core/fields/flexible_content.php:410 core/fields/repeater.php:359
810
+ #: core/views/meta_box_fields.php:91
811
  msgid "Delete this Field"
812
  msgstr ""
813
 
814
+ #: core/fields/flexible_content.php:426 core/fields/repeater.php:376
815
+ #: core/views/meta_box_fields.php:108
816
  msgid "This is the name which will appear on the EDIT page"
817
  msgstr ""
818
 
819
+ #: core/fields/flexible_content.php:442 core/fields/repeater.php:392
820
+ #: core/views/meta_box_fields.php:124
821
  msgid "Single word, no spaces. Underscores and dashes allowed"
822
  msgstr ""
823
 
824
+ #: core/fields/flexible_content.php:476 core/fields/repeater.php:467
825
  msgid "Save Field"
826
  msgstr ""
827
 
828
+ #: core/fields/flexible_content.php:481 core/fields/repeater.php:472
829
+ #: core/views/meta_box_fields.php:190
830
  msgid "Close Field"
831
  msgstr ""
832
 
833
+ #: core/fields/flexible_content.php:481 core/fields/repeater.php:472
834
  msgid "Close Sub Field"
835
  msgstr ""
836
 
837
+ #: core/fields/flexible_content.php:495 core/fields/repeater.php:487
838
+ #: core/views/meta_box_fields.php:203
839
  msgid "Drag and drop to reorder"
840
  msgstr ""
841
 
842
+ #: core/fields/flexible_content.php:496 core/fields/repeater.php:488
843
  msgid "+ Add Sub Field"
844
  msgstr ""
845
 
846
+ #: core/fields/flexible_content.php:503 core/fields/repeater.php:542
847
  msgid "Button Label"
848
  msgstr ""
849
 
875
  msgid "Image Updated"
876
  msgstr ""
877
 
878
+ #: core/fields/gallery.php:262 core/fields/gallery.php:669
879
  #: core/fields/image.php:193
880
  msgid "Add Image"
881
  msgstr ""
888
  msgid "List"
889
  msgstr ""
890
 
891
+ #: core/fields/gallery.php:266 core/fields/image.php:429
892
  msgid "No images selected"
893
  msgstr ""
894
 
900
  msgid "{count} images selected"
901
  msgstr ""
902
 
903
+ #: core/fields/gallery.php:591
904
+ msgid "Added"
905
+ msgstr ""
906
+
907
+ #: core/fields/gallery.php:611
908
  msgid "Image already exists in gallery"
909
  msgstr ""
910
 
911
+ #: core/fields/gallery.php:617
912
  msgid "Image Added"
913
  msgstr ""
914
 
915
+ #: core/fields/gallery.php:672 core/fields/image.php:557
916
  msgid "Update Image"
917
  msgstr ""
918
 
940
  msgid "Image ID"
941
  msgstr ""
942
 
943
+ #: core/fields/image.php:525
944
  msgid "Add selected Images"
945
  msgstr ""
946
 
947
+ #: core/fields/image.php:554
948
  msgid "Select Image"
949
  msgstr ""
950
 
951
+ #: core/fields/number.php:21
952
+ msgid "Number"
953
+ msgstr ""
954
+
955
  #: core/fields/page_link.php:21
956
  msgid "Page Link"
957
  msgstr ""
958
 
959
+ #: core/fields/page_link.php:70 core/fields/post_object.php:217
960
+ #: core/fields/relationship.php:386 core/views/meta_box_location.php:48
961
  msgid "Post Type"
962
  msgstr ""
963
 
964
+ #: core/fields/page_link.php:98 core/fields/post_object.php:268
965
+ #: core/fields/select.php:204
966
  msgid "Allow Null?"
967
  msgstr ""
968
 
969
  #: core/fields/page_link.php:107 core/fields/page_link.php:126
970
+ #: core/fields/post_object.php:277 core/fields/post_object.php:296
971
+ #: core/fields/select.php:213 core/fields/select.php:232
972
+ #: core/fields/wysiwyg.php:124 core/fields/wysiwyg.php:145
973
+ #: core/views/meta_box_fields.php:172
974
  msgid "Yes"
975
  msgstr ""
976
 
977
  #: core/fields/page_link.php:108 core/fields/page_link.php:127
978
+ #: core/fields/post_object.php:278 core/fields/post_object.php:297
979
+ #: core/fields/select.php:214 core/fields/select.php:233
980
+ #: core/fields/wysiwyg.php:125 core/fields/wysiwyg.php:146
981
+ #: core/views/meta_box_fields.php:173
982
  msgid "No"
983
  msgstr ""
984
 
985
+ #: core/fields/page_link.php:117 core/fields/post_object.php:287
986
+ #: core/fields/select.php:223
987
  msgid "Select multiple values?"
988
  msgstr ""
989
 
991
  msgid "Post Object"
992
  msgstr ""
993
 
994
+ #: core/fields/post_object.php:245 core/fields/relationship.php:415
995
  msgid "Filter from Taxonomy"
996
  msgstr ""
997
 
999
  msgid "Radio Button"
1000
  msgstr ""
1001
 
 
 
 
 
 
1002
  #: core/fields/radio.php:154
1003
  msgid "Vertical"
1004
  msgstr ""
1011
  msgid "Relationship"
1012
  msgstr ""
1013
 
1014
+ #: core/fields/relationship.php:288
1015
  msgid "Search"
1016
  msgstr ""
1017
 
1018
+ #: core/fields/relationship.php:438
1019
  msgid "Maximum posts"
1020
  msgstr ""
1021
 
1023
  msgid "Repeater"
1024
  msgstr ""
1025
 
1026
+ #: core/fields/repeater.php:66 core/fields/repeater.php:289
1027
  msgid "Add Row"
1028
  msgstr ""
1029
 
1030
+ #: core/fields/repeater.php:319
1031
  msgid "Repeater Fields"
1032
  msgstr ""
1033
 
1034
+ #: core/fields/repeater.php:420 core/views/meta_box_fields.php:151
1035
+ msgid "Field Instructions"
1036
+ msgstr ""
1037
+
1038
+ #: core/fields/repeater.php:440
1039
+ msgid "Column Width"
1040
+ msgstr ""
1041
+
1042
+ #: core/fields/repeater.php:441
1043
+ msgid "Leave blank for auto"
1044
+ msgstr ""
1045
+
1046
+ #: core/fields/repeater.php:495
1047
  msgid "Minimum Rows"
1048
  msgstr ""
1049
 
1050
+ #: core/fields/repeater.php:509
1051
  msgid "Maximum Rows"
1052
  msgstr ""
1053
 
1054
+ #: core/fields/repeater.php:533
1055
  msgid "Table (default)"
1056
  msgstr ""
1057
 
1063
  msgid "Text"
1064
  msgstr ""
1065
 
1066
+ #: core/fields/text.php:79 core/fields/textarea.php:76
1067
  msgid "Formatting"
1068
  msgstr ""
1069
 
1070
+ #: core/fields/text.php:80
1071
  msgid "Define how to render html tags"
1072
  msgstr ""
1073
 
1074
+ #: core/fields/text.php:89 core/fields/textarea.php:86
1075
  msgid "None"
1076
  msgstr ""
1077
 
1078
+ #: core/fields/text.php:90 core/fields/textarea.php:88
1079
  msgid "HTML"
1080
  msgstr ""
1081
 
1107
  msgid "Wysiwyg Editor"
1108
  msgstr ""
1109
 
1110
+ #: core/fields/wysiwyg.php:95
1111
  msgid "Toolbar"
1112
  msgstr ""
1113
 
1114
+ #: core/fields/wysiwyg.php:106 core/views/meta_box_location.php:47
1115
  msgid "Basic"
1116
  msgstr ""
1117
 
1118
+ #: core/fields/wysiwyg.php:114
1119
  msgid "Show Media Upload Buttons?"
1120
  msgstr ""
1121
 
1122
+ #: core/fields/wysiwyg.php:133
1123
+ msgid "Run filter \"the_content\"?"
1124
+ msgstr ""
1125
+
1126
+ #: core/fields/wysiwyg.php:134
1127
+ msgid "Enable this filter to use shortcodes within the WYSIWYG field"
1128
+ msgstr ""
1129
+
1130
+ #: core/fields/wysiwyg.php:135
1131
+ msgid ""
1132
+ "Disable this filter if you encounter recursive template problems with "
1133
+ "plugins / themes"
1134
+ msgstr ""
1135
+
1136
  #: core/views/meta_box_fields.php:26
1137
  msgid "new_field"
1138
  msgstr ""
1141
  msgid "Move to trash. Are you sure?"
1142
  msgstr ""
1143
 
1144
+ #: core/views/meta_box_fields.php:64
1145
+ msgid "Field Key"
1146
+ msgstr ""
1147
+
1148
+ #: core/views/meta_box_fields.php:74
1149
  msgid ""
1150
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1151
  "first field."
1152
  msgstr ""
1153
 
1154
+ #: core/views/meta_box_fields.php:152
 
 
 
 
1155
  msgid "Instructions for authors. Shown when submitting data"
1156
  msgstr ""
1157
 
1158
+ #: core/views/meta_box_fields.php:164
1159
  msgid "Required?"
1160
  msgstr ""
1161
 
1162
+ #: core/views/meta_box_fields.php:204
1163
  msgid "+ Add Field"
1164
  msgstr ""
1165
 
1266
  msgstr ""
1267
 
1268
  #: core/views/meta_box_options.php:24
1269
+ msgid "Field groups are created in order <br />from lowest to highest"
1270
  msgstr ""
1271
 
1272
  #: core/views/meta_box_options.php:40
1308
  msgstr ""
1309
 
1310
  #: core/views/meta_box_options.php:97
1311
+ msgid "Revisions"
1312
  msgstr ""
1313
 
1314
  #: core/views/meta_box_options.php:98
1315
+ msgid "Slug"
1316
  msgstr ""
1317
 
1318
  #: core/views/meta_box_options.php:99
1319
+ msgid "Author"
1320
  msgstr ""
1321
 
1322
  #: core/views/meta_box_options.php:100
1323
+ msgid "Format"
1324
+ msgstr ""
1325
+
1326
+ #: core/views/meta_box_options.php:101
1327
  msgid "Featured Image"
1328
  msgstr ""
readme.txt CHANGED
@@ -1,9 +1,10 @@
1
  === Advanced Custom Fields ===
2
  Contributors: Elliot Condon
3
  Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
4
- Requires at least: 3.0
5
  Tested up to: 3.4.2
6
- Stable tag: 3.4.3
 
7
 
8
  Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress.Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker and more!
9
 
@@ -74,6 +75,7 @@ http://support.advancedcustomfields.com/
74
 
75
 
76
  == Screenshots ==
 
77
  1. Creating the Advanced Custom Fields
78
 
79
  2. Adding the Custom Fields to a page and hiding the default meta boxes
@@ -85,6 +87,21 @@ http://support.advancedcustomfields.com/
85
 
86
  == Changelog ==
87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  = 3.4.3 =
89
  * [Fixed] Fix PHP registered field groups not showing via AJAX - http://support.advancedcustomfields.com/discussion/3143/exported-php-code-doesnt-work-with-post-formats
90
  * [Added] Add new return value for file { file object
1
  === Advanced Custom Fields ===
2
  Contributors: Elliot Condon
3
  Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
4
+ Requires at least: 3.0.0
5
  Tested up to: 3.4.2
6
+ License: GPLv2 or later
7
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
 
9
  Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress.Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker and more!
10
 
75
 
76
 
77
  == Screenshots ==
78
+
79
  1. Creating the Advanced Custom Fields
80
 
81
  2. Adding the Custom Fields to a page and hiding the default meta boxes
87
 
88
  == Changelog ==
89
 
90
+ = 3.5.0 =
91
+ * [Fixed] Fix missing title of PHP registered field groups on the media edit page
92
+ * [Added] Add revision support
93
+ * [Added] Allow save draft to bypass validation
94
+ * [Updated] Update Czech translation
95
+ * [Fixed] Fix XML export issue with line break - http://support.advancedcustomfields.com/discussion/3219/export-and-import-problem-mixed-line-endings
96
+ * [Fixed] Fix export to XML abspath issue - http://support.advancedcustomfields.com/discussion/2641/require-paths-in-export-php
97
+ * Update location rules for post_type - http://support.advancedcustomfields.com/discussion/3251/fields-on-a-non-public-post-type
98
+ * Add "revisions" to list of hide-able options
99
+ * [Fixed] Fix bug with custom post_id param in acf_form - http://support.advancedcustomfields.com/discussion/2991/acf_form-outside-loop
100
+ * [Fixed] Fix bug in has_sub_field function where new values are not loaded for different posts if the field name is the same - http://support.advancedcustomfields.com/discussion/3331/repeater-field-templating-help-categories
101
+ * [Updated] Allow get_field to use field_key or field_name
102
+ * [Fixed] Fix update_field bug with nested repeaters
103
+ * [Updated] Update German translation files - thanks to Martin Lettner
104
+
105
  = 3.4.3 =
106
  * [Fixed] Fix PHP registered field groups not showing via AJAX - http://support.advancedcustomfields.com/discussion/3143/exported-php-code-doesnt-work-with-post-formats
107
  * [Added] Add new return value for file { file object