Formidable Forms – Form Builder for WordPress - Version 3.0.03

Version Description

  • Enhancement: Use relative path in the form css now that the css is inside the plugin. Now font icons will continue working without a style save when the site url is changed.
  • Fix: Save a different stylesheet file for each site in a network to prevent them from saving over eachother
  • Fix: Use auto field height when grids are off to prevent tiny fields on some sites
  • Fix: Correctly set default email message to 100% width
  • Fix: Fields with a layout class and labels set to right or left were not aligned right with CSS grids off
  • Fix: Some field shortcodes weren't being processed when the whitespace was abnormal from some cases of copy/paste
  • Fix: Set the width of the box with field types on form builder page a bit differently to prevent it from being too small when the page includes a lot of admin notices at the top
  • Remove a few 100% translations from the plugin so WordPress can handle it
Download this release

Release Info

Developer sswells
Plugin Icon 128x128 Formidable Forms – Form Builder for WordPress
Version 3.0.03
Comparing to
See all releases

Code changes from version 3.0.02 to 3.0.03

classes/controllers/FrmFormsController.php CHANGED
@@ -1235,7 +1235,7 @@ class FrmFormsController {
1235
  private static function is_viewable_draft_form( $form ) {
1236
  global $post;
1237
  $frm_settings = FrmAppHelper::get_settings();
1238
- return $form->status == 'draft' && current_user_can( 'frm_edit_forms' ) && ( ! $post || $post->ID != $frm_settings->preview_page_id ) && ! FrmAppHelper::is_preview_page();
1239
  }
1240
 
1241
  private static function user_should_login( $form ) {
1235
  private static function is_viewable_draft_form( $form ) {
1236
  global $post;
1237
  $frm_settings = FrmAppHelper::get_settings();
1238
+ return $form->status == 'draft' && current_user_can( 'frm_edit_forms' ) && ! FrmAppHelper::is_preview_page();
1239
  }
1240
 
1241
  private static function user_should_login( $form ) {
classes/controllers/FrmStylesController.php CHANGED
@@ -125,7 +125,7 @@ class FrmStylesController {
125
  }
126
 
127
  private static function get_url_to_custom_style( &$stylesheet_urls ) {
128
- $file_name = '/css/formidableforms.css';
129
  if ( is_readable( FrmAppHelper::plugin_path() . $file_name ) ) {
130
  $url = FrmAppHelper::plugin_url() . $file_name;
131
  } else {
@@ -134,6 +134,21 @@ class FrmStylesController {
134
  $stylesheet_urls['formidable'] = $url;
135
  }
136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
  private static function get_css_version( $css_key, $version ) {
138
  if ( 'formidable' == $css_key ) {
139
  $this_version = get_option( 'frm_last_style_update' );
125
  }
126
 
127
  private static function get_url_to_custom_style( &$stylesheet_urls ) {
128
+ $file_name = '/css/' . self::get_file_name();
129
  if ( is_readable( FrmAppHelper::plugin_path() . $file_name ) ) {
130
  $url = FrmAppHelper::plugin_url() . $file_name;
131
  } else {
134
  $stylesheet_urls['formidable'] = $url;
135
  }
136
 
137
+ /**
138
+ * Use a different stylesheet per site in a multisite install
139
+ *
140
+ * @since 3.0.03
141
+ */
142
+ public static function get_file_name() {
143
+ if ( is_multisite() ) {
144
+ $blog_id = get_current_blog_id();
145
+ $name = 'formidableforms' . absint( $blog_id ) . '.css';
146
+ } else {
147
+ $name = 'formidableforms.css';
148
+ }
149
+ return $name;
150
+ }
151
+
152
  private static function get_css_version( $css_key, $version ) {
153
  if ( 'formidable' == $css_key ) {
154
  $this_version = get_option( 'frm_last_style_update' );
classes/helpers/FrmAppHelper.php CHANGED
@@ -4,14 +4,14 @@ if ( ! defined('ABSPATH') ) {
4
  }
5
 
6
  class FrmAppHelper {
7
- public static $db_version = 78; //version of the database we are moving to
8
  public static $pro_db_version = 37; //deprecated
9
  public static $font_version = 3;
10
 
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '3.0.02';
15
 
16
  /**
17
  * @since 1.07.02
4
  }
5
 
6
  class FrmAppHelper {
7
+ public static $db_version = 79; //version of the database we are moving to
8
  public static $pro_db_version = 37; //deprecated
9
  public static $font_version = 3;
10
 
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '3.0.03';
15
 
16
  /**
17
  * @since 1.07.02
classes/helpers/FrmFieldsHelper.php CHANGED
@@ -170,7 +170,7 @@ class FrmFieldsHelper {
170
  * @since 3.0
171
  *
172
  * @param string $setting
173
- * @param mixed $current
174
  */
175
  private static function get_posted_field_setting( $setting, &$value ) {
176
  if ( isset( $_POST['field_options'][ $setting ] ) ) {
170
  * @since 3.0
171
  *
172
  * @param string $setting
173
+ * @param mixed $value
174
  */
175
  private static function get_posted_field_setting( $setting, &$value ) {
176
  if ( isset( $_POST['field_options'][ $setting ] ) ) {
classes/helpers/FrmFormsHelper.php CHANGED
@@ -653,7 +653,7 @@ BEFORE_HTML;
653
  */
654
  public static function show_error( $args ) {
655
  // remove any blank messages
656
- $args['errors'] = array_filter( $args['errors'] );
657
 
658
  $line_break_first = $args['show_img'];
659
  foreach ( $args['errors'] as $error_key => $error ) {
@@ -817,19 +817,19 @@ BEFORE_HTML;
817
  'restore' => array(
818
  'label' => __( 'Restore from Trash', 'formidable' ),
819
  'short' => __( 'Restore', 'formidable' ),
820
- 'url' => wp_nonce_url( $base_url . '&frm_action=untrash', 'untrash_form_' . $id ),
821
  ),
822
  'trash' => array(
823
  'label' => __( 'Move Form to Trash', 'formidable' ),
824
  'short' => __( 'Trash', 'formidable' ),
825
- 'url' => wp_nonce_url( $base_url . '&frm_action=trash', 'trash_form_' . $id ),
826
  'icon' => 'frm_icon_font frm_delete_icon',
827
  'data' => array( 'frmverify' => __( 'Are you sure?', 'formidable' ) ),
828
  ),
829
  'delete' => array(
830
  'label' => __( 'Delete Permanently', 'formidable' ),
831
  'short' => __( 'Delete', 'formidable' ),
832
- 'url' => wp_nonce_url( $base_url . '&frm_action=destroy', 'destroy_form_' . $id ),
833
  'confirm' => __( 'Are you sure you want to delete this form and all its entries?', 'formidable' ),
834
  'icon' => 'frm_icon_font frm_delete_icon',
835
  'data' => array( 'frmverify' => __( 'Delete form & entries?', 'formidable' ) ),
653
  */
654
  public static function show_error( $args ) {
655
  // remove any blank messages
656
+ $args['errors'] = array_filter( (array) $args['errors'] );
657
 
658
  $line_break_first = $args['show_img'];
659
  foreach ( $args['errors'] as $error_key => $error ) {
817
  'restore' => array(
818
  'label' => __( 'Restore from Trash', 'formidable' ),
819
  'short' => __( 'Restore', 'formidable' ),
820
+ 'url' => wp_nonce_url( $base_url . '&frm_action=untrash', 'untrash_form_' . absint( $id ) ),
821
  ),
822
  'trash' => array(
823
  'label' => __( 'Move Form to Trash', 'formidable' ),
824
  'short' => __( 'Trash', 'formidable' ),
825
+ 'url' => wp_nonce_url( $base_url . '&frm_action=trash', 'trash_form_' . absint( $id ) ),
826
  'icon' => 'frm_icon_font frm_delete_icon',
827
  'data' => array( 'frmverify' => __( 'Are you sure?', 'formidable' ) ),
828
  ),
829
  'delete' => array(
830
  'label' => __( 'Delete Permanently', 'formidable' ),
831
  'short' => __( 'Delete', 'formidable' ),
832
+ 'url' => wp_nonce_url( $base_url . '&frm_action=destroy', 'destroy_form_' . absint( $id ) ),
833
  'confirm' => __( 'Are you sure you want to delete this form and all its entries?', 'formidable' ),
834
  'icon' => 'frm_icon_font frm_delete_icon',
835
  'data' => array( 'frmverify' => __( 'Delete form & entries?', 'formidable' ) ),
classes/helpers/FrmShortcodeHelper.php CHANGED
@@ -59,7 +59,8 @@ class FrmShortcodeHelper {
59
  if ( ! empty( $shortcodes[ $with_tags ][ $short_key ] ) ) {
60
  $tag = str_replace( '[' . $prefix, '', $shortcodes[0][ $short_key ] );
61
  $tag = str_replace(']', '', $tag);
62
- $tags = explode(' ', $tag);
 
63
  if ( is_array($tags) ) {
64
  $tag = $tags[0];
65
  }
59
  if ( ! empty( $shortcodes[ $with_tags ][ $short_key ] ) ) {
60
  $tag = str_replace( '[' . $prefix, '', $shortcodes[0][ $short_key ] );
61
  $tag = str_replace(']', '', $tag);
62
+ $tag = str_replace( chr( 194 ) . chr( 160 ), ' ', $tag );
63
+ $tags = preg_split( '/\s+/', $tag, 2 );
64
  if ( is_array($tags) ) {
65
  $tag = $tags[0];
66
  }
classes/models/FrmCreateFile.php CHANGED
@@ -75,7 +75,6 @@ class FrmCreateFile {
75
  * @since 3.0
76
  *
77
  * @param array $file_names And array of file paths
78
- * @param string $new_location The path for the file to be saved
79
  */
80
  public function combine_files( $file_names ) {
81
  if ( $this->has_permission ) {
75
  * @since 3.0
76
  *
77
  * @param array $file_names And array of file paths
 
78
  */
79
  public function combine_files( $file_names ) {
80
  if ( $this->has_permission ) {
classes/models/FrmEDD_SL_Plugin_Updater.php CHANGED
@@ -20,6 +20,7 @@ class FrmEDD_SL_Plugin_Updater {
20
  private $version = '';
21
  private $wp_override = false;
22
  private $beta = false;
 
23
 
24
  /**
25
  * Class constructor.
20
  private $version = '';
21
  private $wp_override = false;
22
  private $beta = false;
23
+ private $cache_key = '';
24
 
25
  /**
26
  * Class constructor.
classes/models/FrmEntryValidate.php CHANGED
@@ -95,8 +95,9 @@ class FrmEntryValidate {
95
 
96
  FrmEntriesHelper::set_posted_value( $posted_field, $value, $args );
97
 
 
 
98
  if ( $value != '' ) {
99
- self::validate_field_types( $errors, $posted_field, $value, $args );
100
  self::validate_phone_field( $errors, $posted_field, $value, $args );
101
  }
102
 
95
 
96
  FrmEntriesHelper::set_posted_value( $posted_field, $value, $args );
97
 
98
+ self::validate_field_types( $errors, $posted_field, $value, $args );
99
+
100
  if ( $value != '' ) {
 
101
  self::validate_phone_field( $errors, $posted_field, $value, $args );
102
  }
103
 
classes/models/FrmField.php CHANGED
@@ -887,7 +887,7 @@ class FrmField {
887
  *
888
  * @since 3.0
889
  *
890
- * @param array $field
891
  * @return boolean true if field type is radio or Dynamic radio
892
  */
893
  public static function is_radio( $field ) {
@@ -899,7 +899,7 @@ class FrmField {
899
  *
900
  * @since 3.0
901
  *
902
- * @param array $field
903
  * @return boolean true if field type is checkbox or Dynamic checkbox
904
  */
905
  public static function is_checkbox( $field ) {
887
  *
888
  * @since 3.0
889
  *
890
+ * @param array|object $field
891
  * @return boolean true if field type is radio or Dynamic radio
892
  */
893
  public static function is_radio( $field ) {
899
  *
900
  * @since 3.0
901
  *
902
+ * @param array|object $field
903
  * @return boolean true if field type is checkbox or Dynamic checkbox
904
  */
905
  public static function is_checkbox( $field ) {
classes/models/FrmFieldFormHtml.php CHANGED
@@ -186,7 +186,7 @@ class FrmFieldFormHtml {
186
  $description = $this->field_obj->get_field_column('description');
187
  if ( $description != '' ) {
188
 
189
- $description_html = preg_match_all( '/(\[if\s+description\])(.*?)(\[\/if\s+description\])/mis', $this->html, $inner_html );
190
  if ( isset( $inner_html[2] ) && is_string( $inner_html[2] ) ) {
191
  $has_id = strpos( $inner_html[2], ' id=' );
192
  if ( ! $has_id ) {
186
  $description = $this->field_obj->get_field_column('description');
187
  if ( $description != '' ) {
188
 
189
+ preg_match_all( '/(\[if\s+description\])(.*?)(\[\/if\s+description\])/mis', $this->html, $inner_html );
190
  if ( isset( $inner_html[2] ) && is_string( $inner_html[2] ) ) {
191
  $has_id = strpos( $inner_html[2], ' id=' );
192
  if ( ! $has_id ) {
classes/models/FrmStyle.php CHANGED
@@ -118,7 +118,7 @@ class FrmStyle {
118
  $css = $this->get_css_content( $filename );
119
 
120
  $create_file = new FrmCreateFile( array(
121
- 'file_name' => 'formidableforms.css',
122
  'new_file_path' => FrmAppHelper::plugin_path() . '/css',
123
  ) );
124
  $create_file->create_file( $css );
118
  $css = $this->get_css_content( $filename );
119
 
120
  $create_file = new FrmCreateFile( array(
121
+ 'file_name' => FrmStylesController::get_file_name(),
122
  'new_file_path' => FrmAppHelper::plugin_path() . '/css',
123
  ) );
124
  $create_file->create_file( $css );
classes/models/FrmTableHTMLGenerator.php CHANGED
@@ -232,7 +232,7 @@ class FrmTableHTMLGenerator {
232
  * @return string
233
  */
234
  public function generate_table_header() {
235
- return '<table cellspacing="0"' . $this->table_style . '><tbody>' . "\r\n";
236
  }
237
 
238
  /**
232
  * @return string
233
  */
234
  public function generate_table_header() {
235
+ return '<table cellspacing="0" ' . $this->table_style . '><tbody>' . "\r\n";
236
  }
237
 
238
  /**
classes/models/fields/FrmFieldType.php CHANGED
@@ -403,7 +403,7 @@ DEFAULT_HTML;
403
  }
404
 
405
  protected function get_field_scripts_hook( $args ) {
406
- $form_id = isset( $args['parent_field_id'] ) && $args['parent_field_id'] ? $args['parent_field_id'] : $args['form']->id;
407
  do_action( 'frm_get_field_scripts', $this->field, $args['form'], $form_id );
408
  }
409
 
@@ -700,7 +700,7 @@ DEFAULT_HTML;
700
  *
701
  * @param string|array $value
702
  *
703
- * @return string|array
704
  */
705
  public function set_value_before_save( $value ) {
706
  return $value;
403
  }
404
 
405
  protected function get_field_scripts_hook( $args ) {
406
+ $form_id = isset( $args['parent_form_id'] ) && $args['parent_form_id'] ? $args['parent_form_id'] : $args['form']->id;
407
  do_action( 'frm_get_field_scripts', $this->field, $args['form'], $form_id );
408
  }
409
 
700
  *
701
  * @param string|array $value
702
  *
703
+ * @return string|array|float
704
  */
705
  public function set_value_before_save( $value ) {
706
  return $value;
classes/models/fields/FrmFieldUrl.php CHANGED
@@ -57,10 +57,14 @@ class FrmFieldUrl extends FrmFieldType {
57
 
58
  FrmEntriesHelper::set_posted_value( $this->field, $value, $args );
59
 
 
 
60
  // validate the url format
61
  if ( ! preg_match( '/^http(s)?:\/\/(?:localhost|(?:[\da-z\.-]+\.[\da-z\.-]+))/i', $value ) ) {
62
  $errors[ 'field' . $args['id'] ] = FrmFieldsHelper::get_error_msg( $this->field, 'invalid' );
63
  }
 
 
64
  }
65
 
66
  protected function prepare_display_value( $value, $atts ) {
57
 
58
  FrmEntriesHelper::set_posted_value( $this->field, $value, $args );
59
 
60
+ $errors = array();
61
+
62
  // validate the url format
63
  if ( ! preg_match( '/^http(s)?:\/\/(?:localhost|(?:[\da-z\.-]+\.[\da-z\.-]+))/i', $value ) ) {
64
  $errors[ 'field' . $args['id'] ] = FrmFieldsHelper::get_error_msg( $this->field, 'invalid' );
65
  }
66
+
67
+ return $errors;
68
  }
69
 
70
  protected function prepare_display_value( $value, $atts ) {
css/_single_theme.css.php CHANGED
@@ -185,6 +185,9 @@ $arrow_icons = FrmStylesHelper::arrow_icons();
185
 
186
  /* Left and right labels */
187
  <?php
 
 
 
188
  if ( '' === $field_height || 'auto' === $field_height ) {
189
  foreach ( array( 'left', 'right', 'inline' ) as $alignit ) {
190
  ?>
@@ -199,7 +202,11 @@ if ( '' === $field_height || 'auto' === $field_height ) {
199
  .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container select,
200
  <?php } ?>
201
  .<?php echo esc_html( $style_class ); ?> .frm_left_container select{
202
- height:fit-content<?php echo esc_html( $important ) ?>;
 
 
 
 
203
  }
204
  <?php } ?>
205
 
185
 
186
  /* Left and right labels */
187
  <?php
188
+
189
+ $frm_settings = FrmAppHelper::get_settings();
190
+
191
  if ( '' === $field_height || 'auto' === $field_height ) {
192
  foreach ( array( 'left', 'right', 'inline' ) as $alignit ) {
193
  ?>
202
  .<?php echo esc_html( $style_class ); ?> .frm_<?php echo esc_html( $alignit ); ?>_container select,
203
  <?php } ?>
204
  .<?php echo esc_html( $style_class ); ?> .frm_left_container select{
205
+ <?php if ( $frm_settings->old_css ) { ?>
206
+ height:auto<?php echo esc_html( $important ) ?>;
207
+ <?php } else { ?>
208
+ height:fit-content<?php echo esc_html( $important ) ?>;
209
+ <?php } ?>
210
  }
211
  <?php } ?>
212
 
css/custom_theme.css.php CHANGED
@@ -516,12 +516,12 @@ table.form_results.with_frm_style tr.frm_odd,
516
  }
517
 
518
  .frm-loading-img{
519
- background:url(<?php echo FrmAppHelper::relative_plugin_url() ?>/images/ajax_loader.gif) no-repeat center center;
520
  padding:6px 12px;
521
  }
522
 
523
  select.frm_loading_lookup{
524
- background-image: url(<?php echo FrmAppHelper::relative_plugin_url() ?>/images/ajax_loader.gif) !important;
525
  background-position: 10px;
526
  background-repeat: no-repeat;
527
  color: transparent !important;
@@ -980,8 +980,8 @@ select.frm_loading_lookup{
980
  /* Fonts */
981
  @font-face {
982
  font-family:'s11-fp';
983
- src:url('<?php echo FrmAppHelper::relative_plugin_url() ?>/fonts/s11-fp.eot?v=<?php echo esc_attr( FrmAppHelper::$font_version ); ?>');
984
- src:local('☺'), url('<?php echo FrmAppHelper::relative_plugin_url() ?>/fonts/s11-fp.woff?v=<?php echo esc_attr( FrmAppHelper::$font_version ); ?>') format('woff'), url('<?php echo FrmAppHelper::relative_plugin_url() ?>/fonts/s11-fp.ttf?v=<?php echo esc_attr( FrmAppHelper::$font_version ); ?>') format('truetype'), url('<?php echo FrmAppHelper::relative_plugin_url() ?>/fonts/s11-fp.svg?v=<?php echo esc_attr( FrmAppHelper::$font_version ); ?>') format('svg');
985
  font-weight:normal;
986
  font-style:normal;
987
  }
516
  }
517
 
518
  .frm-loading-img{
519
+ background:url(../images/ajax_loader.gif) no-repeat center center;
520
  padding:6px 12px;
521
  }
522
 
523
  select.frm_loading_lookup{
524
+ background-image: url(../images/ajax_loader.gif) !important;
525
  background-position: 10px;
526
  background-repeat: no-repeat;
527
  color: transparent !important;
980
  /* Fonts */
981
  @font-face {
982
  font-family:'s11-fp';
983
+ src:url('../fonts/s11-fp.eot?v=<?php echo esc_attr( FrmAppHelper::$font_version ); ?>');
984
+ src:local('☺'), url('../fonts/s11-fp.woff?v=<?php echo esc_attr( FrmAppHelper::$font_version ); ?>') format('woff'), url('../fonts/s11-fp.ttf?v=<?php echo esc_attr( FrmAppHelper::$font_version ); ?>') format('truetype'), url('../fonts/s11-fp.svg?v=<?php echo esc_attr( FrmAppHelper::$font_version ); ?>') format('svg');
985
  font-weight:normal;
986
  font-style:normal;
987
  }
css/frm_admin.css CHANGED
@@ -2197,7 +2197,7 @@ tr.frm_options_heading td{
2197
  .frm_no_section_fields{
2198
  text-align:center;
2199
  position:absolute;
2200
- width:100%;
2201
  color: #808080;
2202
  font-size:16px;
2203
  }
2197
  .frm_no_section_fields{
2198
  text-align:center;
2199
  position:absolute;
2200
+ width:95%;
2201
  color: #808080;
2202
  font-size:16px;
2203
  }
css/frm_old_grids.css CHANGED
@@ -178,9 +178,6 @@
178
  width:10.31%;
179
  }
180
 
181
- .frm_form_field.frm_inline_container,
182
- .frm_form_field.frm_right_container,
183
- .frm_form_field.frm_left_container,
184
  .frm_form_field.frm_left_inline,
185
  .frm_form_field.frm_first_inline,
186
  .frm_form_field.frm_inline,
@@ -202,7 +199,6 @@
202
  width:auto !important;
203
  }
204
 
205
- .frm_repeat_sec,
206
  .frm_combo_inputs_container,
207
  .frm_grid_container,
208
  .frm_form_fields .frm_section_heading,
178
  width:10.31%;
179
  }
180
 
 
 
 
181
  .frm_form_field.frm_left_inline,
182
  .frm_form_field.frm_first_inline,
183
  .frm_form_field.frm_inline,
199
  width:auto !important;
200
  }
201
 
 
202
  .frm_combo_inputs_container,
203
  .frm_grid_container,
204
  .frm_form_fields .frm_section_heading,
formidable.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
- Version: 3.0.02
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
+ Version: 3.0.03
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
js/formidable_admin.js CHANGED
@@ -85,8 +85,9 @@ function frmAdminBuildJS(){
85
  var fixedBox = document.getElementById('frm-fixed-panel');
86
  if ( fixedBox !== null ) {
87
  var startPos = document.getElementById('frm_set_height_ele').getBoundingClientRect().top;
 
88
  var totalHeight = window.innerHeight;
89
- fixedBox.style.maxHeight = ( totalHeight - startPos ) +'px';
90
  }
91
  }
92
 
85
  var fixedBox = document.getElementById('frm-fixed-panel');
86
  if ( fixedBox !== null ) {
87
  var startPos = document.getElementById('frm_set_height_ele').getBoundingClientRect().top;
88
+ var topSidebar = document.getElementById('frm-fixed').getBoundingClientRect().top;
89
  var totalHeight = window.innerHeight;
90
+ fixedBox.style.maxHeight = ( totalHeight - ( startPos - topSidebar ) - 15 ) +'px';
91
  }
92
  }
93
 
languages/formidable-de_DE.mo DELETED
Binary file
languages/formidable-de_DE.po DELETED
@@ -1,4828 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Formidable v2.05.02\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-02-06 20:24+0000\n"
6
- "PO-Revision-Date: 2018-02-06 20:24+0000\n"
7
- "Last-Translator: admin <steph@strategy11.com>\n"
8
- "Language-Team: German\n"
9
- "Language: de-DE\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Loco - https://localise.biz/\n"
16
- "X-Poedit-Basepath: .\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
- "X-Loco-Target-Locale: de_DE"
24
-
25
- #: classes/controllers/FrmAppController.php:120
26
- msgid "Build a Form"
27
- msgstr ""
28
-
29
- #: classes/controllers/FrmAppController.php:152
30
- #, php-format
31
- msgid ""
32
- "This site has been previously authorized to run Formidable Forms. "
33
- "%1$sInstall Formidable Pro%2$s or %3$sdeauthorize%4$s this site to continue "
34
- "running the free version and remove this message."
35
- msgstr ""
36
-
37
- #: classes/controllers/FrmAppController.php:487
38
- #, php-format
39
- msgid ""
40
- "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
41
- "org%4$s. Thank you heaps!"
42
- msgstr ""
43
-
44
- #: classes/controllers/FrmFormsController.php:357
45
- msgid "Form Preview"
46
- msgstr ""
47
-
48
- #: classes/controllers/FrmXMLController.php:121
49
- msgid ""
50
- "XML import is not enabled on your server with the "
51
- "libxml_disable_entity_loader function."
52
- msgstr ""
53
-
54
- #: classes/controllers/FrmXMLController.php:354
55
- msgid "There are no entries for that form."
56
- msgstr ""
57
-
58
- #: classes/helpers/FrmAppHelper.php:1582
59
- msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
60
- msgstr ""
61
-
62
- #: classes/helpers/FrmAppHelper.php:1616
63
- msgid "That file looks like Spam."
64
- msgstr ""
65
-
66
- #: classes/helpers/FrmAppHelper.php:1617
67
- msgid "Please complete the preceding required fields before uploading a file."
68
- msgstr ""
69
-
70
- #: classes/helpers/FrmAppHelper.php:1639
71
- msgid ""
72
- "Warning: If you have entries with multiple rows, all but the first row will "
73
- "be lost."
74
- msgstr ""
75
-
76
- #: classes/helpers/FrmAppHelper.php:1653
77
- msgid "Please enter a Repeat Limit that is greater than 1."
78
- msgstr ""
79
-
80
- #: classes/helpers/FrmEntriesHelper.php:540
81
- msgid "Really delete?"
82
- msgstr ""
83
-
84
- #: classes/helpers/FrmFormsHelper.php:55
85
- msgid " (child)"
86
- msgstr ""
87
-
88
- #: classes/helpers/FrmFormsHelper.php:733
89
- msgid "Duplicate Form"
90
- msgstr ""
91
-
92
- #: classes/helpers/FrmFormsHelper.php:823
93
- msgid "Move Form to Trash"
94
- msgstr ""
95
-
96
- #: classes/helpers/FrmFormsHelper.php:835
97
- msgid "Delete form & entries?"
98
- msgstr ""
99
-
100
- #: classes/helpers/FrmFormsHelper.php:847
101
- msgid ""
102
- "Add this to the first field in each row along with a width. ie frm_first frm4"
103
- msgstr ""
104
-
105
- #: classes/helpers/FrmFormsListHelper.php:156
106
- msgid ""
107
- "You have not created any forms yet. You must create a form before you can "
108
- "make a template."
109
- msgstr ""
110
-
111
- #: classes/helpers/FrmStylesHelper.php:108
112
- msgid "inside"
113
- msgstr ""
114
-
115
- #: classes/helpers/FrmStylesHelper.php:120
116
- msgid "Placeholder inside the field"
117
- msgstr ""
118
-
119
- #: classes/helpers/FrmTipsHelper.php:39
120
- msgid "Long forms can still be beautiful with sections."
121
- msgstr ""
122
-
123
- #: classes/helpers/FrmTipsHelper.php:49
124
- msgid "Stop intimidating users with long forms."
125
- msgstr ""
126
-
127
- #: classes/helpers/FrmTipsHelper.php:59
128
- msgid "Need to calculate a total?"
129
- msgstr ""
130
-
131
- #: classes/helpers/FrmTipsHelper.php:65
132
- msgid "Prefill fields with user info."
133
- msgstr ""
134
-
135
- #: classes/helpers/FrmTipsHelper.php:77 classes/helpers/FrmTipsHelper.php:82
136
- msgid "A site with dynamic, user-generated content is within reach."
137
- msgstr ""
138
-
139
- #: classes/helpers/FrmTipsHelper.php:103
140
- msgid "Create blog posts or pages from the front-end."
141
- msgstr ""
142
-
143
- #: classes/helpers/FrmTipsHelper.php:108
144
- msgid "Make front-end posting easy."
145
- msgstr ""
146
-
147
- #: classes/helpers/FrmTipsHelper.php:128
148
- msgid "Get paid more quickly."
149
- msgstr ""
150
-
151
- #: classes/helpers/FrmTipsHelper.php:133
152
- msgid "Boost your site membership."
153
- msgstr ""
154
-
155
- #: classes/helpers/FrmTipsHelper.php:138
156
- msgid "Make front-end profile editing possible."
157
- msgstr ""
158
-
159
- #: classes/helpers/FrmTipsHelper.php:139
160
- msgid "Add user registration."
161
- msgstr ""
162
-
163
- #: classes/helpers/FrmTipsHelper.php:143
164
- msgid "Want a text when this form is submitted or when a payment is received?"
165
- msgstr ""
166
-
167
- #: classes/helpers/FrmTipsHelper.php:160
168
- msgid "Make your sidebar or footer form stand out."
169
- msgstr ""
170
-
171
- #: classes/helpers/FrmTipsHelper.php:199
172
- msgid "Looking for more ways to get professional results?"
173
- msgstr ""
174
-
175
- #: classes/helpers/FrmTipsHelper.php:204
176
- msgid "Increase conversions in long forms."
177
- msgstr ""
178
-
179
- #: classes/helpers/FrmXMLHelper.php:60
180
- msgid "Your server is missing the simplexml_import_dom function"
181
- msgstr ""
182
-
183
- #: classes/models/FrmAddon.php:158
184
- #, php-format
185
- msgid ""
186
- "Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s."
187
- msgstr ""
188
-
189
- #: classes/models/FrmAddon.php:429
190
- #, php-format
191
- msgid ""
192
- "You had an error communicating with the Formidable API. %1$sClick here%2$s "
193
- "for more information."
194
- msgstr ""
195
-
196
- #: classes/models/FrmAddon.php:432
197
- msgid "You had an HTTP error connecting to the Formidable API"
198
- msgstr ""
199
-
200
- #: classes/models/FrmDb.php:414
201
- msgid "Use the query in an array format so it can be properly prepared."
202
- msgstr ""
203
-
204
- #: classes/models/FrmField.php:18
205
- msgid "Paragraph"
206
- msgstr ""
207
-
208
- #: classes/models/FrmField.php:26
209
- msgid "Radio Button"
210
- msgstr ""
211
-
212
- #: classes/models/FrmField.php:46
213
- msgid "Phone"
214
- msgstr ""
215
-
216
- #: classes/models/FrmField.php:93
217
- msgid "Star Rating"
218
- msgstr ""
219
-
220
- #: classes/models/FrmField.php:97
221
- msgid "Slider"
222
- msgstr ""
223
-
224
- #: classes/models/FrmField.php:101
225
- msgid "Toggle"
226
- msgstr ""
227
-
228
- #: classes/models/FrmField.php:105
229
- msgid "Dynamic"
230
- msgstr ""
231
-
232
- #: classes/models/FrmField.php:113
233
- msgid "Repeater"
234
- msgstr ""
235
-
236
- #: classes/models/FrmFieldValue.php:144
237
- msgid ""
238
- "The display value has not been prepared. Please use the "
239
- "prepare_display_value() method before calling get_displayed_value()."
240
- msgstr ""
241
-
242
- #: classes/models/FrmPointers.php:169
243
- msgid ""
244
- "Click &#8220;Start Tour&#8221; to view a quick introduction of this "
245
- "plugin&#8217;s core functionality."
246
- msgstr ""
247
-
248
- #: classes/models/FrmPointers.php:185
249
- msgid "You&#8217;ve just installed a new form builder plugin!"
250
- msgstr ""
251
-
252
- #: classes/models/FrmPointers.php:246
253
- msgid ""
254
- "All your forms will be listed on this page. Create your first form by "
255
- "clicking on the \"Add New\" button."
256
- msgstr ""
257
-
258
- #: classes/models/FrmPointers.php:248
259
- #, php-format
260
- msgid ""
261
- "If you would like to hear about new features and updates for %1$s, subscribe "
262
- "to our newsletter:"
263
- msgstr ""
264
-
265
- #: classes/models/FrmPointers.php:268
266
- msgid ""
267
- "Each time one of your forms is submitted, an entry is created. You will find "
268
- "every form submission listed here so you will always have a backup if an "
269
- "email fails."
270
- msgstr ""
271
-
272
- #: classes/models/FrmPointers.php:287
273
- msgid ""
274
- "Want to make changes to the way your forms look? Make all the changes you "
275
- "would like right here, and watch the sample form change before your eyes."
276
- msgstr ""
277
-
278
- #: classes/models/FrmPointers.php:306
279
- msgid ""
280
- "Import and export forms and styles when copying from one site to another or "
281
- "sharing with someone else. Your entries can be exported to a CSV as well. "
282
- "The Premium version also includes the option to import entries to your site "
283
- "from a CSV."
284
- msgstr ""
285
-
286
- #: classes/models/FrmPointers.php:326
287
- msgid ""
288
- "Turn stylesheets and scripts off, set which user roles have access to change "
289
- "and create forms, setup your reCaptcha, and set default messages for new "
290
- "forms and fields."
291
- msgstr ""
292
-
293
- #: classes/models/FrmPointers.php:328
294
- #, php-format
295
- msgid ""
296
- "Once you&#8217;ve purchased %1$s or any addons, you&#8217;ll have to enter a "
297
- "license key to get access to all of their powerful features. A Plugin "
298
- "Licenses tab will appear here for you to enter your license key."
299
- msgstr ""
300
-
301
- #: classes/models/FrmPointers.php:343
302
- #, php-format
303
- msgid ""
304
- "The powerful functions of %1$s can be extended with %2$spremium plugins%3$s. "
305
- "You can read all about the Formidable Premium Plugins %2$shere%3$s."
306
- msgstr ""
307
-
308
- #: classes/views/addons/settings.php:24
309
- msgid "Good to go!"
310
- msgstr ""
311
-
312
- #: classes/views/frm-entries/_sidebar-shared-pub.php:23
313
- #, php-format
314
- msgid "Updated on: %1$s"
315
- msgstr ""
316
-
317
- #: classes/views/frm-entries/form.php:29
318
- msgid "If you are human, leave this field blank."
319
- msgstr ""
320
-
321
- #: classes/views/frm-entries/no_entries.php:4
322
- #, php-format
323
- msgid ""
324
- "If you would like to save entries in this form, go to the %1$sform "
325
- "Settings%2$s page %3$s and uncheck the \"Do not store any entries submitted "
326
- "from this form\" box."
327
- msgstr ""
328
-
329
- #: classes/views/frm-entries/no_entries.php:7
330
- #, php-format
331
- msgid ""
332
- "See the %1$sform documentation%2$s for instructions on publishing your form"
333
- msgstr ""
334
-
335
- #: classes/views/frm-form-actions/_email_settings.php:79
336
- msgid "Append Browser and Referring URL to message"
337
- msgstr ""
338
-
339
- #: classes/views/frm-forms/actions-dropdown.php:2
340
- msgid "Show options"
341
- msgstr ""
342
-
343
- #: classes/views/frm-forms/add_field.php:218
344
- msgid "Show URL image"
345
- msgstr ""
346
-
347
- #: classes/views/frm-forms/add_field.php:223
348
- msgid ""
349
- "If this URL points to an image, show to image on the entries listing page."
350
- msgstr ""
351
-
352
- #: classes/views/frm-forms/add_field.php:232
353
- msgid "ReCaptcha Type"
354
- msgstr ""
355
-
356
- #: classes/views/frm-forms/add_field_links.php:21
357
- msgid ""
358
- "Open the Field Settings and click on the CSS Layout Classes option to enable "
359
- "this tab"
360
- msgstr ""
361
-
362
- #: classes/views/frm-forms/add_field_links.php:100
363
- msgid ""
364
- "Click inside the \"CSS layout classes\" field option in any field to enable "
365
- "the options below."
366
- msgstr ""
367
-
368
- #: classes/views/frm-forms/add_field_links.php:103
369
- msgid "Click on any box below to set the width for your selected field."
370
- msgstr ""
371
-
372
- #: classes/views/frm-forms/edit.php:9 classes/views/frm-forms/new.php:9
373
- msgid "Build Form"
374
- msgstr ""
375
-
376
- #: classes/views/frm-forms/form.php:29
377
- msgid "Or load fields from a template"
378
- msgstr ""
379
-
380
- #: classes/views/frm-forms/mb_html_tab.php:3
381
- msgid "Use the buttons below to help customize your form HTML."
382
- msgstr ""
383
-
384
- #: classes/views/frm-forms/mb_html_tab.php:19
385
- msgid ""
386
- "Show a single radio or checkbox option by replacing 1 with the order of the "
387
- "option"
388
- msgstr ""
389
-
390
- #: classes/views/frm-forms/settings.php:59
391
- msgid "Form Shortcodes"
392
- msgstr ""
393
-
394
- #: classes/views/frm-settings/form.php:67
395
- msgid "Do not use CSS Grids for form layouts"
396
- msgstr ""
397
-
398
- #: classes/views/frm-settings/form.php:69
399
- msgid ""
400
- "Form layouts built using CSS grids that are not fully supported by older "
401
- "browsers like Internet Explorer. Leave this box unchecked for your layouts "
402
- "to look best in current browsers, but show in a single column in older "
403
- "browsers."
404
- msgstr ""
405
-
406
- #: classes/views/frm-settings/form.php:103
407
- msgid "reCAPTCHA Type"
408
- msgstr ""
409
-
410
- #: classes/views/frm-settings/form.php:106
411
- msgid "Checkbox (V2)"
412
- msgstr ""
413
-
414
- #: classes/views/frm-settings/form.php:109
415
- msgid "Invisible"
416
- msgstr ""
417
-
418
- #: classes/views/frm-settings/form.php:188
419
- msgid "IP storage"
420
- msgstr ""
421
-
422
- #: classes/views/frm-settings/form.php:191
423
- msgid ""
424
- "Do not store IPs with form submissions. Check this box if you are in the UK."
425
- msgstr ""
426
-
427
- #: classes/views/frm-settings/license_box.php:5
428
- msgid ""
429
- "Get more field types including multiple file upload and cascading lookups. "
430
- "PLUS multi-page forms, calculations, repeatable sections, confirmation "
431
- "fields, conditional logic, front-end editing, views, data management, and "
432
- "graph & stat reporting."
433
- msgstr ""
434
-
435
- #: classes/views/frm-settings/license_box.php:6
436
- #, php-format
437
- msgid "%1$sClick here%2$s to go Pro."
438
- msgstr ""
439
-
440
- #: classes/views/shared/mb_adv_info.php:84
441
- msgid ""
442
- "Click a button below to insert extra values from form entries or your site "
443
- "settings."
444
- msgstr ""
445
-
446
- #: classes/views/shared/mb_adv_info.php:168
447
- msgid ""
448
- "Customize the field values with the following parameters. Click to see a "
449
- "sample."
450
- msgstr ""
451
-
452
- #: classes/views/xml/import_form.php:102
453
- msgid "(child)"
454
- msgstr ""
455
-
456
- #: classes/views/frm-fields/back-end/field-html.php:4
457
- msgid "You can edit this content in the field settings."
458
- msgstr ""
459
-
460
- #. Name of the plugin
461
- msgid "Formidable Forms"
462
- msgstr ""
463
-
464
- #. URI of the plugin
465
- #. Author URI of the plugin
466
- msgid "https://formidableforms.com/"
467
- msgstr ""
468
-
469
- #. Author of the plugin
470
- msgid "Strategy11"
471
- msgstr ""
472
-
473
- #: classes/controllers/FrmAddonsController.php:6
474
- #: classes/controllers/FrmAddonsController.php:6
475
- msgid "AddOns"
476
- msgstr "Erweiterungen"
477
-
478
- #: classes/controllers/FrmAddonsController.php:9
479
- #: classes/controllers/FrmAddonsController.php:9
480
- msgid "Upgrade to Pro"
481
- msgstr "Upgrade auf die Pro-Version"
482
-
483
- #: classes/controllers/FrmAddonsController.php:27
484
- msgid "There are no plugins on your site that require a license"
485
- msgstr ""
486
- "Es gibt keine Plug-Ins auf Ihrer Website, für die eine Lizenz erforderlich "
487
- "ist."
488
-
489
- #: classes/controllers/FrmAppController.php:90
490
- msgid "Build"
491
- msgstr "Erstelle"
492
-
493
- #: classes/controllers/FrmAppController.php:97
494
- #: classes/helpers/FrmFormsListHelper.php:322
495
- #: classes/views/frm-forms/settings.php:9
496
- msgid "Settings"
497
- msgstr "Einstellungen"
498
-
499
- #: classes/controllers/FrmAppController.php:104
500
- #: classes/controllers/FrmEntriesController.php:8
501
- #: classes/controllers/FrmEntriesController.php:8
502
- #: classes/controllers/FrmEntriesController.php:118
503
- #: classes/controllers/FrmFormsController.php:652
504
- #: classes/controllers/FrmXMLController.php:57
505
- #: classes/models/FrmPointers.php:267 classes/views/frm-entries/list.php:4
506
- msgid "Entries"
507
- msgstr "Einträge"
508
-
509
- #: classes/controllers/FrmEntriesController.php:66
510
- msgid "Overview"
511
- msgstr "Übersicht"
512
-
513
- #: classes/controllers/FrmEntriesController.php:67
514
- msgid ""
515
- "This screen provides access to all of your entries. You can customize the "
516
- "display of this screen to suit your workflow."
517
- msgstr ""
518
- "Dieser Bildschirm ermöglicht den Zugriff auf alle Ihre Einträge. Sie können "
519
- "die Anzeige dieses Bildschirms an Ihren Arbeitsablauf anpassen."
520
-
521
- #: classes/controllers/FrmEntriesController.php:67
522
- msgid ""
523
- "Hovering over a row in the entries list will display action links that allow "
524
- "you to manage your entry."
525
- msgstr ""
526
- "Bewegen Sie den Mauszeiger über eine Eintragszeile um weitere Aktionen für "
527
- "das Bearbeiten des Eintrages anzuzeigen."
528
-
529
- #: classes/controllers/FrmEntriesController.php:71
530
- msgid "For more information:"
531
- msgstr "Für mehr Information:"
532
-
533
- #: classes/controllers/FrmEntriesController.php:72
534
- msgid "Documentation on Entries"
535
- msgstr "Dokumentation zu Einträgen"
536
-
537
- #: classes/controllers/FrmEntriesController.php:73
538
- msgid "Support"
539
- msgstr "Support"
540
-
541
- #: classes/controllers/FrmEntriesController.php:99
542
- #: classes/controllers/FrmFormsController.php:832
543
- #: classes/views/frm-entries/form.php:43
544
- #: classes/views/frm-entries/sidebar-shared.php:38
545
- msgid "Entry Key"
546
- msgstr "Eingabe Schlüssel"
547
-
548
- #: classes/controllers/FrmEntriesController.php:104
549
- #: classes/controllers/FrmFormsController.php:554
550
- #: classes/widgets/FrmShowForm.php:53
551
- msgid "Form"
552
- msgstr "Formular"
553
-
554
- #: classes/controllers/FrmEntriesController.php:105
555
- msgid "Entry Name"
556
- msgstr "Eintragsname"
557
-
558
- #: classes/controllers/FrmEntriesController.php:106
559
- #: classes/helpers/FrmCSVExportHelper.php:128
560
- msgid "Created By"
561
- msgstr "Erstellt durch"
562
-
563
- #: classes/controllers/FrmEntriesController.php:109
564
- msgid "Entry creation date"
565
- msgstr "Eintrags-Erstellungsdatum"
566
-
567
- #: classes/controllers/FrmEntriesController.php:110
568
- msgid "Entry update date"
569
- msgstr "Aktualisierungsdatum des Eintrags"
570
-
571
- #: classes/controllers/FrmEntriesController.php:391
572
- msgid "Your import is complete"
573
- msgstr "Ihr Import ist vollständig"
574
-
575
- #: classes/controllers/FrmEntriesController.php:401
576
- #, php-format
577
- msgid ""
578
- "This form is in the trash and is scheduled to be deleted permanently in %s "
579
- "along with any entries."
580
- msgstr ""
581
- "Das Formular liegt im Papierkorb und wird zusammen mit allen Einträgen "
582
- "dauerhaft in %s gelöscht."
583
-
584
- #: classes/controllers/FrmEntriesController.php:420
585
- msgid "You are trying to view an entry that does not exist."
586
- msgstr "Sie versuchen, einen Eintrag anzuzeigen, der nicht existiert."
587
-
588
- #: classes/controllers/FrmEntriesController.php:448
589
- msgid "Entry was Successfully Destroyed"
590
- msgstr "Der Eintrag wurde erfolgreich zerstört"
591
-
592
- #: classes/controllers/FrmEntriesController.php:482
593
- msgid "Entries were Successfully Destroyed"
594
- msgstr "Einträge wurden Erfolgreich Zerstört"
595
-
596
- #: classes/controllers/FrmEntriesController.php:485
597
- msgid "No entries were specified"
598
- msgstr "Keine Einträge wurden festgelegt"
599
-
600
- #: classes/controllers/FrmFieldsController.php:281
601
- msgid "Other"
602
- msgstr "Sonstiges"
603
-
604
- #: classes/controllers/FrmFieldsController.php:284
605
- msgid "New Option"
606
- msgstr "Neue Option"
607
-
608
- #: classes/controllers/FrmFormActionsController.php:9
609
- #: classes/views/frm-forms/settings.php:33
610
- msgid "Form Actions"
611
- msgstr "Formularaktionen"
612
-
613
- #: classes/controllers/FrmFormsController.php:6
614
- #: classes/controllers/FrmFormsController.php:660
615
- #: classes/controllers/FrmXMLController.php:56
616
- #: classes/models/FrmPointers.php:245 classes/views/frm-forms/list.php:4
617
- msgid "Forms"
618
- msgstr "Formulare"
619
-
620
- #: classes/controllers/FrmFormsController.php:162
621
- msgid "Settings Successfully Updated"
622
- msgstr "Einstellungen wurden erfolgreich aktualisiert"
623
-
624
- #: classes/controllers/FrmFormsController.php:217
625
- #: classes/controllers/FrmFormsController.php:728
626
- msgid "Form was Successfully Updated"
627
- msgstr "Das Formular wurde erfolgreich upgedatet."
628
-
629
- #: classes/controllers/FrmFormsController.php:250
630
- #: classes/controllers/FrmFormsController.php:1645
631
- msgid "Form template was Successfully Created"
632
- msgstr "Eine Formular Vorlage wurde erfolgreich erstellt."
633
-
634
- #: classes/controllers/FrmFormsController.php:250
635
- msgid "Form was Successfully Copied"
636
- msgstr "Das Formular wurde erfolgreich kopiert."
637
-
638
- #: classes/controllers/FrmFormsController.php:254
639
- msgid "There was a problem creating the new template."
640
- msgstr "Beim Erstellen der neuen Vorlage ist ein Problem aufgetreten."
641
-
642
- #: classes/controllers/FrmFormsController.php:407
643
- #: classes/controllers/FrmFormsController.php:453
644
- #, php-format
645
- msgid "%1$s form restored from the Trash."
646
- msgid_plural "%1$s forms restored from the Trash."
647
- msgstr[0] "%1$s Formular aus dem Papierkorb wiederhergestellt."
648
- msgstr[1] "%1$s Formlare aus dem Papierkorb wiederhergestellt."
649
-
650
- #: classes/controllers/FrmFormsController.php:454
651
- #: classes/controllers/FrmFormsController.php:475
652
- #, php-format
653
- msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
654
- msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
655
- msgstr[0] ""
656
- "%1$s Formular in den Papierkorb verschoben. %2$sRückgängig machen%3$s"
657
- msgstr[1] ""
658
- "%1$s Formulare in den Papierkorb verschoben. %2$sRückgängig machen%3$s"
659
-
660
- #: classes/controllers/FrmFormsController.php:493
661
- #: classes/controllers/FrmFormsController.php:509
662
- #: classes/controllers/FrmFormsController.php:523
663
- #, php-format
664
- msgid "%1$s form permanently deleted."
665
- msgid_plural "%1$s forms permanently deleted."
666
- msgstr[0] "%1$s Formular dauerhaft gelöscht."
667
- msgstr[1] "%1$s Formulare dauerhaft gelöscht."
668
-
669
- #: classes/controllers/FrmFormsController.php:537
670
- msgid "Add forms and content"
671
- msgstr "Formulare und Inhalte hinzufügen"
672
-
673
- #: classes/controllers/FrmFormsController.php:555
674
- #: classes/views/frm-forms/insert_form_popup.php:24
675
- msgid "Insert a Form"
676
- msgstr "Formular einfügen"
677
-
678
- #: classes/controllers/FrmFormsController.php:585
679
- msgid "Display form title"
680
- msgstr "Formular-Titel anzeigen"
681
-
682
- #: classes/controllers/FrmFormsController.php:589
683
- msgid "Display form description"
684
- msgstr "Formular-Beschreibung anzeigen"
685
-
686
- #: classes/controllers/FrmFormsController.php:593
687
- msgid "Minimize form HTML"
688
- msgstr "HTML Code des Formulars minimieren"
689
-
690
- #: classes/controllers/FrmFormsController.php:647
691
- msgid "Template Name"
692
- msgstr "Name der Vorlage"
693
-
694
- #: classes/controllers/FrmFormsController.php:648
695
- msgid "Type"
696
- msgstr "Typ"
697
-
698
- #: classes/controllers/FrmFormsController.php:649
699
- #: classes/controllers/FrmFormsController.php:653
700
- #: classes/helpers/FrmCSVExportHelper.php:133
701
- msgid "Key"
702
- msgstr "Schlüssel"
703
-
704
- #: classes/controllers/FrmFormsController.php:651
705
- #: classes/controllers/FrmStylesController.php:371
706
- #: classes/views/styles/_sample_form.php:17 classes/views/styles/manage.php:16
707
- msgid "Form Title"
708
- msgstr "Formular Titel"
709
-
710
- #: classes/controllers/FrmFormsController.php:654
711
- msgid "Shortcodes"
712
- msgstr "Shortcodes"
713
-
714
- #: classes/controllers/FrmFormsController.php:657
715
- #: classes/models/FrmField.php:81
716
- msgid "Date"
717
- msgstr "Datum"
718
-
719
- #: classes/controllers/FrmFormsController.php:704
720
- msgid "You are trying to edit a form that does not exist."
721
- msgstr "Sie versuchen ein Formular zu bearbeiten, das nicht exisitiert."
722
-
723
- #: classes/controllers/FrmFormsController.php:708
724
- #, php-format
725
- msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
726
- msgstr ""
727
- "Sie versuchen, ein untergeordnetes Formular zu bearbeiten. Bitte "
728
- "%1$shier%2$s bearbeiten"
729
-
730
- #: classes/controllers/FrmFormsController.php:730
731
- msgid "Template was Successfully Updated"
732
- msgstr "Vorlage wurde Erfolgreich Aktualisiert"
733
-
734
- #: classes/controllers/FrmFormsController.php:736
735
- #: classes/controllers/FrmFormsController.php:757
736
- msgid "That template cannot be edited"
737
- msgstr "Diese Vorlage ist nicht editierbar"
738
-
739
- #: classes/controllers/FrmFormsController.php:809
740
- msgid "Separator"
741
- msgstr "Trennlinie"
742
-
743
- #: classes/controllers/FrmFormsController.php:810
744
- msgid "Use a different separator for checkbox fields"
745
- msgstr "Verwende einen anderen Seperator für Checkbox Felder"
746
-
747
- #: classes/controllers/FrmFormsController.php:812
748
- msgid "Date Format"
749
- msgstr "Datums-Format"
750
-
751
- #: classes/controllers/FrmFormsController.php:813
752
- msgid "Field Label"
753
- msgstr "Feld Beschriftung"
754
-
755
- #: classes/controllers/FrmFormsController.php:815
756
- msgid "No Auto P"
757
- msgstr "Kein Auto P"
758
-
759
- #: classes/controllers/FrmFormsController.php:816
760
- msgid "Do not automatically add any paragraphs or line breaks"
761
- msgstr "Absätze oder Zeilenumbrüche nicht automatisch hinzufügen"
762
-
763
- #: classes/controllers/FrmFormsController.php:831
764
- #: classes/views/frm-entries/sidebar-shared.php:32
765
- msgid "Entry ID"
766
- msgstr "Eintrags-ID"
767
-
768
- #: classes/controllers/FrmFormsController.php:833
769
- msgid "Post ID"
770
- msgstr "Beitrags ID"
771
-
772
- #: classes/controllers/FrmFormsController.php:834
773
- msgid "User IP"
774
- msgstr "Benutzer IP"
775
-
776
- #: classes/controllers/FrmFormsController.php:835
777
- msgid "Entry created"
778
- msgstr "Eintrag erstellt"
779
-
780
- #: classes/controllers/FrmFormsController.php:836
781
- msgid "Entry updated"
782
- msgstr "Eintrag aktualisiert"
783
-
784
- #: classes/controllers/FrmFormsController.php:838
785
- msgid "Site URL"
786
- msgstr "Seiten URL"
787
-
788
- #: classes/controllers/FrmFormsController.php:839
789
- msgid "Site Name"
790
- msgstr "Webseiten Name"
791
-
792
- #: classes/controllers/FrmFormsController.php:847
793
- msgid "Default Msg"
794
- msgstr "Standard Nachricht"
795
-
796
- #: classes/controllers/FrmFormsController.php:848
797
- msgid "Default HTML"
798
- msgstr "Voreingestelltes HTML"
799
-
800
- #: classes/controllers/FrmFormsController.php:849
801
- msgid "Default Plain"
802
- msgstr "Voreingestellt klar"
803
-
804
- #: classes/controllers/FrmFormsController.php:935
805
- msgid "No forms were specified"
806
- msgstr "Es wurden keine Formulare spezifiziert"
807
-
808
- #: classes/controllers/FrmFormsController.php:1078
809
- msgid "Abnormal HTML characters prevented your form from saving correctly"
810
- msgstr ""
811
- "Unbekannte HTML-Zeichen verhindern das korrekte Speichern des Formulars"
812
-
813
- #: classes/controllers/FrmFormsController.php:1189
814
- #: classes/controllers/FrmFormsController.php:1203
815
- msgid "Please select a valid form"
816
- msgstr "Bitte ein gültiges Formular wählen"
817
-
818
- #: classes/controllers/FrmFormsController.php:1424
819
- msgid "Please wait while you are redirected."
820
- msgstr "Bitte warten Sie, während Sie weitergeleitet werden."
821
-
822
- #: classes/controllers/FrmFormsController.php:1458
823
- #, php-format
824
- msgid "%1$sClick here%2$s if you are not automatically redirected."
825
- msgstr ""
826
- "%1$sKlicken Sie hier%2$s, wenn Sie nicht automatisch weitergeleitet werden."
827
-
828
- #: classes/controllers/FrmSettingsController.php:9
829
- #: classes/controllers/FrmSettingsController.php:9
830
- #: classes/models/FrmPointers.php:324 classes/views/frm-settings/form.php:2
831
- msgid "Global Settings"
832
- msgstr "Globale Einstellungen"
833
-
834
- #: classes/controllers/FrmSettingsController.php:39
835
- #: classes/models/FrmPointers.php:327 classes/views/addons/settings.php:2
836
- msgid "Plugin Licenses"
837
- msgstr "Plug-In Lizenzen"
838
-
839
- #: classes/controllers/FrmSettingsController.php:88
840
- #: classes/controllers/FrmSettingsController.php:91
841
- msgid "Settings Saved"
842
- msgstr "Einstellungen gespeichert"
843
-
844
- #: classes/controllers/FrmStylesController.php:15
845
- #: classes/controllers/FrmStylesController.php:33
846
- #: classes/controllers/FrmStylesController.php:44
847
- #: classes/controllers/FrmStylesController.php:44
848
- #: classes/models/FrmPointers.php:286
849
- msgid "Styles"
850
- msgstr "Stile / Design"
851
-
852
- #: classes/controllers/FrmStylesController.php:34
853
- #: classes/controllers/FrmStylesController.php:35
854
- #: classes/views/styles/_field-colors.php:44
855
- #: classes/views/styles/_field-colors.php:106
856
- #: classes/views/styles/_field-description.php:14
857
- msgid "Style"
858
- msgstr "Style"
859
-
860
- #: classes/controllers/FrmStylesController.php:37
861
- msgid "Create a New Style"
862
- msgstr "Neuen Stil erstellen"
863
-
864
- #: classes/controllers/FrmStylesController.php:38
865
- msgid "Edit Style"
866
- msgstr "Stil bearbeiten"
867
-
868
- #: classes/controllers/FrmStylesController.php:207
869
- #: classes/controllers/FrmStylesController.php:304
870
- msgid "Your styling settings have been saved."
871
- msgstr "Ihre Stil Einstellungen wurden gespeichert."
872
-
873
- #: classes/controllers/FrmStylesController.php:266
874
- msgid "Your form styles have been saved."
875
- msgstr "Ihre Formular Stile wurden gespeichert."
876
-
877
- #: classes/controllers/FrmStylesController.php:370
878
- #: classes/models/FrmPointers.php:325 classes/views/frm-forms/settings.php:30
879
- #: classes/views/frm-settings/form.php:17
880
- msgid "General"
881
- msgstr "Allgemein"
882
-
883
- #: classes/controllers/FrmStylesController.php:372
884
- #: classes/views/frm-forms/mb_html_tab.php:49
885
- #: classes/views/frm-forms/settings.php:243
886
- msgid "Form Description"
887
- msgstr "Formular Beschreibung"
888
-
889
- #: classes/controllers/FrmStylesController.php:373
890
- msgid "Field Labels"
891
- msgstr "Feld Beschriftungen"
892
-
893
- #: classes/controllers/FrmStylesController.php:374
894
- #: classes/views/frm-forms/mb_html_tab.php:13
895
- msgid "Field Description"
896
- msgstr "Feld Beschreibung"
897
-
898
- #: classes/controllers/FrmStylesController.php:375
899
- msgid "Field Colors"
900
- msgstr "Feld Farben"
901
-
902
- #: classes/controllers/FrmStylesController.php:376
903
- #: classes/views/frm-forms/add_field.php:102
904
- msgid "Field Settings"
905
- msgstr "Feld Einstellungen"
906
-
907
- #: classes/controllers/FrmStylesController.php:377
908
- msgid "Check Box & Radio Fields"
909
- msgstr "Checkboxen und Radiofelder"
910
-
911
- #: classes/controllers/FrmStylesController.php:378
912
- msgid "Buttons"
913
- msgstr "Schaltflächen"
914
-
915
- #: classes/controllers/FrmStylesController.php:379
916
- msgid "Form Messages"
917
- msgstr "Formularmitteilungen"
918
-
919
- #: classes/controllers/FrmStylesController.php:580
920
- #: classes/views/frm-forms/mb_insert_fields.php:2
921
- msgid "Click to toggle"
922
- msgstr "Anklicken um auszuwählen"
923
-
924
- #: classes/controllers/FrmXMLController.php:6
925
- #: classes/controllers/FrmXMLController.php:6
926
- #: classes/models/FrmPointers.php:305 classes/views/xml/import_form.php:2
927
- msgid "Import/Export"
928
- msgstr "Import/Export"
929
-
930
- #: classes/controllers/FrmXMLController.php:88
931
- msgid "Oops, you didn't select a file."
932
- msgstr "Oops, Sie haben keine Datei ausgewählt."
933
-
934
- #: classes/controllers/FrmXMLController.php:97
935
- msgid "The file does not exist, please try again."
936
- msgstr "Diese Datei exisitiert nicht, bitte versuchen Sie es erneut."
937
-
938
- #: classes/controllers/FrmXMLController.php:298
939
- msgid "Please select a form"
940
- msgstr "Bitte wählen Sie ein Formular aus"
941
-
942
- #: classes/helpers/FrmAppHelper.php:562
943
- #: classes/helpers/FrmFormsListHelper.php:96
944
- msgid "Add New"
945
- msgstr "Neu hinzufügen"
946
-
947
- #: classes/helpers/FrmAppHelper.php:683
948
- msgid "View Forms and Templates"
949
- msgstr "Formulare und Vorlagen ansehen"
950
-
951
- #: classes/helpers/FrmAppHelper.php:684
952
- msgid "Add/Edit Forms and Templates"
953
- msgstr "Hinzufügen/Editieren von Formularen und Vorlagen"
954
-
955
- #: classes/helpers/FrmAppHelper.php:685
956
- msgid "Delete Forms and Templates"
957
- msgstr "Formulare und Vorlagen löschen"
958
-
959
- #: classes/helpers/FrmAppHelper.php:686
960
- msgid "Access this Settings Page"
961
- msgstr "Einstellungen öffnen"
962
-
963
- #: classes/helpers/FrmAppHelper.php:687
964
- msgid "View Entries from Admin Area"
965
- msgstr "Einträge vom Adminbereich aus einsehen"
966
-
967
- #: classes/helpers/FrmAppHelper.php:688
968
- msgid "Delete Entries from Admin Area"
969
- msgstr "Einträge vom Adminbereich aus löschen"
970
-
971
- #: classes/helpers/FrmAppHelper.php:695
972
- msgid "Add Entries from Admin Area"
973
- msgstr "Hinzufügen von Einträgen aus dem Adminbereich"
974
-
975
- #: classes/helpers/FrmAppHelper.php:696
976
- msgid "Edit Entries from Admin Area"
977
- msgstr "Einträge vom Adminbereich aus editieren"
978
-
979
- #: classes/helpers/FrmAppHelper.php:697
980
- msgid "View Reports"
981
- msgstr "Berichte einsehen"
982
-
983
- #: classes/helpers/FrmAppHelper.php:698
984
- msgid "Add/Edit Views"
985
- msgstr "Ansichten hinzufügen/bearbeiten"
986
-
987
- #: classes/helpers/FrmAppHelper.php:1284
988
- msgid "at"
989
- msgstr "um"
990
-
991
- #: classes/helpers/FrmAppHelper.php:1333 classes/helpers/FrmAppHelper.php:1352
992
- msgid "seconds"
993
- msgstr "Sekunden"
994
-
995
- #: classes/helpers/FrmAppHelper.php:1346
996
- msgid "year"
997
- msgstr "Jahr"
998
-
999
- #: classes/helpers/FrmAppHelper.php:1346
1000
- msgid "years"
1001
- msgstr "Jahre"
1002
-
1003
- #: classes/helpers/FrmAppHelper.php:1347
1004
- msgid "month"
1005
- msgstr "Monat"
1006
-
1007
- #: classes/helpers/FrmAppHelper.php:1347
1008
- msgid "months"
1009
- msgstr "Monate"
1010
-
1011
- #: classes/helpers/FrmAppHelper.php:1348
1012
- msgid "week"
1013
- msgstr "Woche"
1014
-
1015
- #: classes/helpers/FrmAppHelper.php:1348
1016
- msgid "weeks"
1017
- msgstr "Wochen"
1018
-
1019
- #: classes/helpers/FrmAppHelper.php:1349
1020
- msgid "day"
1021
- msgstr "Tag"
1022
-
1023
- #: classes/helpers/FrmAppHelper.php:1349
1024
- msgid "days"
1025
- msgstr "Tage"
1026
-
1027
- #: classes/helpers/FrmAppHelper.php:1350
1028
- msgid "hour"
1029
- msgstr "Stunde"
1030
-
1031
- #: classes/helpers/FrmAppHelper.php:1350
1032
- msgid "hours"
1033
- msgstr "Stunden"
1034
-
1035
- #: classes/helpers/FrmAppHelper.php:1351
1036
- msgid "minute"
1037
- msgstr "Minute"
1038
-
1039
- #: classes/helpers/FrmAppHelper.php:1351
1040
- msgid "minutes"
1041
- msgstr "Minuten"
1042
-
1043
- #: classes/helpers/FrmAppHelper.php:1352
1044
- msgid "second"
1045
- msgstr "Sekunde"
1046
-
1047
- #: classes/helpers/FrmAppHelper.php:1444
1048
- msgid "Give this action a label for easy reference."
1049
- msgstr "Geben Sie dieser Aktion zur einfachen Referenzierung eine Bezeichnung."
1050
-
1051
- #: classes/helpers/FrmAppHelper.php:1445
1052
- msgid ""
1053
- "Add one or more recipient addresses separated by a \",\". FORMAT: Name "
1054
- "<name@email.com> or name@email.com. [admin_email] is the address set in WP "
1055
- "General Settings."
1056
- msgstr ""
1057
- "Fügen Sie eine oder mehrere Empfängeradressen getrennt durch \",\" ein. "
1058
- "FORMAT: Name <name@domainname.de>oder name@domainname.de. [Admin_email] ist "
1059
- "in den allgemeinen WordPress Einstellungen voreingestellt."
1060
-
1061
- #: classes/helpers/FrmAppHelper.php:1446
1062
- msgid ""
1063
- "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or "
1064
- "name@email.com."
1065
- msgstr ""
1066
- "Fügen Sie eine oder mehrere CC Adressen getrennt durch \",\" ein. FORMAT: "
1067
- "Name <name@domainname.de>oder name@domainname.de."
1068
-
1069
- #: classes/helpers/FrmAppHelper.php:1447
1070
- msgid ""
1071
- "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or "
1072
- "name@email.com."
1073
- msgstr ""
1074
- "Fügen Sie eine oder mehrere BCC Adressen getrennt durch \",\" ein. FORMAT: "
1075
- "Name <name@domainname.de>oder name@domainname.de."
1076
-
1077
- #: classes/helpers/FrmAppHelper.php:1448
1078
- msgid ""
1079
- "If you would like a different reply to address than the \"from\" address, "
1080
- "add a single address here. FORMAT: Name <name@email.com> or name@email.com."
1081
- msgstr ""
1082
- "Falls Sie eine von der Absenderadresse (from) abweichende Antwortadresse "
1083
- "(reply-to) verwenden möchten, geben Sie hier eine einzelne E-Mail Adresse an."
1084
- " FORMAT: Name <name@domainname.de>oder name@domainname.de."
1085
-
1086
- #: classes/helpers/FrmAppHelper.php:1449
1087
- msgid ""
1088
- "Enter the name and/or email address of the sender. FORMAT: John Bates "
1089
- "<john@example.com> or john@example.com."
1090
- msgstr ""
1091
- "Geben Sie die Absenderadresse ein. FORMAT: Name <name@domainname.de>oder "
1092
- "name@domainname.de."
1093
-
1094
- #: classes/helpers/FrmAppHelper.php:1450
1095
- #, php-format
1096
- msgid ""
1097
- "If you leave the subject blank, the default will be used: %1$s Form "
1098
- "submitted on %2$s"
1099
- msgstr ""
1100
- "Wenn Sie den Betreff leer lassen, wird der Standard verwendet: %1$s Formular "
1101
- "gesendet am %2$s"
1102
-
1103
- #: classes/helpers/FrmAppHelper.php:1581 classes/helpers/FrmAppHelper.php:1648
1104
- msgid "Please wait while your site updates."
1105
- msgstr "Bitte warten Sie während Ihre Seite aktualisiert wird."
1106
-
1107
- #: classes/helpers/FrmAppHelper.php:1611
1108
- msgid "Remove"
1109
- msgstr "Entferne"
1110
-
1111
- #: classes/helpers/FrmAppHelper.php:1614
1112
- #: classes/helpers/FrmCSVExportHelper.php:132
1113
- msgid "ID"
1114
- msgstr "ID"
1115
-
1116
- #: classes/helpers/FrmAppHelper.php:1615
1117
- msgid "No results match"
1118
- msgstr "Keine Suchergebnisse"
1119
-
1120
- #: classes/helpers/FrmAppHelper.php:1623
1121
- msgid ""
1122
- "Are you sure you want to do this? Clicking OK will delete all forms, form "
1123
- "data, and all other Formidable data. There is no Undo."
1124
- msgstr ""
1125
- "Sidn Sie sicher, dass sie dies tun wollen? Wenn Sie OK klicken, werden alle "
1126
- "Formulare, Formular- Daten und sämtliche Formidable- Daten gelöscht. Es gibt "
1127
- "KEIN ZURÜCK!"
1128
-
1129
- #: classes/helpers/FrmAppHelper.php:1624
1130
- #: classes/views/frm-forms/add_field.php:34
1131
- #: classes/views/frm-forms/add_field.php:45
1132
- msgid "(Click to add description)"
1133
- msgstr "(Klicken Sie, um eine Beschreibung hinzuzufügen)"
1134
-
1135
- #: classes/helpers/FrmAppHelper.php:1625
1136
- #: classes/views/frm-fields/single-option.php:7
1137
- #: classes/views/frm-fields/single-option.php:11
1138
- msgid "(Blank)"
1139
- msgstr "(Leer)"
1140
-
1141
- #: classes/helpers/FrmAppHelper.php:1626
1142
- #: classes/views/frm-forms/add_field.php:16
1143
- msgid "(no label)"
1144
- msgstr "(keine Feldbezeichnung)"
1145
-
1146
- #: classes/helpers/FrmAppHelper.php:1627
1147
- msgid "Saving"
1148
- msgstr "Wird gespeichert"
1149
-
1150
- #: classes/helpers/FrmAppHelper.php:1628
1151
- msgid "Saved"
1152
- msgstr "Gespeichert"
1153
-
1154
- #: classes/helpers/FrmAppHelper.php:1630
1155
- msgid "Cancel"
1156
- msgstr "Abbruch"
1157
-
1158
- #: classes/helpers/FrmAppHelper.php:1631
1159
- #: classes/helpers/FrmFormsListHelper.php:286
1160
- #: classes/views/frm-forms/add_field.php:189
1161
- #: classes/views/styles/_buttons.php:12
1162
- #: classes/views/styles/_field-colors.php:5
1163
- msgid "Default"
1164
- msgstr "Standard"
1165
-
1166
- #: classes/helpers/FrmAppHelper.php:1632
1167
- #: classes/helpers/FrmFieldsHelper.php:1111
1168
- msgid "Clear default value when typing"
1169
- msgstr "Lösche Standardwerte beim Ausfüllen"
1170
-
1171
- #: classes/helpers/FrmAppHelper.php:1633
1172
- #: classes/helpers/FrmFieldsHelper.php:1111
1173
- msgid "Do not clear default value when typing"
1174
- msgstr "Standardwerte beim Ausfüllen nicht löschen"
1175
-
1176
- #: classes/helpers/FrmAppHelper.php:1634
1177
- #: classes/helpers/FrmFieldsHelper.php:1121
1178
- msgid "Default value will pass form validation"
1179
- msgstr "Standardwert wird Formularvalidierung bestehen"
1180
-
1181
- #: classes/helpers/FrmAppHelper.php:1635
1182
- #: classes/helpers/FrmFieldsHelper.php:1121
1183
- msgid "Default value will NOT pass form validation"
1184
- msgstr "Standardwert wird Formularvalidierung NICHT bestehen"
1185
-
1186
- #: classes/helpers/FrmAppHelper.php:1636
1187
- #: classes/helpers/FrmEntriesListHelper.php:245
1188
- #: classes/helpers/FrmFormsHelper.php:827 classes/views/styles/show.php:64
1189
- msgid "Are you sure?"
1190
- msgstr "Sind Sie sicher?"
1191
-
1192
- #: classes/helpers/FrmAppHelper.php:1637
1193
- msgid ""
1194
- "Are you sure you want to delete this field and all data associated with it?"
1195
- msgstr ""
1196
- "Sind Sie sicher, dass Sie dieses Feld und alle damit verbundenen Daten "
1197
- "löschen wollen?"
1198
-
1199
- #: classes/helpers/FrmAppHelper.php:1638
1200
- msgid "WARNING: This will delete all fields inside of the section as well."
1201
- msgstr "WARNUNG: Dies wird auch alle Felder innerhalb des Abschnitts löschen."
1202
-
1203
- #: classes/helpers/FrmAppHelper.php:1641
1204
- #: classes/helpers/FrmFieldsHelper.php:268
1205
- msgid "The entered values do not match"
1206
- msgstr "Die eingegebenen Werte stimmen nicht überein"
1207
-
1208
- #: classes/helpers/FrmAppHelper.php:1642
1209
- msgid "Enter Email"
1210
- msgstr "E-Mail Adresse eingeben"
1211
-
1212
- #: classes/helpers/FrmAppHelper.php:1643
1213
- msgid "Confirm Email"
1214
- msgstr "E-Mail Adresse bestätigen"
1215
-
1216
- #: classes/helpers/FrmAppHelper.php:1644
1217
- msgid ""
1218
- "In certain browsers (e.g. Firefox) text will not display correctly if the "
1219
- "field height is too small relative to the field padding and text size. "
1220
- "Please increase your field height or decrease your field padding."
1221
- msgstr ""
1222
- "In einigen Browsern (z.B. Firefox) wird Text nicht korrekt angezeigt, wenn "
1223
- "die Feldhöhe relativ zum Feld-Innenabstand (padding) und zur Textgröße zu "
1224
- "klein ist. Bitte erhöhen Sie die Feldhöhe oder reduzieren den padding-Wert. "
1225
-
1226
- #: classes/helpers/FrmAppHelper.php:1645
1227
- msgid "Enter Password"
1228
- msgstr "Passwort eingeben"
1229
-
1230
- #: classes/helpers/FrmAppHelper.php:1646
1231
- msgid "Confirm Password"
1232
- msgstr "Passwort bestätigen"
1233
-
1234
- #: classes/helpers/FrmAppHelper.php:1647
1235
- msgid "Import Complete"
1236
- msgstr "Import vollständig"
1237
-
1238
- #: classes/helpers/FrmAppHelper.php:1649
1239
- msgid "Warning: There is no way to retrieve unsaved entries."
1240
- msgstr ""
1241
- "Warnung: Es gibt keine Möglichkeit, nicht gespeicherte Einträge abzurufen. "
1242
-
1243
- #: classes/helpers/FrmAppHelper.php:1652
1244
- msgid "No new licenses were found"
1245
- msgstr "Keine neuen Lizenzen gefunden"
1246
-
1247
- #: classes/helpers/FrmAppHelper.php:1674
1248
- msgid ""
1249
- "You are running an outdated version of Formidable. This plugin may not work "
1250
- "correctly if you do not update Formidable."
1251
- msgstr ""
1252
- "Diese installierte Version von Formidable ist nicht aktuell. Wenn Sie die "
1253
- "Version nicht aktualisieren kann es zu Fehlfunktionen kommen."
1254
-
1255
- #: classes/helpers/FrmAppHelper.php:1680
1256
- msgid "English"
1257
- msgstr "Englisch"
1258
-
1259
- #: classes/helpers/FrmAppHelper.php:1681
1260
- msgid "English/Western"
1261
- msgstr "Englisch/Westlich"
1262
-
1263
- #: classes/helpers/FrmAppHelper.php:1682
1264
- msgid "Afrikaans"
1265
- msgstr "Afrikanisch"
1266
-
1267
- #: classes/helpers/FrmAppHelper.php:1683
1268
- msgid "Albanian"
1269
- msgstr "Albanisch"
1270
-
1271
- #: classes/helpers/FrmAppHelper.php:1684
1272
- msgid "Arabic"
1273
- msgstr "Arabisch"
1274
-
1275
- #: classes/helpers/FrmAppHelper.php:1685
1276
- msgid "Armenian"
1277
- msgstr "Armenisch"
1278
-
1279
- #: classes/helpers/FrmAppHelper.php:1686
1280
- msgid "Azerbaijani"
1281
- msgstr "Aserbaidschanisch"
1282
-
1283
- #: classes/helpers/FrmAppHelper.php:1687
1284
- msgid "Basque"
1285
- msgstr "Baskisch"
1286
-
1287
- #: classes/helpers/FrmAppHelper.php:1688
1288
- msgid "Bosnian"
1289
- msgstr "Bosnisch"
1290
-
1291
- #: classes/helpers/FrmAppHelper.php:1689
1292
- msgid "Bulgarian"
1293
- msgstr "Bulgarisch"
1294
-
1295
- #: classes/helpers/FrmAppHelper.php:1690
1296
- msgid "Catalan"
1297
- msgstr "Katalanisch"
1298
-
1299
- #: classes/helpers/FrmAppHelper.php:1691
1300
- msgid "Chinese Hong Kong"
1301
- msgstr "Hong Kong Chinesisch"
1302
-
1303
- #: classes/helpers/FrmAppHelper.php:1692
1304
- msgid "Chinese Simplified"
1305
- msgstr "Chinesisch vereinfacht"
1306
-
1307
- #: classes/helpers/FrmAppHelper.php:1693
1308
- msgid "Chinese Traditional"
1309
- msgstr "Traditionelles Chinesisch"
1310
-
1311
- #: classes/helpers/FrmAppHelper.php:1694
1312
- msgid "Croatian"
1313
- msgstr "Kroatisch"
1314
-
1315
- #: classes/helpers/FrmAppHelper.php:1695
1316
- msgid "Czech"
1317
- msgstr "Tschechisch"
1318
-
1319
- #: classes/helpers/FrmAppHelper.php:1696
1320
- msgid "Danish"
1321
- msgstr "Dänisch"
1322
-
1323
- #: classes/helpers/FrmAppHelper.php:1697
1324
- msgid "Dutch"
1325
- msgstr "Niederländisch"
1326
-
1327
- #: classes/helpers/FrmAppHelper.php:1698
1328
- msgid "English/UK"
1329
- msgstr "Britisches Englisch"
1330
-
1331
- #: classes/helpers/FrmAppHelper.php:1699
1332
- msgid "Esperanto"
1333
- msgstr "Esperanto"
1334
-
1335
- #: classes/helpers/FrmAppHelper.php:1700
1336
- msgid "Estonian"
1337
- msgstr "Estländisch"
1338
-
1339
- #: classes/helpers/FrmAppHelper.php:1701
1340
- msgid "Faroese"
1341
- msgstr "Färöisch"
1342
-
1343
- #: classes/helpers/FrmAppHelper.php:1702
1344
- msgid "Farsi/Persian"
1345
- msgstr "Farsi/Persisch"
1346
-
1347
- #: classes/helpers/FrmAppHelper.php:1703
1348
- msgid "Filipino"
1349
- msgstr "Philippinisch"
1350
-
1351
- #: classes/helpers/FrmAppHelper.php:1704
1352
- msgid "Finnish"
1353
- msgstr "Finnisch"
1354
-
1355
- #: classes/helpers/FrmAppHelper.php:1705
1356
- msgid "French"
1357
- msgstr "Französisch"
1358
-
1359
- #: classes/helpers/FrmAppHelper.php:1706
1360
- msgid "French/Canadian"
1361
- msgstr "Französisch/Kanada"
1362
-
1363
- #: classes/helpers/FrmAppHelper.php:1707
1364
- msgid "French/Swiss"
1365
- msgstr "Französisch/Schweiz"
1366
-
1367
- #: classes/helpers/FrmAppHelper.php:1708
1368
- msgid "German"
1369
- msgstr "Deutsch"
1370
-
1371
- #: classes/helpers/FrmAppHelper.php:1709
1372
- msgid "German/Austria"
1373
- msgstr "Deutsch/Österreich"
1374
-
1375
- #: classes/helpers/FrmAppHelper.php:1710
1376
- msgid "German/Switzerland"
1377
- msgstr "Deutsch/Schweiz"
1378
-
1379
- #: classes/helpers/FrmAppHelper.php:1711
1380
- msgid "Greek"
1381
- msgstr "Griechisch"
1382
-
1383
- #: classes/helpers/FrmAppHelper.php:1712 classes/helpers/FrmAppHelper.php:1713
1384
- msgid "Hebrew"
1385
- msgstr "Hebräisch"
1386
-
1387
- #: classes/helpers/FrmAppHelper.php:1714
1388
- msgid "Hindi"
1389
- msgstr "Hinduistisch"
1390
-
1391
- #: classes/helpers/FrmAppHelper.php:1715
1392
- msgid "Hungarian"
1393
- msgstr "Ungarisch"
1394
-
1395
- #: classes/helpers/FrmAppHelper.php:1716
1396
- msgid "Icelandic"
1397
- msgstr "Isländisch"
1398
-
1399
- #: classes/helpers/FrmAppHelper.php:1717
1400
- msgid "Indonesian"
1401
- msgstr "Indonesisch"
1402
-
1403
- #: classes/helpers/FrmAppHelper.php:1718
1404
- msgid "Italian"
1405
- msgstr "Italienisch"
1406
-
1407
- #: classes/helpers/FrmAppHelper.php:1719
1408
- msgid "Japanese"
1409
- msgstr "Japanisch"
1410
-
1411
- #: classes/helpers/FrmAppHelper.php:1720
1412
- msgid "Korean"
1413
- msgstr "Koreanisch"
1414
-
1415
- #: classes/helpers/FrmAppHelper.php:1721
1416
- msgid "Latvian"
1417
- msgstr "Lettisch"
1418
-
1419
- #: classes/helpers/FrmAppHelper.php:1722
1420
- msgid "Lithuanian"
1421
- msgstr "Litauisch"
1422
-
1423
- #: classes/helpers/FrmAppHelper.php:1723
1424
- msgid "Malaysian"
1425
- msgstr "Malaiisch"
1426
-
1427
- #: classes/helpers/FrmAppHelper.php:1724
1428
- msgid "Norwegian"
1429
- msgstr "Norwegisch"
1430
-
1431
- #: classes/helpers/FrmAppHelper.php:1725
1432
- msgid "Polish"
1433
- msgstr "Polnisch"
1434
-
1435
- #: classes/helpers/FrmAppHelper.php:1726
1436
- msgid "Portuguese"
1437
- msgstr "Portugiesisch"
1438
-
1439
- #: classes/helpers/FrmAppHelper.php:1727
1440
- msgid "Portuguese/Brazilian"
1441
- msgstr "Portugiesisch/ Brasilianisch"
1442
-
1443
- #: classes/helpers/FrmAppHelper.php:1728
1444
- msgid "Portuguese/Portugal"
1445
- msgstr "Portugiesisch/Portugal"
1446
-
1447
- #: classes/helpers/FrmAppHelper.php:1729
1448
- msgid "Romanian"
1449
- msgstr "Rumänisch"
1450
-
1451
- #: classes/helpers/FrmAppHelper.php:1730
1452
- msgid "Russian"
1453
- msgstr "Russisch"
1454
-
1455
- #: classes/helpers/FrmAppHelper.php:1731 classes/helpers/FrmAppHelper.php:1732
1456
- msgid "Serbian"
1457
- msgstr "Serbisch"
1458
-
1459
- #: classes/helpers/FrmAppHelper.php:1733
1460
- msgid "Slovak"
1461
- msgstr "Slovakisch"
1462
-
1463
- #: classes/helpers/FrmAppHelper.php:1734
1464
- msgid "Slovenian"
1465
- msgstr "Slovenisch"
1466
-
1467
- #: classes/helpers/FrmAppHelper.php:1735
1468
- msgid "Spanish"
1469
- msgstr "Spanisch"
1470
-
1471
- #: classes/helpers/FrmAppHelper.php:1736
1472
- msgid "Spanish/Latin America"
1473
- msgstr "Spanisch/Lateinamerika"
1474
-
1475
- #: classes/helpers/FrmAppHelper.php:1737
1476
- msgid "Swedish"
1477
- msgstr "Schwedisch"
1478
-
1479
- #: classes/helpers/FrmAppHelper.php:1738
1480
- msgid "Tamil"
1481
- msgstr "Tamilisch"
1482
-
1483
- #: classes/helpers/FrmAppHelper.php:1739
1484
- msgid "Thai"
1485
- msgstr "Thai"
1486
-
1487
- #: classes/helpers/FrmAppHelper.php:1740 classes/helpers/FrmAppHelper.php:1741
1488
- msgid "Turkish"
1489
- msgstr "Türkisch"
1490
-
1491
- #: classes/helpers/FrmAppHelper.php:1742
1492
- msgid "Ukranian"
1493
- msgstr "Ukrainisch"
1494
-
1495
- #: classes/helpers/FrmAppHelper.php:1743
1496
- msgid "Vietnamese"
1497
- msgstr "Vietnamesisch"
1498
-
1499
- #: classes/helpers/FrmCSVExportHelper.php:107
1500
- msgid "(label)"
1501
- msgstr "(Beschriftung)"
1502
-
1503
- #: classes/helpers/FrmCSVExportHelper.php:119
1504
- msgid "Comment"
1505
- msgstr "Kommentar"
1506
-
1507
- #: classes/helpers/FrmCSVExportHelper.php:120
1508
- msgid "Comment User"
1509
- msgstr "Kommentar User"
1510
-
1511
- #: classes/helpers/FrmCSVExportHelper.php:121
1512
- msgid "Comment Date"
1513
- msgstr "Kommentardatum"
1514
-
1515
- #: classes/helpers/FrmCSVExportHelper.php:126
1516
- msgid "Timestamp"
1517
- msgstr "Zeitstempel"
1518
-
1519
- #: classes/helpers/FrmCSVExportHelper.php:127
1520
- msgid "Last Updated"
1521
- msgstr "Zuletzt aktualisiert"
1522
-
1523
- #: classes/helpers/FrmCSVExportHelper.php:129
1524
- msgid "Updated By"
1525
- msgstr "Aktualisiert durch"
1526
-
1527
- #: classes/helpers/FrmCSVExportHelper.php:130
1528
- #: classes/helpers/FrmFormsHelper.php:922
1529
- #: classes/helpers/FrmFormsListHelper.php:363
1530
- msgid "Draft"
1531
- msgstr "Entwurf"
1532
-
1533
- #: classes/helpers/FrmCSVExportHelper.php:131
1534
- msgid "IP"
1535
- msgstr "IP Adresse"
1536
-
1537
- #: classes/helpers/FrmEntriesHelper.php:453
1538
- #: classes/helpers/FrmEntriesHelper.php:454
1539
- msgid "Unknown"
1540
- msgstr "Unbekannt"
1541
-
1542
- #: classes/helpers/FrmEntriesListHelper.php:78
1543
- msgid "No Entries Found"
1544
- msgstr "Keine Einträge gefunden"
1545
-
1546
- #: classes/helpers/FrmEntriesListHelper.php:101
1547
- msgid "View all forms"
1548
- msgstr "Alle Formulare betrachten"
1549
-
1550
- #: classes/helpers/FrmEntriesListHelper.php:241
1551
- #: classes/views/frm-entries/sidebar-shared.php:24
1552
- msgid "View"
1553
- msgstr "Ansicht"
1554
-
1555
- #: classes/helpers/FrmFieldsHelper.php:160
1556
- #: classes/helpers/FrmFieldsHelper.php:276
1557
- #: classes/models/fields/FrmFieldType.php:314
1558
- #, php-format
1559
- msgid "%s is invalid"
1560
- msgstr "%s ist ungültig"
1561
-
1562
- #: classes/helpers/FrmFieldsHelper.php:272
1563
- #, php-format
1564
- msgid "%s must be unique"
1565
- msgstr "%s muss eindeutig sein."
1566
-
1567
- #: classes/helpers/FrmFieldsHelper.php:275
1568
- #: classes/models/fields/FrmFieldType.php:312
1569
- msgid "This field is invalid"
1570
- msgstr "Das Feld ist ungültig"
1571
-
1572
- #: classes/helpers/FrmFieldsHelper.php:461
1573
- #, php-format
1574
- msgid "Please add options from the WordPress \"%1$s\" page"
1575
- msgstr ""
1576
- "Bitte führen Sie die Einstellungen auf der WordPress Seite \"%1$s\" durch"
1577
-
1578
- #: classes/helpers/FrmFieldsHelper.php:1226
1579
- msgid "Afghanistan"
1580
- msgstr "Afghanistan"
1581
-
1582
- #: classes/helpers/FrmFieldsHelper.php:1226
1583
- msgid "Albania"
1584
- msgstr "Albanien"
1585
-
1586
- #: classes/helpers/FrmFieldsHelper.php:1226
1587
- msgid "Algeria"
1588
- msgstr "Algerien"
1589
-
1590
- #: classes/helpers/FrmFieldsHelper.php:1226
1591
- msgid "American Samoa"
1592
- msgstr "Amerikanisch-Samoa"
1593
-
1594
- #: classes/helpers/FrmFieldsHelper.php:1226
1595
- msgid "Andorra"
1596
- msgstr "Andorra"
1597
-
1598
- #: classes/helpers/FrmFieldsHelper.php:1226
1599
- msgid "Angola"
1600
- msgstr "Angola"
1601
-
1602
- #: classes/helpers/FrmFieldsHelper.php:1226
1603
- msgid "Anguilla"
1604
- msgstr "Anguilla"
1605
-
1606
- #: classes/helpers/FrmFieldsHelper.php:1226
1607
- msgid "Antarctica"
1608
- msgstr "Antarktis"
1609
-
1610
- #: classes/helpers/FrmFieldsHelper.php:1226
1611
- msgid "Antigua and Barbuda"
1612
- msgstr "Antigua und Barbuda"
1613
-
1614
- #: classes/helpers/FrmFieldsHelper.php:1226
1615
- msgid "Argentina"
1616
- msgstr "Argentinien"
1617
-
1618
- #: classes/helpers/FrmFieldsHelper.php:1226
1619
- msgid "Armenia"
1620
- msgstr "Armenien"
1621
-
1622
- #: classes/helpers/FrmFieldsHelper.php:1226
1623
- msgid "Aruba"
1624
- msgstr "Aruba"
1625
-
1626
- #: classes/helpers/FrmFieldsHelper.php:1226
1627
- msgid "Australia"
1628
- msgstr "Australien"
1629
-
1630
- #: classes/helpers/FrmFieldsHelper.php:1226
1631
- msgid "Austria"
1632
- msgstr "&Ouml;sterreich"
1633
-
1634
- #: classes/helpers/FrmFieldsHelper.php:1226
1635
- msgid "Azerbaijan"
1636
- msgstr "Aserbaidschan"
1637
-
1638
- #: classes/helpers/FrmFieldsHelper.php:1226
1639
- msgid "Bahamas"
1640
- msgstr "Bahamas"
1641
-
1642
- #: classes/helpers/FrmFieldsHelper.php:1226
1643
- msgid "Bahrain"
1644
- msgstr "Bahrain"
1645
-
1646
- #: classes/helpers/FrmFieldsHelper.php:1226
1647
- msgid "Bangladesh"
1648
- msgstr "Bangladesh"
1649
-
1650
- #: classes/helpers/FrmFieldsHelper.php:1226
1651
- msgid "Barbados"
1652
- msgstr "Barbados"
1653
-
1654
- #: classes/helpers/FrmFieldsHelper.php:1226
1655
- msgid "Belarus"
1656
- msgstr "Wei&szlig;russland"
1657
-
1658
- #: classes/helpers/FrmFieldsHelper.php:1226
1659
- msgid "Belgium"
1660
- msgstr "Belgien"
1661
-
1662
- #: classes/helpers/FrmFieldsHelper.php:1226
1663
- msgid "Belize"
1664
- msgstr "Belize"
1665
-
1666
- #: classes/helpers/FrmFieldsHelper.php:1226
1667
- msgid "Benin"
1668
- msgstr "Benin"
1669
-
1670
- #: classes/helpers/FrmFieldsHelper.php:1226
1671
- msgid "Bermuda"
1672
- msgstr "Bermuda"
1673
-
1674
- #: classes/helpers/FrmFieldsHelper.php:1226
1675
- msgid "Bhutan"
1676
- msgstr "Bhutan"
1677
-
1678
- #: classes/helpers/FrmFieldsHelper.php:1226
1679
- msgid "Bolivia"
1680
- msgstr "Bolivien"
1681
-
1682
- #: classes/helpers/FrmFieldsHelper.php:1226
1683
- msgid "Bosnia and Herzegovina"
1684
- msgstr "Bosnien und Herzegowina"
1685
-
1686
- #: classes/helpers/FrmFieldsHelper.php:1226
1687
- msgid "Botswana"
1688
- msgstr "Botswana"
1689
-
1690
- #: classes/helpers/FrmFieldsHelper.php:1226
1691
- msgid "Brazil"
1692
- msgstr "Brasilien"
1693
-
1694
- #: classes/helpers/FrmFieldsHelper.php:1226
1695
- msgid "Brunei"
1696
- msgstr "Brunei"
1697
-
1698
- #: classes/helpers/FrmFieldsHelper.php:1226
1699
- msgid "Bulgaria"
1700
- msgstr "Bulgarien"
1701
-
1702
- #: classes/helpers/FrmFieldsHelper.php:1226
1703
- msgid "Burkina Faso"
1704
- msgstr "Burkina Faso"
1705
-
1706
- #: classes/helpers/FrmFieldsHelper.php:1226
1707
- msgid "Burundi"
1708
- msgstr "Burundi"
1709
-
1710
- #: classes/helpers/FrmFieldsHelper.php:1226
1711
- msgid "Cambodia"
1712
- msgstr "Kambodscha"
1713
-
1714
- #: classes/helpers/FrmFieldsHelper.php:1226
1715
- msgid "Cameroon"
1716
- msgstr "Kamerun"
1717
-
1718
- #: classes/helpers/FrmFieldsHelper.php:1226
1719
- msgid "Canada"
1720
- msgstr "Kanada"
1721
-
1722
- #: classes/helpers/FrmFieldsHelper.php:1226
1723
- msgid "Cape Verde"
1724
- msgstr "Kapverdische Inseln"
1725
-
1726
- #: classes/helpers/FrmFieldsHelper.php:1226
1727
- msgid "Cayman Islands"
1728
- msgstr "Cayman Inseln"
1729
-
1730
- #: classes/helpers/FrmFieldsHelper.php:1226
1731
- msgid "Central African Republic"
1732
- msgstr "Zentralafrikanische Republik"
1733
-
1734
- #: classes/helpers/FrmFieldsHelper.php:1226
1735
- msgid "Chad"
1736
- msgstr "Tschad"
1737
-
1738
- #: classes/helpers/FrmFieldsHelper.php:1226
1739
- msgid "Chile"
1740
- msgstr "Chile"
1741
-
1742
- #: classes/helpers/FrmFieldsHelper.php:1226
1743
- msgid "China"
1744
- msgstr "China"
1745
-
1746
- #: classes/helpers/FrmFieldsHelper.php:1226
1747
- msgid "Colombia"
1748
- msgstr "Kolumbien"
1749
-
1750
- #: classes/helpers/FrmFieldsHelper.php:1226
1751
- msgid "Comoros"
1752
- msgstr "Komoren"
1753
-
1754
- #: classes/helpers/FrmFieldsHelper.php:1226
1755
- msgid "Congo"
1756
- msgstr "Kongo"
1757
-
1758
- #: classes/helpers/FrmFieldsHelper.php:1226
1759
- msgid "Costa Rica"
1760
- msgstr "Costa Rica"
1761
-
1762
- #: classes/helpers/FrmFieldsHelper.php:1226
1763
- msgid "C&ocirc;te d'Ivoire"
1764
- msgstr "C&ocirc;te d'Ivoire"
1765
-
1766
- #: classes/helpers/FrmFieldsHelper.php:1226
1767
- msgid "Croatia"
1768
- msgstr "Kroatien"
1769
-
1770
- #: classes/helpers/FrmFieldsHelper.php:1226
1771
- msgid "Cuba"
1772
- msgstr "Kuba"
1773
-
1774
- #: classes/helpers/FrmFieldsHelper.php:1226
1775
- msgid "Cyprus"
1776
- msgstr "Zypern"
1777
-
1778
- #: classes/helpers/FrmFieldsHelper.php:1226
1779
- msgid "Czech Republic"
1780
- msgstr "Tschechische Republik"
1781
-
1782
- #: classes/helpers/FrmFieldsHelper.php:1226
1783
- msgid "Denmark"
1784
- msgstr "D&auml;nemark"
1785
-
1786
- #: classes/helpers/FrmFieldsHelper.php:1226
1787
- msgid "Djibouti"
1788
- msgstr "Djibouti"
1789
-
1790
- #: classes/helpers/FrmFieldsHelper.php:1226
1791
- msgid "Dominica"
1792
- msgstr "Dominica"
1793
-
1794
- #: classes/helpers/FrmFieldsHelper.php:1226
1795
- msgid "Dominican Republic"
1796
- msgstr "Dominikanische Republik"
1797
-
1798
- #: classes/helpers/FrmFieldsHelper.php:1226
1799
- msgid "East Timor"
1800
- msgstr "Osttimor"
1801
-
1802
- #: classes/helpers/FrmFieldsHelper.php:1226
1803
- msgid "Ecuador"
1804
- msgstr "Ecuador"
1805
-
1806
- #: classes/helpers/FrmFieldsHelper.php:1226
1807
- msgid "Egypt"
1808
- msgstr "&Auml;gypten"
1809
-
1810
- #: classes/helpers/FrmFieldsHelper.php:1226
1811
- msgid "El Salvador"
1812
- msgstr "El Salvador"
1813
-
1814
- #: classes/helpers/FrmFieldsHelper.php:1226
1815
- msgid "Equatorial Guinea"
1816
- msgstr "Äquatorialguinea"
1817
-
1818
- #: classes/helpers/FrmFieldsHelper.php:1226
1819
- msgid "Eritrea"
1820
- msgstr "Eritrea"
1821
-
1822
- #: classes/helpers/FrmFieldsHelper.php:1226
1823
- msgid "Estonia"
1824
- msgstr "Estland"
1825
-
1826
- #: classes/helpers/FrmFieldsHelper.php:1226
1827
- msgid "Ethiopia"
1828
- msgstr "Äthiopien"
1829
-
1830
- #: classes/helpers/FrmFieldsHelper.php:1226
1831
- msgid "Fiji"
1832
- msgstr "Fiji"
1833
-
1834
- #: classes/helpers/FrmFieldsHelper.php:1226
1835
- msgid "Finland"
1836
- msgstr "Finnland"
1837
-
1838
- #: classes/helpers/FrmFieldsHelper.php:1226
1839
- msgid "France"
1840
- msgstr "Frankreich"
1841
-
1842
- #: classes/helpers/FrmFieldsHelper.php:1226
1843
- msgid "French Guiana"
1844
- msgstr "Französisch-Guayana"
1845
-
1846
- #: classes/helpers/FrmFieldsHelper.php:1226
1847
- msgid "French Polynesia"
1848
- msgstr "Französisch-Polynesien"
1849
-
1850
- #: classes/helpers/FrmFieldsHelper.php:1226
1851
- msgid "Gabon"
1852
- msgstr "Gabun"
1853
-
1854
- #: classes/helpers/FrmFieldsHelper.php:1226
1855
- msgid "Gambia"
1856
- msgstr "Gambia"
1857
-
1858
- #: classes/helpers/FrmFieldsHelper.php:1226
1859
- msgid "Georgia"
1860
- msgstr "Georgien"
1861
-
1862
- #: classes/helpers/FrmFieldsHelper.php:1226
1863
- msgid "Germany"
1864
- msgstr "Deutschland"
1865
-
1866
- #: classes/helpers/FrmFieldsHelper.php:1226
1867
- msgid "Ghana"
1868
- msgstr "Ghana"
1869
-
1870
- #: classes/helpers/FrmFieldsHelper.php:1226
1871
- msgid "Gibraltar"
1872
- msgstr "Gibraltar"
1873
-
1874
- #: classes/helpers/FrmFieldsHelper.php:1226
1875
- msgid "Greece"
1876
- msgstr "Griechenland"
1877
-
1878
- #: classes/helpers/FrmFieldsHelper.php:1226
1879
- msgid "Greenland"
1880
- msgstr "Grünland"
1881
-
1882
- #: classes/helpers/FrmFieldsHelper.php:1226
1883
- msgid "Grenada"
1884
- msgstr "Grenada"
1885
-
1886
- #: classes/helpers/FrmFieldsHelper.php:1226
1887
- msgid "Guam"
1888
- msgstr "Guam"
1889
-
1890
- #: classes/helpers/FrmFieldsHelper.php:1226
1891
- msgid "Guatemala"
1892
- msgstr "Guatemala"
1893
-
1894
- #: classes/helpers/FrmFieldsHelper.php:1226
1895
- msgid "Guinea"
1896
- msgstr "Guinea"
1897
-
1898
- #: classes/helpers/FrmFieldsHelper.php:1226
1899
- msgid "Guinea-Bissau"
1900
- msgstr "Guinea-Bissau"
1901
-
1902
- #: classes/helpers/FrmFieldsHelper.php:1226
1903
- msgid "Guyana"
1904
- msgstr "Guyana"
1905
-
1906
- #: classes/helpers/FrmFieldsHelper.php:1226
1907
- msgid "Haiti"
1908
- msgstr "Haiti"
1909
-
1910
- #: classes/helpers/FrmFieldsHelper.php:1226
1911
- msgid "Honduras"
1912
- msgstr "Honduras"
1913
-
1914
- #: classes/helpers/FrmFieldsHelper.php:1226
1915
- msgid "Hong Kong"
1916
- msgstr "Hong Kong"
1917
-
1918
- #: classes/helpers/FrmFieldsHelper.php:1226
1919
- msgid "Hungary"
1920
- msgstr "Ungarn"
1921
-
1922
- #: classes/helpers/FrmFieldsHelper.php:1226
1923
- msgid "Iceland"
1924
- msgstr "Island"
1925
-
1926
- #: classes/helpers/FrmFieldsHelper.php:1226
1927
- msgid "India"
1928
- msgstr "Indien"
1929
-
1930
- #: classes/helpers/FrmFieldsHelper.php:1226
1931
- msgid "Indonesia"
1932
- msgstr "Indonesien"
1933
-
1934
- #: classes/helpers/FrmFieldsHelper.php:1226
1935
- msgid "Iran"
1936
- msgstr "Iran"
1937
-
1938
- #: classes/helpers/FrmFieldsHelper.php:1226
1939
- msgid "Iraq"
1940
- msgstr "Irak"
1941
-
1942
- #: classes/helpers/FrmFieldsHelper.php:1226
1943
- msgid "Ireland"
1944
- msgstr "Irland"
1945
-
1946
- #: classes/helpers/FrmFieldsHelper.php:1226
1947
- msgid "Israel"
1948
- msgstr "Israel"
1949
-
1950
- #: classes/helpers/FrmFieldsHelper.php:1226
1951
- msgid "Italy"
1952
- msgstr "Italien"
1953
-
1954
- #: classes/helpers/FrmFieldsHelper.php:1226
1955
- msgid "Jamaica"
1956
- msgstr "Jamaika"
1957
-
1958
- #: classes/helpers/FrmFieldsHelper.php:1226
1959
- msgid "Japan"
1960
- msgstr "Japan"
1961
-
1962
- #: classes/helpers/FrmFieldsHelper.php:1226
1963
- msgid "Jordan"
1964
- msgstr "Jordanien"
1965
-
1966
- #: classes/helpers/FrmFieldsHelper.php:1226
1967
- msgid "Kazakhstan"
1968
- msgstr "Kasachstan"
1969
-
1970
- #: classes/helpers/FrmFieldsHelper.php:1226
1971
- msgid "Kenya"
1972
- msgstr "Kenia"
1973
-
1974
- #: classes/helpers/FrmFieldsHelper.php:1226
1975
- msgid "Kiribati"
1976
- msgstr "Kiribati"
1977
-
1978
- #: classes/helpers/FrmFieldsHelper.php:1226
1979
- msgid "North Korea"
1980
- msgstr "Nordkorea"
1981
-
1982
- #: classes/helpers/FrmFieldsHelper.php:1226
1983
- msgid "South Korea"
1984
- msgstr "Südkorea"
1985
-
1986
- #: classes/helpers/FrmFieldsHelper.php:1226
1987
- msgid "Kuwait"
1988
- msgstr "Kuwait"
1989
-
1990
- #: classes/helpers/FrmFieldsHelper.php:1226
1991
- msgid "Kyrgyzstan"
1992
- msgstr "Kirgistan"
1993
-
1994
- #: classes/helpers/FrmFieldsHelper.php:1226
1995
- msgid "Laos"
1996
- msgstr "Laos"
1997
-
1998
- #: classes/helpers/FrmFieldsHelper.php:1226
1999
- msgid "Latvia"
2000
- msgstr "Lettland"
2001
-
2002
- #: classes/helpers/FrmFieldsHelper.php:1226
2003
- msgid "Lebanon"
2004
- msgstr "Libanon"
2005
-
2006
- #: classes/helpers/FrmFieldsHelper.php:1226
2007
- msgid "Lesotho"
2008
- msgstr "Lesotho"
2009
-
2010
- #: classes/helpers/FrmFieldsHelper.php:1226
2011
- msgid "Liberia"
2012
- msgstr "Liberia"
2013
-
2014
- #: classes/helpers/FrmFieldsHelper.php:1226
2015
- msgid "Libya"
2016
- msgstr "Libyen"
2017
-
2018
- #: classes/helpers/FrmFieldsHelper.php:1226
2019
- msgid "Liechtenstein"
2020
- msgstr "Liechtenstein"
2021
-
2022
- #: classes/helpers/FrmFieldsHelper.php:1226
2023
- msgid "Lithuania"
2024
- msgstr "Litauen"
2025
-
2026
- #: classes/helpers/FrmFieldsHelper.php:1226
2027
- msgid "Luxembourg"
2028
- msgstr "Luxemburg"
2029
-
2030
- #: classes/helpers/FrmFieldsHelper.php:1226
2031
- msgid "Macedonia"
2032
- msgstr "Mazedonien"
2033
-
2034
- #: classes/helpers/FrmFieldsHelper.php:1226
2035
- msgid "Madagascar"
2036
- msgstr "Madagascar"
2037
-
2038
- #: classes/helpers/FrmFieldsHelper.php:1226
2039
- msgid "Malawi"
2040
- msgstr "Malawi"
2041
-
2042
- #: classes/helpers/FrmFieldsHelper.php:1226
2043
- msgid "Malaysia"
2044
- msgstr "Malaysia"
2045
-
2046
- #: classes/helpers/FrmFieldsHelper.php:1226
2047
- msgid "Maldives"
2048
- msgstr "Malediven"
2049
-
2050
- #: classes/helpers/FrmFieldsHelper.php:1226
2051
- msgid "Mali"
2052
- msgstr "Mali"
2053
-
2054
- #: classes/helpers/FrmFieldsHelper.php:1226
2055
- msgid "Malta"
2056
- msgstr "Malta"
2057
-
2058
- #: classes/helpers/FrmFieldsHelper.php:1226
2059
- msgid "Marshall Islands"
2060
- msgstr "Marshall Inseln"
2061
-
2062
- #: classes/helpers/FrmFieldsHelper.php:1226
2063
- msgid "Mauritania"
2064
- msgstr "Mauretanien"
2065
-
2066
- #: classes/helpers/FrmFieldsHelper.php:1226
2067
- msgid "Mauritius"
2068
- msgstr "Mauritius"
2069
-
2070
- #: classes/helpers/FrmFieldsHelper.php:1226
2071
- msgid "Mexico"
2072
- msgstr "Mexiko"
2073
-
2074
- #: classes/helpers/FrmFieldsHelper.php:1226
2075
- msgid "Micronesia"
2076
- msgstr "Mikronesien"
2077
-
2078
- #: classes/helpers/FrmFieldsHelper.php:1226
2079
- msgid "Moldova"
2080
- msgstr "Moldawien"
2081
-
2082
- #: classes/helpers/FrmFieldsHelper.php:1226
2083
- msgid "Monaco"
2084
- msgstr "Monaco"
2085
-
2086
- #: classes/helpers/FrmFieldsHelper.php:1226
2087
- msgid "Mongolia"
2088
- msgstr "Mongolei"
2089
-
2090
- #: classes/helpers/FrmFieldsHelper.php:1226
2091
- msgid "Montenegro"
2092
- msgstr "Montenegro"
2093
-
2094
- #: classes/helpers/FrmFieldsHelper.php:1226
2095
- msgid "Montserrat"
2096
- msgstr "Montserrat"
2097
-
2098
- #: classes/helpers/FrmFieldsHelper.php:1226
2099
- msgid "Morocco"
2100
- msgstr "Marokko"
2101
-
2102
- #: classes/helpers/FrmFieldsHelper.php:1226
2103
- msgid "Mozambique"
2104
- msgstr "Mosambik "
2105
-
2106
- #: classes/helpers/FrmFieldsHelper.php:1226
2107
- msgid "Myanmar"
2108
- msgstr "Myanmar"
2109
-
2110
- #: classes/helpers/FrmFieldsHelper.php:1226
2111
- msgid "Namibia"
2112
- msgstr "Namibia"
2113
-
2114
- #: classes/helpers/FrmFieldsHelper.php:1226
2115
- msgid "Nauru"
2116
- msgstr "Nauru"
2117
-
2118
- #: classes/helpers/FrmFieldsHelper.php:1226
2119
- msgid "Nepal"
2120
- msgstr "Nepal"
2121
-
2122
- #: classes/helpers/FrmFieldsHelper.php:1226
2123
- msgid "Netherlands"
2124
- msgstr "Niederlande"
2125
-
2126
- #: classes/helpers/FrmFieldsHelper.php:1226
2127
- msgid "New Zealand"
2128
- msgstr "Neuseeland"
2129
-
2130
- #: classes/helpers/FrmFieldsHelper.php:1226
2131
- msgid "Nicaragua"
2132
- msgstr "Nikaragua"
2133
-
2134
- #: classes/helpers/FrmFieldsHelper.php:1226
2135
- msgid "Niger"
2136
- msgstr "Niger"
2137
-
2138
- #: classes/helpers/FrmFieldsHelper.php:1226
2139
- msgid "Nigeria"
2140
- msgstr "Nigeria"
2141
-
2142
- #: classes/helpers/FrmFieldsHelper.php:1226
2143
- msgid "Norway"
2144
- msgstr "Norwegen"
2145
-
2146
- #: classes/helpers/FrmFieldsHelper.php:1226
2147
- msgid "Northern Mariana Islands"
2148
- msgstr "Nördliche Marianen Inseln"
2149
-
2150
- #: classes/helpers/FrmFieldsHelper.php:1226
2151
- msgid "Oman"
2152
- msgstr "Oman"
2153
-
2154
- #: classes/helpers/FrmFieldsHelper.php:1226
2155
- msgid "Pakistan"
2156
- msgstr "Pakistan"
2157
-
2158
- #: classes/helpers/FrmFieldsHelper.php:1226
2159
- msgid "Palau"
2160
- msgstr "Palau"
2161
-
2162
- #: classes/helpers/FrmFieldsHelper.php:1226
2163
- msgid "Palestine"
2164
- msgstr "Palästina"
2165
-
2166
- #: classes/helpers/FrmFieldsHelper.php:1226
2167
- msgid "Panama"
2168
- msgstr "Panama"
2169
-
2170
- #: classes/helpers/FrmFieldsHelper.php:1226
2171
- msgid "Papua New Guinea"
2172
- msgstr "Papua-Neuguinea"
2173
-
2174
- #: classes/helpers/FrmFieldsHelper.php:1226
2175
- msgid "Paraguay"
2176
- msgstr "Paraguay"
2177
-
2178
- #: classes/helpers/FrmFieldsHelper.php:1226
2179
- msgid "Peru"
2180
- msgstr "Peru"
2181
-
2182
- #: classes/helpers/FrmFieldsHelper.php:1226
2183
- msgid "Philippines"
2184
- msgstr "Philippinen"
2185
-
2186
- #: classes/helpers/FrmFieldsHelper.php:1226
2187
- msgid "Poland"
2188
- msgstr "Polen"
2189
-
2190
- #: classes/helpers/FrmFieldsHelper.php:1226
2191
- msgid "Portugal"
2192
- msgstr "Portugal"
2193
-
2194
- #: classes/helpers/FrmFieldsHelper.php:1226
2195
- msgid "Puerto Rico"
2196
- msgstr "Puerto Rico"
2197
-
2198
- #: classes/helpers/FrmFieldsHelper.php:1226
2199
- msgid "Qatar"
2200
- msgstr "Katar"
2201
-
2202
- #: classes/helpers/FrmFieldsHelper.php:1226
2203
- msgid "Romania"
2204
- msgstr "Romänien"
2205
-
2206
- #: classes/helpers/FrmFieldsHelper.php:1226
2207
- msgid "Russia"
2208
- msgstr "Russland"
2209
-
2210
- #: classes/helpers/FrmFieldsHelper.php:1226
2211
- msgid "Rwanda"
2212
- msgstr "Ruanda"
2213
-
2214
- #: classes/helpers/FrmFieldsHelper.php:1226
2215
- msgid "Saint Kitts and Nevis"
2216
- msgstr "St. Kitts und Nevis"
2217
-
2218
- #: classes/helpers/FrmFieldsHelper.php:1226
2219
- msgid "Saint Lucia"
2220
- msgstr "St. Lucia"
2221
-
2222
- #: classes/helpers/FrmFieldsHelper.php:1226
2223
- msgid "Saint Vincent and the Grenadines"
2224
- msgstr "St. Vincent und die Grenadinen"
2225
-
2226
- #: classes/helpers/FrmFieldsHelper.php:1226
2227
- msgid "Samoa"
2228
- msgstr "Samoa"
2229
-
2230
- #: classes/helpers/FrmFieldsHelper.php:1226
2231
- msgid "San Marino"
2232
- msgstr "San Marino"
2233
-
2234
- #: classes/helpers/FrmFieldsHelper.php:1226
2235
- msgid "Sao Tome and Principe"
2236
- msgstr "São Tomé und Príncipe"
2237
-
2238
- #: classes/helpers/FrmFieldsHelper.php:1226
2239
- msgid "Saudi Arabia"
2240
- msgstr "Saudi Arabien"
2241
-
2242
- #: classes/helpers/FrmFieldsHelper.php:1226
2243
- msgid "Senegal"
2244
- msgstr "Senegal"
2245
-
2246
- #: classes/helpers/FrmFieldsHelper.php:1226
2247
- msgid "Serbia and Montenegro"
2248
- msgstr "Serbien und Montenegro"
2249
-
2250
- #: classes/helpers/FrmFieldsHelper.php:1226
2251
- msgid "Seychelles"
2252
- msgstr "Seychellen"
2253
-
2254
- #: classes/helpers/FrmFieldsHelper.php:1226
2255
- msgid "Sierra Leone"
2256
- msgstr "Sierra Leone"
2257
-
2258
- #: classes/helpers/FrmFieldsHelper.php:1226
2259
- msgid "Singapore"
2260
- msgstr "Singapur"
2261
-
2262
- #: classes/helpers/FrmFieldsHelper.php:1226
2263
- msgid "Slovakia"
2264
- msgstr "Slowakei"
2265
-
2266
- #: classes/helpers/FrmFieldsHelper.php:1226
2267
- msgid "Slovenia"
2268
- msgstr "Slovenien"
2269
-
2270
- #: classes/helpers/FrmFieldsHelper.php:1226
2271
- msgid "Solomon Islands"
2272
- msgstr "Salomoninseln"
2273
-
2274
- #: classes/helpers/FrmFieldsHelper.php:1226
2275
- msgid "Somalia"
2276
- msgstr "Somalia"
2277
-
2278
- #: classes/helpers/FrmFieldsHelper.php:1226
2279
- msgid "South Africa"
2280
- msgstr "Südafrika"
2281
-
2282
- #: classes/helpers/FrmFieldsHelper.php:1226
2283
- msgid "South Sudan"
2284
- msgstr "Südsudan"
2285
-
2286
- #: classes/helpers/FrmFieldsHelper.php:1226
2287
- msgid "Spain"
2288
- msgstr "Spanien"
2289
-
2290
- #: classes/helpers/FrmFieldsHelper.php:1226
2291
- msgid "Sri Lanka"
2292
- msgstr "Sri Lanka"
2293
-
2294
- #: classes/helpers/FrmFieldsHelper.php:1226
2295
- msgid "Sudan"
2296
- msgstr "Sudan"
2297
-
2298
- #: classes/helpers/FrmFieldsHelper.php:1226
2299
- msgid "Suriname"
2300
- msgstr "Surinam"
2301
-
2302
- #: classes/helpers/FrmFieldsHelper.php:1226
2303
- msgid "Swaziland"
2304
- msgstr "Swasiland"
2305
-
2306
- #: classes/helpers/FrmFieldsHelper.php:1226
2307
- msgid "Sweden"
2308
- msgstr "Sweden"
2309
-
2310
- #: classes/helpers/FrmFieldsHelper.php:1226
2311
- msgid "Switzerland"
2312
- msgstr "Schweiz"
2313
-
2314
- #: classes/helpers/FrmFieldsHelper.php:1226
2315
- msgid "Syria"
2316
- msgstr "Syrien"
2317
-
2318
- #: classes/helpers/FrmFieldsHelper.php:1226
2319
- msgid "Taiwan"
2320
- msgstr "Taiwan"
2321
-
2322
- #: classes/helpers/FrmFieldsHelper.php:1226
2323
- msgid "Tajikistan"
2324
- msgstr "Tajikistan"
2325
-
2326
- #: classes/helpers/FrmFieldsHelper.php:1226
2327
- msgid "Tanzania"
2328
- msgstr "Tansania"
2329
-
2330
- #: classes/helpers/FrmFieldsHelper.php:1226
2331
- msgid "Thailand"
2332
- msgstr "Thailand"
2333
-
2334
- #: classes/helpers/FrmFieldsHelper.php:1226
2335
- msgid "Togo"
2336
- msgstr "Togo"
2337
-
2338
- #: classes/helpers/FrmFieldsHelper.php:1226
2339
- msgid "Tonga"
2340
- msgstr "Tonga"
2341
-
2342
- #: classes/helpers/FrmFieldsHelper.php:1226
2343
- msgid "Trinidad and Tobago"
2344
- msgstr "Trinidad und Tobago"
2345
-
2346
- #: classes/helpers/FrmFieldsHelper.php:1226
2347
- msgid "Tunisia"
2348
- msgstr "Tunesien"
2349
-
2350
- #: classes/helpers/FrmFieldsHelper.php:1226
2351
- msgid "Turkey"
2352
- msgstr "Türkei"
2353
-
2354
- #: classes/helpers/FrmFieldsHelper.php:1226
2355
- msgid "Turkmenistan"
2356
- msgstr "Turkmenistan"
2357
-
2358
- #: classes/helpers/FrmFieldsHelper.php:1226
2359
- msgid "Tuvalu"
2360
- msgstr "Tuvalu"
2361
-
2362
- #: classes/helpers/FrmFieldsHelper.php:1226
2363
- msgid "Uganda"
2364
- msgstr "Uganda"
2365
-
2366
- #: classes/helpers/FrmFieldsHelper.php:1226
2367
- msgid "Ukraine"
2368
- msgstr "Ukraine"
2369
-
2370
- #: classes/helpers/FrmFieldsHelper.php:1226
2371
- msgid "United Arab Emirates"
2372
- msgstr "Vereinigte Arabische Emirate"
2373
-
2374
- #: classes/helpers/FrmFieldsHelper.php:1226
2375
- msgid "United Kingdom"
2376
- msgstr "Vereinigtes Königreich"
2377
-
2378
- #: classes/helpers/FrmFieldsHelper.php:1226
2379
- msgid "United States"
2380
- msgstr "Vereinigte Staaten "
2381
-
2382
- #: classes/helpers/FrmFieldsHelper.php:1226
2383
- msgid "Uruguay"
2384
- msgstr "Uruguay"
2385
-
2386
- #: classes/helpers/FrmFieldsHelper.php:1226
2387
- msgid "Uzbekistan"
2388
- msgstr "Usbekistan"
2389
-
2390
- #: classes/helpers/FrmFieldsHelper.php:1226
2391
- msgid "Vanuatu"
2392
- msgstr "Vanuatu"
2393
-
2394
- #: classes/helpers/FrmFieldsHelper.php:1226
2395
- msgid "Vatican City"
2396
- msgstr "Vatikanstadt"
2397
-
2398
- #: classes/helpers/FrmFieldsHelper.php:1226
2399
- msgid "Venezuela"
2400
- msgstr "Venezuela"
2401
-
2402
- #: classes/helpers/FrmFieldsHelper.php:1226
2403
- msgid "Vietnam"
2404
- msgstr "Vietnam"
2405
-
2406
- #: classes/helpers/FrmFieldsHelper.php:1226
2407
- msgid "Virgin Islands, British"
2408
- msgstr "Jungferninseln, Britisch"
2409
-
2410
- #: classes/helpers/FrmFieldsHelper.php:1226
2411
- msgid "Virgin Islands, U.S."
2412
- msgstr "Jungferninseln, Vereinigte Staaten "
2413
-
2414
- #: classes/helpers/FrmFieldsHelper.php:1226
2415
- msgid "Yemen"
2416
- msgstr "Jemen"
2417
-
2418
- #: classes/helpers/FrmFieldsHelper.php:1226
2419
- msgid "Zambia"
2420
- msgstr "Sambia"
2421
-
2422
- #: classes/helpers/FrmFieldsHelper.php:1226
2423
- msgid "Zimbabwe"
2424
- msgstr "Simbabwe"
2425
-
2426
- #: classes/helpers/FrmFieldsHelper.php:1230
2427
- msgid "Countries"
2428
- msgstr "L&auml;nder"
2429
-
2430
- #: classes/helpers/FrmFieldsHelper.php:1235
2431
- msgid "U.S. State Abbreviations"
2432
- msgstr "U.S. Staatenkürzel"
2433
-
2434
- #: classes/helpers/FrmFieldsHelper.php:1239
2435
- msgid "U.S. States"
2436
- msgstr "U.S.-Bundesstaaten"
2437
-
2438
- #: classes/helpers/FrmFieldsHelper.php:1242
2439
- msgid "Age"
2440
- msgstr "Alter"
2441
-
2442
- #: classes/helpers/FrmFieldsHelper.php:1243
2443
- msgid "Under 18"