Formidable Forms – Form Builder for WordPress - Version 1.05.05

Version Description

  • Added Dutch translation (Eric Horstman)
  • Fixed "Customize Form HTML" link issues some users were having
  • PRO: Load jQuery UI javascript for datepicker
  • PRO: Fixed custom display "where" options to work with multiple where rows
Download this release

Release Info

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

Code changes from version 1.04.07 to 1.05.05

Files changed (65) hide show
  1. classes/controllers/FrmApiController.php +1 -4
  2. classes/controllers/FrmAppController.php +86 -34
  3. classes/controllers/FrmEntriesController.php +21 -15
  4. classes/controllers/FrmFieldsController.php +124 -23
  5. classes/controllers/FrmFormsController.php +33 -39
  6. classes/controllers/FrmSettingsController.php +6 -6
  7. classes/controllers/FrmStatisticsController.php +2 -2
  8. classes/helpers/FrmAppHelper.php +270 -49
  9. classes/helpers/FrmEntriesHelper.php +46 -33
  10. classes/helpers/FrmFieldsHelper.php +80 -35
  11. classes/helpers/FrmFormsHelper.php +11 -13
  12. classes/models/FrmDb.php +181 -152
  13. classes/models/FrmEntry.php +129 -92
  14. classes/models/FrmEntryMeta.php +20 -17
  15. classes/models/FrmField.php +38 -17
  16. classes/models/FrmForm.php +51 -29
  17. classes/models/FrmNotification.php +16 -9
  18. classes/models/FrmSettings.php +23 -8
  19. classes/models/FrmUpdate.php +15 -13
  20. classes/templates/contact.php +19 -12
  21. classes/views/frm-entries/direct.php +4 -4
  22. classes/views/frm-entries/errors.php +36 -0
  23. classes/views/frm-entries/form.php +16 -20
  24. classes/views/frm-entries/frm-entry.php +12 -11
  25. classes/views/frm-entries/list.php +2 -2
  26. classes/views/frm-entries/new.php +2 -2
  27. classes/views/frm-fields/import_choices.php +86 -0
  28. classes/views/frm-fields/input.php +37 -19
  29. classes/views/frm-fields/show.php +1 -1
  30. classes/views/frm-fields/single-option.php +1 -2
  31. classes/views/frm-forms/add_field.php +61 -23
  32. classes/views/frm-forms/add_field_links.php +10 -5
  33. classes/views/frm-forms/default-templates.php +5 -3
  34. classes/views/frm-forms/edit.php +8 -5
  35. classes/views/frm-forms/footer.php +1 -1
  36. classes/views/frm-forms/form.php +17 -12
  37. classes/views/frm-forms/insert_form_popup.php +1 -1
  38. classes/views/frm-forms/list.php +32 -21
  39. classes/views/frm-forms/new-field-js.php +11 -10
  40. classes/views/frm-forms/new-option-js.php +11 -12
  41. classes/views/frm-forms/new-selection.php +2 -3
  42. classes/views/frm-forms/new.php +8 -2
  43. classes/views/frm-settings/form.php +48 -25
  44. classes/views/frm-statistics/list.php +2 -2
  45. classes/views/shared/item-table-nav.php +8 -11
  46. classes/views/shared/nav.php +10 -9
  47. classes/views/shared/pagination.php +11 -8
  48. classes/widgets/FrmShowForm.php +64 -0
  49. css/frm_admin.css +20 -10
  50. css/frm_display.css +19 -19
  51. formidable.php +43 -36
  52. images/ajax_loader.gif +0 -0
  53. images/form_16.png +0 -0
  54. images/form_32.png +0 -0
  55. images/grey_bg.png +0 -0
  56. images/report_icon.png +0 -0
  57. js/formidable.js +176 -240
  58. js/formidable_admin.js +186 -0
  59. js/jquery/jquery-ui-themepicker.js +1 -1
  60. languages/formidable-en_US.po +2572 -983
  61. languages/formidable-nl_NL.mo +0 -0
  62. languages/formidable-nl_NL.po +5348 -0
  63. languages/formidable-pt_BR.mo +0 -0
  64. languages/formidable-pt_BR.po +2574 -985
  65. readme.txt +114 -4
classes/controllers/FrmApiController.php CHANGED
@@ -4,8 +4,6 @@
4
  */
5
 
6
  class FrmApiController{
7
- function FrmApiController(){
8
- }
9
 
10
  /********* DISPLAY DATA *************/
11
  function frm_filter_content($args){
@@ -29,8 +27,7 @@ class FrmApiController{
29
  global $frm_entry, $frm_form, $frm_entry_meta;
30
 
31
  $defaults = array(
32
- 'form_key' => '',
33
- 'order' => '', 'limit' => '',
34
  'search' =>'', 'search_type' => '',
35
  'search_field' => '', 'search_operator' => 'LIKE'
36
  );
4
  */
5
 
6
  class FrmApiController{
 
 
7
 
8
  /********* DISPLAY DATA *************/
9
  function frm_filter_content($args){
27
  global $frm_entry, $frm_form, $frm_entry_meta;
28
 
29
  $defaults = array(
30
+ 'form_key' => '', 'order' => '', 'limit' => '',
 
31
  'search' =>'', 'search_type' => '',
32
  'search_field' => '', 'search_operator' => 'LIKE'
33
  );
classes/controllers/FrmAppController.php CHANGED
@@ -9,21 +9,24 @@ class FrmAppController{
9
  add_action('admin_head', array(&$this, 'menu_css'));
10
  add_filter('frm_nav_array', array( &$this, 'frm_nav'), 1);
11
  add_filter('plugin_action_links_'.FRM_PLUGIN_NAME.'/'.FRM_PLUGIN_NAME.'.php', array( &$this, 'settings_link'), 10, 2 );
12
- add_action('after_plugin_row_'.FRM_PLUGIN_NAME.'/'.FRM_PLUGIN_NAME.'.php', array( &$this,'pro_action_needed'));
13
- add_action('admin_notices', array( &$this,'pro_get_started_headline'));
14
  add_filter('the_content', array( &$this, 'page_route' ), 1);
15
  add_action('init', array(&$this, 'front_head'));
16
- add_action('wp_footer', array(&$this, 'footer_js'), 1);
17
  add_action('admin_init', array( &$this, 'admin_js'));
18
- register_activation_hook(FRM_PATH."/formidable.php", array( &$this, 'install' ));
 
19
  add_action('wp_ajax_frm_uninstall', array(&$this, 'uninstall') );
20
 
21
  // Used to process standalone requests
22
- add_action('init', array(&$this,'parse_standalone_request'));
 
 
23
 
24
  //Shortcodes
25
- add_shortcode('formidable', array(&$this,'get_form_shortcode'));
26
- add_filter( 'widget_text', array(&$this,'widget_text_filter'), 9 );
27
  }
28
 
29
  function menu(){
@@ -32,35 +35,33 @@ class FrmAppController{
32
  $frm_roles = FrmAppHelper::frm_capabilities();
33
  foreach($frm_roles as $frm_role => $frm_role_description)
34
  $current_user->add_cap( $frm_role );
 
 
 
35
  }
36
  global $frmpro_is_installed;
37
  if(current_user_can('frm_view_forms')){
38
  global $frm_forms_controller;
39
- add_object_page(FRM_PLUGIN_TITLE, FRM_PLUGIN_TITLE, 'frm_view_forms', FRM_PLUGIN_NAME, array($frm_forms_controller,'route'), 'div');
40
  }elseif(current_user_can('frm_view_entries') and $frmpro_is_installed){
41
  global $frmpro_entries_controller;
42
- add_object_page(FRM_PLUGIN_TITLE, FRM_PLUGIN_TITLE, 'frm_view_entries', FRM_PLUGIN_NAME, array($frmpro_entries_controller,'route'), 'div');
43
  }
44
  }
45
 
46
  function menu_css(){ ?>
47
  <style type="text/css">
48
- #adminmenu .toplevel_page_formidable div.wp-menu-image{background: url(<?php echo FRM_IMAGES_URL ?>/icon_16_bw.png) no-repeat center;}
49
- #adminmenu .toplevel_page_formidable:hover div.wp-menu-image{background: url(<?php echo FRM_IMAGES_URL ?>/icon_16.png) no-repeat center;}
50
  </style>
51
  <?php
 
52
  }
53
 
54
- function frm_nav(){
55
- $nav = array();
56
- if(current_user_can('frm_view_forms'))
57
  $nav[FRM_PLUGIN_NAME] = __('Forms', 'formidable');
58
-
59
- if(current_user_can('frm_edit_forms'))
60
- $nav[FRM_PLUGIN_NAME . '-new'] = __('Create a Form', 'formidable');
61
-
62
- if(current_user_can('frm_view_forms'))
63
  $nav[FRM_PLUGIN_NAME . '-templates'] = __('Templates', 'formidable');
 
64
  return $nav;
65
  }
66
 
@@ -76,12 +77,12 @@ class FrmAppController{
76
  global $frm_update;
77
 
78
  if( $frm_update->pro_is_authorized() and !$frm_update->pro_is_installed() ){
79
- if (IS_WPMU and $frm_update->pro_wpmu and !is_site_admin())
80
  return;
81
  $frm_update->queue_update(true);
82
  $inst_install_url = wp_nonce_url('update.php?action=upgrade-plugin&plugin=' . $plugin, 'upgrade-plugin_' . $plugin);
83
  ?>
84
- <td colspan="3" class="plugin-update"><div class="update-message" style="-moz-border-radius:5px; border:1px solid #CC0000;; margin:5px; background-color:#FFEBE8; padding:3px 5px;"><?php printf(__('Your Formidable Pro installation isn\'t quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Formidable Pro%2$s', 'formidable'), '<a href="'.$inst_install_url.'">', '</a>'); ?></div></td>
85
  <?php
86
  }
87
  }
@@ -93,16 +94,24 @@ class FrmAppController{
93
  if(isset($_GET['action']) and $_GET['action'] == 'upgrade-plugin')
94
  return;
95
 
96
- if (IS_WPMU and $frm_update->pro_wpmu and !is_site_admin())
97
  return;
98
 
99
  if(!isset($_GET['activate'])){
100
- global $frmpro_is_installed, $frm_db_version;
101
  $db_version = get_option('frm_db_version');
102
  $pro_db_version = ($frmpro_is_installed) ? get_option('frmpro_db_version') : false;
103
- if((int)$db_version < (int)$frm_db_version or ($pro_db_version and (int)$pro_db_version < 4)){ //this number should match the db_version in FrmDb.php
104
  ?>
105
- <div class="error" style="padding:7px;"><?php _e('Your Formidable database needs to be updated.<br/>Please deactivate and reactivate the plugin to fix this.', 'formidable'); ?></div>
 
 
 
 
 
 
 
 
106
  <?php
107
  }
108
  }
@@ -111,7 +120,7 @@ class FrmAppController{
111
  $frm_update->queue_update(true);
112
  $inst_install_url = wp_nonce_url('update.php?action=upgrade-plugin&plugin=' . $frm_update->plugin_name, 'upgrade-plugin_' . $frm_update->plugin_name);
113
  ?>
114
- <div class="error" style="padding:7px;"><?php printf(__('Your Formidable Pro installation isn\'t quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Formidable Pro%2$s', 'formidable'), '<a href="'.$inst_install_url.'">','</a>'); ?></div>
115
  <?php
116
  }
117
  }
@@ -120,11 +129,12 @@ class FrmAppController{
120
  global $frm_version;
121
  wp_enqueue_script('jquery');
122
  wp_enqueue_script('jquery-ui-core');
123
- if(!(isset($_GET) and isset($_GET['page'])) or (isset($_GET['page']) and preg_match('/formidable*/', $_GET['page'])))
124
- wp_enqueue_script('jquery-tools', FRM_URL.'/js/jquery/jquery.tools.min.js', array('jquery'), '1.1.2');
125
  if(isset($_GET) and isset($_GET['page']) and preg_match('/formidable*/', $_GET['page'])){
 
126
  wp_enqueue_script('jquery-ui-sortable');
127
  wp_enqueue_script('jquery-ui-draggable');
 
128
  wp_enqueue_script('formidable', FRM_URL . '/js/formidable.js', array('jquery'), $frm_version);
129
  wp_enqueue_style('formidable-admin', FRM_URL. '/css/frm_admin.css', $frm_version);
130
  wp_enqueue_script('jquery-elastic', FRM_URL.'/js/jquery/jquery.elastic.js', array('jquery'));
@@ -139,7 +149,7 @@ class FrmAppController{
139
  //$frm_db_version is the version of the database we're moving to
140
  $old_db_version = get_option('frm_db_version');
141
  if ((int)$frm_db_version != (int)$old_db_version)
142
- $this->install();
143
  }
144
  wp_enqueue_script('jquery');
145
 
@@ -148,8 +158,11 @@ class FrmAppController{
148
  if(is_array($css)){
149
  foreach($css as $css_key => $file)
150
  wp_enqueue_style('frm-forms'.$css_key, $file, array(), $frm_version);
 
 
151
  }else
152
  wp_enqueue_style('frm-forms', $css, array(), $frm_version);
 
153
 
154
  global $frm_css_loaded;
155
  $frm_css_loaded = true;
@@ -157,7 +170,7 @@ class FrmAppController{
157
  }
158
 
159
  function footer_js($location='footer'){
160
- global $frm_load_css, $frm_settings, $frm_version, $frm_css_loaded;
161
 
162
  if($frm_load_css and !is_admin() and ($frm_settings->load_style != 'none')){
163
  if($frm_css_loaded)
@@ -171,20 +184,26 @@ class FrmAppController{
171
  foreach($css as $css_key => $file){
172
  echo 'jQuery("head").append(unescape("%3Clink rel=\'stylesheet\' id=\'frm-forms'. ($css_key + $frm_css_loaded) .'-css\' href=\''. $file. '\' type=\'text/css\' media=\'all\' /%3E"));';
173
  //wp_enqueue_style('frm-forms'.$css_key, $file, array(), $frm_version);
 
 
174
  }
175
  }else{
176
  echo 'jQuery("head").append(unescape("%3Clink rel=\'stylesheet\' id=\'frm-forms-css\' href=\''. $css. '\' type=\'text/css\' media=\'all\' /%3E"));';
177
  }
 
178
 
179
  //wp_enqueue_style('frm-forms', $css, array(), $frm_version);
180
  echo '</script>'."\n";
181
  }
182
  }
 
 
 
183
  }
184
 
185
- function install(){
186
  global $frmdb;
187
- $frmdb->upgrade();
188
  }
189
 
190
  function uninstall(){
@@ -210,6 +229,37 @@ class FrmAppController{
210
 
211
  return $content;
212
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
 
214
  // The tight way to process standalone requests dogg...
215
  function parse_standalone_request(){
@@ -225,10 +275,12 @@ class FrmAppController{
225
 
226
  // Routes for standalone / ajax requests
227
  function standalone_route($controller, $action=''){
228
- global $frm_forms_controller;
229
 
230
- if($controller=='forms' and !in_array($action, array('export','import','xml')))
231
  $frm_forms_controller->preview($this->get_param('form'));
 
 
232
  else
233
  do_action('frm_standalone_route', $controller, $action);
234
  }
9
  add_action('admin_head', array(&$this, 'menu_css'));
10
  add_filter('frm_nav_array', array( &$this, 'frm_nav'), 1);
11
  add_filter('plugin_action_links_'.FRM_PLUGIN_NAME.'/'.FRM_PLUGIN_NAME.'.php', array( &$this, 'settings_link'), 10, 2 );
12
+ add_action('after_plugin_row_'.FRM_PLUGIN_NAME.'/'.FRM_PLUGIN_NAME.'.php', array( &$this, 'pro_action_needed'));
13
+ add_action('admin_notices', array( &$this, 'pro_get_started_headline'));
14
  add_filter('the_content', array( &$this, 'page_route' ), 1);
15
  add_action('init', array(&$this, 'front_head'));
16
+ add_action('wp_footer', array(&$this, 'footer_js'), 1, 0);
17
  add_action('admin_init', array( &$this, 'admin_js'));
18
+ register_activation_hook(FRM_PATH.'/formidable.php', array( &$this, 'install' ));
19
+ add_action('wp_ajax_frm_install', array(&$this, 'install') );
20
  add_action('wp_ajax_frm_uninstall', array(&$this, 'uninstall') );
21
 
22
  // Used to process standalone requests
23
+ add_action('init', array(&$this, 'parse_standalone_request'));
24
+ // Update the session data
25
+ add_action('init', array(&$this, 'referer_session'), 1);
26
 
27
  //Shortcodes
28
+ add_shortcode('formidable', array(&$this, 'get_form_shortcode'));
29
+ add_filter( 'widget_text', array(&$this, 'widget_text_filter'), 9 );
30
  }
31
 
32
  function menu(){
35
  $frm_roles = FrmAppHelper::frm_capabilities();
36
  foreach($frm_roles as $frm_role => $frm_role_description)
37
  $current_user->add_cap( $frm_role );
38
+ unset($frm_roles);
39
+ unset($frm_role);
40
+ unset($frm_role_description);
41
  }
42
  global $frmpro_is_installed;
43
  if(current_user_can('frm_view_forms')){
44
  global $frm_forms_controller;
45
+ add_object_page(FRM_PLUGIN_TITLE, FRM_PLUGIN_TITLE, 'frm_view_forms', FRM_PLUGIN_NAME, array($frm_forms_controller, 'route'), 'div');
46
  }elseif(current_user_can('frm_view_entries') and $frmpro_is_installed){
47
  global $frmpro_entries_controller;
48
+ add_object_page(FRM_PLUGIN_TITLE, FRM_PLUGIN_TITLE, 'frm_view_entries', FRM_PLUGIN_NAME, array($frmpro_entries_controller, 'route'), 'div');
49
  }
50
  }
51
 
52
  function menu_css(){ ?>
53
  <style type="text/css">
54
+ #adminmenu .toplevel_page_formidable div.wp-menu-image{background: url(<?php echo FRM_IMAGES_URL ?>/form_16.png) no-repeat center;}
 
55
  </style>
56
  <?php
57
+ //#adminmenu .toplevel_page_formidable:hover div.wp-menu-image{background: url(<?php echo FRM_IMAGES_URL /icon_16.png) no-repeat center;}
58
  }
59
 
60
+ function frm_nav($nav=array()){
61
+ if(current_user_can('frm_view_forms')){
 
62
  $nav[FRM_PLUGIN_NAME] = __('Forms', 'formidable');
 
 
 
 
 
63
  $nav[FRM_PLUGIN_NAME . '-templates'] = __('Templates', 'formidable');
64
+ }
65
  return $nav;
66
  }
67
 
77
  global $frm_update;
78
 
79
  if( $frm_update->pro_is_authorized() and !$frm_update->pro_is_installed() ){
80
+ if (IS_WPMU and $frm_update->pro_wpmu and !FrmAppHelper::is_super_admin())
81
  return;
82
  $frm_update->queue_update(true);
83
  $inst_install_url = wp_nonce_url('update.php?action=upgrade-plugin&plugin=' . $plugin, 'upgrade-plugin_' . $plugin);
84
  ?>
85
+ <td colspan="3" class="plugin-update"><div class="update-message" style="-moz-border-radius:5px;border:1px solid #CC0000;; margin:5px;background-color:#FFEBE8;padding:3px 5px;"><?php printf(__('Your Formidable Pro installation isn\'t quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Formidable Pro%2$s', 'formidable'), '<a href="'.$inst_install_url.'">', '</a>'); ?></div></td>
86
  <?php
87
  }
88
  }
94
  if(isset($_GET['action']) and $_GET['action'] == 'upgrade-plugin')
95
  return;
96
 
97
+ if (IS_WPMU and !current_user_can('administrator'))
98
  return;
99
 
100
  if(!isset($_GET['activate'])){
101
+ global $frmpro_is_installed, $frm_db_version, $frm_ajax_url;
102
  $db_version = get_option('frm_db_version');
103
  $pro_db_version = ($frmpro_is_installed) ? get_option('frmpro_db_version') : false;
104
+ if((int)$db_version < (int)$frm_db_version or ($frmpro_is_installed and (int)$pro_db_version < 9)){ //this number should match the db_version in FrmDb.php
105
  ?>
106
+ <div class="error" id="frm_install_message" style="padding:7px;"><?php _e('Your Formidable database needs to be updated.<br/>Please deactivate and reactivate the plugin to fix this or', 'formidable'); ?> <a id="frm_install_link" href="javascript:frm_install_now()"><?php _e('Update Now', 'formidable') ?></a></div>
107
+ <script type="text/javascript">
108
+ function frm_install_now(){
109
+ jQuery('#frm_install_link').replaceWith('<img src="<?php echo FRM_IMAGES_URL; ?>/wpspin_light.gif" alt="<?php _e('Loading...', 'formidable'); ?>" />');
110
+ jQuery.ajax({type:"POST",url:"<?php echo $frm_ajax_url ?>",data:"action=frm_install",
111
+ success:function(msg){jQuery("#frm_install_message").fadeOut("slow");}
112
+ });
113
+ };
114
+ </script>
115
  <?php
116
  }
117
  }
120
  $frm_update->queue_update(true);
121
  $inst_install_url = wp_nonce_url('update.php?action=upgrade-plugin&plugin=' . $frm_update->plugin_name, 'upgrade-plugin_' . $frm_update->plugin_name);
122
  ?>
123
+ <div class="error" style="padding:7px;"><?php printf(__('Your Formidable Pro installation isn\'t quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Formidable Pro%2$s', 'formidable'), '<a href="'.$inst_install_url.'">', '</a>'); ?></div>
124
  <?php
125
  }
126
  }
129
  global $frm_version;
130
  wp_enqueue_script('jquery');
131
  wp_enqueue_script('jquery-ui-core');
132
+
 
133
  if(isset($_GET) and isset($_GET['page']) and preg_match('/formidable*/', $_GET['page'])){
134
+ wp_enqueue_script('jquery-tools', FRM_URL.'/js/jquery/jquery.tools.min.js', array('jquery'), '1.1.2');
135
  wp_enqueue_script('jquery-ui-sortable');
136
  wp_enqueue_script('jquery-ui-draggable');
137
+ wp_enqueue_script('formidable_admin', FRM_URL . '/js/formidable_admin.js', array('jquery'), $frm_version);
138
  wp_enqueue_script('formidable', FRM_URL . '/js/formidable.js', array('jquery'), $frm_version);
139
  wp_enqueue_style('formidable-admin', FRM_URL. '/css/frm_admin.css', $frm_version);
140
  wp_enqueue_script('jquery-elastic', FRM_URL.'/js/jquery/jquery.elastic.js', array('jquery'));
149
  //$frm_db_version is the version of the database we're moving to
150
  $old_db_version = get_option('frm_db_version');
151
  if ((int)$frm_db_version != (int)$old_db_version)
152
+ $this->install($old_db_version);
153
  }
154
  wp_enqueue_script('jquery');
155
 
158
  if(is_array($css)){
159
  foreach($css as $css_key => $file)
160
  wp_enqueue_style('frm-forms'.$css_key, $file, array(), $frm_version);
161
+ unset($css_key);
162
+ unset($file);
163
  }else
164
  wp_enqueue_style('frm-forms', $css, array(), $frm_version);
165
+ unset($css);
166
 
167
  global $frm_css_loaded;
168
  $frm_css_loaded = true;
170
  }
171
 
172
  function footer_js($location='footer'){
173
+ global $frm_load_css, $frm_settings, $frm_version, $frm_css_loaded, $frm_forms_loaded;
174
 
175
  if($frm_load_css and !is_admin() and ($frm_settings->load_style != 'none')){
176
  if($frm_css_loaded)
184
  foreach($css as $css_key => $file){
185
  echo 'jQuery("head").append(unescape("%3Clink rel=\'stylesheet\' id=\'frm-forms'. ($css_key + $frm_css_loaded) .'-css\' href=\''. $file. '\' type=\'text/css\' media=\'all\' /%3E"));';
186
  //wp_enqueue_style('frm-forms'.$css_key, $file, array(), $frm_version);
187
+ unset($css_key);
188
+ unset($file);
189
  }
190
  }else{
191
  echo 'jQuery("head").append(unescape("%3Clink rel=\'stylesheet\' id=\'frm-forms-css\' href=\''. $css. '\' type=\'text/css\' media=\'all\' /%3E"));';
192
  }
193
+ unset($css);
194
 
195
  //wp_enqueue_style('frm-forms', $css, array(), $frm_version);
196
  echo '</script>'."\n";
197
  }
198
  }
199
+
200
+ if(!is_admin() and $location != 'header' and !empty($frm_forms_loaded)) //load formidable js
201
+ echo '<script type="text/javascript" src="'. FRM_URL .'/js/formidable.js?ver='.$frm_version.'"></script>'."\n";
202
  }
203
 
204
+ function install($old_db_version=false){
205
  global $frmdb;
206
+ $frmdb->upgrade($old_db_version);
207
  }
208
 
209
  function uninstall(){
229
 
230
  return $content;
231
  }
232
+
233
+ function referer_session() {
234
+ global $frm_siteurl, $frm_settings;
235
+
236
+ if(!isset($frm_settings->track) or !$frm_settings->track)
237
+ return;
238
+
239
+ if ( !isset($_SESSION) )
240
+ session_start();
241
+
242
+ if ( !isset($_SESSION['frm_http_pages']) or !is_array($_SESSION['frm_http_pages']) )
243
+ $_SESSION['frm_http_pages'] = array();
244
+
245
+ if ( !isset($_SESSION['frm_http_referer']) or !is_array($_SESSION['frm_http_referer']) )
246
+ $_SESSION['frm_http_referer'] = array();
247
+
248
+ if (!isset($_SERVER['HTTP_REFERER']) or (isset($_SERVER['HTTP_REFERER']) and (strpos($_SERVER['HTTP_REFERER'], $frm_siteurl) === false) and ! (in_array($_SERVER['HTTP_REFERER'], $_SESSION['frm_http_referer'])) )) {
249
+ if (! isset($_SERVER['HTTP_REFERER']))
250
+ $_SESSION['frm_http_referer'][] = "Type-in or bookmark";
251
+ else
252
+ $_SESSION['frm_http_referer'][] = $_SERVER['HTTP_REFERER'];
253
+ }
254
+
255
+ if ($_SESSION['frm_http_pages'] and !empty($_SESSION['frm_http_pages']) and (end($_SESSION['frm_http_pages']) != "http://". $_SERVER['SERVER_NAME']. $_SERVER['REQUEST_URI']))
256
+ $_SESSION['frm_http_pages'][] = "http://". $_SERVER['SERVER_NAME']. $_SERVER['REQUEST_URI'];
257
+
258
+ if(count($_SESSION['frm_http_pages']) > 100){
259
+ $first = reset($_SESSION['frm_http_pages']);
260
+ unset($first);
261
+ }
262
+ }
263
 
264
  // The tight way to process standalone requests dogg...
265
  function parse_standalone_request(){
275
 
276
  // Routes for standalone / ajax requests
277
  function standalone_route($controller, $action=''){
278
+ global $frm_forms_controller, $frm_fields_controller;
279
 
280
+ if($controller == 'forms' and !in_array($action, array('export', 'import', 'xml')))
281
  $frm_forms_controller->preview($this->get_param('form'));
282
+ else if($controller == 'fields' and $action == 'import_choices')
283
+ $frm_fields_controller->import_choices($this->get_param('field_id'));
284
  else
285
  do_action('frm_standalone_route', $controller, $action);
286
  }
classes/controllers/FrmEntriesController.php CHANGED
@@ -12,32 +12,32 @@ class FrmEntriesController{
12
  function menu(){
13
  global $frmpro_is_installed;
14
  if(!$frmpro_is_installed){
15
- add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' |'. __('Pro Entries', 'formidable'), __('Pro Entries', 'formidable'), 'administrator', FRM_PLUGIN_NAME.'-entries',array($this,'list_entries'));
16
- //add_action('admin_head-'.FRM_PLUGIN_NAME.'_page_'.FRM_PLUGIN_NAME.'-entries', array($this,'head'));
17
  }
18
  }
19
 
20
  function list_entries(){
21
- require_once(FRM_VIEWS_PATH.'/frm-entries/list.php');
22
  }
23
 
24
  function show_form($id='', $key='', $title=false, $description=false){
25
  global $frm_form, $user_ID;
26
  if ($id) $form = $frm_form->getOne($id);
27
  else if ($key) $form = $frm_form->getOne($key);
28
-
29
- if (!$form or $form->is_template or $form->status == 'draft')
30
  return __('Please select a valid form', 'formidable');
31
- else if ($form->logged_in and !$user_ID){
32
  global $frm_settings;
33
  return $frm_settings->login_msg;
34
  }
35
-
36
- $form_options = stripslashes_deep(maybe_unserialize($form->options));
37
- if($form->logged_in and $user_ID and isset($form_options['logged_in_role']) and $form_options['logged_in_role'] != ''){
38
- if(FrmAppHelper::user_has_permission($form_options['logged_in_role']))
39
  return FrmEntriesController::get_form(FRM_VIEWS_PATH.'/frm-entries/frm-entry.php', $form, $title, $description);
40
- else{
41
  global $frm_settings;
42
  return $frm_settings->login_msg;
43
  }
@@ -60,7 +60,7 @@ class FrmEntriesController{
60
  global $frm_form;
61
 
62
  if(!$form)
63
- $form = $frm_form->getAll('',' ORDER BY name',' LIMIT 1');
64
 
65
  $action = apply_filters('frm_show_new_entry_page', FrmAppHelper::get_param('action', 'new'), $form);
66
  $default_values = array('id' => '', 'form_name' => '', 'paged' => 1, 'form' => $form->id, 'form_id' => $form->id, 'field_id' => '', 'search' => '', 'sort' => '', 'sdir' => '', 'action' => $action);
@@ -70,11 +70,17 @@ class FrmEntriesController{
70
  $values['posted_form_id'] = FrmAppHelper::get_param('form');
71
 
72
  if ($form->id == $values['posted_form_id']){ //if there are two forms on the same page, make sure not to submit both
73
- foreach ($default_values as $var => $default)
74
- $values[$var] = FrmAppHelper::get_param($var, $default);
 
 
 
75
  }else{
76
- foreach ($default_values as $var => $default)
77
  $values[$var] = $default;
 
 
 
78
  }
79
 
80
  return $values;
12
  function menu(){
13
  global $frmpro_is_installed;
14
  if(!$frmpro_is_installed){
15
+ add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' |'. __('Pro Entries', 'formidable'), __('Pro Entries', 'formidable'), 'administrator', FRM_PLUGIN_NAME.'-entries',array(&$this, 'list_entries'));
16
+ //add_action('admin_head-'.FRM_PLUGIN_NAME.'_page_'.FRM_PLUGIN_NAME.'-entries', array(&$this, 'head'));
17
  }
18
  }
19
 
20
  function list_entries(){
21
+ require(FRM_VIEWS_PATH.'/frm-entries/list.php');
22
  }
23
 
24
  function show_form($id='', $key='', $title=false, $description=false){
25
  global $frm_form, $user_ID;
26
  if ($id) $form = $frm_form->getOne($id);
27
  else if ($key) $form = $frm_form->getOne($key);
28
+
29
+ if (!$form or $form->is_template or $form->status == 'draft'){
30
  return __('Please select a valid form', 'formidable');
31
+ }else if ($form->logged_in and !$user_ID){
32
  global $frm_settings;
33
  return $frm_settings->login_msg;
34
  }
35
+
36
+ $form->options = stripslashes_deep(maybe_unserialize($form->options));
37
+ if($form->logged_in and $user_ID and isset($form->options['logged_in_role']) and $form->options['logged_in_role'] != ''){
38
+ if(FrmAppHelper::user_has_permission($form->options['logged_in_role'])){
39
  return FrmEntriesController::get_form(FRM_VIEWS_PATH.'/frm-entries/frm-entry.php', $form, $title, $description);
40
+ }else{
41
  global $frm_settings;
42
  return $frm_settings->login_msg;
43
  }
60
  global $frm_form;
61
 
62
  if(!$form)
63
+ $form = $frm_form->getAll('', ' ORDER BY name', ' LIMIT 1');
64
 
65
  $action = apply_filters('frm_show_new_entry_page', FrmAppHelper::get_param('action', 'new'), $form);
66
  $default_values = array('id' => '', 'form_name' => '', 'paged' => 1, 'form' => $form->id, 'form_id' => $form->id, 'field_id' => '', 'search' => '', 'sort' => '', 'sdir' => '', 'action' => $action);
70
  $values['posted_form_id'] = FrmAppHelper::get_param('form');
71
 
72
  if ($form->id == $values['posted_form_id']){ //if there are two forms on the same page, make sure not to submit both
73
+ foreach ($default_values as $var => $default){
74
+ $values[$var] = FrmAppHelper::get_param($var, $default);
75
+ unset($var);
76
+ unset($default);
77
+ }
78
  }else{
79
+ foreach ($default_values as $var => $default){
80
  $values[$var] = $default;
81
+ unset($var);
82
+ unset($default);
83
+ }
84
  }
85
 
86
  return $values;
classes/controllers/FrmFieldsController.php CHANGED
@@ -16,16 +16,20 @@ class FrmFieldsController{
16
  add_action('wp_ajax_frm_add_field_option',array(&$this, 'add_option'));
17
  add_action('wp_ajax_frm_field_option_ipe', array(&$this, 'edit_option') );
18
  add_action('wp_ajax_frm_delete_field_option',array(&$this, 'delete_option'));
 
19
  add_action('wp_ajax_frm_update_field_order', array(&$this, 'update_order') );
20
- add_filter('frm_field_type',array( &$this, 'change_type'));
21
  add_filter('frm_display_field_options', array(&$this, 'display_field_options'));
22
- add_action('frm_field_input_html', array(&$this,'input_html'));
23
  }
24
 
25
  function create(){
26
  global $frm_field, $frm_ajax_url;
27
  $field_data = $_POST['field'];
28
  $form_id = $_POST['form_id'];
 
 
 
29
 
30
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars($field_data, $form_id));
31
 
@@ -70,18 +74,18 @@ class FrmFieldsController{
70
  function clear_on_focus(){
71
  global $frm_field;
72
  $field = $frm_field->getOne($_POST['field']);
73
- $field_options = unserialize($field->field_options);
74
- $field_options['clear_on_focus'] = $_POST['active'];
75
- $frm_field->update($_POST['field'], array('field_options' => $field_options));
76
  die();
77
  }
78
 
79
  function default_blank(){
80
  global $frm_field;
81
  $field = $frm_field->getOne($_POST['field']);
82
- $field_options = unserialize($field->field_options);
83
- $field_options['default_blank'] = $_POST['active'];
84
- $frm_field->update($_POST['field'], array('field_options' => $field_options));
85
  die();
86
  }
87
 
@@ -93,11 +97,11 @@ class FrmFieldsController{
93
 
94
  $values = array();
95
  $values['field_key'] = FrmAppHelper::get_unique_key('', $frmdb->fields, 'field_key');
96
- $values['field_options'] = unserialize($copy_field->field_options);
97
  $values['form_id'] = $copy_field->form_id;
98
- foreach (array('name','description','type','default_value','options','required') as $col)
99
  $values[$col] = $copy_field->{$col};
100
- $field_count = $frm_app_helper->getRecordCount("form_id=$copy_field->form_id", $frmdb->fields);
101
  $values['field_order'] = $field_count + 1;
102
 
103
  $field_id = $frm_field->create($values);
@@ -124,7 +128,7 @@ class FrmFieldsController{
124
 
125
  $id = $_POST['field_id'];
126
  $field = $frm_field->getOne($id);
127
- $options = unserialize($field->options);
128
  if(!empty($options))
129
  $last = max(array_keys($options));
130
  else
@@ -132,7 +136,7 @@ class FrmFieldsController{
132
  $opt_key = $last + 1;
133
  $opt = 'Option '.(count($options)+1);
134
  $options[$opt_key] = $opt;
135
- $frm_field->update($id, array('options' => serialize($options)));
136
  $checked = '';
137
 
138
  $field_data = $frm_field->getOne($id);
@@ -151,7 +155,7 @@ class FrmFieldsController{
151
  $ids = explode('-',$_POST['element_id']);
152
  $id = str_replace('field_', '', $ids[0]);
153
  $field = $frm_field->getOne($id);
154
- $options = unserialize($field->options);
155
  $options[$ids[1]] = $_POST['update_value'];
156
  $frm_field->update($id, array('options' => maybe_serialize($options)));
157
  echo stripslashes($_POST['update_value']);
@@ -161,17 +165,109 @@ class FrmFieldsController{
161
  function delete_option(){
162
  global $frm_field;
163
  $field = $frm_field->getOne($_POST['field_id']);
164
- $options = unserialize($field->options);
165
  unset($options[$_POST['opt_key']]);
166
- $frm_field->update($_POST['field_id'], array('options' => serialize($options)));
167
  die();
168
  }
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
 
171
  function update_order(){
172
- global $frm_field;
173
- foreach ($_POST['frm_field_id'] as $position => $item)
174
- $frm_field->update($item, array('field_order' => $position));
 
 
 
175
  die();
176
  }
177
 
@@ -196,6 +292,7 @@ class FrmFieldsController{
196
  function display_field_options($display){
197
  if ($display['type'] == 'captcha'){
198
  $display['required'] = false;
 
199
  $display['default_blank'] = false;
200
  }else if ($display['type'] == 'radio'){
201
  $display['default_blank'] = false;
@@ -211,40 +308,44 @@ class FrmFieldsController{
211
  }
212
 
213
  function input_html($field){
 
 
214
  $class = $field['type'];
215
  if($field['type'] == 'date')
216
  $class .= " frm_date";
217
 
218
  if(isset($field['size']) and $field['size'] > 0){
219
- if($field['type'] != 'textarea' and $field['type'] != 'select')
220
  echo ' size="'. $field['size'] .'"';
221
  $class .= " auto_width";
222
  }
223
 
224
- if(isset($field['max']) and !in_array($field['type'], array('textarea','rte')) and !empty($field['max']))
225
  echo ' maxlength="'. $field['max'] .'"';
226
 
227
  if(!is_admin() or !isset($_GET) or !isset($_GET['page']) or $_GET['page'] == 'formidable_entries'){
228
  $action = FrmAppHelper::get_param('action');
229
  if(isset($field['required']) and $field['required']){
230
  //echo ' required="required"';
 
231
  if($field['type'] == 'file' and $action == 'edit'){
232
  //don't add the required class if this is a file upload when editing
233
  }else
234
  $class .= " required";
235
  }
236
 
237
- if(isset($field['default_value']) and !empty($field['default_value']) and !in_array($field['type'], array('select','radio','checkbox','hidden')))
238
  echo ' placeholder="'.$field['default_value'].'"';
239
 
240
  if(isset($field['clear_on_focus']) and $field['clear_on_focus']){
241
- echo ' onfocus="frmClearDefault(\''.$field['default_value'].'\', this)" onblur="frmReplaceDefault(\''.$field['default_value'].'\', this)"';
242
 
243
  if($field['value'] == $field['default_value'])
244
  echo ' style="font-style:italic;"';
245
  }
246
  }
247
 
 
248
  echo ' class="'.$class.'"';
249
  }
250
  }
16
  add_action('wp_ajax_frm_add_field_option',array(&$this, 'add_option'));
17
  add_action('wp_ajax_frm_field_option_ipe', array(&$this, 'edit_option') );
18
  add_action('wp_ajax_frm_delete_field_option',array(&$this, 'delete_option'));
19
+ add_action('wp_ajax_frm_import_options', array(&$this, 'import_options') );
20
  add_action('wp_ajax_frm_update_field_order', array(&$this, 'update_order') );
21
+ add_filter('frm_field_type' ,array( &$this, 'change_type'));
22
  add_filter('frm_display_field_options', array(&$this, 'display_field_options'));
23
+ add_action('frm_field_input_html', array(&$this, 'input_html'));
24
  }
25
 
26
  function create(){
27
  global $frm_field, $frm_ajax_url;
28
  $field_data = $_POST['field'];
29
  $form_id = $_POST['form_id'];
30
+ $values = array();
31
+ if(class_exists('FrmProForm'))
32
+ $values['post_type'] = FrmProForm::post_type($form_id);
33
 
34
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars($field_data, $form_id));
35
 
74
  function clear_on_focus(){
75
  global $frm_field;
76
  $field = $frm_field->getOne($_POST['field']);
77
+ $field->field_options = maybe_unserialize($field->field_options);
78
+ $field->field_options['clear_on_focus'] = $_POST['active'];
79
+ $frm_field->update($_POST['field'], array('field_options' => $field->field_options));
80
  die();
81
  }
82
 
83
  function default_blank(){
84
  global $frm_field;
85
  $field = $frm_field->getOne($_POST['field']);
86
+ $field->field_options = maybe_unserialize($field->field_options);
87
+ $field->field_options['default_blank'] = $_POST['active'];
88
+ $frm_field->update($_POST['field'], array('field_options' => $field->field_options));
89
  die();
90
  }
91
 
97
 
98
  $values = array();
99
  $values['field_key'] = FrmAppHelper::get_unique_key('', $frmdb->fields, 'field_key');
100
+ $values['field_options'] = maybe_unserialize($copy_field->field_options);
101
  $values['form_id'] = $copy_field->form_id;
102
+ foreach (array('name', 'description', 'type', 'default_value', 'options', 'required') as $col)
103
  $values[$col] = $copy_field->{$col};
104
+ $field_count = $frm_app_helper->getRecordCount("form_id='$copy_field->form_id'", $frmdb->fields);
105
  $values['field_order'] = $field_count + 1;
106
 
107
  $field_id = $frm_field->create($values);
128
 
129
  $id = $_POST['field_id'];
130
  $field = $frm_field->getOne($id);
131
+ $options = maybe_unserialize($field->options);
132
  if(!empty($options))
133
  $last = max(array_keys($options));
134
  else
136
  $opt_key = $last + 1;
137
  $opt = 'Option '.(count($options)+1);
138
  $options[$opt_key] = $opt;
139
+ $frm_field->update($id, array('options' => maybe_serialize($options)));
140
  $checked = '';
141
 
142
  $field_data = $frm_field->getOne($id);
155
  $ids = explode('-',$_POST['element_id']);
156
  $id = str_replace('field_', '', $ids[0]);
157
  $field = $frm_field->getOne($id);
158
+ $options = maybe_unserialize($field->options);
159
  $options[$ids[1]] = $_POST['update_value'];
160
  $frm_field->update($id, array('options' => maybe_serialize($options)));
161
  echo stripslashes($_POST['update_value']);
165
  function delete_option(){
166
  global $frm_field;
167
  $field = $frm_field->getOne($_POST['field_id']);
168
+ $options = maybe_unserialize($field->options);
169
  unset($options[$_POST['opt_key']]);
170
+ $frm_field->update($_POST['field_id'], array('options' => maybe_serialize($options)));
171
  die();
172
  }
173
 
174
+ function import_choices($field_id){
175
+ if(!current_user_can('frm_edit_forms'))
176
+ return;
177
+
178
+ global $frm_ajax_url;
179
+
180
+ if(function_exists('register_admin_color_schemes'))
181
+ register_admin_color_schemes();
182
+
183
+ $hook_suffix = $admin_body_class = '';
184
+
185
+ if ( get_user_setting('mfold') == 'f' )
186
+ $admin_body_class .= ' folded';
187
+
188
+ if ( is_admin_bar_showing() )
189
+ $admin_body_class .= ' admin-bar';
190
+
191
+ if ( is_rtl() )
192
+ $admin_body_class .= ' rtl';
193
+
194
+ $admin_body_class .= ' admin-color-' . sanitize_html_class( get_user_option( 'admin_color' ), 'fresh' );
195
+ $prepop = array();
196
+ $prepop[__('Countries', 'formidable')] = FrmAppHelper::get_countries();
197
+
198
+ $states = FrmAppHelper::get_us_states();
199
+ $prepop[__('U.S. States', 'formidable')] = array_values($states);
200
+ $prepop[__('U.S. State Abbreviations', 'formidable')] = array_keys($states);
201
+
202
+ $prepop[__('Age', 'formidable')] = array(
203
+ __('Under 18', 'formidable'), __('18-24', 'formidable'), __('25-34', 'formidable'),
204
+ __('35-44', 'formidable'), __('45-54', 'formidable'), __('55-64', 'formidable'),
205
+ __('65 or Above', 'formidable'), __('Prefer Not to Answer', 'formidable')
206
+ );
207
+
208
+ $prepop[__('Satisfaction', 'formidable')] = array(
209
+ __('Very Satisfied', 'formidable'), __('Satisfied', 'formidable'), __('Neutral', 'formidable'),
210
+ __('Unsatisfied', 'formidable'), __('Very Unsatisfied', 'formidable'), __('N/A', 'formidable')
211
+ );
212
+
213
+ $prepop[__('Importance', 'formidable')] = array(
214
+ __('Very Important', 'formidable'), __('Important', 'formidable'), __('Neutral', 'formidable'),
215
+ __('Somewhat Important', 'formidable'), __('Not at all Important', 'formidable'), __('N/A', 'formidable')
216
+ );
217
+
218
+ $prepop[__('Agreement', 'formidable')] = array(
219
+ __('Strongly Agree', 'formidable'), __('Agree', 'formidable'), __('Neutral', 'formidable'),
220
+ __('Disagree', 'formidable'), __('Strongly Disagree', 'formidable'), __('N/A', 'formidable')
221
+ );
222
+
223
+ $field = FrmField::getOne($field_id);
224
+ $field->options = maybe_unserialize($field->options);
225
+
226
+ include(FRM_VIEWS_PATH.'/frm-fields/import_choices.php');
227
+ die();
228
+ }
229
+
230
+ function import_options(){
231
+ if(!is_admin() or !current_user_can('frm_edit_forms'))
232
+ return;
233
+
234
+ global $frm_field, $frm_ajax_url;
235
+
236
+ extract($_POST);
237
+
238
+ $field = $frm_field->getOne($field_id);
239
+
240
+ if(!in_array($field->type, array('radio', 'checkbox', 'select')))
241
+ return;
242
+
243
+ $opts = stripslashes($opts);
244
+ $opts = explode("\n", rtrim($opts, "\n"));
245
+ $frm_field->update($field_id, array('options' => maybe_serialize($opts)));
246
+
247
+ $field = FrmFieldsHelper::setup_edit_vars($field);
248
+ $field['options'] = $opts;
249
+ $field_name = $field['name'];
250
+
251
+ if ($field['type'] == 'radio' or $field['type'] == 'checkbox'){
252
+ require(FRM_VIEWS_PATH.'/frm-fields/radio.php');
253
+ }else{
254
+ foreach ($field['options'] as $opt_key => $opt)
255
+ require(FRM_VIEWS_PATH.'/frm-fields/single-option.php');
256
+ }
257
+
258
+ $partial_js = true;
259
+ require(FRM_VIEWS_PATH.'/frm-forms/new-field-js.php');
260
+
261
+ die();
262
+ }
263
 
264
  function update_order(){
265
+ if(isset($_POST) and isset($_POST['frm_field_id'])){
266
+ global $frm_field;
267
+
268
+ foreach ($_POST['frm_field_id'] as $position => $item)
269
+ $frm_field->update($item, array('field_order' => $position));
270
+ }
271
  die();
272
  }
273
 
292
  function display_field_options($display){
293
  if ($display['type'] == 'captcha'){
294
  $display['required'] = false;
295
+ $display['invalid'] = true;
296
  $display['default_blank'] = false;
297
  }else if ($display['type'] == 'radio'){
298
  $display['default_blank'] = false;
308
  }
309
 
310
  function input_html($field){
311
+ global $frm_settings;
312
+
313
  $class = $field['type'];
314
  if($field['type'] == 'date')
315
  $class .= " frm_date";
316
 
317
  if(isset($field['size']) and $field['size'] > 0){
318
+ if($field['type'] != 'textarea' and $field['type'] != 'select' and $field['type'] != 'data')
319
  echo ' size="'. $field['size'] .'"';
320
  $class .= " auto_width";
321
  }
322
 
323
+ if(isset($field['max']) and !in_array($field['type'], array('textarea', 'rte')) and !empty($field['max']))
324
  echo ' maxlength="'. $field['max'] .'"';
325
 
326
  if(!is_admin() or !isset($_GET) or !isset($_GET['page']) or $_GET['page'] == 'formidable_entries'){
327
  $action = FrmAppHelper::get_param('action');
328
  if(isset($field['required']) and $field['required']){
329
  //echo ' required="required"';
330
+
331
  if($field['type'] == 'file' and $action == 'edit'){
332
  //don't add the required class if this is a file upload when editing
333
  }else
334
  $class .= " required";
335
  }
336
 
337
+ if($frm_settings->use_html and isset($field['default_value']) and !empty($field['default_value']) and !in_array($field['type'], array('select', 'radio', 'checkbox', 'hidden')))
338
  echo ' placeholder="'.$field['default_value'].'"';
339
 
340
  if(isset($field['clear_on_focus']) and $field['clear_on_focus']){
341
+ echo ' onfocus="frmClearDefault('."'". addslashes($field['default_value']) ."'". ', this)" onblur="frmReplaceDefault('."'".addslashes($field['default_value'])."'". ', this)"';
342
 
343
  if($field['value'] == $field['default_value'])
344
  echo ' style="font-style:italic;"';
345
  }
346
  }
347
 
348
+ $class = apply_filters('frm_field_classes', $class, $field);
349
  echo ' class="'.$class.'"';
350
  }
351
  }
classes/controllers/FrmFormsController.php CHANGED
@@ -6,20 +6,20 @@
6
  class FrmFormsController{
7
  function FrmFormsController(){
8
  add_action('admin_menu', array( &$this, 'menu' ));
9
- add_action('admin_head-toplevel_page_'.FRM_PLUGIN_NAME, array(&$this,'head'));
10
- add_action('admin_head-'.FRM_PLUGIN_NAME.'_page_'.FRM_PLUGIN_NAME.'-new', array(&$this,'head'));
11
- add_action('admin_head-'.FRM_PLUGIN_NAME.'_page_'.FRM_PLUGIN_NAME.'-templates', array(&$this,'head'));
12
  add_action('wp_ajax_frm_form_name_in_place_edit', array(&$this, 'edit_name') );
13
  add_action('wp_ajax_frm_form_desc_in_place_edit', array(&$this, 'edit_description') );
14
  add_action('wp_ajax_frm_delete_form_wo_fields',array(&$this, 'destroy_wo_fields'));
15
  add_filter('frm_submit_button', array(&$this, 'submit_button_label'));
16
- add_filter('media_buttons_context', array(&$this,'insert_form_button'));
17
  add_action('admin_footer', array(&$this, 'insert_form_popup'));
18
  }
19
 
20
  function menu(){
21
- add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' | '. __('Forms', 'formidable'), __('Forms', 'formidable'), 'frm_view_forms', FRM_PLUGIN_NAME, array(&$this,'route'));
22
- add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' | '. __('Create a Form', 'formidable'), __('Create a Form', 'formidable'), 'frm_edit_forms', FRM_PLUGIN_NAME.'-new', array(&$this,'new_form'));
23
  add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' | '. __('Templates', 'formidable'), __('Templates', 'formidable'), 'frm_view_forms', FRM_PLUGIN_NAME.'-templates', array(&$this, 'template_list'));
24
  }
25
 
@@ -53,10 +53,11 @@ class FrmFormsController{
53
  $frm_field_selection = FrmFieldsHelper::field_selection();
54
  $values = FrmFormsHelper::setup_new_vars();
55
  $id = $frm_form->create( $values );
56
- require_once(FRM_VIEWS_PATH.'/frm-forms/new.php');
 
57
  }else{
58
- $all_templates = $frm_form->getAll('is_template=1',' ORDER BY name');
59
- require_once(FRM_VIEWS_PATH.'/frm-forms/new-selection.php');
60
  }
61
  }
62
 
@@ -66,11 +67,12 @@ class FrmFormsController{
66
  $id = FrmAppHelper::get_param('id');
67
 
68
  if( count($errors) > 0 ){
 
69
  $frm_field_selection = FrmFieldsHelper::field_selection();
70
  $record = $frm_form->getOne( $id );
71
- $fields = $frm_field->getAll("fi.form_id=$id", ' ORDER BY field_order');
72
- $values = FrmAppHelper::setup_edit_vars($record,'forms',$fields,true);
73
- require_once(FRM_VIEWS_PATH.'/frm-forms/new.php');
74
  }else{
75
  $record = $frm_form->update( $id, $_POST, true );
76
  $message = __('Form was Successfully Created', 'formidable');
@@ -148,13 +150,10 @@ class FrmFormsController{
148
  $plugin = FrmAppHelper::get_param('plugin');
149
  $controller = FrmAppHelper::get_param('controller');
150
  $key = (isset($_GET['form']) ? $_GET['form'] : (isset($_POST['form']) ? $_POST['form'] : ''));
151
- $form = $frm_form->getAll("form_key='$key'",'',' LIMIT 1');
152
- if (!$form) $form = $frm_form->getAll('','',' LIMIT 1');
153
- $form_options = stripslashes_deep(maybe_unserialize($form->options));
154
- $description = $title = true;
155
- $custom_style = (isset($form_options['custom_style'])) ? $form_options['custom_style'] : ($frm_settings->load_style != 'none');
156
 
157
- require_once(FRM_VIEWS_PATH.'/frm-entries/direct.php');
158
  }
159
 
160
  function destroy(){
@@ -188,7 +187,7 @@ class FrmFormsController{
188
  }
189
 
190
  function insert_form_button($content){
191
- $content .= '<a href="#TB_inline?width=450&height=550&inlineId=frm_insert_form" class="thickbox" title="' . __("Add Formidable Form", 'formidable') . '"><img src="'.FRM_IMAGES_URL.'/icon_16_bw.png" alt="' . __("Add Formidable Form", 'formidable') . '" /></a>';
192
  return $content;
193
  }
194
 
@@ -199,7 +198,7 @@ class FrmFormsController{
199
  global $frmpro_display;
200
  $displays = $frmpro_display->getAll();
201
  }
202
- require_once(FRM_VIEWS_PATH.'/frm-forms/insert_form_popup.php');
203
  }
204
  }
205
 
@@ -218,7 +217,7 @@ class FrmFormsController{
218
 
219
  if ($params['template']){
220
  $default_templates = $frm_form->getAll('default_template=1');
221
- $all_templates = $frm_form->getAll('is_template=1',' ORDER BY name');
222
  }
223
 
224
  $form_vars = $this->get_form_sort_vars($params, $where_clause);
@@ -238,11 +237,11 @@ class FrmFormsController{
238
  $search_str = $form_vars['search_str'];
239
 
240
  $record_count = $frm_app_helper->getRecordCount($form_vars['where_clause'], $frmdb->forms);
241
- $page_count = $frm_app_helper->getPageCount($frm_page_size,$form_vars['where_clause'], $frmdb->forms);
242
  $forms = $frm_app_helper->getPage($current_page, $frm_page_size, $form_vars['where_clause'], $form_vars['order_by'], $frmdb->forms);
243
  $page_last_record = $frm_app_helper->getLastRecordNum($record_count,$current_page,$frm_page_size);
244
  $page_first_record = $frm_app_helper->getFirstRecordNum($record_count,$current_page,$frm_page_size);
245
- require_once(FRM_VIEWS_PATH.'/frm-forms/list.php');
246
  }
247
 
248
  function get_form_sort_vars($params,$where_clause = ''){
@@ -296,50 +295,45 @@ class FrmFormsController{
296
  $sdir_str = 'desc';
297
  }
298
 
299
- return array('order_by' => $order_by,
300
- 'sort_str' => $sort_str,
301
- 'sdir_str' => $sdir_str,
302
- 'search_str' => $search_str,
303
- 'where_clause' => $where_clause,
304
- 'page_params' => $page_params);
305
  }
306
 
307
  function get_edit_vars($id, $errors = '', $message='', $create_link=false){
308
  global $frm_app_helper, $frm_entry, $frm_form, $frm_field, $frmpro_is_installed, $frm_ajax_url;
309
  $record = $frm_form->getOne( $id );
310
  $frm_field_selection = FrmFieldsHelper::field_selection();
311
- $fields = $frm_field->getAll("fi.form_id=$id", ' ORDER BY field_order');
312
- $values = FrmAppHelper::setup_edit_vars($record,'forms',$fields,true);
313
  if (isset($values['default_template']) && $values['default_template'])
314
  wp_die(__('That template cannot be edited', 'formidable'));
315
  else if($create_link)
316
- require_once(FRM_VIEWS_PATH.'/frm-forms/new.php');
317
  else
318
- require_once(FRM_VIEWS_PATH.'/frm-forms/edit.php');
319
  }
320
 
321
  function get_params(){
322
  $values = array();
323
- foreach (array('template' => 0,'id' => '','paged' => 1,'form' => '','search' => '','sort' => '','sdir' => '') as $var => $default)
324
  $values[$var] = FrmAppHelper::get_param($var, $default);
325
 
326
  return $values;
327
  }
328
 
329
- function add_default_templates($path, $default=true){
330
  global $frm_form, $frm_field;
331
  $templates = glob($path."/*.php");
332
 
333
  for($i = count($templates) - 1; $i >= 0; $i--){
334
- $filename = str_replace($path."/","",$templates[$i]);
335
- $filename = str_replace('.php','', $filename);
336
- $template_query = "form_key='{$filename}' and is_template='1'";
337
  if($default) $template_query .= " and default_template='1'";
338
  $form = $frm_form->getAll($template_query, '', ' LIMIT 1');
339
 
340
  $values = FrmFormsHelper::setup_new_vars();
341
  $values['form_key'] = $filename;
342
- $values['is_template'] = 1;
343
  $values['status'] = 'published';
344
  if($default) $values['default_template'] = 1;
345
 
6
  class FrmFormsController{
7
  function FrmFormsController(){
8
  add_action('admin_menu', array( &$this, 'menu' ));
9
+ add_action('admin_head-toplevel_page_'.FRM_PLUGIN_NAME, array(&$this, 'head'));
10
+ add_action('admin_head-'.FRM_PLUGIN_NAME.'_page_'.FRM_PLUGIN_NAME.'-new', array(&$this, 'head'));
11
+ add_action('admin_head-'.FRM_PLUGIN_NAME.'_page_'.FRM_PLUGIN_NAME.'-templates', array(&$this, 'head'));
12
  add_action('wp_ajax_frm_form_name_in_place_edit', array(&$this, 'edit_name') );
13
  add_action('wp_ajax_frm_form_desc_in_place_edit', array(&$this, 'edit_description') );
14
  add_action('wp_ajax_frm_delete_form_wo_fields',array(&$this, 'destroy_wo_fields'));
15
  add_filter('frm_submit_button', array(&$this, 'submit_button_label'));
16
+ add_filter('media_buttons_context', array(&$this, 'insert_form_button'));
17
  add_action('admin_footer', array(&$this, 'insert_form_popup'));
18
  }
19
 
20
  function menu(){
21
+ add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' | '. __('Forms', 'formidable'), __('Forms', 'formidable'), 'frm_view_forms', FRM_PLUGIN_NAME, array(&$this, 'route'));
22
+ add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' | '. __('Add New Form', 'formidable'), __('Add New Form', 'formidable'), 'frm_edit_forms', FRM_PLUGIN_NAME.'-new', array(&$this, 'new_form'));
23
  add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' | '. __('Templates', 'formidable'), __('Templates', 'formidable'), 'frm_view_forms', FRM_PLUGIN_NAME.'-templates', array(&$this, 'template_list'));
24
  }
25
 
53
  $frm_field_selection = FrmFieldsHelper::field_selection();
54
  $values = FrmFormsHelper::setup_new_vars();
55
  $id = $frm_form->create( $values );
56
+ $values['id'] = $id;
57
+ require(FRM_VIEWS_PATH.'/frm-forms/new.php');
58
  }else{
59
+ $all_templates = $frm_form->getAll('is_template=1', ' ORDER BY name');
60
+ require(FRM_VIEWS_PATH.'/frm-forms/new-selection.php');
61
  }
62
  }
63
 
67
  $id = FrmAppHelper::get_param('id');
68
 
69
  if( count($errors) > 0 ){
70
+ $hide_preview = true;
71
  $frm_field_selection = FrmFieldsHelper::field_selection();
72
  $record = $frm_form->getOne( $id );
73
+ $fields = $frm_field->getAll("fi.form_id='$id'", ' ORDER BY field_order');
74
+ $values = FrmAppHelper::setup_edit_vars($record, 'forms', $fields, true);
75
+ require(FRM_VIEWS_PATH.'/frm-forms/new.php');
76
  }else{
77
  $record = $frm_form->update( $id, $_POST, true );
78
  $message = __('Form was Successfully Created', 'formidable');
150
  $plugin = FrmAppHelper::get_param('plugin');
151
  $controller = FrmAppHelper::get_param('controller');
152
  $key = (isset($_GET['form']) ? $_GET['form'] : (isset($_POST['form']) ? $_POST['form'] : ''));
153
+ $form = $frm_form->getAll("form_key='$key'", '', ' LIMIT 1');
154
+ if (!$form) $form = $frm_form->getAll('', '', ' LIMIT 1');
 
 
 
155
 
156
+ require(FRM_VIEWS_PATH.'/frm-entries/direct.php');
157
  }
158
 
159
  function destroy(){
187
  }
188
 
189
  function insert_form_button($content){
190
+ $content .= '<a href="#TB_inline?width=450&height=550&inlineId=frm_insert_form" class="thickbox" title="' . __("Add Formidable Form", 'formidable') . '"><img src="'.FRM_IMAGES_URL.'/form_16.png" alt="' . __("Add Formidable Form", 'formidable') . '" /></a>';
191
  return $content;
192
  }
193
 
198
  global $frmpro_display;
199
  $displays = $frmpro_display->getAll();
200
  }
201
+ require(FRM_VIEWS_PATH.'/frm-forms/insert_form_popup.php');
202
  }
203
  }
204
 
217
 
218
  if ($params['template']){
219
  $default_templates = $frm_form->getAll('default_template=1');
220
+ $all_templates = $frm_form->getAll('is_template=1', ' ORDER BY name');
221
  }
222
 
223
  $form_vars = $this->get_form_sort_vars($params, $where_clause);
237
  $search_str = $form_vars['search_str'];
238
 
239
  $record_count = $frm_app_helper->getRecordCount($form_vars['where_clause'], $frmdb->forms);
240
+ $page_count = $frm_app_helper->getPageCount($frm_page_size, $record_count, $frmdb->forms);
241
  $forms = $frm_app_helper->getPage($current_page, $frm_page_size, $form_vars['where_clause'], $form_vars['order_by'], $frmdb->forms);
242
  $page_last_record = $frm_app_helper->getLastRecordNum($record_count,$current_page,$frm_page_size);
243
  $page_first_record = $frm_app_helper->getFirstRecordNum($record_count,$current_page,$frm_page_size);
244
+ require(FRM_VIEWS_PATH.'/frm-forms/list.php');
245
  }
246
 
247
  function get_form_sort_vars($params,$where_clause = ''){
295
  $sdir_str = 'desc';
296
  }
297
 
298
+ return compact('order_by', 'sort_str', 'sdir_str', 'search_str', 'where_clause', 'page_params');
 
 
 
 
 
299
  }
300
 
301
  function get_edit_vars($id, $errors = '', $message='', $create_link=false){
302
  global $frm_app_helper, $frm_entry, $frm_form, $frm_field, $frmpro_is_installed, $frm_ajax_url;
303
  $record = $frm_form->getOne( $id );
304
  $frm_field_selection = FrmFieldsHelper::field_selection();
305
+ $fields = $frm_field->getAll("fi.form_id='$id'", ' ORDER BY field_order');
306
+ $values = FrmAppHelper::setup_edit_vars($record, 'forms', $fields, true);
307
  if (isset($values['default_template']) && $values['default_template'])
308
  wp_die(__('That template cannot be edited', 'formidable'));
309
  else if($create_link)
310
+ require(FRM_VIEWS_PATH.'/frm-forms/new.php');
311
  else
312
+ require(FRM_VIEWS_PATH.'/frm-forms/edit.php');
313
  }
314
 
315
  function get_params(){
316
  $values = array();
317
+ foreach (array('template' => 0, 'id' => '', 'paged' => 1, 'form' => '', 'search' => '', 'sort' => '', 'sdir' => '') as $var => $default)
318
  $values[$var] = FrmAppHelper::get_param($var, $default);
319
 
320
  return $values;
321
  }
322
 
323
+ function add_default_templates($path, $default=true, $template=true){
324
  global $frm_form, $frm_field;
325
  $templates = glob($path."/*.php");
326
 
327
  for($i = count($templates) - 1; $i >= 0; $i--){
328
+ $filename = str_replace('.php', '', str_replace($path.'/', '', $templates[$i]));
329
+ $template_query = "form_key='{$filename}'";
330
+ if($template) $template_query .= " and is_template='1'";
331
  if($default) $template_query .= " and default_template='1'";
332
  $form = $frm_form->getAll($template_query, '', ' LIMIT 1');
333
 
334
  $values = FrmFormsHelper::setup_new_vars();
335
  $values['form_key'] = $filename;
336
+ $values['is_template'] = $template;
337
  $values['status'] = 'published';
338
  if($default) $values['default_template'] = 1;
339
 
classes/controllers/FrmSettingsController.php CHANGED
@@ -7,19 +7,19 @@ class FrmSettingsController{
7
  function FrmSettingsController(){
8
  add_action('admin_menu', array( &$this, 'menu' ), 26);
9
  add_action('admin_menu', array( &$this, 'pro_menu' ), 19);
10
- //add_action('admin_head-'.FRM_PLUGIN_NAME.'_page_'.FRM_PLUGIN_NAME.'-settings', array($this,'head'));
11
  }
12
 
13
  function menu(){
14
- add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' | '. __('Settings', 'formidable'), __('Settings', 'formidable'), 'frm_change_settings', FRM_PLUGIN_NAME.'-settings', array(&$this,'route'));
15
  }
16
 
17
  function pro_menu(){
18
  global $frm_update;
19
- if (IS_WPMU and !is_site_admin() and get_site_option($frm_update->pro_wpmu_store))
20
  return;
21
 
22
- add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' | '. FRM_PLUGIN_TITLE . ' Pro', FRM_PLUGIN_TITLE . ' Pro', 'administrator', FRM_PLUGIN_NAME.'-pro-settings', array($frm_update,'pro_cred_form'));
23
  }
24
 
25
  function display_form(){
@@ -29,7 +29,7 @@ class FrmSettingsController{
29
  $uploads = wp_upload_dir();
30
  $target_path = $uploads['basedir'] . "/formidable/css";
31
 
32
- require_once(FRM_VIEWS_PATH . '/frm-settings/form.php');
33
  }
34
 
35
  function process_form(){
@@ -44,7 +44,7 @@ class FrmSettingsController{
44
  $message = __('Settings Saved', 'formidable');
45
  }
46
  $frm_roles = FrmAppHelper::frm_capabilities();
47
- require_once(FRM_VIEWS_PATH . '/frm-settings/form.php');
48
  }
49
 
50
  function route(){
7
  function FrmSettingsController(){
8
  add_action('admin_menu', array( &$this, 'menu' ), 26);
9
  add_action('admin_menu', array( &$this, 'pro_menu' ), 19);
10
+ //add_action('admin_head-'.FRM_PLUGIN_NAME.'_page_'.FRM_PLUGIN_NAME.'-settings', array(&$this, 'head'));
11
  }
12
 
13
  function menu(){
14
+ add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' | '. __('Settings', 'formidable'), __('Settings', 'formidable'), 'frm_change_settings', FRM_PLUGIN_NAME.'-settings', array(&$this, 'route'));
15
  }
16
 
17
  function pro_menu(){
18
  global $frm_update;
19
+ if (IS_WPMU and !FrmAppHelper::is_super_admin() and get_site_option($frm_update->pro_wpmu_store))
20
  return;
21
 
22
+ add_submenu_page(FRM_PLUGIN_NAME, FRM_PLUGIN_TITLE .' | '. FRM_PLUGIN_TITLE . ' Pro', FRM_PLUGIN_TITLE . ' Pro', 'administrator', FRM_PLUGIN_NAME.'-pro-settings', array($frm_update, 'pro_cred_form'));
23
  }
24
 
25
  function display_form(){
29
  $uploads = wp_upload_dir();
30
  $target_path = $uploads['basedir'] . "/formidable/css";
31
 
32
+ require(FRM_VIEWS_PATH . '/frm-settings/form.php');
33
  }
34
 
35
  function process_form(){
44
  $message = __('Settings Saved', 'formidable');
45
  }
46
  $frm_roles = FrmAppHelper::frm_capabilities();
47
+ require(FRM_VIEWS_PATH . '/frm-settings/form.php');
48
  }
49
 
50
  function route(){
classes/controllers/FrmStatisticsController.php CHANGED
@@ -11,11 +11,11 @@ class FrmStatisticsController{
11
  function menu(){
12
  global $frmpro_is_installed;
13
  if(!$frmpro_is_installed)
14
- add_submenu_page(FRM_PLUGIN_TITLE, FRM_PLUGIN_TITLE .' | Statistics', 'Statistics', 'administrator', FRM_PLUGIN_TITLE.'-statistics',array($this,''));
15
  }
16
 
17
  function list_entries(){
18
- require_once(FRM_VIEWS_PATH . '/frm-statistics/list.php');
19
  }
20
 
21
  }
11
  function menu(){
12
  global $frmpro_is_installed;
13
  if(!$frmpro_is_installed)
14
+ add_submenu_page(FRM_PLUGIN_TITLE, FRM_PLUGIN_TITLE .' | Statistics', 'Statistics', 'administrator', FRM_PLUGIN_TITLE.'-statistics', array(&$this, ''));
15
  }
16
 
17
  function list_entries(){
18
+ require(FRM_VIEWS_PATH . '/frm-statistics/list.php');
19
  }
20
 
21
  }
classes/helpers/FrmAppHelper.php CHANGED
@@ -18,7 +18,7 @@ class FrmAppHelper{
18
  <select name="<?php echo $field_name; ?>" id="<?php echo $field_name; ?>" class="frm-dropdown frm-pages-dropdown">
19
  <option value=""></option>
20
  <?php foreach($pages as $page){ ?>
21
- <option value="<?php echo $page->ID; ?>" <?php echo (((isset($_POST[$field_name]) and $_POST[$field_name] == $page->ID) or (!isset($_POST[$field_name]) and $page_id == $page->ID))?' selected="selected"':''); ?>><?php echo ($truncate)? substr($page->post_title, 0, $truncate) : $page->post_title; ?> </option>
22
  <?php } ?>
23
  </select>
24
  <?php
@@ -42,36 +42,90 @@ class FrmAppHelper{
42
  global $frmpro_is_installed;
43
  $cap = array(
44
  'frm_view_forms' => __('View Forms and Templates', 'formidable'),
45
- 'frm_edit_forms' => __('Create/Edit Forms and Templates', 'formidable'),
46
  'frm_delete_forms' => __('Delete Forms and Templates', 'formidable'),
47
  'frm_change_settings' => __('Access this Settings Page', 'formidable')
48
  );
49
  if($frmpro_is_installed){
50
  $cap['frm_view_entries'] = __('View Entries from Admin Area', 'formidable');
51
- $cap['frm_create_entries'] = __('Create Entries from Admin Area', 'formidable');
52
  $cap['frm_edit_entries'] = __('Edit Entries from Admin Area', 'formidable');
53
  $cap['frm_delete_entries'] = __('Delete Entries from Admin Area', 'formidable');
54
  $cap['frm_view_reports'] = __('View Reports', 'formidable');
55
- $cap['frm_edit_displays'] = __('Create/Edit Custom Displays', 'formidable');
56
  }
57
  return $cap;
58
  }
59
 
60
- function user_has_permission($needed_role){
61
- if ($needed_role == '' or
62
- ($needed_role == 'administrator' and current_user_can('administrator')) or
63
- ($needed_role == 'subscriber' and current_user_can('level_0')) or
64
- ($needed_role == 'contributer' and current_user_can('level_1')) or
65
- ($needed_role == 'author' and (current_user_can('author') or current_user_can('editor') or current_user_can('administrator'))) or
66
- ($needed_role == 'editor' and (current_user_can('editor') or current_user_can('administrator'))) )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  return true;
68
  else
69
  return false;
70
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
 
72
- function value_is_checked_with_array($field_name, $index, $field_value){
73
- if( ( $_POST['action'] == 'process_form' and isset( $_POST[ $field_name ][ $index ] ) ) or ( $_POST['action'] != 'process_form' and isset($field_value) ) )
74
- echo ' checked="checked"';
75
  }
76
 
77
  function get_file_contents($filename){
@@ -85,13 +139,13 @@ class FrmAppHelper{
85
  return false;
86
  }
87
 
88
- function get_unique_key($name='', $table_name, $column, $id = 0,$num_chars = 6){
89
  global $wpdb;
90
 
91
  if ($name == ''){
92
- $max_slug_value = pow(36,$num_chars);
93
  $min_slug_value = 37; // we want to have at least 2 characters in the slug
94
- $key = base_convert( rand($min_slug_value,$max_slug_value), 10, 36 );
95
  }else{
96
  if(function_exists('sanitize_key'))
97
  $key = sanitize_key($name);
@@ -99,7 +153,7 @@ class FrmAppHelper{
99
  $key = sanitize_title_with_dashes($name);
100
  }
101
 
102
- if (is_numeric($key) or in_array($key, array('id','key','created-at', 'detaillink', 'editlink', 'siteurl', 'evenodd')))
103
  $key = $key .'a';
104
 
105
  $query = "SELECT $column FROM $table_name WHERE $column = %s AND ID != %d LIMIT 1";
@@ -120,7 +174,7 @@ class FrmAppHelper{
120
  //Editing a Form or Entry
121
  function setup_edit_vars($record, $table, $fields='', $default=false){
122
  if(!$record) return false;
123
- global $frm_entry_meta, $frm_form, $frm_settings;
124
  $values = array();
125
 
126
  $values['id'] = $record->id;
@@ -132,47 +186,58 @@ class FrmAppHelper{
132
 
133
  if ($fields){
134
  foreach($fields as $field){
135
- $field_options = stripslashes_deep(unserialize($field->field_options));
136
-
137
- if ($default)
138
  $meta_value = $field->default_value;
139
- else{
140
- if($record->post_id and class_exists('FrmProEntryMetaHelper') and isset($field_options['post_field']) and $field_options['post_field']){
141
- $meta_value = FrmProEntryMetaHelper::get_post_value($record->post_id, $field_options['post_field'], $field_options['custom_field'], array('truncate' => false, 'type' => $field->type));
142
- }else if(isset($record->metas))
143
  $meta_value = isset($record->metas[$field->id]) ? $record->metas[$field->id] : false;
144
- else
145
  $meta_value = $frm_entry_meta->get_entry_meta_by_field($record->id, $field->id, true);
 
146
  }
147
 
148
  $field_type = isset($_POST['field_options']['type_'.$field->id]) ? $_POST['field_options']['type_'.$field->id] : $field->type;
149
  $new_value = (isset($_POST['item_meta'][$field->id])) ? $_POST['item_meta'][$field->id] : $meta_value;
150
  $new_value = stripslashes_deep(maybe_unserialize($new_value));
151
 
152
- $field_array = array('id' => $field->id,
153
- 'value' => str_replace('"', '&quot;', $new_value),
154
- 'default_value' => str_replace('"', '&quot;', stripslashes($field->default_value)),
155
- 'name' => stripslashes($field->name),
156
- 'description' => stripslashes($field->description),
157
- 'type' => apply_filters('frm_field_type',$field_type, $field),
158
- 'options' => str_replace('"', '&quot;', stripslashes_deep(maybe_unserialize($field->options))),
159
- 'required' => $field->required,
160
- 'field_key' => $field->field_key,
161
- 'field_order' => $field->field_order,
162
- 'form_id' => $field->form_id);
 
 
163
 
164
  foreach (array('size' => '', 'max' => '', 'label' => 'top', 'invalid' => '', 'required_indicator' => '*', 'blank' => '', 'clear_on_focus' => 0, 'custom_html' => '', 'default_blank' => 0) as $opt => $default_opt){
165
- $field_array[$opt] = ($_POST and isset($_POST['field_options'][$opt.'_'.$field->id]) ) ? $_POST['field_options'][$opt.'_'.$field->id] : (isset($field_options[$opt]) ? $field_options[$opt] : $default_opt);
166
- if($opt == 'blank' and $field_array[$opt] == '')
167
- $field_array[$opt] = $field_array['name'] . ' ' . __('cannot be blank', 'formidable');
168
- else if($opt == 'invalid' and $field_array[$opt] == '')
169
- $field_array[$opt] = $field_array['name'] . ' ' . __('is an invalid format', 'formidable');
 
 
 
 
170
  }
171
 
172
  if ($field_array['custom_html'] == '')
173
  $field_array['custom_html'] = FrmFieldsHelper::get_default_html($field_type);
174
-
175
- $values['fields'][] = apply_filters('frm_setup_edit_fields_vars', stripslashes_deep($field_array), $field, $values['id']);
 
 
 
 
176
  }
177
  }
178
 
@@ -182,10 +247,10 @@ class FrmAppHelper{
182
  $form = $frm_form->getOne( $record->id );
183
 
184
  if ($form){
 
185
  $values['form_name'] = (isset($record->form_id))?($form->name):('');
186
- $options = stripslashes_deep(unserialize($form->options));
187
- if (is_array($options)){
188
- foreach ($options as $opt => $value)
189
  $values[$opt] = FrmAppHelper::get_param($opt, $value);
190
  }
191
  }
@@ -223,6 +288,101 @@ class FrmAppHelper{
223
  return $values;
224
  }
225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
  function frm_get_main_message( $message = ''){
227
  global $frmpro_is_installed;
228
  include_once(ABSPATH."/wp-includes/class-IXR.php");
@@ -237,6 +397,7 @@ class FrmAppHelper{
237
  }
238
 
239
  function truncate($str, $length, $minword = 3, $continue = '...'){
 
240
  $sub = '';
241
  $len = 0;
242
 
@@ -275,7 +436,10 @@ class FrmAppHelper{
275
  }
276
 
277
  function getPageCount($p_size, $where="", $table_name){
278
- return ceil((int)$this->getRecordCount($where, $table_name) / (int)$p_size);
 
 
 
279
  }
280
 
281
  function getPage($current_p,$p_size, $where = "", $order_by = '', $table_name){
@@ -287,6 +451,63 @@ class FrmAppHelper{
287
  return $results;
288
  }
289
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  }
291
 
292
  ?>
18
  <select name="<?php echo $field_name; ?>" id="<?php echo $field_name; ?>" class="frm-dropdown frm-pages-dropdown">
19
  <option value=""></option>
20
  <?php foreach($pages as $page){ ?>
21
+ <option value="<?php echo $page->ID; ?>" <?php echo (((isset($_POST[$field_name]) and $_POST[$field_name] == $page->ID) or (!isset($_POST[$field_name]) and $page_id == $page->ID))?' selected="selected"':''); ?>><?php echo ($truncate)? FrmAppHelper::truncate($page->post_title, $truncate) : $page->post_title; ?> </option>
22
  <?php } ?>
23
  </select>
24
  <?php
42
  global $frmpro_is_installed;
43
  $cap = array(
44
  'frm_view_forms' => __('View Forms and Templates', 'formidable'),
45
+ 'frm_edit_forms' => __('Add/Edit Forms and Templates', 'formidable'),
46
  'frm_delete_forms' => __('Delete Forms and Templates', 'formidable'),
47
  'frm_change_settings' => __('Access this Settings Page', 'formidable')
48
  );
49
  if($frmpro_is_installed){
50
  $cap['frm_view_entries'] = __('View Entries from Admin Area', 'formidable');
51
+ $cap['frm_create_entries'] = __('Add Entries from Admin Area', 'formidable');
52
  $cap['frm_edit_entries'] = __('Edit Entries from Admin Area', 'formidable');
53
  $cap['frm_delete_entries'] = __('Delete Entries from Admin Area', 'formidable');
54
  $cap['frm_view_reports'] = __('View Reports', 'formidable');
55
+ $cap['frm_edit_displays'] = __('Add/Edit Custom Displays', 'formidable');
56
  }
57
  return $cap;
58
  }
59
 
60
+ function user_has_permission($needed_role){
61
+ if($needed_role == '' or current_user_can($needed_role))
62
+ return true;
63
+
64
+ $roles = array( 'administrator', 'editor', 'author', 'contributor', 'subscriber' );
65
+ foreach ($roles as $role){
66
+ if (current_user_can($role))
67
+ return true;
68
+ if ($role == $needed_role)
69
+ break;
70
+ }
71
+ return false;
72
+ }
73
+
74
+ function is_super_admin($user_id=false){
75
+ if(function_exists('is_super_admin'))
76
+ return is_super_admin($user_id);
77
+ else
78
+ return is_site_admin($user_id);
79
+ }
80
+
81
+ function checked($values, $current){
82
+ if(FrmAppHelper::check_selected($values, $current))
83
+ echo ' checked="checked"';
84
+ }
85
+
86
+ function check_selected($values, $current){
87
+ if(is_array($values))
88
+ $values = array_map('trim', $values);
89
+ else
90
+ $values = trim($values);
91
+ $current = trim($current);
92
+
93
+ /*if(is_array($values))
94
+ $values = array_map('htmlentities', $values);
95
+ else
96
+ $values = htmlentities($values);
97
+
98
+ $values = preg_replace("/&#?[a-z0-9]{2,8};/i", "", $values);
99
+ $current = preg_replace("/&#?[a-z0-9]{2,8};/i", "", $current);
100
+ */
101
+
102
+
103
+ if((is_array($values) && in_array($current, $values)) or (!is_array($values) and $values == $current))
104
  return true;
105
  else
106
  return false;
107
  }
108
+
109
+ function esc_textarea( $text ) {
110
+ $safe_text = str_replace('&quot;', '"', $text);
111
+ $safe_text = htmlspecialchars( $safe_text, ENT_NOQUOTES );
112
+ return apply_filters( 'esc_textarea', $safe_text, $text );
113
+ }
114
+
115
+ function script_version($handle, $list='scripts'){
116
+ global $wp_scripts;
117
+ if(!$wp_scripts)
118
+ return false;
119
+
120
+ $ver = 0;
121
+
122
+ if ( isset($wp_scripts->registered[$handle]) )
123
+ $query = $wp_scripts->registered[$handle];
124
+
125
+ if ( is_object( $query ) )
126
+ $ver = $query->ver;
127
 
128
+ return $ver;
 
 
129
  }
130
 
131
  function get_file_contents($filename){
139
  return false;
140
  }
141
 
142
+ function get_unique_key($name='', $table_name, $column, $id = 0, $num_chars = 6){
143
  global $wpdb;
144
 
145
  if ($name == ''){
146
+ $max_slug_value = pow(36, $num_chars);
147
  $min_slug_value = 37; // we want to have at least 2 characters in the slug
148
+ $key = base_convert( rand($min_slug_value, $max_slug_value), 10, 36 );
149
  }else{
150
  if(function_exists('sanitize_key'))
151
  $key = sanitize_key($name);
153
  $key = sanitize_title_with_dashes($name);
154
  }
155
 
156
+ if (is_numeric($key) or in_array($key, array('id', 'key', 'created-at', 'detaillink', 'editlink', 'siteurl', 'evenodd')))
157
  $key = $key .'a';
158
 
159
  $query = "SELECT $column FROM $table_name WHERE $column = %s AND ID != %d LIMIT 1";
174
  //Editing a Form or Entry
175
  function setup_edit_vars($record, $table, $fields='', $default=false){
176
  if(!$record) return false;
177
+ global $frm_entry_meta, $frm_form, $frm_settings, $frm_sidebar_width;
178
  $values = array();
179
 
180
  $values['id'] = $record->id;
186
 
187
  if ($fields){
188
  foreach($fields as $field){
189
+ $field->field_options = stripslashes_deep(maybe_unserialize($field->field_options));
190
+
191
+ if ($default){
192
  $meta_value = $field->default_value;
193
+ }else{
194
+ if($record->post_id and class_exists('FrmProEntryMetaHelper') and isset($field->field_options['post_field']) and $field->field_options['post_field']){
195
+ $meta_value = FrmProEntryMetaHelper::get_post_value($record->post_id, $field->field_options['post_field'], $field->field_options['custom_field'], array('truncate' => false, 'type' => $field->type, 'form_id' => $field->form_id, 'field' => $field));
196
+ }else if(isset($record->metas)){
197
  $meta_value = isset($record->metas[$field->id]) ? $record->metas[$field->id] : false;
198
+ }else{
199
  $meta_value = $frm_entry_meta->get_entry_meta_by_field($record->id, $field->id, true);
200
+ }
201
  }
202
 
203
  $field_type = isset($_POST['field_options']['type_'.$field->id]) ? $_POST['field_options']['type_'.$field->id] : $field->type;
204
  $new_value = (isset($_POST['item_meta'][$field->id])) ? $_POST['item_meta'][$field->id] : $meta_value;
205
  $new_value = stripslashes_deep(maybe_unserialize($new_value));
206
 
207
+ $field_array = array(
208
+ 'id' => $field->id,
209
+ 'value' => str_replace('"', '&quot;', $new_value),
210
+ 'default_value' => str_replace('"', '&quot;', stripslashes_deep(maybe_unserialize($field->default_value))),
211
+ 'name' => stripslashes($field->name),
212
+ 'description' => stripslashes($field->description),
213
+ 'type' => apply_filters('frm_field_type', $field_type, $field, $new_value),
214
+ 'options' => str_replace('"', '&quot;', stripslashes_deep(maybe_unserialize($field->options))),
215
+ 'required' => $field->required,
216
+ 'field_key' => $field->field_key,
217
+ 'field_order' => $field->field_order,
218
+ 'form_id' => $field->form_id
219
+ );
220
 
221
  foreach (array('size' => '', 'max' => '', 'label' => 'top', 'invalid' => '', 'required_indicator' => '*', 'blank' => '', 'clear_on_focus' => 0, 'custom_html' => '', 'default_blank' => 0) as $opt => $default_opt){
222
+ $field_array[$opt] = ($_POST and isset($_POST['field_options'][$opt.'_'.$field->id]) ) ? $_POST['field_options'][$opt.'_'.$field->id] : (isset($field->field_options[$opt]) ? $field->field_options[$opt] : $default_opt);
223
+ if($opt == 'blank' and $field_array[$opt] == ''){
224
+ $field_array[$opt] = __('This field cannot be blank', 'formidable');
225
+ }else if($opt == 'invalid' and $field_array[$opt] == ''){
226
+ if($field_type == 'captcha')
227
+ $field_array[$opt] = $frm_settings->re_msg;
228
+ else
229
+ $field_array[$opt] = $field_array['name'] . ' ' . __('is invalid', 'formidable');
230
+ }
231
  }
232
 
233
  if ($field_array['custom_html'] == '')
234
  $field_array['custom_html'] = FrmFieldsHelper::get_default_html($field_type);
235
+
236
+ if ($field_array['size'] == '')
237
+ $field_array['size'] = $frm_sidebar_width;
238
+
239
+ $values['fields'][] = apply_filters('frm_setup_edit_fields_vars', stripslashes_deep($field_array), $field, $values['id']);
240
+ unset($field);
241
  }
242
  }
243
 
247
  $form = $frm_form->getOne( $record->id );
248
 
249
  if ($form){
250
+ $form->options = maybe_unserialize($form->options);
251
  $values['form_name'] = (isset($record->form_id))?($form->name):('');
252
+ if (is_array($form->options)){
253
+ foreach ($form->options as $opt => $value)
 
254
  $values[$opt] = FrmAppHelper::get_param($opt, $value);
255
  }
256
  }
288
  return $values;
289
  }
290
 
291
+ function get_us_states(){
292
+ return apply_filters('frm_us_states', array(
293
+ 'AL' => 'Alabama', 'AK' => 'Alaska', 'AS' => 'Arkansas', 'AZ' => 'Arizona',
294
+ 'CA' => 'California', 'CO' => 'Colorado', 'CT' => 'Connecticut', 'DE' => 'Delaware',
295
+ 'FL' => 'Florida', 'GA' => 'Georgia', 'HI' => 'Hawaii', 'ID' => 'Idaho',
296
+ 'IL' => 'Illinois', 'IN' => 'Indiana', 'IA' => 'Iowa', 'KS' => 'Kansas',
297
+ 'KY' => 'Kentucky', 'LA' => 'Louisiana', 'ME' => 'Maine','MD' => 'Maryland',
298
+ 'MA' => 'Massachusetts', 'MI' => 'Michigan', 'MN' => 'Minnesota', 'MS' => 'Mississippi',
299
+ 'MO' => 'Missouri', 'MT' => 'Montana', 'NE' => 'Nebraska', 'NV' => 'Nevada',
300
+ 'NH' => 'New Hampshire', 'NJ' => 'New Jersey', 'NM' => 'New Mexico', 'NY' => 'New York',
301
+ 'NC' => 'North Carolina', 'ND' => 'North Dakota', 'OH' => 'Ohio', 'OK' => 'Oklahoma',
302
+ 'OR' => 'Oregon', 'PA' => 'Pennsylvania', 'RI' => 'Rhode Island', 'SC' => 'South Carolina',
303
+ 'SD' => 'South Dakota', 'TN' => 'Tennessee', 'TX' => 'Texas', 'UT' => 'Utah',
304
+ 'VT' => 'Vermont', 'VA' => 'Virginia', 'WA' => 'Washington', 'WV' => 'West Virginia',
305
+ 'WI' => 'Wisconsin', 'WY' => 'Wyoming'
306
+ ));
307
+ }
308
+
309
+ function get_countries(){
310
+ return apply_filters('frm_countries', array(
311
+ __('Afghanistan', 'formidable'), __('Albania', 'formidable'), __('Algeria', 'formidable'),
312
+ __('American Samoa', 'formidable'), __('Andorra', 'formidable'), __('Angola', 'formidable'),
313
+ __('Anguilla', 'formidable'), __('Antarctica', 'formidable'), __('Antigua and Barbuda', 'formidable'),
314
+ __('Argentina', 'formidable'), __('Armenia', 'formidable'), __('Aruba', 'formidable'),
315
+ __('Australia', 'formidable'), __('Austria', 'formidable'), __('Azerbaijan', 'formidable'),
316
+ __('Bahamas', 'formidable'), __('Bahrain', 'formidable'), __('Bangladesh', 'formidable'),
317
+ __('Barbados', 'formidable'), __('Belarus', 'formidable'), __('Belgium', 'formidable'),
318
+ __('Belize', 'formidable'), __('Benin', 'formidable'), __('Bermuda', 'formidable'),
319
+ __('Bhutan', 'formidable'), __('Bolivia', 'formidable'), __('Bosnia and Herzegovina', 'formidable'),
320
+ __('Botswana', 'formidable'), __('Brazil', 'formidable'), __('Brunei', 'formidable'),
321
+ __('Bulgaria', 'formidable'), __('Burkina Faso', 'formidable'), __('Burundi', 'formidable'),
322
+ __('Cambodia', 'formidable'), __('Cameroon', 'formidable'), __('Canada', 'formidable'),
323
+ __('Cape Verde', 'formidable'), __('Cayman Islands', 'formidable'), __('Central African Republic', 'formidable'),
324
+ __('Chad', 'formidable'), __('Chile', 'formidable'), __('China', 'formidable'),
325
+ __('Colombia', 'formidable'), __('Comoros', 'formidable'), __('Congo', 'formidable'),
326
+ __('Costa Rica', 'formidable'), __('C&ocirc;te d\'Ivoire', 'formidable'), __('Croatia', 'formidable'),
327
+ __('Cuba', 'formidable'), __('Cyprus', 'formidable'), __('Czech Republic', 'formidable'),
328
+ __('Denmark', 'formidable'), __('Djibouti', 'formidable'), __('Dominica', 'formidable'),
329
+ __('Dominican Republic', 'formidable'), __('East Timor', 'formidable'), __('Ecuador', 'formidable'),
330
+ __('Egypt', 'formidable'), __('El Salvador', 'formidable'), __('Equatorial Guinea', 'formidable'),
331
+ __('Eritrea', 'formidable'), __('Estonia', 'formidable'), __('Ethiopia', 'formidable'),
332
+ __('Fiji', 'formidable'), __('Finland', 'formidable'), __('France', 'formidable'),
333
+ __('French Guiana', 'formidable'), __('French Polynesia', 'formidable'), __('Gabon', 'formidable'),
334
+ __('Gambia', 'formidable'), __('Georgia', 'formidable'), __('Germany', 'formidable'),
335
+ __('Ghana', 'formidable'), __('Gibraltar', 'formidable'), __('Greece', 'formidable'),
336
+ __('Greenland', 'formidable'), __('Grenada', 'formidable'), __('Guam', 'formidable'),
337
+ __('Guatemala', 'formidable'), __('Guinea', 'formidable'), __('Guinea-Bissau', 'formidable'),
338
+ __('Guyana', 'formidable'), __('Haiti', 'formidable'), __('Honduras', 'formidable'),
339
+ __('Hong Kong', 'formidable'), __('Hungary', 'formidable'), __('Iceland', 'formidable'),
340
+ __('India', 'formidable'), __('Indonesia', 'formidable'), __('Iran', 'formidable'),
341
+ __('Iraq', 'formidable'), __('Ireland', 'formidable'), __('Israel', 'formidable'),
342
+ __('Italy', 'formidable'), __('Jamaica', 'formidable'), __('Japan', 'formidable'),
343
+ __('Jordan', 'formidable'), __('Kazakhstan', 'formidable'), __('Kenya', 'formidable'),
344
+ __('Kiribati', 'formidable'), __('North Korea', 'formidable'), __('South Korea', 'formidable'),
345
+ __('Kuwait', 'formidable'), __('Kyrgyzstan', 'formidable'), __('Laos', 'formidable'),
346
+ __('Latvia', 'formidable'), __('Lebanon', 'formidable'), __('Lesotho', 'formidable'),
347
+ __('Liberia', 'formidable'), __('Libya', 'formidable'), __('Liechtenstein', 'formidable'),
348
+ __('Lithuania', 'formidable'), __('Luxembourg', 'formidable'), __('Macedonia', 'formidable'),
349
+ __('Madagascar', 'formidable'), __('Malawi', 'formidable'), __('Malaysia', 'formidable'),
350
+ __('Maldives', 'formidable'), __('Mali', 'formidable'), __('Malta', 'formidable'),
351
+ __('Marshall Islands', 'formidable'), __('Mauritania', 'formidable'), __('Mauritius', 'formidable'),
352
+ __('Mexico', 'formidable'), __('Micronesia', 'formidable'), __('Moldova', 'formidable'),
353
+ __('Monaco', 'formidable'), __('Mongolia', 'formidable'), __('Montenegro', 'formidable'),
354
+ __('Montserrat', 'formidable'), __('Morocco', 'formidable'), __('Mozambique', 'formidable'),
355
+ __('Myanmar', 'formidable'), __('Namibia', 'formidable'), __('Nauru', 'formidable'),
356
+ __('Nepal', 'formidable'), __('Netherlands', 'formidable'), __('New Zealand', 'formidable'),
357
+ __('Nicaragua', 'formidable'), __('Niger', 'formidable'), __('Nigeria', 'formidable'),
358
+ __('Norway', 'formidable'), __('Northern Mariana Islands', 'formidable'), __('Oman', 'formidable'),
359
+ __('Pakistan', 'formidable'), __('Palau', 'formidable'), __('Palestine', 'formidable'),
360
+ __('Panama', 'formidable'), __('Papua New Guinea', 'formidable'), __('Paraguay', 'formidable'),
361
+ __('Peru', 'formidable'), __('Philippines', 'formidable'), __('Poland', 'formidable'),
362
+ __('Portugal', 'formidable'), __('Puerto Rico', 'formidable'), __('Qatar', 'formidable'),
363
+ __('Romania', 'formidable'), __('Russia', 'formidable'), __('Rwanda', 'formidable'),
364
+ __('Saint Kitts and Nevis', 'formidable'), __('Saint Lucia', 'formidable'),
365
+ __('Saint Vincent and the Grenadines', 'formidable'), __('Samoa', 'formidable'),
366
+ __('San Marino', 'formidable'), __('Sao Tome and Principe', 'formidable'), __('Saudi Arabia', 'formidable'),
367
+ __('Senegal', 'formidable'), __('Serbia and Montenegro', 'formidable'), __('Seychelles', 'formidable'),
368
+ __('Sierra Leone', 'formidable'), __('Singapore', 'formidable'), __('Slovakia', 'formidable'),
369
+ __('Slovenia', 'formidable'), __('Solomon Islands', 'formidable'), __('Somalia', 'formidable'),
370
+ __('South Africa', 'formidable'), __('Spain', 'formidable'), __('Sri Lanka', 'formidable'),
371
+ __('Sudan', 'formidable'), __('Suriname', 'formidable'), __('Swaziland', 'formidable'),
372
+ __('Sweden', 'formidable'), __('Switzerland', 'formidable'), __('Syria', 'formidable'),
373
+ __('Taiwan', 'formidable'), __('Tajikistan', 'formidable'), __('Tanzania', 'formidable'),
374
+ __('Thailand', 'formidable'), __('Togo', 'formidable'), __('Tonga', 'formidable'),
375
+ __('Trinidad and Tobago', 'formidable'), __('Tunisia', 'formidable'), __('Turkey', 'formidable'),
376
+ __('Turkmenistan', 'formidable'), __('Tuvalu', 'formidable'), __('Uganda', 'formidable'),
377
+ __('Ukraine', 'formidable'), __('United Arab Emirates', 'formidable'), __('United Kingdom', 'formidable'),
378
+ __('United States', 'formidable'), __('Uruguay', 'formidable'), __('Uzbekistan', 'formidable'),
379
+ __('Vanuatu', 'formidable'), __('Vatican City', 'formidable'), __('Venezuela', 'formidable'),
380
+ __('Vietnam', 'formidable'), __('Virgin Islands, British', 'formidable'),
381
+ __('Virgin Islands, U.S.', 'formidable'), __('Yemen', 'formidable'), __('Zambia', 'formidable'),
382
+ __('Zimbabwe', 'formidable')
383
+ ));
384
+ }
385
+
386
  function frm_get_main_message( $message = ''){
387
  global $frmpro_is_installed;
388
  include_once(ABSPATH."/wp-includes/class-IXR.php");
397
  }
398
 
399
  function truncate($str, $length, $minword = 3, $continue = '...'){
400
+ $str = stripslashes(esc_attr(strip_tags($str)));
401
  $sub = '';
402
  $len = 0;
403
 
436
  }
437
 
438
  function getPageCount($p_size, $where="", $table_name){
439
+ if(is_numeric($where))
440
+ return ceil((int)$where / (int)$p_size);
441
+ else
442
+ return ceil((int)$this->getRecordCount($where, $table_name) / (int)$p_size);
443
  }
444
 
445
  function getPage($current_p,$p_size, $where = "", $order_by = '', $table_name){
451
  return $results;
452
  }
453
 
454
+ function get_referer_query($query) {
455
+ if (strpos($query, "google.")) {
456
+ //$pattern = '/^.*\/search.*[\?&]q=(.*)$/';
457
+ $pattern = '/^.*[\?&]q=(.*)$/';
458
+ } else if (strpos($query, "bing.com")) {
459
+ $pattern = '/^.*q=(.*)$/';
460
+ } else if (strpos($query, "yahoo.")) {
461
+ $pattern = '/^.*[\?&]p=(.*)$/';
462
+ } else if (strpos($query, "ask.")) {
463
+ $pattern = '/^.*[\?&]q=(.*)$/';
464
+ } else {
465
+ return false;
466
+ }
467
+ preg_match($pattern, $query, $matches);
468
+ $querystr = substr($matches[1], 0, strpos($matches[1], '&'));
469
+ return urldecode($querystr);
470
+ }
471
+
472
+ function get_referer_info(){
473
+ $referrerinfo = '';
474
+ $keywords = array();
475
+ $i = 1;
476
+ if(isset($_SESSION) and isset($_SESSION['frm_http_referer']) and $_SESSION['frm_http_referer']){
477
+ foreach ($_SESSION['frm_http_referer'] as $referer) {
478
+ $referrerinfo .= str_pad("Referer $i: ",20) . $referer. "\r\n";
479
+ $keywords_used = FrmAppHelper::get_referer_query($referer);
480
+ if ($keywords_used)
481
+ $keywords[] = $keywords_used;
482
+
483
+ $i++;
484
+ }
485
+
486
+ $referrerinfo .= "\r\n";
487
+ }else{
488
+ $referrerinfo = $_SERVER['HTTP_REFERER'];
489
+ }
490
+
491
+ $i = 1;
492
+ if(isset($_SESSION) and isset($_SESSION['frm_http_pages']) and $_SESSION['frm_http_pages']){
493
+ foreach ($_SESSION['frm_http_pages'] as $page) {
494
+ $referrerinfo .= str_pad("Page visited $i: ",20) . $page. "\r\n";
495
+ $i++;
496
+ }
497
+
498
+ $referrerinfo .= "\r\n";
499
+ }
500
+
501
+ $i = 1;
502
+ foreach ($keywords as $keyword) {
503
+ $referrerinfo .= str_pad("Keyword $i: ",20) . $keyword. "\r\n";
504
+ $i++;
505
+ }
506
+ $referrerinfo .= "\r\n";
507
+
508
+ return $referrerinfo;
509
+ }
510
+
511
  }
512
 
513
  ?>
classes/helpers/FrmEntriesHelper.php CHANGED
@@ -3,7 +3,7 @@
3
  class FrmEntriesHelper{
4
 
5
  function setup_new_vars($fields, $form='', $reset=false){
6
- global $frm_form, $frm_settings;
7
  $values = array();
8
  foreach (array('name' => '', 'description' => '', 'item_key' => '') as $var => $default)
9
  $values[$var] = stripslashes(FrmAppHelper::get_param($var, $default));
@@ -11,48 +11,59 @@ class FrmEntriesHelper{
11
  $values['fields'] = array();
12
  if ($fields){
13
  foreach($fields as $field){
14
- $default = $field->default_value;
 
15
 
16
- $field_options = unserialize($field->field_options);
17
- if ($reset)
18
- $new_value = $default;
19
- else
20
- $new_value = ($_POST and isset($_POST['item_meta'][$field->id]) and $_POST['item_meta'][$field->id] != '') ? $_POST['item_meta'][$field->id] : $default;
21
-
22
- $new_value = stripslashes_deep(maybe_unserialize($new_value));
23
- if (!is_array($new_value))
24
- $new_value = apply_filters('frm_get_default_value', $new_value, $field);
25
 
26
- $new_value = str_replace('"', '&quot;', $new_value);
 
 
 
 
27
 
28
- $field_array = array('id' => $field->id,
 
 
 
 
 
 
 
29
  'value' => $new_value,
30
- 'default_value' => $new_value,
31
  'name' => stripslashes($field->name),
32
  'description' => stripslashes($field->description),
33
- 'type' => apply_filters('frm_field_type',$field->type, $field),
34
- 'options' => str_replace('"', '&quot;', stripslashes_deep(unserialize($field->options))),
35
  'required' => $field->required,
36
  'field_key' => $field->field_key,
37
  'field_order' => $field->field_order,
38
- 'form_id' => $field->form_id);
 
39
 
40
- foreach (array('size' => '','max' => '','label' => 'top','invalid' => '','required_indicator' => '','blank' => '', 'clear_on_focus' => 0, 'custom_html' => '', 'default_blank' => 0) as $opt => $default_opt)
41
- $field_array[$opt] = (isset($field_options[$opt]) && $field_options[$opt] != '') ? $field_options[$opt] : $default_opt;
42
 
43
- if ($field_array['custom_html'] == '')
44
- $field_array['custom_html'] = FrmFieldsHelper::get_default_html($field->type);
 
 
 
 
45
 
46
- $values['fields'][] = apply_filters('frm_setup_new_fields_vars', stripslashes_deep($field_array), $field);
47
 
48
- if (!$form or !isset($form->id))
49
- $form = $frm_form->getOne($field->form_id);
50
  }
51
 
52
- $options = stripslashes_deep(unserialize($form->options));
53
-
54
- if (is_array($options)){
55
- foreach ($options as $opt => $value)
56
  $values[$opt] = FrmAppHelper::get_param($opt, $value);
57
  }
58
 
@@ -81,24 +92,26 @@ class FrmEntriesHelper{
81
  }
82
 
83
  function setup_edit_vars($values, $record){
84
- //$values['description'] = unserialize( $record->description );
85
  $values['item_key'] = ($_POST and isset($_POST['item_key']))?$_POST['item_key']:$record->item_key;
86
  $values['form_id'] = $record->form_id;
87
  return apply_filters('frm_setup_edit_entry_vars', $values, $record);
88
  }
89
 
90
  function entries_dropdown( $form_id, $field_name, $field_value='', $blank=true, $blank_label='', $onchange=false ){
91
- global $frm_entry;
92
 
93
- $entries = $frm_entry->getAll("it.form_id=".$form_id,' ORDER BY name');
94
  ?>
95
  <select name="<?php echo $field_name; ?>" id="<?php echo $field_name; ?>" class="frm-dropdown" <?php if ($onchange) echo 'onchange="'.$onchange.'"'; ?>>
96
  <?php if ($blank){ ?>
97
  <option value=""><?php echo $blank_label; ?></option>
98
  <?php } ?>
99
  <?php foreach($entries as $entry){ ?>
100
- <option value="<?php echo $entry->id; ?>" <?php selected($field_value, $entry->id); ?>><?php echo substr((!empty($entry->name)) ? stripslashes($entry->name) : $entry->item_key, 0, 50); ?></option>
101
- <?php } ?>
 
 
102
  </select>
103
  <?php
104
  }
3
  class FrmEntriesHelper{
4
 
5
  function setup_new_vars($fields, $form='', $reset=false){
6
+ global $frm_form, $frm_settings, $frm_sidebar_width;
7
  $values = array();
8
  foreach (array('name' => '', 'description' => '', 'item_key' => '') as $var => $default)
9
  $values[$var] = stripslashes(FrmAppHelper::get_param($var, $default));
11
  $values['fields'] = array();
12
  if ($fields){
13
  foreach($fields as $field){
14
+ $field->field_options = maybe_unserialize($field->field_options);
15
+ $default = $field->default_value;
16
 
17
+ if ($reset)
18
+ $new_value = $default;
19
+ else
20
+ $new_value = ($_POST and isset($_POST['item_meta'][$field->id]) and $_POST['item_meta'][$field->id] != '') ? $_POST['item_meta'][$field->id] : $default;
 
 
 
 
 
21
 
22
+ $is_default = ($new_value == $default) ? true : false;
23
+
24
+ $new_value = stripslashes_deep(maybe_unserialize($new_value));
25
+ if (!is_array($new_value))
26
+ $new_value = apply_filters('frm_get_default_value', $new_value, $field);
27
 
28
+ $new_value = str_replace('"', '&quot;', $new_value);
29
+ if($is_default)
30
+ $field->default_value = $new_value;
31
+ else
32
+ $field->default_value = apply_filters('frm_get_default_value', $field->default_value, $field);
33
+
34
+ $field_array = array(
35
+ 'id' => $field->id,
36
  'value' => $new_value,
37
+ 'default_value' => str_replace('"', '&quot;', maybe_unserialize($field->default_value)),
38
  'name' => stripslashes($field->name),
39
  'description' => stripslashes($field->description),
40
+ 'type' => apply_filters('frm_field_type', $field->type, $field, $new_value),
41
+ 'options' => str_replace('"', '&quot;', stripslashes_deep(maybe_unserialize($field->options))),
42
  'required' => $field->required,
43
  'field_key' => $field->field_key,
44
  'field_order' => $field->field_order,
45
+ 'form_id' => $field->form_id
46
+ );
47
 
48
+ foreach (array('size' => '', 'max' => '', 'label' => 'top', 'invalid' => '', 'required_indicator' => '', 'blank' => '', 'clear_on_focus' => 0, 'custom_html' => '', 'default_blank' => 0) as $opt => $default_opt)
49
+ $field_array[$opt] = (isset($field->field_options[$opt]) && $field->field_options[$opt] != '') ? $field->field_options[$opt] : $default_opt;
50
 
51
+ if ($field_array['size'] == '')
52
+ $field_array['size'] = $frm_sidebar_width;
53
+
54
+
55
+ if ($field_array['custom_html'] == '')
56
+ $field_array['custom_html'] = FrmFieldsHelper::get_default_html($field->type);
57
 
58
+ $values['fields'][] = apply_filters('frm_setup_new_fields_vars', stripslashes_deep($field_array), $field);
59
 
60
+ if (!$form or !isset($form->id))
61
+ $form = $frm_form->getOne($field->form_id);
62
  }
63
 
64
+ $form->options = maybe_unserialize($form->options);
65
+ if (is_array($form->options)){
66
+ foreach ($form->options as $opt => $value)
 
67
  $values[$opt] = FrmAppHelper::get_param($opt, $value);
68
  }
69
 
92
  }
93
 
94
  function setup_edit_vars($values, $record){
95
+ //$values['description'] = maybe_unserialize( $record->description );
96
  $values['item_key'] = ($_POST and isset($_POST['item_key']))?$_POST['item_key']:$record->item_key;
97
  $values['form_id'] = $record->form_id;
98
  return apply_filters('frm_setup_edit_entry_vars', $values, $record);
99
  }
100
 
101
  function entries_dropdown( $form_id, $field_name, $field_value='', $blank=true, $blank_label='', $onchange=false ){
102
+ global $wpdb, $frmdb;
103
 
104
+ $entries = $frmdb->get_records($frmdb->entries, array('form_id' => $form_id), 'name', 999, 'id,item_key,name');
105
  ?>
106
  <select name="<?php echo $field_name; ?>" id="<?php echo $field_name; ?>" class="frm-dropdown" <?php if ($onchange) echo 'onchange="'.$onchange.'"'; ?>>
107
  <?php if ($blank){ ?>
108
  <option value=""><?php echo $blank_label; ?></option>
109
  <?php } ?>
110
  <?php foreach($entries as $entry){ ?>
111
+ <option value="<?php echo $entry->id; ?>" <?php selected($field_value, $entry->id); ?>><?php echo FrmAppHelper::truncate((!empty($entry->name)) ? stripslashes($entry->name) : $entry->item_key, 40); ?></option>
112
+ <?php
113
+ unset($entry);
114
+ } ?>
115
  </select>
116
  <?php
117
  }
classes/helpers/FrmFieldsHelper.php CHANGED
@@ -40,19 +40,18 @@ class FrmFieldsHelper{
40
  //'address' => 'Address' //Address line 1, Address line 2, City, State/Providence, Postal Code, Select Country
41
  //'city_selector' => 'US State/County/City selector',
42
  //'full_name' => 'First and Last Name',
43
- //'terms' => 'Terms of Use',// checkbox or show terms (integrate with Terms of use plugin)
44
  //'quiz' => 'Question and Answer' // for captcha alternative
45
  ));
46
  }
47
 
48
  function setup_new_vars($type='',$form_id=''){
49
- global $frmdb, $frm_app_helper;
50
 
51
- $field_count = $frm_app_helper->getRecordCount("form_id=$form_id", $frmdb->fields);
52
  $key = FrmAppHelper::get_unique_key('', $frmdb->fields, 'field_key');
53
 
54
  $values = array();
55
- foreach (array('name' => __('Untitled', 'formidable'), 'description' => '', 'field_key' => $key, 'type' => $type, 'options'=>'', 'default_value'=>'', 'field_order' => $field_count+1, 'required' => false, 'blank' => __('Untitled cannot be blank', 'formidable'), 'invalid' => __('Untitled is an invalid format', 'formidable'), 'form_id' => $form_id) as $var => $default)
56
  $values[$var] = $default;
57
 
58
  $values['field_options'] = array();
@@ -60,11 +59,13 @@ class FrmFieldsHelper{
60
  $values['field_options'][$var] = $default;
61
 
62
  if ($type == 'radio' || ($type == 'checkbox'))
63
- $values['options'] = serialize(array('Option 1', 'Option 2'));
64
  else if ( $type == 'select')
65
- $values['options'] = serialize(array('','Option 1'));
66
  else if ($type == 'textarea')
67
  $values['field_options']['max'] = '5';
 
 
68
 
69
  return $values;
70
  }
@@ -73,30 +74,37 @@ class FrmFieldsHelper{
73
  global $frm_entry_meta, $frm_form;
74
 
75
  $values = array();
 
 
76
  $values['id'] = $record->id;
77
  $values['form_id'] = $record->form_id;
78
  foreach (array('name' => $record->name, 'description' => $record->description) as $var => $default)
79
  $values[$var] = htmlspecialchars(stripslashes(FrmAppHelper::get_param($var, $default)));
80
 
81
- $values['form_name'] = ($record->form_id)?($frm_form->getName( $record->form_id )):('');
82
 
83
  foreach (array('field_key' => $record->field_key, 'type' => $record->type, 'default_value'=> $record->default_value, 'field_order' => $record->field_order, 'required' => $record->required) as $var => $default)
84
  $values[$var] = FrmAppHelper::get_param($var, $default);
85
 
86
- $field_options = maybe_unserialize($record->field_options);
87
  $values['options'] = stripslashes_deep(maybe_unserialize($record->options));
88
- $values['field_options'] = $field_options;
89
- $values['size'] = (isset($field_options['size']))?($field_options['size']):('');
90
- $values['max'] = (isset($field_options['max']))?($field_options['max']):('');
91
- $values['label'] = (isset($field_options['label']))?($field_options['label']):('top');
92
- $values['blank'] = (isset($field_options['blank']))?($field_options['blank']):('');
93
- $values['required_indicator'] = (isset($field_options['required_indicator']))?($field_options['required_indicator']):('*');
94
- $values['invalid'] = (isset($field_options['invalid']))?($field_options['invalid']):('');
95
- $values['clear_on_focus'] = (isset($field_options['clear_on_focus']))?($field_options['clear_on_focus']):(0);
96
- $values['default_blank'] = (isset($field_options['default_blank']))?($field_options['default_blank']):(0);
97
- $values['custom_html'] = (isset($field_options['custom_html']))? stripslashes($field_options['custom_html']): FrmFieldsHelper::get_default_html($record->type);
98
-
99
- return apply_filters('frm_setup_edit_field_vars',$values);
 
 
 
 
 
 
100
  }
101
 
102
  function get_form_fields($form_id, $error=false){
@@ -107,15 +115,16 @@ class FrmFieldsHelper{
107
  return $fields;
108
  }
109
 
110
- function get_default_html($type){
111
  if (apply_filters('frm_normal_field_type_html', true, $type)){
112
  $default_html = <<<DEFAULT_HTML
113
- <div id="frm_field_[id]_container" class="form-field [required_class] [error_class]">
114
- <label class="frm_pos_[label_position]">[field_name]
115
  <span class="frm_required">[required_label]</span>
116
  </label>
117
  [input]
118
  [if description]<div class="frm_description">[description]</div>[/if description]
 
119
  </div>
120
  DEFAULT_HTML;
121
  }else
@@ -124,7 +133,7 @@ DEFAULT_HTML;
124
  return apply_filters('frm_custom_html', $default_html, $type);
125
  }
126
 
127
- function replace_shortcodes($html, $field, $error_keys=array(), $form=false){
128
  $field_name = "item_meta[". $field['id'] ."]";
129
  //replace [id]
130
  $html = str_replace('[id]', $field['id'], $html);
@@ -132,30 +141,34 @@ DEFAULT_HTML;
132
  //replace [key]
133
  $html = str_replace('[key]', $field['field_key'], $html);
134
 
135
- //replace [description] and [required_label]
136
- $required = ($field['required'] == '0')?(''):($field['required_indicator']);
137
- foreach (array('description' => $field['description'], 'required_label' => $required) as $code => $value){
138
- if ($value == '')
 
139
  $html = preg_replace('/(\[if\s+'.$code.'\])(.*?)(\[\/if\s+'.$code.'\])/mis', '', $html);
140
  else{
141
- $html = str_replace('[if '.$code.']','',$html);
142
- $html = str_replace('[/if '.$code.']','',$html);
143
  }
 
144
  $html = str_replace('['.$code.']', $value, $html);
145
- }
146
 
147
  //replace [required_class]
148
  $required_class = ($field['required'] == '0')?(''):(' form-required');
149
  $html = str_replace('[required_class]', $required_class, $html);
150
 
151
  //replace [label_position]
152
- $html = str_replace('[label_position]', $field['label'], $html);
 
153
 
154
  //replace [field_name]
155
  $html = str_replace('[field_name]', $field['name'], $html);
156
 
157
  //replace [error_class]
158
- $error_class = (in_array('field'.$field['id'], $error_keys)) ? ' frm_blank_field':'';
 
159
  $html = str_replace('[error_class]', $error_class, $html);
160
 
161
  //replace [entry_key]
@@ -200,6 +213,7 @@ DEFAULT_HTML;
200
  //replace [form_name]
201
  $html = str_replace('[form_name]', $form['name'], $html);
202
  }
 
203
 
204
  return apply_filters('frm_replace_shortcodes', $html, $field);
205
  }
@@ -210,11 +224,42 @@ DEFAULT_HTML;
210
  if(!function_exists('recaptcha_get_html'))
211
  require_once(FRM_PATH.'/classes/recaptchalib.php');
212
  ?>
213
- <script type="text/javascript">var RecaptchaOptions={theme:'<?php echo $frm_settings->re_theme ?>',lang:'<?php echo $frm_settings->re_lang ?>'};</script>
214
- <div id="frm_field_<?php echo $field['id'] ?>_container"><?php echo recaptcha_get_html($frm_settings->pubkey, $error, is_ssl()) ?></div>
215
  <?php
216
  }
217
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  function show_onfocus_js($field_id, $clear_on_focus){
219
  global $frm_ajax_url; ?>
220
  <a href="javascript:frm_clear_on_focus(<?php echo $field_id; ?>,<?php echo $clear_on_focus; ?>,'<?php echo FRM_IMAGES_URL ?>','<?php echo $frm_ajax_url?>')" class="<?php echo ($clear_on_focus) ?'':'frm_inactive_icon '; ?>frm-show-hover" id="clear_field_<?php echo $field_id; ?>" title="<?php printf(__('Set this field to %1$sclear on click', 'formidable'), ($clear_on_focus) ? __('not', 'formidable').' ' :'' ); ?>"><img src="<?php echo FRM_IMAGES_URL?>/reload.png"></a>
40
  //'address' => 'Address' //Address line 1, Address line 2, City, State/Providence, Postal Code, Select Country
41
  //'city_selector' => 'US State/County/City selector',
42
  //'full_name' => 'First and Last Name',
 
43
  //'quiz' => 'Question and Answer' // for captcha alternative
44
  ));
45
  }
46
 
47
  function setup_new_vars($type='',$form_id=''){
48
+ global $frmdb, $frm_app_helper, $frm_settings;
49
 
50
+ $field_count = $frm_app_helper->getRecordCount("form_id='$form_id'", $frmdb->fields);
51
  $key = FrmAppHelper::get_unique_key('', $frmdb->fields, 'field_key');
52
 
53
  $values = array();
54
+ foreach (array('name' => __('Untitled', 'formidable'), 'description' => '', 'field_key' => $key, 'type' => $type, 'options'=>'', 'default_value'=>'', 'field_order' => $field_count+1, 'required' => false, 'blank' => __('This field cannot be blank', 'formidable'), 'invalid' => __('This field is invalid', 'formidable'), 'form_id' => $form_id) as $var => $default)
55
  $values[$var] = $default;
56
 
57
  $values['field_options'] = array();
59
  $values['field_options'][$var] = $default;
60
 
61
  if ($type == 'radio' || ($type == 'checkbox'))
62
+ $values['options'] = serialize(array(__('Option 1', 'formidable'), __('Option 2', 'formidable')));
63
  else if ( $type == 'select')
64
+ $values['options'] = serialize(array('', __('Option 1', 'formidable')));
65
  else if ($type == 'textarea')
66
  $values['field_options']['max'] = '5';
67
+ else if ($type == 'captcha')
68
+ $values['invalid'] = $frm_settings->re_msg;
69
 
70
  return $values;
71
  }
74
  global $frm_entry_meta, $frm_form;
75
 
76
  $values = array();
77
+ $record->field_options = maybe_unserialize($record->field_options);
78
+
79
  $values['id'] = $record->id;
80
  $values['form_id'] = $record->form_id;
81
  foreach (array('name' => $record->name, 'description' => $record->description) as $var => $default)
82
  $values[$var] = htmlspecialchars(stripslashes(FrmAppHelper::get_param($var, $default)));
83
 
84
+ $values['form_name'] = ($record->form_id) ? $frm_form->getName( $record->form_id ) : '';
85
 
86
  foreach (array('field_key' => $record->field_key, 'type' => $record->type, 'default_value'=> $record->default_value, 'field_order' => $record->field_order, 'required' => $record->required) as $var => $default)
87
  $values[$var] = FrmAppHelper::get_param($var, $default);
88
 
 
89
  $values['options'] = stripslashes_deep(maybe_unserialize($record->options));
90
+ $values['field_options'] = $record->field_options;
91
+ $defaults = array(
92
+ 'size' => '', 'max' => '', 'label' => 'top', 'blank' => '',
93
+ 'required_indicator' => '*', 'invalid' => '',
94
+ 'clear_on_focus' => 0, 'default_blank' => 0
95
+ );
96
+
97
+ if($values['type'] == 'captcha'){
98
+ global $frm_settings;
99
+ $defaults['invalid'] = $frm_settings->re_msg;
100
+ }
101
+
102
+ foreach($defaults as $opt => $default)
103
+ $values[$opt] = (isset($record->field_options[$opt])) ? $record->field_options[$opt] : $default;
104
+
105
+ $values['custom_html'] = (isset($record->field_options['custom_html'])) ? stripslashes($record->field_options['custom_html']) : FrmFieldsHelper::get_default_html($record->type);
106
+
107
+ return apply_filters('frm_setup_edit_field_vars', $values, $values['field_options']);
108
  }
109
 
110
  function get_form_fields($form_id, $error=false){
115
  return $fields;
116
  }
117
 
118
+ function get_default_html($type='text'){
119
  if (apply_filters('frm_normal_field_type_html', true, $type)){
120
  $default_html = <<<DEFAULT_HTML
121
+ <div id="frm_field_[id]_container" class="form-field [required_class][error_class]">
122
+ <label class="frm_primary_label">[field_name]
123
  <span class="frm_required">[required_label]</span>
124
  </label>
125
  [input]
126
  [if description]<div class="frm_description">[description]</div>[/if description]
127
+ [if error]<div class="frm_error">[error]</div>[/if error]
128
  </div>
129
  DEFAULT_HTML;
130
  }else
133
  return apply_filters('frm_custom_html', $default_html, $type);
134
  }
135
 
136
+ function replace_shortcodes($html, $field, $errors=array(), $form=false){
137
  $field_name = "item_meta[". $field['id'] ."]";
138
  //replace [id]
139
  $html = str_replace('[id]', $field['id'], $html);
141
  //replace [key]
142
  $html = str_replace('[key]', $field['field_key'], $html);
143
 
144
+ //replace [description] and [required_label] and [error]
145
+ $required = ($field['required'] == '0')? '' : $field['required_indicator'];
146
+ $error = isset($errors['field'. $field['id']]) ? stripslashes($errors['field'. $field['id']]) : false;
147
+ foreach (array('description' => $field['description'], 'required_label' => $required, 'error' => $error) as $code => $value){
148
+ if (!$value or $value == '')
149
  $html = preg_replace('/(\[if\s+'.$code.'\])(.*?)(\[\/if\s+'.$code.'\])/mis', '', $html);
150
  else{
151
+ $html = str_replace('[if '.$code.']', '', $html);
152
+ $html = str_replace('[/if '.$code.']', '', $html);
153
  }
154
+
155
  $html = str_replace('['.$code.']', $value, $html);
156
+ }
157
 
158
  //replace [required_class]
159
  $required_class = ($field['required'] == '0')?(''):(' form-required');
160
  $html = str_replace('[required_class]', $required_class, $html);
161
 
162
  //replace [label_position]
163
+ $field['label'] = ($field['label'] and $field['label'] != '') ? $field['label'] : 'top';
164
+ $html = str_replace('[label_position]', (($field['type'] == 'divider') ? $field['label'] : ' frm_primary_label'), $html);
165
 
166
  //replace [field_name]
167
  $html = str_replace('[field_name]', $field['name'], $html);
168
 
169
  //replace [error_class]
170
+ $error_class = isset($errors['field'. $field['id']]) ? ' frm_blank_field' : '';
171
+ $error_class .= ' frm_'. $field['label'] .'_container' ;
172
  $html = str_replace('[error_class]', $error_class, $html);
173
 
174
  //replace [entry_key]
213
  //replace [form_name]
214
  $html = str_replace('[form_name]', $form['name'], $html);
215
  }
216
+ $html .= "\n";
217
 
218
  return apply_filters('frm_replace_shortcodes', $html, $field);
219
  }
224
  if(!function_exists('recaptcha_get_html'))
225
  require_once(FRM_PATH.'/classes/recaptchalib.php');
226
  ?>
227
+ <script type="text/javascript">var RecaptchaOptions={theme:'<?php echo $frm_settings->re_theme ?>',lang:'<?php echo apply_filters('frm_recaptcha_lang', $frm_settings->re_lang, $field) ?>'<?php echo apply_filters('frm_recaptcha_custom', '', $field) ?>};</script>
228
+ <?php echo recaptcha_get_html($frm_settings->pubkey, $error, is_ssl()) ?>
229
  <?php
230
  }
231
 
232
+ function dropdown_categories($args){
233
+ $defaults = array('field' => false, 'name' => false);
234
+ extract(wp_parse_args($args, $defaults));
235
+
236
+ if(!$field) return;
237
+ if(!$name) $name = "item_meta[$field[id]]";
238
+
239
+ $selected = is_array($field['value']) ? reset($field['value']) : $field['value'];
240
+
241
+ $exclude = (is_array($field['exclude_cat'])) ? implode(',', $field['exclude_cat']) : $field['exclude_cat'];
242
+ $exclude = apply_filters('frm_exclude_cats', $exclude, $field);
243
+
244
+ $args = array(
245
+ 'show_option_all' => ' ', 'hierarchical' => 1, 'name' => $name,
246
+ 'id' => 'field_'. $field['field_key'], 'exclude' => $exclude,
247
+ 'class' => $field['type'], 'selected' => $selected,
248
+ 'hide_empty' => false, 'echo' => 0, 'orderby' => 'name'
249
+ );
250
+
251
+ if(class_exists('FrmProForm')){
252
+ $post_type = FrmProForm::post_type($field['form_id']);
253
+ if(function_exists('get_object_taxonomies')){
254
+ $args['taxonomy'] = FrmProAppHelper::get_custom_taxonomy($post_type, $field);
255
+ if(!$args['taxonomy'])
256
+ return;
257
+ }
258
+ }
259
+
260
+ return wp_dropdown_categories($args);
261
+ }
262
+
263
  function show_onfocus_js($field_id, $clear_on_focus){
264
  global $frm_ajax_url; ?>
265
  <a href="javascript:frm_clear_on_focus(<?php echo $field_id; ?>,<?php echo $clear_on_focus; ?>,'<?php echo FRM_IMAGES_URL ?>','<?php echo $frm_ajax_url?>')" class="<?php echo ($clear_on_focus) ?'':'frm_inactive_icon '; ?>frm-show-hover" id="clear_field_<?php echo $field_id; ?>" title="<?php printf(__('Set this field to %1$sclear on click', 'formidable'), ($clear_on_focus) ? __('not', 'formidable').' ' :'' ); ?>"><img src="<?php echo FRM_IMAGES_URL?>/reload.png"></a>
classes/helpers/FrmFormsHelper.php CHANGED
@@ -12,15 +12,12 @@ class FrmFormsHelper{
12
  }
13
 
14
  function get_template_dropdown($templates){ ?>
15
- <select id="select_form" name="select_form" onChange='createFromFrmTemplate(this.value)'>
16
- <option value=""><?php _e('Create Form from Template', 'formidable') ?>: </option>
17
  <?php foreach ($templates as $temp){ ?>
18
- <option value="<?php echo $temp->id ?>"><?php echo $temp->name ?></option>
19
  <?php }?>
20
  </select>
21
- <script type="text/javascript">
22
- function createFromFrmTemplate(form){window.location='?page=<?php echo FRM_PLUGIN_NAME; ?>&action=duplicate&id='+form}
23
- </script>
24
  <?php
25
  }
26
 
@@ -28,15 +25,16 @@ class FrmFormsHelper{
28
  global $frm_form;
29
  if (!$field_id)
30
  $field_id = $field_name;
31
-
32
- $forms = $frm_form->getAll("is_template=0 AND (status is NULL OR status = '' OR status = 'published')",' ORDER BY name');
 
33
  ?>
34
  <select name="<?php echo $field_name; ?>" id="<?php echo $field_id ?>" class="frm-dropdown" <?php if ($onchange) echo 'onchange="'.$onchange.'"'; ?>>
35
  <?php if ($blank){ ?>
36
- <option value=""></option>
37
  <?php } ?>
38
  <?php foreach($forms as $form){ ?>
39
- <option value="<?php echo $form->id; ?>" <?php selected($field_value, $form->id); ?>><?php echo stripslashes($form->name); ?></option>
40
  <?php } ?>
41
  </select>
42
  <?php
@@ -90,7 +88,7 @@ BEFORE_HTML;
90
  }
91
 
92
  function replace_shortcodes($html, $form, $title=false, $description=false){
93
- foreach (array('form_name' => $title,'form_description' => $description, 'entry_key' => true) as $code => $show){
94
  if ($code == 'form_name')
95
  $replace_with = stripslashes($form->name);
96
  else if ($code == 'form_description')
@@ -99,8 +97,8 @@ BEFORE_HTML;
99
  $replace_with = $_GET['entry'];
100
 
101
  if (($show == true || $show == 'true') && $replace_with != '' ){
102
- $html = str_replace('[if '.$code.']','',$html);
103
- $html = str_replace('[/if '.$code.']','',$html);
104
  }else{
105
  $html = preg_replace('/(\[if\s+'.$code.'\])(.*?)(\[\/if\s+'.$code.'\])/mis', '', $html);
106
  }
12
  }
13
 
14
  function get_template_dropdown($templates){ ?>
15
+ <select id="select_form" name="select_form" onChange="frmAddNewForm(this.value,'duplicate')">
16
+ <option value="">- <?php _e('Create Form from Template', 'formidable') ?> -</option>
17
  <?php foreach ($templates as $temp){ ?>
18
+ <option value="<?php echo $temp->id ?>"><?php echo FrmAppHelper::truncate($temp->name, 40) ?></option>
19
  <?php }?>
20
  </select>
 
 
 
21
  <?php
22
  }
23
 
25
  global $frm_form;
26
  if (!$field_id)
27
  $field_id = $field_name;
28
+
29
+ $where = apply_filters('frm_forms_dropdown', "is_template=0 AND (status is NULL OR status = '' OR status = 'published')", $field_name);
30
+ $forms = $frm_form->getAll($where, ' ORDER BY name');
31
  ?>
32
  <select name="<?php echo $field_name; ?>" id="<?php echo $field_id ?>" class="frm-dropdown" <?php if ($onchange) echo 'onchange="'.$onchange.'"'; ?>>
33
  <?php if ($blank){ ?>
34
+ <option value=""><?php echo ($blank == 1) ? '' : '- '. $blank .' -'; ?></option>
35
  <?php } ?>
36
  <?php foreach($forms as $form){ ?>
37
+ <option value="<?php echo $form->id; ?>" <?php selected($field_value, $form->id); ?>><?php echo FrmAppHelper::truncate($form->name, 50); ?></option>
38
  <?php } ?>
39
  </select>
40
  <?php
88
  }
89
 
90
  function replace_shortcodes($html, $form, $title=false, $description=false){
91
+ foreach (array('form_name' => $title, 'form_description' => $description, 'entry_key' => true) as $code => $show){
92
  if ($code == 'form_name')
93
  $replace_with = stripslashes($form->name);
94
  else if ($code == 'form_description')
97
  $replace_with = $_GET['entry'];
98
 
99
  if (($show == true || $show == 'true') && $replace_with != '' ){
100
+ $html = str_replace('[if '.$code.']', '', $html);
101
+ $html = str_replace('[/if '.$code.']', '', $html);
102
  }else{
103
  $html = preg_replace('/(\[if\s+'.$code.'\])(.*?)(\[\/if\s+'.$code.'\])/mis', '', $html);
104
  }
classes/models/FrmDb.php CHANGED
@@ -13,202 +13,231 @@ class FrmDb{
13
  $this->entry_metas = $wpdb->prefix . "frm_item_metas";
14
  }
15
 
16
- function upgrade(){
17
- global $wpdb, $frm_form, $frm_field, $frm_db_version;
18
- //$frm_db_version is the version of the database we're moving to
19
- $old_db_version = get_option('frm_db_version');
 
20
 
21
- if ($frm_db_version != $old_db_version){
22
- require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
23
 
24
- $charset_collate = '';
25
- if( $wpdb->has_cap( 'collation' ) ){
26
- if( !empty($wpdb->charset) )
27
- $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
28
- if( !empty($wpdb->collate) )
29
- $charset_collate .= " COLLATE $wpdb->collate";
30
- }
31
-
32
- /* Create/Upgrade Fields Table */
33
- $sql = "CREATE TABLE {$this->fields} (
34
- id int(11) NOT NULL auto_increment,
35
- field_key varchar(255) default NULL,
36
- name varchar(255) default NULL,
37
- description text default NULL,
38
- type text default NULL,
39
- default_value longtext default NULL,
40
- options longtext default NULL,
41
- field_order int(11) default 0,
42
- required int(1) default NULL,
43
- field_options longtext default NULL,
44
- form_id int(11) default NULL,
45
- created_at datetime NOT NULL,
46
- PRIMARY KEY id (id),
47
- KEY form_id (form_id),
48
- UNIQUE KEY field_key (field_key)
49
  ) {$charset_collate};";
50
 
51
- dbDelta($sql);
52
-
53
- /* Create/Upgrade Forms Table */
54
- $sql = "CREATE TABLE {$this->forms} (
55
- id int(11) NOT NULL auto_increment,
56
- form_key varchar(255) default NULL,
57
- name varchar(255) default NULL,
58
- description text default NULL,
59
- logged_in boolean default NULL,
60
- editable boolean default NULL,
61
- is_template boolean default 0,
62
- default_template boolean default 0,
63
- status varchar(255) default NULL,
64
- prli_link_id int(11) default NULL,
65
- options longtext default NULL,
66
- created_at datetime NOT NULL,
67
- PRIMARY KEY id (id),
68
- UNIQUE KEY form_key (form_key)
69
  ) {$charset_collate};";
70
 
71
- dbDelta($sql);
72
-
73
- /* Create/Upgrade Items Table */
74
- $sql = "CREATE TABLE {$this->entries} (
75
- id int(11) NOT NULL auto_increment,
76
- item_key varchar(255) default NULL,
77
- name varchar(255) default NULL,
78
- description text default NULL,
79
- ip text default NULL,
80
- form_id int(11) default NULL,
81
- post_id int(11) default NULL,
82
- user_id int(11) default NULL,
83
- created_at datetime NOT NULL,
84
- PRIMARY KEY id (id),
85
- KEY form_id (form_id),
86
- KEY post_id (post_id),
87
- KEY user_id (user_id),
88
- UNIQUE KEY item_key (item_key)
 
 
89
  ) {$charset_collate};";
90
 
91
- dbDelta($sql);
92
-
93
- /* Create/Upgrade Meta Table */
94
- $sql = "CREATE TABLE {$this->entry_metas} (
95
- id int(11) NOT NULL auto_increment,
96
- meta_value longtext default NULL,
97
- field_id int(11) NOT NULL,
98
- item_id int(11) NOT NULL,
99
- created_at datetime NOT NULL,
100
- PRIMARY KEY id (id),
101
- KEY field_id (field_id),
102
- KEY item_id (item_id)
103
  ) {$charset_collate};";
104
 
105
- dbDelta($sql);
106
 
107
- /**** MIGRATE DATA ****/
108
- if ($frm_db_version == 1.03){
109
- global $frm_entry;
110
- $all_entries = $frm_entry->getAll();
111
- foreach($all_entries as $ent){
112
- $opts = maybe_unserialize($ent->description);
113
- if(is_array($opts))
114
- $wpdb->update( $this->entries, array('ip' => $opts['ip']), array( 'id' => $ent->id ) );
115
- }
116
- }else if($frm_db_version >= 4 and $old_db_version < 4){
117
- $user_ids = FrmEntryMeta::getAll("fi.type='user_id'");
118
- foreach($user_ids as $user_id)
119
- $wpdb->update( $this->entries, array('user_id' => $user_id->meta_value), array('id' => $user_id->item_id) );
120
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
 
122
- /**** ADD DEFAULT TEMPLATES ****/
123
- FrmFormsController::add_default_templates(FRM_TEMPLATES_PATH);
124
 
125
 
126
- /***** SAVE DB VERSION *****/
127
- update_option('frm_db_version',$frm_db_version);
128
- }
129
 
130
- do_action('frm_after_install');
131
  }
132
 
133
  function get_count($table, $args=array()){
134
- global $wpdb;
135
- extract(FrmDb::get_where_clause_and_values( $args ));
136
 
137
- $query = "SELECT COUNT(*) FROM {$table}{$where}";
138
- $query = $wpdb->prepare($query, $values);
139
- return $wpdb->get_var($query);
140
  }
141
 
142
  function get_where_clause_and_values( $args ){
143
- $where = '';
144
- $values = array();
145
- if(is_array($args)){
146
- foreach($args as $key => $value){
147
- if(!empty($where))
148
- $where .= ' AND';
149
- else
150
- $where .= ' WHERE';
151
-
152
- $where .= " {$key}=";
153
-
154
- if(is_numeric($value))
155
- $where .= "%d";
156
- else
157
- $where .= "%s";
158
-
159
- $values[] = $value;
160
- }
161
- }
162
-
163
- return compact('where','values');
164
  }
165
 
166
  function get_var($table, $args=array(), $field='id', $order_by=''){
167
- global $wpdb;
168
 
169
- extract(FrmDb::get_where_clause_and_values( $args ));
170
- if(!empty($order_by))
171
- $order_by = " ORDER BY {$order_by}";
172
 
173
- $query = $wpdb->prepare("SELECT {$field} FROM {$table}{$where}{$order_by} LIMIT 1", $values);
174
- return $wpdb->get_var($query);
175
  }
176
 
177
  function get_col($table, $args=array(), $field='id', $order_by=''){
178
- global $wpdb;
179
 
180
- extract(FrmDb::get_where_clause_and_values( $args ));
181
- if(!empty($order_by))
182
- $order_by = " ORDER BY {$order_by}";
183
 
184
- $query = $wpdb->prepare("SELECT {$field} FROM {$table}{$where}{$order_by}", $values);
185
- return $wpdb->get_col($query);
186
  }
187
 
188
  function get_one_record($table, $args=array(), $fields='*'){
189
- global $wpdb;
190
 
191
- extract(FrmDb::get_where_clause_and_values( $args ));
192
 
193
- $query = "SELECT {$fields} FROM {$table}{$where} LIMIT 1";
194
- $query = $wpdb->prepare($query, $values);
195
- return $wpdb->get_row($query);
196
  }
197
 
198
  function get_records($table, $args=array(), $order_by='', $limit='', $fields='*'){
199
- global $wpdb;
200
 
201
- extract(FrmDb::get_where_clause_and_values( $args ));
202
 
203
- if(!empty($order_by))
204
- $order_by = " ORDER BY {$order_by}";
205
 
206
- if(!empty($limit))
207
- $limit = " LIMIT {$limit}";
208
 
209
- $query = "SELECT {$fields} FROM {$table}{$where}{$order_by}{$limit}";
210
- $query = $wpdb->prepare($query, $values);
211
- return $wpdb->get_results($query);
212
  }
213
 
214
  function uninstall(){
13
  $this->entry_metas = $wpdb->prefix . "frm_item_metas";
14
  }
15
 
16
+ function upgrade($old_db_version=false){
17
+ global $wpdb, $frm_db_version;
18
+ //$frm_db_version is the version of the database we're moving to
19
+ if(!$old_db_version)
20
+ $old_db_version = get_option('frm_db_version');
21
 
22
+ if ($frm_db_version != $old_db_version){
23
+ require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
24
 
25
+ $charset_collate = '';
26
+ if( $wpdb->has_cap( 'collation' ) ){
27
+ if( !empty($wpdb->charset) )
28
+ $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
29
+ if( !empty($wpdb->collate) )
30
+ $charset_collate .= " COLLATE $wpdb->collate";
31
+ }
32
+
33
+ /* Create/Upgrade Fields Table */
34
+ $sql = "CREATE TABLE `{$this->fields}` (
35
+ `id` int(11) NOT NULL auto_increment,
36
+ `field_key` varchar(255) default NULL,
37
+ `name` varchar(255) default NULL,
38
+ `description` text default NULL,
39
+ `type` text default NULL,
40
+ `default_value` longtext default NULL,
41
+ `options` longtext default NULL,
42
+ `field_order` int(11) default 0,
43
+ `required` int(1) default NULL,
44
+ `field_options` longtext default NULL,
45
+ `form_id` int(11) default NULL,
46
+ `created_at` datetime NOT NULL,
47
+ PRIMARY KEY (`id`),
48
+ KEY `form_id` (`form_id`),
49
+ UNIQUE KEY `field_key` (`field_key`)
50
  ) {$charset_collate};";
51
 
52
+ dbDelta($sql);
53
+
54
+ /* Create/Upgrade Forms Table */
55
+ $sql = "CREATE TABLE {$this->forms} (
56
+ `id` int(11) NOT NULL auto_increment,
57
+ `form_key` varchar(255) default NULL,
58
+ `name` varchar(255) default NULL,
59
+ `description` text default NULL,
60
+ `logged_in` boolean default NULL,
61
+ `editable` boolean default NULL,
62
+ `is_template` boolean default 0,
63
+ `default_template` boolean default 0,
64
+ `status` varchar(255) default NULL,
65
+ `prli_link_id` int(11) default NULL,
66
+ `options` longtext default NULL,
67
+ `created_at` datetime NOT NULL,
68
+ PRIMARY KEY (`id`),
69
+ UNIQUE KEY `form_key` (`form_key`)
70
  ) {$charset_collate};";
71
 
72
+ dbDelta($sql);
73
+
74
+ /* Create/Upgrade Items Table */
75
+ $sql = "CREATE TABLE {$this->entries} (
76
+ `id` int(11) NOT NULL auto_increment,
77
+ `item_key` varchar(255) default NULL,
78
+ `name` varchar(255) default NULL,
79
+ `description` text default NULL,
80
+ `ip` text default NULL,
81
+ `form_id` int(11) default NULL,
82
+ `post_id` int(11) default NULL,
83
+ `user_id` int(11) default NULL,
84
+ `updated_by` int(11) default NULL,
85
+ `created_at` datetime NOT NULL,
86
+ `updated_at` datetime NOT NULL,
87
+ PRIMARY KEY (`id`),
88
+ KEY `form_id` (`form_id`),
89
+ KEY `post_id` (`post_id`),
90
+ KEY `user_id` (`user_id`),
91
+ UNIQUE KEY `item_key` (`item_key`)
92
  ) {$charset_collate};";
93
 
94
+ dbDelta($sql);
95
+
96
+ /* Create/Upgrade Meta Table */
97
+ $sql = "CREATE TABLE {$this->entry_metas} (
98
+ `id` int(11) NOT NULL auto_increment,
99
+ `meta_value` longtext default NULL,
100
+ `field_id` int(11) NOT NULL,
101
+ `item_id` int(11) NOT NULL,
102
+ `created_at` datetime NOT NULL,
103
+ PRIMARY KEY (`id`),
104
+ KEY `field_id` (`field_id`),
105
+ KEY `item_id` (`item_id`)
106
  ) {$charset_collate};";
107
 
108
+ dbDelta($sql);
109
 
110
+ /**** MIGRATE DATA ****/
111
+ if ($frm_db_version >= 1.03 and $old_db_version < 1.03){
112
+ global $frm_entry;
113
+ $all_entries = $frm_entry->getAll();
114
+ foreach($all_entries as $ent){
115
+ $opts = maybe_unserialize($ent->description);
116
+ if(is_array($opts))
117
+ $wpdb->update( $this->entries, array('ip' => $opts['ip']), array( 'id' => $ent->id ) );
118
+ }
119
+ }
120
+
121
+ if($frm_db_version >= 4 and $old_db_version < 4){
122
+ $user_ids = FrmEntryMeta::getAll("fi.type='user_id'");
123
+ foreach($user_ids as $user_id)
124
+ $wpdb->update( $this->entries, array('user_id' => $user_id->meta_value), array('id' => $user_id->item_id) );
125
+ }
126
+
127
+ if($frm_db_version >= 6 and $old_db_version < 6){
128
+ $fields = $wpdb->get_results("SELECT id, field_options FROM $this->fields WHERE type not in ('hidden', 'user_id', 'break', 'divider', 'html', 'captcha')");
129
+ $default_html = <<<DEFAULT_HTML
130
+ <div id="frm_field_[id]_container" class="form-field [required_class] [error_class]">
131
+ <label class="frm_pos_[label_position]">[field_name]
132
+ <span class="frm_required">[required_label]</span>
133
+ </label>
134
+ [input]
135
+ [if description]<div class="frm_description">[description]</div>[/if description]
136
+ </div>
137
+ DEFAULT_HTML;
138
+ $old_default_html = <<<DEFAULT_HTML
139
+ <div id="frm_field_[id]_container" class="form-field [required_class] [error_class]">
140
+ <label class="frm_pos_[label_position]">[field_name]
141
+ <span class="frm_required">[required_label]</span>
142
+ </label>
143
+ [input]
144
+ [if description]<p class="frm_description">[description]</p>[/if description]
145
+ </div>
146
+ DEFAULT_HTML;
147
+ $new_default_html = FrmFieldsHelper::get_default_html('text');
148
+ foreach($fields as $field){
149
+ $field->field_options = maybe_unserialize($field->field_options);
150
+ if(!isset($field->field_options['custom_html']) or empty($field->field_options['custom_html']) or (stripslashes($field->field_options['custom_html']) == $default_html) or (stripslashes($field->field_options['custom_html']) == $old_default_html)){
151
+ $field->field_options['custom_html'] = $new_default_html;
152
+ $wpdb->update($this->fields, array('field_options' => maybe_serialize($field->field_options)), array( 'id' => $field->id ));
153
+ }
154
+ unset($field);
155
+ }
156
+ unset($default_html);
157
+ }
158
 
159
+ /**** ADD/UPDATE DEFAULT TEMPLATES ****/
160
+ FrmFormsController::add_default_templates(FRM_TEMPLATES_PATH);
161
 
162
 
163
+ /***** SAVE DB VERSION *****/
164
+ update_option('frm_db_version', $frm_db_version);
165
+ }
166
 
167
+ do_action('frm_after_install');
168
  }
169
 
170
  function get_count($table, $args=array()){
171
+ global $wpdb;
172
+ extract(FrmDb::get_where_clause_and_values( $args ));
173
 
174
+ $query = "SELECT COUNT(*) FROM {$table}{$where}";
175
+ $query = $wpdb->prepare($query, $values);
176
+ return $wpdb->get_var($query);
177
  }
178
 
179
  function get_where_clause_and_values( $args ){
180
+ $where = '';
181
+ $values = array();
182
+ if(is_array($args)){
183
+ foreach($args as $key => $value){
184
+ $where .= (!empty($where)) ? ' AND' : ' WHERE';
185
+ $where .= " {$key}=";
186
+ $where .= (is_numeric($value)) ? "%d" : "%s";
187
+
188
+ $values[] = $value;
189
+ }
190
+ }
191
+
192
+ return compact('where', 'values');
 
 
 
 
 
 
 
 
193
  }
194
 
195
  function get_var($table, $args=array(), $field='id', $order_by=''){
196
+ global $wpdb;
197
 
198
+ extract(FrmDb::get_where_clause_and_values( $args ));
199
+ if(!empty($order_by))
200
+ $order_by = " ORDER BY {$order_by}";
201
 
202
+ $query = $wpdb->prepare("SELECT {$field} FROM {$table}{$where}{$order_by} LIMIT 1", $values);
203
+ return $wpdb->get_var($query);
204
  }
205
 
206
  function get_col($table, $args=array(), $field='id', $order_by=''){
207
+ global $wpdb;
208
 
209
+ extract(FrmDb::get_where_clause_and_values( $args ));
210
+ if(!empty($order_by))
211
+ $order_by = " ORDER BY {$order_by}";
212
 
213
+ $query = $wpdb->prepare("SELECT {$field} FROM {$table}{$where}{$order_by}", $values);
214
+ return $wpdb->get_col($query);
215
  }
216
 
217
  function get_one_record($table, $args=array(), $fields='*'){
218
+ global $wpdb;
219
 
220
+ extract(FrmDb::get_where_clause_and_values( $args ));
221
 
222
+ $query = "SELECT {$fields} FROM {$table}{$where} LIMIT 1";
223
+ $query = $wpdb->prepare($query, $values);
224
+ return $wpdb->get_row($query);
225
  }
226
 
227
  function get_records($table, $args=array(), $order_by='', $limit='', $fields='*'){
228
+ global $wpdb;
229
 
230
+ extract(FrmDb::get_where_clause_and_values( $args ));
231
 
232
+ if(!empty($order_by))
233
+ $order_by = " ORDER BY {$order_by}";
234
 
235
+ if(!empty($limit))
236
+ $limit = " LIMIT {$limit}";
237
 
238
+ $query = "SELECT {$fields} FROM {$table}{$where}{$order_by}{$limit}";
239
+ $query = $wpdb->prepare($query, $values);
240
+ return $wpdb->get_results($query);
241
  }
242
 
243
  function uninstall(){
classes/models/FrmEntry.php CHANGED
@@ -9,48 +9,60 @@ class FrmEntry{
9
  $new_values['name'] = isset($values['name']) ? $values['name'] : $values['item_key'];
10
  $new_values['ip'] = $_SERVER['REMOTE_ADDR'];
11
 
12
- if(isset($values['description']) and !empty($values['description']))
13
  $new_values['description'] = $values['description'];
14
- else
 
 
15
  $new_values['description'] = serialize(array('browser' => $_SERVER['HTTP_USER_AGENT'],
16
- 'referrer' => $_SERVER['HTTP_REFERER']));
 
 
17
  $new_values['form_id'] = isset($values['form_id']) ? (int)$values['form_id']: null;
18
- $new_values['created_at'] = current_time('mysql', 1);
19
 
20
  //if(isset($values['id']) and is_numeric($values['id']))
21
  // $new_values['id'] = $values['id'];
22
 
23
- if(isset($values['frm_user_id']) and is_numeric($values['frm_user_id']))
24
- $new_values['user_id'] = $values['frm_user_id'];
 
 
 
 
 
25
 
26
  //check for duplicate entries created in the last 5 minutes
27
- $check_val = $new_values;
28
- $check_val['created_at >'] = date('Y-m-d H:i:s', (strtotime($new_values['created_at']) - (60*60*5)));
29
- unset($check_val['created_at']);
30
- unset($check_val['id']);
31
- unset($check_val['item_key']);
32
- if($new_values['item_key'] == $new_values['name'])
33
- unset($check_val['name']);
34
-
35
  $create_entry = true;
36
- $entry_exists = $frmdb->get_records($frmdb->entries, $check_val, 'created_at DESC', '', 'id');
37
- if($entry_exists and !empty($entry_exists)){
38
- foreach($entry_exists as $entry_exist){
39
- if($create_entry){
40
- $create_entry = false;
41
- //add more checks here to make sure it's a duplicate
42
- if (isset($values['item_meta'])){
43
- $metas = FrmEntryMeta::get_entry_meta_info($entry_exist->id);
44
- $field_metas = array();
45
- foreach($metas as $meta)
46
- $field_metas[$meta->field_id] = $meta->meta_value;
47
-
48
- $diff = array_diff_assoc($field_metas, $values['item_meta']);
49
- foreach($diff as $field_id => $meta_value){
50
- if(!empty($meta_value) and !$create_entry)
51
- $create_entry = true;
52
- }
53
- }
 
 
 
 
 
 
 
 
 
 
 
54
  }
55
  }
56
  }
@@ -60,6 +72,10 @@ class FrmEntry{
60
 
61
  if(isset($query_results) and $query_results){
62
  $entry_id = $wpdb->insert_id;
 
 
 
 
63
  if (isset($values['item_meta']))
64
  $frm_entry_meta->update_entry_metas($entry_id, $values['item_meta']);
65
  do_action('frm_after_create_entry', $entry_id, $new_values['form_id']);
@@ -76,58 +92,67 @@ class FrmEntry{
76
  $new_values = array();
77
  $new_values['item_key'] = FrmAppHelper::get_unique_key('', $frmdb->entries, 'item_key');
78
  $new_values['name'] = $values->name;
79
- $new_values['user_id'] = $values->user_id;
80
  $new_values['form_id'] = ($values->form_id)?(int)$values->form_id: null;
81
  $new_values['created_at'] = current_time('mysql', 1);
82
 
83
  $query_results = $wpdb->insert( $frmdb->entries, $new_values );
84
  if($query_results){
85
  $entry_id = $wpdb->insert_id;
86
- $frm_entry_meta->duplicate_entry_metas($id);
 
 
 
 
87
  return $entry_id;
88
  }else
89
  return false;
90
  }
91
 
92
  function update( $id, $values ){
93
- global $wpdb, $frmdb, $frm_entry_meta, $frm_field;
94
-
95
- $new_values = array();
 
 
96
 
97
- if (isset($values['item_key']))
98
- $new_values['item_key'] = FrmAppHelper::get_unique_key($values['item_key'], $frmdb->entries, 'item_key', $id);
99
 
100
- $new_values['name'] = isset($values['name'])?$values['name']:'';
101
- $new_values['form_id'] = isset($values['form_id'])?(int)$values['form_id']: null;
102
- if(isset($values['frm_user_id']) and is_numeric($values['frm_user_id']))
103
- $new_values['user_id'] = $values['frm_user_id'];
 
104
 
105
- $query_results = $wpdb->update( $frmdb->entries, $new_values, compact('id') );
106
-
107
- if (isset($values['item_meta']))
108
- $frm_entry_meta->update_entry_metas($id, $values['item_meta']);
109
- do_action('frm_after_update_entry', $id);
110
- return $query_results;
 
 
 
 
111
  }
112
 
113
- function destroy( $id ){
114
  global $wpdb, $frmdb;
 
115
 
116
- // Disconnect the child items from this parent item
117
- //$query_results = $wpdb->update( $frmdb->entries, array('parent_item_id' => null), array( 'parent_item_id' => $id ) );
118
  do_action('frm_before_destroy_entry', $id);
119
-
120
- $reset = 'DELETE FROM ' . $frmdb->entry_metas . ' WHERE item_id=' . $id;
121
- $destroy = 'DELETE FROM ' . $frmdb->entries . ' WHERE id=' . $id;
122
-
123
- $wpdb->query($reset);
124
- return $wpdb->query($destroy);
125
  }
126
 
127
- function update_form( $id, $value, $form_id ){
128
  global $wpdb, $frmdb;
129
  $form_id = isset($value) ? $form_id : NULL;
130
- return $wpdb->update( $frmdb->entries, array('form_id' => $form_id), array( 'id' => $id ) );
 
131
  }
132
 
133
  function getOne( $id, $meta=false){
@@ -141,7 +166,7 @@ class FrmEntry{
141
  $entry = $wpdb->get_row($query);
142
 
143
  if($meta and $entry){
144
- $metas = FrmEntryMeta::getAll("item_id=$entry->id");
145
  $entry_metas = array();
146
  foreach($metas as $meta_val)
147
  $entry_metas[$meta_val->field_id] = $entry_metas[$meta_val->field_key] = $meta_val->meta_value;
@@ -173,7 +198,7 @@ class FrmEntry{
173
  $entries = $wpdb->get_results($query);
174
  if($meta){
175
  foreach($entries as $key => $entry){
176
- $metas = FrmEntryMeta::getAll("item_id=$entry->id");
177
  $entry_metas = array();
178
  foreach($metas as $meta_val)
179
  $entry_metas[$meta_val->field_id] = $entry_metas[$meta_val->field_key] = $meta_val->meta_value;
@@ -185,18 +210,21 @@ class FrmEntry{
185
  }
186
 
187
  // Pagination Methods
188
- function getRecordCount($where=""){
189
  global $wpdb, $frmdb, $frm_app_helper;
190
  $query = "SELECT COUNT(*) FROM $frmdb->entries it LEFT OUTER JOIN $frmdb->forms fr ON it.form_id=fr.id" .
191
  $frm_app_helper->prepend_and_or_where(' WHERE ', $where);
192
  return $wpdb->get_var($query);
193
  }
194
 
195
- function getPageCount($p_size, $where=""){
196
- return ceil((int)$this->getRecordCount($where) / (int)$p_size);
 
 
 
197
  }
198
 
199
- function getPage($current_p,$p_size, $where = '', $order_by = ''){
200
  global $wpdb, $frmdb, $frm_app_helper;
201
  $end_index = $current_p * $p_size;
202
  $start_index = $end_index - $p_size;
@@ -204,7 +232,7 @@ class FrmEntry{
204
  return $results;
205
  }
206
 
207
- function validate( $values ){
208
  global $wpdb, $frmdb, $frm_field, $frm_entry_meta;
209
 
210
  $errors = array();
@@ -213,50 +241,59 @@ class FrmEntry{
213
  $_POST['item_key'] = $values['item_key'] = FrmAppHelper::get_unique_key('', $frmdb->entries, 'item_key');
214
 
215
  $where = apply_filters('frm_posted_field_ids', 'fi.form_id='.$values['form_id']);
 
 
 
216
  $posted_fields = $frm_field->getAll($where, ' ORDER BY fi.field_order');
217
 
218
  foreach($posted_fields as $posted_field){
 
219
  $value = '';
220
- $field_options = unserialize($posted_field->field_options);
221
  if (isset($values['item_meta'][$posted_field->id]))
222
  $value = $values['item_meta'][$posted_field->id];
223
 
224
- if (isset($field_options['default_blank']) and $field_options['default_blank'] and $value == $posted_field->default_value)
225
  $_POST['item_meta'][$posted_field->id] = $value = '';
226
 
 
 
 
227
  if ($posted_field->required == '1' and $value == ''){
228
- $errors['field'.$posted_field->id] = (!isset($field_options['blank']) or $field_options['blank'] == __('Untitled cannot be blank', 'formidable') or $field_options['blank'] == '') ? ($posted_field->name . ' '. __('cannot be blank', 'formidable')) : $field_options['blank'];
229
- }else if ($posted_field->type == 'text' and !isset($_POST['name']))
230
  $_POST['name'] = $value;
 
231
 
232
- $errors = apply_filters('frm_validate_field_entry', $errors, $posted_field, $value);
233
- }
234
 
235
- if (isset($_POST['recaptcha_challenge_field'])){
236
- global $frm_settings;
 
 
 
 
 
 
 
 
 
 
237
 
238
- if(!function_exists('recaptcha_check_answer'))
239
- require_once(FRM_PATH.'/classes/recaptchalib.php');
240
-
241
- $response = recaptcha_check_answer($frm_settings->privkey,
242
- $_SERVER["REMOTE_ADDR"],
243
- $_POST["recaptcha_challenge_field"],
244
- $_POST["recaptcha_response_field"]);
245
-
246
- if (!$response->is_valid) {
247
- // What happens when the CAPTCHA was entered incorrectly
248
- $errors['captcha-'.$response->error] = $frm_settings->re_msg;
249
  }
250
-
 
251
  }
 
 
252
 
253
  global $wpcom_api_key;
254
  if (isset($values['item_meta']) and !empty($values['item_meta']) and empty($errors) and function_exists( 'akismet_http_post' ) and ((get_option('wordpress_api_key') or $wpcom_api_key)) and $this->akismet($values)){
255
  global $frm_form;
256
  $form = $frm_form->getOne($values['form_id']);
257
- $form_options = stripslashes_deep(unserialize($form->options));
258
-
259
- if (isset($form_options['akismet']) && $form_options['akismet'])
260
  $errors['spam'] = __('Your entry appears to be spam!', 'formidable');
261
  }
262
 
@@ -265,7 +302,7 @@ class FrmEntry{
265
 
266
  //Check entries for spam -- returns true if is spam
267
  function akismet($values) {
268
- global $akismet_api_host, $akismet_api_port, $frm_blogurl;
269
 
270
  $content = '';
271
  foreach ( $values['item_meta'] as $val ) {
@@ -278,7 +315,7 @@ class FrmEntry{
278
  return false;
279
 
280
  $datas = array();
281
- $datas['blog'] = $frm_blogurl;
282
  $datas['user_ip'] = preg_replace( '/[^0-9., ]/', '', $_SERVER['REMOTE_ADDR'] );
283
  $datas['user_agent'] = $_SERVER['HTTP_USER_AGENT'];
284
  $datas['referrer'] = $_SERVER['HTTP_REFERER'];
9
  $new_values['name'] = isset($values['name']) ? $values['name'] : $values['item_key'];
10
  $new_values['ip'] = $_SERVER['REMOTE_ADDR'];
11
 
12
+ if(isset($values['description']) and !empty($values['description'])){
13
  $new_values['description'] = $values['description'];
14
+ }else{
15
+ $referrerinfo = FrmAppHelper::get_referer_info();
16
+
17
  $new_values['description'] = serialize(array('browser' => $_SERVER['HTTP_USER_AGENT'],
18
+ 'referrer' => $referrerinfo));
19
+ }
20
+
21
  $new_values['form_id'] = isset($values['form_id']) ? (int)$values['form_id']: null;
22
+ $new_values['created_at'] = $new_values['updated_at'] = isset($values['created_at']) ? $values['created_at'] : current_time('mysql', 1);
23
 
24
  //if(isset($values['id']) and is_numeric($values['id']))
25
  // $new_values['id'] = $values['id'];
26
 
27
+ if(isset($values['frm_user_id']) and is_numeric($values['frm_user_id'])){
28
+ $new_values['user_id'] = $new_values['updated_by'] = $values['frm_user_id'];
29
+ }else{
30
+ global $user_ID;
31
+ if($user_ID)
32
+ $new_values['user_id'] = $new_values['updated_by'] = $user_ID;
33
+ }
34
 
35
  //check for duplicate entries created in the last 5 minutes
 
 
 
 
 
 
 
 
36
  $create_entry = true;
37
+ if(!defined('WP_IMPORTING')){
38
+ $check_val = $new_values;
39
+ $check_val['created_at >'] = date('Y-m-d H:i:s', (strtotime($new_values['created_at']) - (60*60*5)));
40
+ unset($check_val['created_at']);
41
+ unset($check_val['id']);
42
+ unset($check_val['item_key']);
43
+ if($new_values['item_key'] == $new_values['name'])
44
+ unset($check_val['name']);
45
+
46
+
47
+ $entry_exists = $frmdb->get_records($frmdb->entries, $check_val, 'created_at DESC', '', 'id');
48
+ if($entry_exists and !empty($entry_exists)){
49
+ foreach($entry_exists as $entry_exist){
50
+ if($create_entry){
51
+ $create_entry = false;
52
+ //add more checks here to make sure it's a duplicate
53
+ if (isset($values['item_meta'])){
54
+ $metas = FrmEntryMeta::get_entry_meta_info($entry_exist->id);
55
+ $field_metas = array();
56
+ foreach($metas as $meta)
57
+ $field_metas[$meta->field_id] = $meta->meta_value;
58
+
59
+ $diff = array_diff_assoc($field_metas, $values['item_meta']);
60
+ foreach($diff as $field_id => $meta_value){
61
+ if(!empty($meta_value) and !$create_entry)
62
+ $create_entry = true;
63
+ }
64
+ }
65
+ }
66
  }
67
  }
68
  }
72
 
73
  if(isset($query_results) and $query_results){
74
  $entry_id = $wpdb->insert_id;
75
+
76
+ global $frm_saved_entries;
77
+ $frm_saved_entries[] = (int)$entry_id;
78
+
79
  if (isset($values['item_meta']))
80
  $frm_entry_meta->update_entry_metas($entry_id, $values['item_meta']);
81
  do_action('frm_after_create_entry', $entry_id, $new_values['form_id']);
92
  $new_values = array();
93
  $new_values['item_key'] = FrmAppHelper::get_unique_key('', $frmdb->entries, 'item_key');
94
  $new_values['name'] = $values->name;
95
+ $new_values['user_id'] = $new_values['updated_by'] = $values->user_id;
96
  $new_values['form_id'] = ($values->form_id)?(int)$values->form_id: null;
97
  $new_values['created_at'] = current_time('mysql', 1);
98
 
99
  $query_results = $wpdb->insert( $frmdb->entries, $new_values );
100
  if($query_results){
101
  $entry_id = $wpdb->insert_id;
102
+
103
+ global $frm_saved_entries;
104
+ $frm_saved_entries[] = (int)$entry_id;
105
+
106
+ $frm_entry_meta->duplicate_entry_metas($id, $entry_id);
107
  return $entry_id;
108
  }else
109
  return false;
110
  }
111
 
112
  function update( $id, $values ){
113
+ global $wpdb, $frmdb, $frm_entry_meta, $frm_field, $frm_saved_entries;
114
+ if(in_array((int)$id, (array)$frm_saved_entries))
115
+ return;
116
+
117
+ $new_values = array();
118
 
119
+ if (isset($values['item_key']))
120
+ $new_values['item_key'] = FrmAppHelper::get_unique_key($values['item_key'], $frmdb->entries, 'item_key', $id);
121
 
122
+ $new_values['name'] = isset($values['name'])?$values['name']:'';
123
+ $new_values['form_id'] = isset($values['form_id']) ? (int)$values['form_id'] : null;
124
+ $new_values['updated_at'] = current_time('mysql', 1);
125
+ if(isset($values['frm_user_id']) and is_numeric($values['frm_user_id']))
126
+ $new_values['user_id'] = $values['frm_user_id'];
127
 
128
+ global $user_ID;
129
+ $new_values['updated_by'] = $user_ID;
130
+
131
+ $query_results = $wpdb->update( $frmdb->entries, $new_values, compact('id') );
132
+ $frm_saved_entries[] = (int)$id;
133
+
134
+ if (isset($values['item_meta']))
135
+ $frm_entry_meta->update_entry_metas($id, $values['item_meta']);
136
+ do_action('frm_after_update_entry', $id, $new_values['form_id']);
137
+ return $query_results;
138
  }
139
 
140
+ function &destroy( $id ){
141
  global $wpdb, $frmdb;
142
+ $id = (int)$id;
143
 
 
 
144
  do_action('frm_before_destroy_entry', $id);
145
+
146
+ $wpdb->query('DELETE FROM ' . $frmdb->entry_metas . ' WHERE item_id=' . $id);
147
+ $result = $wpdb->query('DELETE FROM ' . $frmdb->entries . ' WHERE id=' . $id);
148
+ return $result;
 
 
149
  }
150
 
151
+ function &update_form( $id, $value, $form_id ){
152
  global $wpdb, $frmdb;
153
  $form_id = isset($value) ? $form_id : NULL;
154
+ $result = $wpdb->update( $frmdb->entries, array('form_id' => $form_id), array( 'id' => $id ) );
155
+ return $result;
156
  }
157
 
158
  function getOne( $id, $meta=false){
166
  $entry = $wpdb->get_row($query);
167
 
168
  if($meta and $entry){
169
+ $metas = FrmEntryMeta::getAll("item_id=$entry->id and field_id != 0");
170
  $entry_metas = array();
171
  foreach($metas as $meta_val)
172
  $entry_metas[$meta_val->field_id] = $entry_metas[$meta_val->field_key] = $meta_val->meta_value;
198
  $entries = $wpdb->get_results($query);
199
  if($meta){
200
  foreach($entries as $key => $entry){
201
+ $metas = FrmEntryMeta::getAll("item_id=$entry->id and field_id != 0");
202
  $entry_metas = array();
203
  foreach($metas as $meta_val)
204
  $entry_metas[$meta_val->field_id] = $entry_metas[$meta_val->field_key] = $meta_val->meta_value;
210
  }
211
 
212
  // Pagination Methods
213
+ function getRecordCount($where=''){
214
  global $wpdb, $frmdb, $frm_app_helper;
215
  $query = "SELECT COUNT(*) FROM $frmdb->entries it LEFT OUTER JOIN $frmdb->forms fr ON it.form_id=fr.id" .
216
  $frm_app_helper->prepend_and_or_where(' WHERE ', $where);
217
  return $wpdb->get_var($query);
218
  }
219
 
220
+ function getPageCount($p_size, $where=''){
221
+ if(is_numeric($where))
222
+ return ceil((int)$where / (int)$p_size);
223
+ else
224
+ return ceil((int)$this->getRecordCount($where) / (int)$p_size);
225
  }
226
 
227
+ function getPage($current_p, $p_size, $where = '', $order_by = ''){
228
  global $wpdb, $frmdb, $frm_app_helper;
229
  $end_index = $current_p * $p_size;
230
  $start_index = $end_index - $p_size;
232
  return $results;
233
  }
234
 
235
+ function validate( $values, $exclude=false ){
236
  global $wpdb, $frmdb, $frm_field, $frm_entry_meta;
237
 
238
  $errors = array();
241
  $_POST['item_key'] = $values['item_key'] = FrmAppHelper::get_unique_key('', $frmdb->entries, 'item_key');
242
 
243
  $where = apply_filters('frm_posted_field_ids', 'fi.form_id='.$values['form_id']);
244
+ if($exclude)
245
+ $where .= " and fi.type not in ('". implode("','", $exclude) ."')";
246
+
247
  $posted_fields = $frm_field->getAll($where, ' ORDER BY fi.field_order');
248
 
249
  foreach($posted_fields as $posted_field){
250
+ $posted_field->field_options = maybe_unserialize($posted_field->field_options);
251
  $value = '';
 
252
  if (isset($values['item_meta'][$posted_field->id]))
253
  $value = $values['item_meta'][$posted_field->id];
254
 
255
+ if (isset($posted_field->field_options['default_blank']) and $posted_field->field_options['default_blank'] and $value == $posted_field->default_value)
256
  $_POST['item_meta'][$posted_field->id] = $value = '';
257
 
258
+ if($posted_field->type == 'rte' and (trim($value) == '<br>'))
259
+ $value = '';
260
+
261
  if ($posted_field->required == '1' and $value == ''){
262
+ $errors['field'.$posted_field->id] = (!isset($posted_field->field_options['blank']) or $posted_field->field_options['blank'] == '' or $posted_field->field_options['blank'] == 'Untitled cannot be blank') ? (__('This field cannot be blank', 'formidable')) : $posted_field->field_options['blank'];
263
+ }else if ($posted_field->type == 'text' and !isset($_POST['name'])){
264
  $_POST['name'] = $value;
265
+ }
266
 
267
+ if ($posted_field->type == 'captcha' and isset($_POST['recaptcha_challenge_field'])){
268
+ global $frm_settings;
269
 
270
+ if(!function_exists('recaptcha_check_answer'))
271
+ require_once(FRM_PATH.'/classes/recaptchalib.php');
272
+
273
+ $response = recaptcha_check_answer($frm_settings->privkey,
274
+ $_SERVER['REMOTE_ADDR'],
275
+ $_POST['recaptcha_challenge_field'],
276
+ $_POST['recaptcha_response_field']);
277
+
278
+ if (!$response->is_valid) {
279
+ // What happens when the CAPTCHA was entered incorrectly
280
+ $errors['captcha-'.$response->error] = $errors['field'.$posted_field->id] = (!isset($posted_field->field_options['invalid']) or $posted_field->field_options['invalid'] == '') ? $frm_settings->re_msg : $posted_field->field_options['invalid'];
281
+ }
282
 
 
 
 
 
 
 
 
 
 
 
 
283
  }
284
+
285
+ $errors = apply_filters('frm_validate_field_entry', $errors, $posted_field, $value);
286
  }
287
+
288
+
289
 
290
  global $wpcom_api_key;
291
  if (isset($values['item_meta']) and !empty($values['item_meta']) and empty($errors) and function_exists( 'akismet_http_post' ) and ((get_option('wordpress_api_key') or $wpcom_api_key)) and $this->akismet($values)){
292
  global $frm_form;
293
  $form = $frm_form->getOne($values['form_id']);
294
+ $form->options = maybe_unserialize($form->options);
295
+
296
+ if (isset($form->options['akismet']) && $form->options['akismet'])
297
  $errors['spam'] = __('Your entry appears to be spam!', 'formidable');
298
  }
299
 
302
 
303
  //Check entries for spam -- returns true if is spam
304
  function akismet($values) {
305
+ global $akismet_api_host, $akismet_api_port, $frm_siteurl;
306
 
307
  $content = '';
308
  foreach ( $values['item_meta'] as $val ) {
315
  return false;
316
 
317
  $datas = array();
318
+ $datas['blog'] = $frm_siteurl;
319
  $datas['user_ip'] = preg_replace( '/[^0-9., ]/', '', $_SERVER['REMOTE_ADDR'] );
320
  $datas['user_agent'] = $_SERVER['HTTP_USER_AGENT'];
321
  $datas['referrer'] = $_SERVER['HTTP_REFERER'];
classes/models/FrmEntryMeta.php CHANGED
@@ -15,7 +15,6 @@ class FrmEntryMeta{
15
  }
16
 
17
  function update_entry_meta($entry_id, $field_id, $meta_key='', $meta_value){
18
- global $wpdb;
19
  //$this->delete_entry_meta($entry_id, $field_id);
20
  if ($meta_value)
21
  $this->add_entry_meta($entry_id, $field_id, $meta_key, $meta_value);
@@ -23,43 +22,46 @@ class FrmEntryMeta{
23
 
24
  function update_entry_metas($entry_id, $values){
25
  global $frm_field;
26
- $this->delete_entry_metas($entry_id);
27
- foreach($values as $field_id => $meta_value){
28
  $this->update_entry_meta($entry_id, $field_id, '', maybe_serialize($values[$field_id]));
29
- }
30
  }
31
 
32
- function duplicate_entry_metas($entry_id){
33
- foreach ($this->get_entry_meta_info($entry_id) as $meta)
34
- $this->update_entry_meta($entry_id, $meta->field_id, '', $meta->meta_value);
 
35
  }
36
 
37
  function delete_entry_meta($entry_id, $field_id){
38
  global $wpdb, $frmdb;
39
- return $wpdb->query("DELETE FROM $frmdb->entry_metas WHERE field_id={$field_id} AND item_id={$entry_id}");
40
  }
41
 
42
- function delete_entry_metas($entry_id){
43
  global $wpdb, $frmdb;
44
- return $wpdb->query("DELETE FROM $frmdb->entry_metas WHERE item_id={$entry_id}");
 
 
45
  }
46
 
47
  function get_entry_meta_by_field($entry_id, $field_id, $return_var=false){
48
  global $wpdb, $frmdb;
49
  if (is_numeric($field_id))
50
- $query = "SELECT meta_value FROM $frmdb->entry_metas WHERE field_id='{$field_id}' and item_id='{$entry_id}'";
51
  else
52
- $query = "SELECT meta_value FROM $frmdb->entry_metas it LEFT OUTER JOIN $frmdb->fields fi ON it.field_id=fi.id WHERE fi.field_key='{$field_id}' and item_id='{$entry_id}'";
 
53
  if($return_var)
54
  return stripslashes($wpdb->get_var("{$query} LIMIT 1"));
55
  else
56
  return $wpdb->get_col($query, 0);
57
  }
58
 
59
- function get_entry_meta($entry_id,$field_id,$return_var=true){
60
  global $wpdb, $frmdb;
61
  $query_str = "SELECT meta_value FROM $frmdb->entry_metas WHERE field_id=%d and item_id=%d";
62
- $query = $wpdb->prepare($query_str,$field_id,$entry_id);
63
 
64
  if($return_var)
65
  return stripslashes($wpdb->get_var("{$query} LIMIT 1"));
@@ -69,7 +71,7 @@ class FrmEntryMeta{
69
 
70
  function get_entry_metas($entry_id){
71
  global $wpdb, $frmdb;
72
- return $wpdb->get_col("SELECT meta_value FROM $frmdb->entry_metas WHERE item_id={$entry_id}");
73
  }
74
 
75
  function get_entry_metas_for_field($field_id, $order='', $limit='', $value=false, $unique=false){
@@ -81,12 +83,13 @@ class FrmEntryMeta{
81
  if($value)
82
  $query .= " AND meta_value='$value'";
83
  $query .= "{$order}{$limit}";
 
84
  return $wpdb->get_col($query);
85
  }
86
 
87
  function get_entry_meta_info($entry_id){
88
  global $wpdb, $frmdb;
89
- return $wpdb->get_results("SELECT * FROM $frmdb->entry_metas WHERE item_id={$entry_id}");
90
  }
91
 
92
  function getAll($where = '', $order_by = '', $limit = ''){
@@ -140,7 +143,7 @@ class FrmEntryMeta{
140
  }else{
141
  if ($operator == 'LIKE')
142
  $search = "%{$search}%";
143
- $query = $wpdb->prepare("SELECT DISTINCT item_id FROM $frmdb->entry_metas WHERE meta_value {$operator} '{$search}' and field_id='{$field_id}'");
144
  }
145
  return $wpdb->get_col($query, 0);
146
  }
15
  }
16
 
17
  function update_entry_meta($entry_id, $field_id, $meta_key='', $meta_value){
 
18
  //$this->delete_entry_meta($entry_id, $field_id);
19
  if ($meta_value)
20
  $this->add_entry_meta($entry_id, $field_id, $meta_key, $meta_value);
22
 
23
  function update_entry_metas($entry_id, $values){
24
  global $frm_field;
25
+ $this->delete_entry_metas($entry_id, " AND field_id != '0'");
26
+ foreach($values as $field_id => $meta_value)
27
  $this->update_entry_meta($entry_id, $field_id, '', maybe_serialize($values[$field_id]));
 
28
  }
29
 
30
+ function duplicate_entry_metas($old_id, $new_id){
31
+ $metas = $this->get_entry_meta_info($old_id);
32
+ foreach ($metas as $meta)
33
+ $this->update_entry_meta($new_id, $meta->field_id, '', $meta->meta_value);
34
  }
35
 
36
  function delete_entry_meta($entry_id, $field_id){
37
  global $wpdb, $frmdb;
38
+ return $wpdb->query("DELETE FROM $frmdb->entry_metas WHERE field_id='$field_id' AND item_id='$entry_id'");
39
  }
40
 
41
+ function delete_entry_metas($entry_id, $where=''){
42
  global $wpdb, $frmdb;
43
+ $where = "item_id='$entry_id'".$where;
44
+
45
+ return $wpdb->query("DELETE FROM $frmdb->entry_metas WHERE $where");
46
  }
47
 
48
  function get_entry_meta_by_field($entry_id, $field_id, $return_var=false){
49
  global $wpdb, $frmdb;
50
  if (is_numeric($field_id))
51
+ $query = "SELECT `meta_value` FROM $frmdb->entry_metas WHERE field_id='$field_id' and item_id='$entry_id'";
52
  else
53
+ $query = "SELECT `meta_value` FROM $frmdb->entry_metas it LEFT OUTER JOIN $frmdb->fields fi ON it.field_id=fi.id WHERE fi.field_key='{$field_id}' and `item_id`='{$entry_id}'";
54
+
55
  if($return_var)
56
  return stripslashes($wpdb->get_var("{$query} LIMIT 1"));
57
  else
58
  return $wpdb->get_col($query, 0);
59
  }
60
 
61
+ function get_entry_meta($entry_id, $field_id, $return_var=true){
62
  global $wpdb, $frmdb;
63
  $query_str = "SELECT meta_value FROM $frmdb->entry_metas WHERE field_id=%d and item_id=%d";
64
+ $query = $wpdb->prepare($query_str, $field_id, $entry_id);
65
 
66
  if($return_var)
67
  return stripslashes($wpdb->get_var("{$query} LIMIT 1"));
71
 
72
  function get_entry_metas($entry_id){
73
  global $wpdb, $frmdb;
74
+ return $wpdb->get_col("SELECT meta_value FROM $frmdb->entry_metas WHERE item_id='{$entry_id}'");
75
  }
76
 
77
  function get_entry_metas_for_field($field_id, $order='', $limit='', $value=false, $unique=false){
83
  if($value)
84
  $query .= " AND meta_value='$value'";
85
  $query .= "{$order}{$limit}";
86
+
87
  return $wpdb->get_col($query);
88
  }
89
 
90
  function get_entry_meta_info($entry_id){
91
  global $wpdb, $frmdb;
92
+ return $wpdb->get_results("SELECT * FROM $frmdb->entry_metas WHERE item_id='{$entry_id}'");
93
  }
94
 
95
  function getAll($where = '', $order_by = '', $limit = ''){
143
  }else{
144
  if ($operator == 'LIKE')
145
  $search = "%{$search}%";
146
+ $query = $wpdb->prepare("SELECT DISTINCT item_id FROM $frmdb->entry_metas WHERE meta_value {$operator} %s and field_id = %d", $search, $field_id);
147
  }
148
  return $wpdb->get_col($query, 0);
149
  }
classes/models/FrmField.php CHANGED
@@ -8,7 +8,7 @@ class FrmField{
8
  $key = isset($values['field_key']) ? $values['field_key'] : $values['name'];
9
  $new_values['field_key'] = FrmAppHelper::get_unique_key($key, $frmdb->fields, 'field_key');
10
 
11
- foreach (array('name','description','type','default_value') as $col)
12
  $new_values[$col] = stripslashes($values[$col]);
13
 
14
  $new_values['options'] = $values['options'];
@@ -16,7 +16,7 @@ class FrmField{
16
  $new_values['field_order'] = isset($values['field_order'])?(int)$values['field_order']:NULL;
17
  $new_values['required'] = isset($values['required'])?(int)$values['required']:NULL;
18
  $new_values['form_id'] = isset($values['form_id'])?(int)$values['form_id']:NULL;
19
- $new_values['field_options'] = serialize($values['field_options']);
20
  $new_values['created_at'] = current_time('mysql', 1);
21
 
22
  //if(isset($values['id']) and is_numeric($values['id']))
@@ -33,15 +33,16 @@ class FrmField{
33
 
34
  function duplicate($old_form_id, $form_id, $copy_keys=false, $blog_id=false){
35
  global $frmdb;
36
- foreach ($this->getAll("fi.form_id = $old_form_id",'','',$blog_id) as $field){
37
  $values = array();
38
  $new_key = ($copy_keys) ? $field->field_key : '';
39
  $values['field_key'] = FrmAppHelper::get_unique_key($new_key, $frmdb->fields, 'field_key');
40
- $values['field_options'] = unserialize($field->field_options);
41
  $values['form_id'] = $form_id;
42
- foreach (array('name','description','type','default_value','options','field_order','required') as $col)
43
  $values[$col] = $field->{$col};
44
  $this->create($values, false);
 
45
  }
46
  }
47
 
@@ -51,20 +52,24 @@ class FrmField{
51
  if (isset($values['field_key']))
52
  $values['field_key'] = FrmAppHelper::get_unique_key($values['field_key'], $frmdb->fields, 'field_key', $id);
53
 
54
- if (isset($values['field_options']))
55
  $values['field_options'] = serialize($values['field_options']);
56
 
57
- return $wpdb->update( $frmdb->fields, $values, array( 'id' => $id ) );
 
 
 
 
 
 
 
58
  }
59
 
60
  function destroy( $id ){
61
  global $wpdb, $frmdb;
62
 
63
- $reset = "DELETE FROM $frmdb->entry_metas WHERE field_id=$id";
64
- $destroy = "DELETE FROM $frmdb->fields WHERE id=$id";
65
-
66
- $wpdb->query($reset);
67
- return $wpdb->query($destroy);
68
  }
69
 
70
  function getOne( $id ){
@@ -76,24 +81,36 @@ class FrmField{
76
  $query = "SELECT * FROM $frmdb->fields WHERE id=$id";
77
  else
78
  $query = "SELECT * FROM $frmdb->fields WHERE field_key='$id'";
79
- return $wpdb->get_row($query);
 
 
 
 
80
  }
81
 
82
  function getAll($where = '', $order_by = '', $limit = '', $blog_id=false){
83
  global $wpdb, $frmdb, $frm_app_helper, $frm_loaded_fields;
 
84
  if ($blog_id and IS_WPMU){
85
  global $wpmuBaseTablePrefix;
86
- $table_name = "{$wpmuBaseTablePrefix}{$blog_id}_frm_fields";
87
- $form_table_name = "{$wpmuBaseTablePrefix}{$blog_id}_frm_forms";
 
 
 
 
 
88
  }else{
89
  $table_name = $frmdb->fields;
90
  $form_table_name = $frmdb->forms;
91
  }
 
92
  $query = 'SELECT fi.*, ' .
93
  'fr.name as form_name ' .
94
  'FROM '. $table_name . ' fi ' .
95
  'LEFT OUTER JOIN ' . $form_table_name . ' fr ON fi.form_id=fr.id' .
96
  $frm_app_helper->prepend_and_or_where(' WHERE ', $where) . $order_by . $limit;
 
97
  if ($limit == ' LIMIT 1')
98
  $results = $wpdb->get_row($query);
99
  else
@@ -101,10 +118,14 @@ class FrmField{
101
 
102
  if($results){
103
  if(is_array($results)){
104
- foreach($results as $result)
 
105
  $frm_loaded_fields[$result->id] = $frm_loaded_fields[$result->field_key] = $result;
106
- }else
 
 
107
  $frm_loaded_fields[$results->id] = $frm_loaded_fields[$results->field_key] = $results;
 
108
  }
109
  return $results;
110
  }
8
  $key = isset($values['field_key']) ? $values['field_key'] : $values['name'];
9
  $new_values['field_key'] = FrmAppHelper::get_unique_key($key, $frmdb->fields, 'field_key');
10
 
11
+ foreach (array('name', 'description', 'type', 'default_value') as $col)
12
  $new_values[$col] = stripslashes($values[$col]);
13
 
14
  $new_values['options'] = $values['options'];
16
  $new_values['field_order'] = isset($values['field_order'])?(int)$values['field_order']:NULL;
17
  $new_values['required'] = isset($values['required'])?(int)$values['required']:NULL;
18
  $new_values['form_id'] = isset($values['form_id'])?(int)$values['form_id']:NULL;
19
+ $new_values['field_options'] = is_array($values['field_options']) ? serialize($values['field_options']) : $values['field_options'];
20
  $new_values['created_at'] = current_time('mysql', 1);
21
 
22
  //if(isset($values['id']) and is_numeric($values['id']))
33
 
34
  function duplicate($old_form_id, $form_id, $copy_keys=false, $blog_id=false){
35
  global $frmdb;
36
+ foreach ($this->getAll("fi.form_id = $old_form_id", '', '', $blog_id) as $field){
37
  $values = array();
38
  $new_key = ($copy_keys) ? $field->field_key : '';
39
  $values['field_key'] = FrmAppHelper::get_unique_key($new_key, $frmdb->fields, 'field_key');
40
+ $values['field_options'] = maybe_unserialize($field->field_options);
41
  $values['form_id'] = $form_id;
42
+ foreach (array('name', 'description', 'type', 'default_value', 'options', 'field_order', 'required') as $col)
43
  $values[$col] = $field->{$col};
44
  $this->create($values, false);
45
+ unset($field);
46
  }
47
  }
48
 
52
  if (isset($values['field_key']))
53
  $values['field_key'] = FrmAppHelper::get_unique_key($values['field_key'], $frmdb->fields, 'field_key', $id);
54
 
55
+ if (isset($values['field_options']) and is_array($values['field_options']))
56
  $values['field_options'] = serialize($values['field_options']);
57
 
58
+ $query_results = $wpdb->update( $frmdb->fields, $values, array( 'id' => $id ) );
59
+ unset($values);
60
+
61
+ if($query_results){
62
+ global $frm_loaded_fields;
63
+ unset($frm_loaded_fields[$id]);
64
+ }
65
+ return $query_results;
66
  }
67
 
68
  function destroy( $id ){
69
  global $wpdb, $frmdb;
70
 
71
+ $wpdb->query("DELETE FROM $frmdb->entry_metas WHERE field_id='$id'");
72
+ return $wpdb->query("DELETE FROM $frmdb->fields WHERE id='$id'");
 
 
 
73
  }
74
 
75
  function getOne( $id ){
81
  $query = "SELECT * FROM $frmdb->fields WHERE id=$id";
82
  else
83
  $query = "SELECT * FROM $frmdb->fields WHERE field_key='$id'";
84
+ $results = $wpdb->get_row($query);
85
+
86
+ if($results)
87
+ $results->field_options = maybe_unserialize($results->field_options);
88
+ return $results;
89
  }
90
 
91
  function getAll($where = '', $order_by = '', $limit = '', $blog_id=false){
92
  global $wpdb, $frmdb, $frm_app_helper, $frm_loaded_fields;
93
+
94
  if ($blog_id and IS_WPMU){
95
  global $wpmuBaseTablePrefix;
96
+ if($wpmuBaseTablePrefix)
97
+ $prefix = "{$wpmuBaseTablePrefix}{$blog_id}_";
98
+ else
99
+ $prefix = $wpdb->get_blog_prefix( $blog_id );
100
+
101
+ $table_name = "{$prefix}frm_fields";
102
+ $form_table_name = "{$prefix}frm_forms";
103
  }else{
104
  $table_name = $frmdb->fields;
105
  $form_table_name = $frmdb->forms;
106
  }
107
+
108
  $query = 'SELECT fi.*, ' .
109
  'fr.name as form_name ' .
110
  'FROM '. $table_name . ' fi ' .
111
  'LEFT OUTER JOIN ' . $form_table_name . ' fr ON fi.form_id=fr.id' .
112
  $frm_app_helper->prepend_and_or_where(' WHERE ', $where) . $order_by . $limit;
113
+
114
  if ($limit == ' LIMIT 1')
115
  $results = $wpdb->get_row($query);
116
  else
118
 
119
  if($results){
120
  if(is_array($results)){
121
+ foreach($results as $r_key => $result){
122
+ $results[$r_key]->field_options = maybe_unserialize($result->field_options);
123
  $frm_loaded_fields[$result->id] = $frm_loaded_fields[$result->field_key] = $result;
124
+ }
125
+ }else{
126
+ $results->field_options = maybe_unserialize($results->field_options);
127
  $frm_loaded_fields[$results->id] = $frm_loaded_fields[$results->field_key] = $results;
128
+ }
129
  }
130
  return $results;
131
  }
classes/models/FrmForm.php CHANGED
@@ -9,17 +9,20 @@ class FrmForm{
9
  $new_values['name'] = $values['name'];
10
  $new_values['description'] = $values['description'];
11
  $new_values['status'] = isset($values['status'])?$values['status']:'draft';
12
- $new_values['is_template'] = isset($values['is_template'])?(int)$values['is_template']:0;
13
- $new_values['default_template'] = isset($values['default_template'])?(int)$values['default_template']:0;
 
14
  $new_values['prli_link_id'] = isset($link_id)?(int)$link_id:0;
15
  $options = array();
16
  $options['email_to'] = isset($values['options']['email_to']) ? $values['options']['email_to'] : '';
17
  $options['submit_value'] = isset($values['options']['submit_value']) ? $values['options']['submit_value'] : $frm_settings->submit_value;
 
18
  $options['success_msg'] = isset($values['options']['success_msg']) ? $values['options']['success_msg'] : $frm_settings->success_msg;
19
  $options['show_form'] = isset($values['options']['show_form']) ? 1 : 0;
20
  $options['akismet'] = isset($values['options']['akismet']) ? 1 : 0;
21
  $options['before_html'] = isset($values['options']['before_html']) ? $values['options']['before_html'] : FrmFormsHelper::get_default_html('before');
22
  $options['after_html'] = isset($values['options']['after_html']) ? $values['options']['after_html'] : FrmFormsHelper::get_default_html('after');
 
23
  $new_values['options'] = serialize($options);
24
  $new_values['created_at'] = current_time('mysql', 1);
25
 
@@ -35,21 +38,27 @@ class FrmForm{
35
  global $wpdb, $frmdb, $frm_form, $frm_field;
36
 
37
  $values = $frm_form->getOne( $id, $blog_id );
 
 
38
 
39
  $new_values = array();
40
  $new_key = ($copy_keys) ? $values->form_key : '';
41
  $new_values['form_key'] = FrmAppHelper::get_unique_key($new_key, $frmdb->forms, 'form_key');
42
  $new_values['name'] = $values->name;
43
  $new_values['description'] = $values->description;
44
- $new_values['status'] = (!$template)?'draft':'';
 
45
  if ($blog_id){
46
  $new_values['status'] = 'published';
47
- $new_options = unserialize($values->options);
48
  $new_options['email_to'] = get_option('admin_email');
49
  $new_options['copy'] = false;
50
- $new_values['options'] = serialize($new_options);
51
  }else
52
  $new_values['options'] = $values->options;
 
 
 
53
 
54
  $new_values['logged_in'] = $values->logged_in ? $values->logged_in : 0;
55
  $new_values['editable'] = $values->editable ? $values->editable : 0;
@@ -76,14 +85,15 @@ class FrmForm{
76
  if (isset($values['form_key']))
77
  $values['form_key'] = FrmAppHelper::get_unique_key($values['form_key'], $frmdb->forms, 'form_key', $id);
78
 
79
- $form_fields = array('form_key','name','description','status','prli_link_id');
80
 
81
  $new_values = array();
82
 
83
  if (isset($values['options'])){
84
  $options = array();
85
  $options['email_to'] = isset($values['options']['email_to']) ? $values['options']['email_to'] : '';
86
- $options['submit_value'] = isset($values['options']['submit_value']) ? $values['options']['submit_value'] : $frm_settings->submit_value;
 
87
  $options['success_msg'] = isset($values['options']['success_msg']) ? $values['options']['success_msg'] : $frm_settings->success_msg;
88
  $options['show_form'] = isset($values['options']['show_form']) ? 1 : 0;
89
  $options['akismet'] = isset($values['options']['akismet']) ? 1 : 0;
@@ -102,7 +112,7 @@ class FrmForm{
102
  if(!empty($new_values))
103
  $query_results = $wpdb->update( $frmdb->forms, $new_values, array( 'id' => $id ) );
104
 
105
- $all_fields = $frm_field->getAll("fi.form_id=$id");
106
  if ($all_fields and (isset($values['options']) or isset($values['item_meta']))){
107
  if(!isset($values['item_meta']))
108
  $values['item_meta'] = array();
@@ -114,15 +124,18 @@ class FrmForm{
114
  foreach ($values['item_meta'] as $field_id => $default_value){
115
  $field = $frm_field->getOne($field_id);
116
  if (!$field) continue;
117
- $field_options = unserialize($field->field_options);
118
- foreach (array('size','max','label','invalid','required_indicator','blank') as $opt)
 
119
  $field_options[$opt] = isset($values['field_options'][$opt.'_'.$field_id]) ? trim($values['field_options'][$opt.'_'.$field_id]) : '';
 
120
  $field_options['custom_html'] = isset($values['field_options']['custom_html_'.$field_id]) ? $values['field_options']['custom_html_'.$field_id] : (isset($field_options['custom_html']) ? $field_options['custom_html'] : FrmFieldsHelper::get_default_html($field->type));
121
  $field_options = apply_filters('frm_update_field_options', $field_options, $field, $values);
122
  $default_value = maybe_serialize($values['item_meta'][$field_id]);
123
  $field_key = (isset($values['field_options']['field_key_'.$field_id]))? $values['field_options']['field_key_'.$field_id] : $field->field_key;
124
  $field_type = (isset($values['field_options']['type_'.$field_id]))? $values['field_options']['type_'.$field_id] : $field->type;
125
  $field_description = (isset($values['field_options']['description_'.$field_id]))? $values['field_options']['description_'.$field_id] : $field->description;
 
126
  $frm_field->update($field_id, array('field_key' => $field_key, 'type' => $field_type, 'default_value' => $default_value, 'field_options' => $field_options, 'description' => $field_description));
127
  }
128
  }
@@ -166,11 +179,9 @@ class FrmForm{
166
  $frm_entry->destroy($item->id);
167
 
168
  // Disconnect the fields from this form
169
- $query = "DELETE FROM $frmdb->fields WHERE form_id=$id";
170
- $query_results = $wpdb->query($query);
171
 
172
- $destroy = "DELETE FROM $frmdb->forms WHERE id=$id";
173
- $query_results = $wpdb->query($destroy);
174
  if ($query_results)
175
  do_action('frm_destroy_form', $id);
176
  return $query_results;
@@ -178,11 +189,9 @@ class FrmForm{
178
 
179
  function getName( $id ){
180
  global $wpdb, $frmdb;
181
- if (is_numeric($id))
182
- $query = "SELECT name FROM $frmdb->forms WHERE id=$id";
183
- else
184
- $query = "SELECT name FROM $frmdb->forms WHERE form_key='{$id}'";
185
-
186
  return $wpdb->get_var($query);
187
  }
188
 
@@ -201,16 +210,29 @@ class FrmForm{
201
  function getOne( $id, $blog_id=false ){
202
  global $wpdb, $frmdb;
203
 
204
- if (is_numeric($id)){
205
- if ($blog_id and IS_WPMU){
206
- global $wpmuBaseTablePrefix;
207
- $table_name = "{$wpmuBaseTablePrefix}{$blog_id}_frm_forms";
208
- }else
209
- $table_name = $frmdb->forms;
210
- $query = "SELECT * FROM $table_name WHERE id='$id'";
211
- }else
212
- $query = "SELECT * FROM $frmdb->forms WHERE form_key='$id'";
213
- return $wpdb->get_row($query);
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  }
215
 
216
  function getAll( $where = '', $order_by = '', $limit = '' ){
9
  $new_values['name'] = $values['name'];
10
  $new_values['description'] = $values['description'];
11
  $new_values['status'] = isset($values['status'])?$values['status']:'draft';
12
+ $new_values['is_template'] = isset($values['is_template']) ? (int)$values['is_template'] : 0;
13
+ $new_values['editable'] = isset($values['editable']) ? (int)$values['editable'] : 0;
14
+ $new_values['default_template'] = isset($values['default_template']) ? (int)$values['default_template'] : 0;
15
  $new_values['prli_link_id'] = isset($link_id)?(int)$link_id:0;
16
  $options = array();
17
  $options['email_to'] = isset($values['options']['email_to']) ? $values['options']['email_to'] : '';
18
  $options['submit_value'] = isset($values['options']['submit_value']) ? $values['options']['submit_value'] : $frm_settings->submit_value;
19
+ $options['success_action'] = isset($values['options']['success_action']) ? $values['options']['success_action'] : 'message';
20
  $options['success_msg'] = isset($values['options']['success_msg']) ? $values['options']['success_msg'] : $frm_settings->success_msg;
21
  $options['show_form'] = isset($values['options']['show_form']) ? 1 : 0;
22
  $options['akismet'] = isset($values['options']['akismet']) ? 1 : 0;
23
  $options['before_html'] = isset($values['options']['before_html']) ? $values['options']['before_html'] : FrmFormsHelper::get_default_html('before');
24
  $options['after_html'] = isset($values['options']['after_html']) ? $values['options']['after_html'] : FrmFormsHelper::get_default_html('after');
25
+ $options = apply_filters('frm_form_options_before_update', $options, $values);
26
  $new_values['options'] = serialize($options);
27
  $new_values['created_at'] = current_time('mysql', 1);
28
 
38
  global $wpdb, $frmdb, $frm_form, $frm_field;
39
 
40
  $values = $frm_form->getOne( $id, $blog_id );
41
+ if(!$values)
42
+ return false;
43
 
44
  $new_values = array();
45
  $new_key = ($copy_keys) ? $values->form_key : '';
46
  $new_values['form_key'] = FrmAppHelper::get_unique_key($new_key, $frmdb->forms, 'form_key');
47
  $new_values['name'] = $values->name;
48
  $new_values['description'] = $values->description;
49
+ $new_values['status'] = (!$template) ? 'draft' : '';
50
+
51
  if ($blog_id){
52
  $new_values['status'] = 'published';
53
+ $new_options = maybe_unserialize($values->options);
54
  $new_options['email_to'] = get_option('admin_email');
55
  $new_options['copy'] = false;
56
+ $new_values['options'] = $new_options;
57
  }else
58
  $new_values['options'] = $values->options;
59
+
60
+ if(is_array($new_values['options']))
61
+ $new_values['options'] = serialize($new_values['options']);
62
 
63
  $new_values['logged_in'] = $values->logged_in ? $values->logged_in : 0;
64
  $new_values['editable'] = $values->editable ? $values->editable : 0;
85
  if (isset($values['form_key']))
86
  $values['form_key'] = FrmAppHelper::get_unique_key($values['form_key'], $frmdb->forms, 'form_key', $id);
87
 
88
+ $form_fields = array('form_key', 'name', 'description', 'status', 'prli_link_id');
89
 
90
  $new_values = array();
91
 
92
  if (isset($values['options'])){
93
  $options = array();
94
  $options['email_to'] = isset($values['options']['email_to']) ? $values['options']['email_to'] : '';
95
+ $options['submit_value'] = isset($values['options']['submit_value']) ? $values['options']['submit_value'] : $frm_settings->submit_value;
96
+ $options['success_action'] = isset($values['options']['success_action']) ? $values['options']['success_action'] : 'message';
97
  $options['success_msg'] = isset($values['options']['success_msg']) ? $values['options']['success_msg'] : $frm_settings->success_msg;
98
  $options['show_form'] = isset($values['options']['show_form']) ? 1 : 0;
99
  $options['akismet'] = isset($values['options']['akismet']) ? 1 : 0;
112
  if(!empty($new_values))
113
  $query_results = $wpdb->update( $frmdb->forms, $new_values, array( 'id' => $id ) );
114
 
115
+ $all_fields = $frm_field->getAll("fi.form_id='$id'");
116
  if ($all_fields and (isset($values['options']) or isset($values['item_meta']))){
117
  if(!isset($values['item_meta']))
118
  $values['item_meta'] = array();
124
  foreach ($values['item_meta'] as $field_id => $default_value){
125
  $field = $frm_field->getOne($field_id);
126
  if (!$field) continue;
127
+ $field_options = maybe_unserialize($field->field_options);
128
+
129
+ foreach (array('size', 'max', 'label', 'invalid', 'required_indicator', 'blank') as $opt)
130
  $field_options[$opt] = isset($values['field_options'][$opt.'_'.$field_id]) ? trim($values['field_options'][$opt.'_'.$field_id]) : '';
131
+
132
  $field_options['custom_html'] = isset($values['field_options']['custom_html_'.$field_id]) ? $values['field_options']['custom_html_'.$field_id] : (isset($field_options['custom_html']) ? $field_options['custom_html'] : FrmFieldsHelper::get_default_html($field->type));
133
  $field_options = apply_filters('frm_update_field_options', $field_options, $field, $values);
134
  $default_value = maybe_serialize($values['item_meta'][$field_id]);
135
  $field_key = (isset($values['field_options']['field_key_'.$field_id]))? $values['field_options']['field_key_'.$field_id] : $field->field_key;
136
  $field_type = (isset($values['field_options']['type_'.$field_id]))? $values['field_options']['type_'.$field_id] : $field->type;
137
  $field_description = (isset($values['field_options']['description_'.$field_id]))? $values['field_options']['description_'.$field_id] : $field->description;
138
+
139
  $frm_field->update($field_id, array('field_key' => $field_key, 'type' => $field_type, 'default_value' => $default_value, 'field_options' => $field_options, 'description' => $field_description));
140
  }
141
  }
179
  $frm_entry->destroy($item->id);
180
 
181
  // Disconnect the fields from this form
182
+ $query_results = $wpdb->query("DELETE FROM `$frmdb->fields` WHERE `form_id` = '$id'");
 
183
 
184
+ $query_results = $wpdb->query("DELETE FROM `$frmdb->forms` WHERE `id` = '$id'");
 
185
  if ($query_results)
186
  do_action('frm_destroy_form', $id);
187
  return $query_results;
189
 
190
  function getName( $id ){
191
  global $wpdb, $frmdb;
192
+ $query = "SELECT `name` FROM $frmdb->forms WHERE ";
193
+ $query .= (is_numeric($id)) ? "id" : "form_key";
194
+ $query .= "='{$id}'";
 
 
195
  return $wpdb->get_var($query);
196
  }
197
 
210
  function getOne( $id, $blog_id=false ){
211
  global $wpdb, $frmdb;
212
 
213
+ if ($blog_id and IS_WPMU){
214
+ global $wpmuBaseTablePrefix;
215
+ if($wpmuBaseTablePrefix)
216
+ $prefix = "{$wpmuBaseTablePrefix}{$blog_id}_";
217
+ else
218
+ $prefix = $wpdb->get_blog_prefix( $blog_id );
219
+
220
+ $table_name = "{$prefix}frm_forms";
221
+ }else{
222
+ $table_name = $frmdb->forms;
223
+ }
224
+
225
+ $query = "SELECT * FROM $table_name WHERE ";
226
+ if (is_numeric($id))
227
+ $query .= "id='$id'";
228
+ else
229
+ $query .= "form_key='$id'";
230
+
231
+ $results = $wpdb->get_row($query);
232
+
233
+ if(isset($results->options))
234
+ $results->options = stripslashes_deep(maybe_unserialize($results->options));
235
+ return $results;
236
  }
237
 
238
  function getAll( $where = '', $order_by = '', $limit = '' ){
classes/models/FrmNotification.php CHANGED
@@ -1,20 +1,20 @@
1
  <?php
2
  class FrmNotification{
3
  function FrmNotification(){
4
- add_action('frm_after_create_entry', array($this, 'entry_created'));
5
  }
6
 
7
- function entry_created($entry_id){
8
  if (apply_filters('frm_stop_standard_email', false, $entry_id)) return;
9
- global $frm_blogurl, $frm_form, $frm_entry, $frm_entry_meta;
10
 
11
  $frm_blogname = get_option('blogname');
12
  $entry = $frm_entry->getOne($entry_id);
13
- $form = $frm_form->getOne($entry->form_id);
14
- $values = $frm_entry_meta->getAll("it.item_id = $entry->id", " ORDER BY fi.field_order");
 
15
 
16
- $form_options = unserialize($form->options);
17
- $to_email = $form_options['email_to'];
18
  if ($to_email == '')
19
  $to_email = get_option('admin_email');
20
 
@@ -26,16 +26,21 @@ class FrmNotification{
26
 
27
  $entry_data = '';
28
  foreach ($values as $value){
29
- $val = apply_filters('frm_email_value', maybe_unserialize($value->meta_value), $value);
30
  if (is_array($val))
31
  $val = implode(', ', $val);
32
 
 
 
 
 
 
33
  $entry_data .= $value->field_name . ': ' . $val . "\r\n\r\n";
34
  if ($reply_to == '' and is_email($val))
35
  $reply_to = $val;
36
  }
37
 
38
- $data = unserialize($entry->description);
39
  $user_data = __('User Information', 'formidable') ."\r\n";
40
  $user_data .= __('IP Address', 'formidable') . ": ". $entry->ip ."\r\n";
41
  $user_data .= __('User-Agent (Browser/OS)', 'formidable') . ": ". $data['browser']."\r\n";
@@ -66,6 +71,8 @@ class FrmNotification{
66
  if($plain_text)
67
  $message = html_entity_decode(strip_tags($message));
68
 
 
 
69
  if (!wp_mail($recipient, $subject, $message, $header, $attachments)){
70
  $header = "From: \"{$reply_to_name}\" <{$reply_to}>\r\n";
71
  mail($recipient, $subject, $message, $header);
1
  <?php
2
  class FrmNotification{
3
  function FrmNotification(){
4
+ add_action('frm_after_create_entry', array(&$this, 'entry_created'), 10, 2);
5
  }
6
 
7
+ function entry_created($entry_id, $form_id){
8
  if (apply_filters('frm_stop_standard_email', false, $entry_id)) return;
9
+ global $frm_form, $frm_entry, $frm_entry_meta;
10
 
11
  $frm_blogname = get_option('blogname');
12
  $entry = $frm_entry->getOne($entry_id);
13
+ $form = $frm_form->getOne($form_id);
14
+ $form->options = maybe_unserialize($form->options);
15
+ $values = $frm_entry_meta->getAll("it.item_id = $entry_id", " ORDER BY fi.field_order");
16
 
17
+ $to_email = $form->options['email_to'];
 
18
  if ($to_email == '')
19
  $to_email = get_option('admin_email');
20
 
26
 
27
  $entry_data = '';
28
  foreach ($values as $value){
29
+ $val = apply_filters('frm_email_value', maybe_unserialize($value->meta_value), $value, $entry);
30
  if (is_array($val))
31
  $val = implode(', ', $val);
32
 
33
+ if($value->field_type == 'textarea'){
34
+ //$val = str_replace(array("\r\n", "\r", "\n"), "\r\n", $val);
35
+ $val = "\r\n". $val;
36
+ }
37
+
38
  $entry_data .= $value->field_name . ': ' . $val . "\r\n\r\n";
39
  if ($reply_to == '' and is_email($val))
40
  $reply_to = $val;
41
  }
42
 
43
+ $data = maybe_unserialize($entry->description);
44
  $user_data = __('User Information', 'formidable') ."\r\n";
45
  $user_data .= __('IP Address', 'formidable') . ": ". $entry->ip ."\r\n";
46
  $user_data .= __('User-Agent (Browser/OS)', 'formidable') . ": ". $data['browser']."\r\n";
71
  if($plain_text)
72
  $message = html_entity_decode(strip_tags($message));
73
 
74
+ $header = apply_filters('frm_email_header', $header, compact('to_email', 'subject'));
75
+
76
  if (!wp_mail($recipient, $subject, $message, $header, $attachments)){
77
  $header = "From: \"{$reply_to_name}\" <{$reply_to}>\r\n";
78
  mail($recipient, $subject, $message, $header);
classes/models/FrmSettings.php CHANGED
@@ -4,6 +4,7 @@ class FrmSettings{
4
  var $preview_page_id;
5
  var $preview_page_id_str;
6
  var $lock_keys;
 
7
 
8
  var $pubkey;
9
  var $privkey;
@@ -11,6 +12,7 @@ class FrmSettings{
11
  var $re_lang;
12
  var $re_msg;
13
 
 
14
  var $custom_style;
15
  var $load_style;
16
  var $custom_stylesheet;
@@ -19,6 +21,7 @@ class FrmSettings{
19
 
20
  var $success_msg;
21
  var $failed_msg;
 
22
  var $submit_value;
23
  var $login_msg;
24
  var $admin_permission;
@@ -48,7 +51,10 @@ class FrmSettings{
48
  $this->preview_page_id_str = 'frm-preview-page-id';
49
 
50
  if(!isset($this->lock_keys))
51
- $this->lock_keys = true;
 
 
 
52
 
53
  if(!isset($this->pubkey)){
54
  if(IS_WPMU)
@@ -72,6 +78,9 @@ class FrmSettings{
72
  $this->re_msg = __('The reCAPTCHA was not entered correctly', 'formidable');
73
 
74
 
 
 
 
75
  if(!isset($this->load_style)){
76
  if(!isset($this->custom_style))
77
  $this->custom_style = true;
@@ -90,8 +99,12 @@ class FrmSettings{
90
  $this->success_msg = __('Your responses were successfully submitted. Thank you!', 'formidable');
91
  $this->success_msg = stripslashes($this->success_msg);
92
 
 
 
 
 
93
  if(!isset($this->failed_msg))
94
- $this->failed_msg = __('We\'re sorry. There was an error processing your responses.', 'formidable');
95
  $this->failed_msg = stripslashes($this->failed_msg);
96
 
97
  if(!isset($this->submit_value))
@@ -125,23 +138,25 @@ class FrmSettings{
125
  global $wp_roles;
126
  $this->preview_page_id = (int)$params[ $this->preview_page_id_str ];
127
  $this->lock_keys = isset($params['frm_lock_keys']) ? 1 : 0;
 
128
 
129
  $this->pubkey = $params['frm_pubkey'];
130
  $this->privkey = $params['frm_privkey'];
131
  $this->re_theme = $params['frm_re_theme'];
132
  $this->re_lang = $params['frm_re_lang'];
133
- $this->re_msg = $params['frm_re_msg'];
134
 
 
135
  $this->load_style = $params['frm_load_style'];
136
  //$this->custom_style = isset($params['frm_custom_style']) ? 1 : 0;
137
  //$this->custom_stylesheet = isset($params['frm_custom_stylesheet']) ? 1 : 0;
138
  $this->jquery_css = isset($params['frm_jquery_css']) ? 1 : 0;
139
  $this->accordion_js = isset($params['frm_accordion_js']) ? 1 : 0;
140
 
141
- $this->success_msg = isset($params['frm_success_msg']) ? $params['frm_success_msg'] : __('Your responses were successfully submitted. Thank you!', 'formidable');
142
- $this->failed_msg = isset($params['frm_failed_msg']) ? $params['frm_failed_msg'] : __('We\'re sorry. There was an error processing your responses.', 'formidable');
143
- $this->submit_value = isset($params['frm_submit_value']) ? $params['frm_submit_value'] : __('Submit', 'formidable');
144
- $this->login_msg = isset($params['frm_login_msg']) ? $params['frm_login_msg'] : __('You must log in', 'formidable');
 
145
 
146
  //update roles
147
  $frm_roles = FrmAppHelper::frm_capabilities();
@@ -150,7 +165,7 @@ class FrmSettings{
150
  $this->$frm_role = isset($params[$frm_role]) ? $params[$frm_role] : 'administrator';
151
 
152
  foreach ($roles as $role => $details){
153
- if($this->$frm_role == $role or ($this->$frm_role == 'editor' and $role == 'administrator') or ($this->$frm_role == 'author' and in_array($role, array('administrator','editor'))) or ($this->$frm_role == 'contributor' and in_array($role, array('administrator','editor','author'))) or $this->$frm_role == 'subscriber')
154
  $wp_roles->add_cap( $role, $frm_role );
155
  else
156
  $wp_roles->remove_cap( $role, $frm_role );
4
  var $preview_page_id;
5
  var $preview_page_id_str;
6
  var $lock_keys;
7
+ var $track;
8
 
9
  var $pubkey;
10
  var $privkey;
12
  var $re_lang;
13
  var $re_msg;
14
 
15
+ var $use_html;
16
  var $custom_style;
17
  var $load_style;
18
  var $custom_stylesheet;
21
 
22
  var $success_msg;
23
  var $failed_msg;
24
+ var $invalid_msg;
25
  var $submit_value;
26
  var $login_msg;
27
  var $admin_permission;
51
  $this->preview_page_id_str = 'frm-preview-page-id';
52
 
53
  if(!isset($this->lock_keys))
54
+ $this->lock_keys = false;
55
+
56
+ if(!isset($this->track))
57
+ $this->track = false;
58
 
59
  if(!isset($this->pubkey)){
60
  if(IS_WPMU)
78
  $this->re_msg = __('The reCAPTCHA was not entered correctly', 'formidable');
79
 
80
 
81
+ if(!isset($this->use_html))
82
+ $this->use_html = true;
83
+
84
  if(!isset($this->load_style)){
85
  if(!isset($this->custom_style))
86
  $this->custom_style = true;
99
  $this->success_msg = __('Your responses were successfully submitted. Thank you!', 'formidable');
100
  $this->success_msg = stripslashes($this->success_msg);
101
 
102
+ if(!isset($this->invalid_msg))
103
+ $this->invalid_msg = __('There was a problem with your submission. Errors are marked below.', 'formidable');
104
+ $this->invalid_msg = stripslashes($this->invalid_msg);
105
+
106
  if(!isset($this->failed_msg))
107
+ $this->failed_msg = __('We\'re sorry. It looks like you\'ve already submitted that.', 'formidable');
108
  $this->failed_msg = stripslashes($this->failed_msg);
109
 
110
  if(!isset($this->submit_value))
138
  global $wp_roles;
139
  $this->preview_page_id = (int)$params[ $this->preview_page_id_str ];
140
  $this->lock_keys = isset($params['frm_lock_keys']) ? 1 : 0;
141
+ $this->track = isset($params['frm_track']) ? 1 : 0;
142
 
143
  $this->pubkey = $params['frm_pubkey'];
144
  $this->privkey = $params['frm_privkey'];
145
  $this->re_theme = $params['frm_re_theme'];
146
  $this->re_lang = $params['frm_re_lang'];
 
147
 
148
+ $this->use_html = isset($params['frm_use_html']) ? 1 : 0;
149
  $this->load_style = $params['frm_load_style'];
150
  //$this->custom_style = isset($params['frm_custom_style']) ? 1 : 0;
151
  //$this->custom_stylesheet = isset($params['frm_custom_stylesheet']) ? 1 : 0;
152
  $this->jquery_css = isset($params['frm_jquery_css']) ? 1 : 0;
153
  $this->accordion_js = isset($params['frm_accordion_js']) ? 1 : 0;
154
 
155
+ $this->success_msg = $params['frm_success_msg'];
156
+ $this->invalid_msg = $params['frm_invalid_msg'];
157
+ $this->failed_msg = $params['frm_failed_msg'];
158
+ $this->submit_value = $params['frm_submit_value'];
159
+ $this->login_msg = $params['frm_login_msg'];
160
 
161
  //update roles
162
  $frm_roles = FrmAppHelper::frm_capabilities();
165
  $this->$frm_role = isset($params[$frm_role]) ? $params[$frm_role] : 'administrator';
166
 
167
  foreach ($roles as $role => $details){
168
+ if($this->$frm_role == $role or ($this->$frm_role == 'editor' and $role == 'administrator') or ($this->$frm_role == 'author' and in_array($role, array('administrator', 'editor'))) or ($this->$frm_role == 'contributor' and in_array($role, array('administrator', 'editor', 'author'))) or $this->$frm_role == 'subscriber')
169
  $wp_roles->add_cap( $role, $frm_role );
170
  else
171
  $wp_roles->remove_cap( $role, $frm_role );
classes/models/FrmUpdate.php CHANGED
@@ -4,6 +4,7 @@
4
  * necessary to successfully provide an update mechanism for FormidablePro!
5
  */
6
  class FrmUpdate{
 
7
  var $plugin_name;
8
  var $plugin_slug;
9
  var $plugin_url;
@@ -33,21 +34,22 @@ class FrmUpdate{
33
 
34
  function FrmUpdate(){
35
  // Where all the vitals are defined for this plugin
 
36
  $this->plugin_name = FRM_PLUGIN_NAME.'/formidable.php';
37
  $this->plugin_slug = FRM_PLUGIN_NAME;
38
- $this->plugin_url = 'http://blog.strategy11.com/formidable-wordpress-plugin';
39
  $this->pro_script = FRM_PATH . '/pro/'. FRM_PLUGIN_NAME .'-pro.php';
40
  $this->pro_mothership = 'http://formidablepro.com';
41
  $this->pro_cred_store = 'frmpro-credentials';
42
  $this->pro_auth_store = 'frmpro-authorized';
43
- $this->pro_auth_store = 'frmpro-wpmu-sitewide';
44
  $this->pro_last_checked_store = 'frmpro_last_checked_update';
45
  $this->pro_username_label = __(FRM_PLUGIN_TITLE .' Pro Username', 'formidable');
46
  $this->pro_password_label = __(FRM_PLUGIN_TITLE .' Pro Password', 'formidable');
47
  $this->pro_error_message_str = __('Your '.FRM_PLUGIN_TITLE.' Pro Username or Password was Invalid', 'formidable');
48
 
49
  // Don't modify these variables
50
- $this->pro_check_interval = 60*60; // Checking every hour
51
  $this->pro_username_str = 'proplug-username';
52
  $this->pro_password_str = 'proplug-password';
53
  $this->pro_wpmu_str = 'proplug-wpmu';
@@ -119,7 +121,7 @@ class FrmUpdate{
119
 
120
  $client = new IXR_Client( $this->pro_mothership_xmlrpc_url, false, 80, $this->timeout );
121
 
122
- if ( !$client->query( 'proplug.is_user_allowed_to_download', $this->pro_username, $this->pro_password, get_option('home') ) )
123
  return false;
124
 
125
  return $client->getResponse();
@@ -128,8 +130,8 @@ class FrmUpdate{
128
  function pro_cred_form(){
129
  global $frmpro_is_installed; ?>
130
  <div class="wrap">
131
- <div id="icon-options-general" class="icon32"><br/></div>
132
- <h2><?php echo FRM_PLUGIN_TITLE ?>: <?php _e('Pro Account Information', 'formidable')?></h2>
133
  <?php
134
  if(isset($_POST) and isset($_POST['process_cred_form']) and $_POST['process_cred_form'] == 'Y'){
135
  if($this->process_pro_cred_form()){
@@ -138,7 +140,7 @@ class FrmUpdate{
138
 
139
  ?>
140
  <div id="message" class="updated fade">
141
- <strong><?php printf(__('Your Username & Password was accepted<br/>Now you can %1$sUpgrade Automatically!%2$s', 'formidable'), "<a href=\"{$inst_install_url}\">","</a>"); ?></strong>
142
  </div>
143
  <?php
144
  }
@@ -168,7 +170,7 @@ class FrmUpdate{
168
  <?php }else{ ?>
169
  <p><?php _e('Ready to take your forms to the next level?<br/>Formidable Pro will help you style forms, manage data, and get reports.', 'formidable') ?></p>
170
 
171
- <a href="http://formidablepro.com"><?php _e('Learn More', 'formidable') ?> &raquo;</a>
172
  <?php } ?>
173
  </div>
174
  <?php
@@ -178,7 +180,7 @@ class FrmUpdate{
178
  // Yah, this is the view for the credentials form -- this class isn't a true model
179
  extract($this->get_pro_cred_form_vals());
180
  ?>
181
- <form name="cred_form" method="post" action="">
182
  <input type="hidden" name="process_cred_form" value="Y" />
183
  <?php wp_nonce_field('cred_form'); ?>
184
 
@@ -242,7 +244,7 @@ class FrmUpdate{
242
  $password = ((isset($_POST[$this->pro_password_str]))?$_POST[$this->pro_password_str]:$this->pro_password);
243
  $wpmu = (isset($_POST[$this->pro_wpmu_str])) ? true : $this->pro_wpmu;
244
 
245
- return compact('username','password','wpmu');
246
  }
247
 
248
  function get_download_url($version){
@@ -250,7 +252,7 @@ class FrmUpdate{
250
 
251
  $client = new IXR_Client( $this->pro_mothership_xmlrpc_url, false, 80, $this->timeout );
252
 
253
- if( !$client->query( 'proplug.get_encoded_download_url', $this->pro_username, $this->pro_password, $version ) )
254
  return false;
255
 
256
  return base64_decode($client->getResponse());
@@ -261,7 +263,7 @@ class FrmUpdate{
261
 
262
  $client = new IXR_Client( $this->pro_mothership_xmlrpc_url, false, 80, $this->timeout );
263
 
264
- if( !$client->query( 'proplug.get_current_version' ) )
265
  return false;
266
 
267
  return $client->getResponse();
@@ -282,7 +284,7 @@ class FrmUpdate{
282
  if(!$this->pro_is_installed())
283
  $force=true;
284
 
285
- $plugin_updates = (function_exists('get_site_transient'))?get_site_transient("update_plugins"):get_transient("update_plugins");
286
  if(!$plugin_updates and function_exists('get_transient'))
287
  $plugin_updates = get_transient("update_plugins");
288
 
4
  * necessary to successfully provide an update mechanism for FormidablePro!
5
  */
6
  class FrmUpdate{
7
+ var $plugin_nicename;
8
  var $plugin_name;
9
  var $plugin_slug;
10
  var $plugin_url;
34
 
35
  function FrmUpdate(){
36
  // Where all the vitals are defined for this plugin
37
+ $this->plugin_nicename = 'formidable';
38
  $this->plugin_name = FRM_PLUGIN_NAME.'/formidable.php';
39
  $this->plugin_slug = FRM_PLUGIN_NAME;
40
+ $this->plugin_url = 'http://formidablepro.com/formidable-wordpress-plugin';
41
  $this->pro_script = FRM_PATH . '/pro/'. FRM_PLUGIN_NAME .'-pro.php';
42
  $this->pro_mothership = 'http://formidablepro.com';
43
  $this->pro_cred_store = 'frmpro-credentials';
44
  $this->pro_auth_store = 'frmpro-authorized';
45
+ $this->pro_wpmu_store = 'frmpro-wpmu-sitewide';
46
  $this->pro_last_checked_store = 'frmpro_last_checked_update';
47
  $this->pro_username_label = __(FRM_PLUGIN_TITLE .' Pro Username', 'formidable');
48
  $this->pro_password_label = __(FRM_PLUGIN_TITLE .' Pro Password', 'formidable');
49
  $this->pro_error_message_str = __('Your '.FRM_PLUGIN_TITLE.' Pro Username or Password was Invalid', 'formidable');
50
 
51
  // Don't modify these variables
52
+ $this->pro_check_interval = 60*60*12; // Checking every 12 hours
53
  $this->pro_username_str = 'proplug-username';
54
  $this->pro_password_str = 'proplug-password';
55
  $this->pro_wpmu_str = 'proplug-wpmu';
121
 
122
  $client = new IXR_Client( $this->pro_mothership_xmlrpc_url, false, 80, $this->timeout );
123
 
124
+ if ( !$client->query( 'proplug.is_user_allowed_to_download', $this->pro_username, $this->pro_password, get_option('siteurl'), $this->plugin_nicename ) )
125
  return false;
126
 
127
  return $client->getResponse();
130
  function pro_cred_form(){
131
  global $frmpro_is_installed; ?>
132
  <div class="wrap">
133
+ <div id="icon-ms-admin" class="icon32"><br/></div>
134
+ <h2><?php echo FRM_PLUGIN_TITLE ?> <?php _e('Pro Account Information', 'formidable')?></h2>
135
  <?php
136
  if(isset($_POST) and isset($_POST['process_cred_form']) and $_POST['process_cred_form'] == 'Y'){
137
  if($this->process_pro_cred_form()){
140
 
141
  ?>
142
  <div id="message" class="updated fade">
143
+ <strong><?php printf(__('Your Username & Password was accepted<br/>Now you can %1$sUpgrade Automatically!%2$s', 'formidable'), "<a href='{$inst_install_url}'>","</a>"); ?></strong>
144
  </div>
145
  <?php
146
  }
170
  <?php }else{ ?>
171
  <p><?php _e('Ready to take your forms to the next level?<br/>Formidable Pro will help you style forms, manage data, and get reports.', 'formidable') ?></p>
172
 
173
+ <a href="http://formidablepro.com"><?php _e('Learn More', 'formidable') ?> &#187;</a>
174
  <?php } ?>
175
  </div>
176
  <?php
180
  // Yah, this is the view for the credentials form -- this class isn't a true model
181
  extract($this->get_pro_cred_form_vals());
182
  ?>
183
+ <form name="cred_form" method="post" >
184
  <input type="hidden" name="process_cred_form" value="Y" />
185
  <?php wp_nonce_field('cred_form'); ?>
186
 
244
  $password = ((isset($_POST[$this->pro_password_str]))?$_POST[$this->pro_password_str]:$this->pro_password);
245
  $wpmu = (isset($_POST[$this->pro_wpmu_str])) ? true : $this->pro_wpmu;
246
 
247
+ return compact('username', 'password', 'wpmu');
248
  }
249
 
250
  function get_download_url($version){
252
 
253
  $client = new IXR_Client( $this->pro_mothership_xmlrpc_url, false, 80, $this->timeout );
254
 
255
+ if( !$client->query( 'proplug.get_encoded_download_url', $this->pro_username, $this->pro_password, $version, get_option('siteurl'), $this->plugin_nicename ) )
256
  return false;
257
 
258
  return base64_decode($client->getResponse());
263
 
264
  $client = new IXR_Client( $this->pro_mothership_xmlrpc_url, false, 80, $this->timeout );
265
 
266
+ if( !$client->query( 'proplug.get_current_version', $this->plugin_nicename ) )
267
  return false;
268
 
269
  return $client->getResponse();
284
  if(!$this->pro_is_installed())
285
  $force=true;
286
 
287
+ $plugin_updates = (function_exists('get_site_transient')) ? get_site_transient("update_plugins") : get_transient("update_plugins");
288
  if(!$plugin_updates and function_exists('get_transient'))
289
  $plugin_updates = get_transient("update_plugins");
290
 
classes/templates/contact.php CHANGED
@@ -2,6 +2,7 @@
2
 
3
  $values['name'] = __('Contact Us', 'formidable');
4
  $values['description'] = __('We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.', 'formidable');
 
5
 
6
  if ($form){
7
  $form_id = $form->id;
@@ -16,45 +17,51 @@ if ($form){
16
 
17
 
18
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('text', $form_id));
19
- $field_values['name'] = __('Name', 'formidable');
 
20
  $field_values['required'] = 1;
21
- $field_values['field_options']['blank'] = __('Name cannot be blank', 'formidable');
 
22
  $frm_field->create( $field_values );
23
 
 
 
 
 
 
 
 
 
24
 
25
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('email', $form_id));
26
  $field_values['name'] = __('Email', 'formidable');
27
  $field_values['required'] = 1;
28
- $field_values['field_options']['blank'] = __('Email cannot be blank', 'formidable');
29
  $field_values['field_options']['invalid'] = __('Please enter a valid email address', 'formidable');
30
  $frm_field->create( $field_values );
31
-
32
 
33
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('url', $form_id));
34
  $field_values['name'] = __('Website', 'formidable');
35
- $field_values['field_options']['blank'] = __('Website cannot be blank', 'formidable');
36
- $field_values['field_options']['invalid'] = __('Website is an invalid format', 'formidable');
37
  $frm_field->create( $field_values );
38
-
39
 
40
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('text', $form_id));
41
  $field_values['name'] = __('Subject', 'formidable');
42
  $field_values['required'] = 1;
43
- $field_values['field_options']['blank'] = __('Subject cannot be blank', 'formidable');
44
  $frm_field->create( $field_values );
45
-
46
 
47
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('textarea', $form_id));
48
  $field_values['name'] = __('Message', 'formidable');
49
  $field_values['required'] = 1;
50
- $field_values['field_options']['blank'] = __('Message cannot be blank', 'formidable');
51
  $frm_field->create( $field_values );
52
-
53
 
54
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('captcha', $form_id));
55
  $field_values['name'] = __('Captcha', 'formidable');
56
  $field_values['field_options']['label'] = 'none';
57
  $frm_field->create( $field_values );
58
-
59
 
60
  ?>
2
 
3
  $values['name'] = __('Contact Us', 'formidable');
4
  $values['description'] = __('We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.', 'formidable');
5
+ $values['options']['custom_style'] = 1;
6
 
7
  if ($form){
8
  $form_id = $form->id;
17
 
18
 
19
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('text', $form_id));
20
+ $field_values['name'] = 'Name';
21
+ $field_values['description'] = 'First';
22
  $field_values['required'] = 1;
23
+ $field_values['field_options']['size'] = 22;
24
+ $field_values['field_options']['custom_html'] = '<div id="frm_field_[id]_container" class="form-field [required_class] [error_class]" style="float:left;margin-right:10px;">'."\n".'<label class="frm_primary_label">[field_name] <span class="frm_required">[required_label]</span>'."\n</label>\n".'[input]'."\n".'[if description]<div class="frm_description">[description]</div>[/if description]'."\n". '[if error]<div class="frm_error">[error]</div>[/if error]'."\n</div>";
25
  $frm_field->create( $field_values );
26
 
27
+ $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('text', $form_id));
28
+ $field_values['name'] = $field_values['description'] = 'Last';
29
+ $field_values['required'] = 1;
30
+ $field_values['field_options']['size'] = 22;
31
+ $field_values['field_options']['label'] = 'hidden';
32
+ $field_values['field_options']['custom_html'] = '<div id="frm_field_[id]_container" class="form-field [required_class] [error_class]" style="float:left;">'."\n".'<label class="frm_primary_label">[field_name] <span class="frm_required">[required_label]</span>'."\n</label>\n".'[input]'."\n".'[if description]<div class="frm_description">[description]</div>[/if description]'."\n". '[if error]<div class="frm_error">[error]</div>[/if error]'."\n</div>\n".'<div style="clear:both"></div>';
33
+ $frm_field->create( $field_values );
34
+ unset($field_values);
35
 
36
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('email', $form_id));
37
  $field_values['name'] = __('Email', 'formidable');
38
  $field_values['required'] = 1;
 
39
  $field_values['field_options']['invalid'] = __('Please enter a valid email address', 'formidable');
40
  $frm_field->create( $field_values );
41
+ unset($field_values);
42
 
43
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('url', $form_id));
44
  $field_values['name'] = __('Website', 'formidable');
45
+ $field_values['field_options']['invalid'] = __('Please enter a valid website', 'formidable');
 
46
  $frm_field->create( $field_values );
47
+ unset($field_values);
48
 
49
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('text', $form_id));
50
  $field_values['name'] = __('Subject', 'formidable');
51
  $field_values['required'] = 1;
 
52
  $frm_field->create( $field_values );
53
+ unset($field_values);
54
 
55
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('textarea', $form_id));
56
  $field_values['name'] = __('Message', 'formidable');
57
  $field_values['required'] = 1;
 
58
  $frm_field->create( $field_values );
59
+ unset($field_values);
60
 
61
  $field_values = apply_filters('frm_before_field_created', FrmFieldsHelper::setup_new_vars('captcha', $form_id));
62
  $field_values['name'] = __('Captcha', 'formidable');
63
  $field_values['field_options']['label'] = 'none';
64
  $frm_field->create( $field_values );
65
+ unset($field_values);
66
 
67
  ?>
classes/views/frm-entries/direct.php CHANGED
@@ -1,13 +1,13 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
- <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
3
 
4
  <head>
5
- <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
6
  <title><?php bloginfo('name'); ?></title>
7
  <?php wp_head() ?>
8
  </head>
9
  <body>
10
- <?php require_once('frm-entry.php'); ?>
11
  <?php wp_footer(); ?>
12
  </body>
13
  </html>
1
+ <!DOCTYPE html>
2
+ <html <?php language_attributes(); ?>>
3
 
4
  <head>
5
+ <meta charset="<?php bloginfo( 'charset' ); ?>" />
6
  <title><?php bloginfo('name'); ?></title>
7
  <?php wp_head() ?>
8
  </head>
9
  <body>
10
+ <?php echo FrmEntriesController::show_form($form->id, '', true, true) ?>
11
  <?php wp_footer(); ?>
12
  </body>
13
  </html>
classes/views/frm-entries/errors.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php global $frm_settings;
2
+ if (isset($message) && $message != ''){
3
+ if(is_admin()){
4
+ ?><div id="message" class="updated fade" style="padding:5px;"><?php echo $message ?></div><?php
5
+ }else{
6
+ echo $message;
7
+ }
8
+ }
9
+
10
+ if( isset($errors) && is_array($errors) && !empty($errors) ){
11
+ global $frm_settings;
12
+ ?>
13
+ <div class="<?php echo (is_admin()) ? 'error' : 'frm_error_style' ?>">
14
+ <?php
15
+ if(!is_admin()){
16
+ $img = apply_filters('frm_error_icon', FRM_IMAGES_URL . '/error.png');
17
+ if($img and !empty($img)){
18
+ ?><img src="<?php echo $img ?>" alt="" />
19
+ <?php
20
+ }
21
+ }
22
+ echo stripslashes($frm_settings->invalid_msg);
23
+
24
+ if(empty($frm_settings->invalid_msg)){
25
+ $show_img = false;
26
+ foreach( $errors as $error ){
27
+ if($show_img and $img and !empty($img)){
28
+ ?><img src="<?php echo $img ?>" alt="" /><?php
29
+ }else{
30
+ $show_img = true;
31
+ }
32
+ echo stripslashes($error) . '<br/>';
33
+ }
34
+ } ?>
35
+ </div>
36
+ <?php } ?>
classes/views/frm-entries/form.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- global $frm_forms_loaded, $frm_load_css, $frm_css_loaded;
3
  $frm_forms_loaded[] = $form;
4
  if($values['custom_style']) $frm_load_css = true;
5
 
@@ -9,7 +9,7 @@ $frm_css_loaded = true;
9
  }
10
 
11
  echo FrmFormsHelper::replace_shortcodes($values['before_html'], $form, $title, $description); ?>
12
- <div id="frm_form_fields">
13
  <fieldset>
14
  <div>
15
  <input type="hidden" name="action" value="<?php echo $form_action ?>" />
@@ -21,19 +21,11 @@ echo FrmFormsHelper::replace_shortcodes($values['before_html'], $form, $title, $
21
  <input type="hidden" name="plugin" value="<?php echo $plugin; ?>" />
22
  <?php }
23
 
24
- $error_keys = array();
25
- if (isset($errors) && is_array($errors)){
26
- foreach($errors as $error_id => $error_msg){
27
- if(!is_numeric($error_id))
28
- $error_keys[] = $error_id;
29
- }
30
- }
31
-
32
  if($values['fields']){
33
  foreach($values['fields'] as $field){
34
  $field_name = "item_meta[". $field['id'] ."]";
35
  if (apply_filters('frm_show_normal_field_type', true, $field['type']))
36
- echo FrmFieldsHelper::replace_shortcodes($field['custom_html'], $field, $error_keys, $form);
37
  else
38
  do_action('frm_show_other_field_type', $field, $form);
39
 
@@ -41,22 +33,26 @@ foreach($values['fields'] as $field){
41
  }
42
  }
43
 
44
- global $frm_settings;
45
-
46
  if (is_admin() && !$frm_settings->lock_keys){ ?>
47
  <div class="form-field">
48
  <label><?php _e('Entry Key', 'formidable') ?></label>
49
- <input type="text" id="item_key" name="item_key" value="<?php echo $values['item_key'] ?>" />
50
  </div>
51
  <?php }else{ ?>
52
- <input type="hidden" id="item_key" name="item_key" value="<?php echo $values['item_key'] ?>" />
53
- <?php } ?>
54
- <?php do_action('frm_entry_form', $form) ?>
 
 
 
 
 
 
 
55
  </div>
56
  </fieldset>
57
  </div>
58
  <?php echo FrmFormsHelper::replace_shortcodes($values['after_html'], $form); ?>
59
  <script type="text/javascript">
60
- <?php do_action('frm_entries_footer_scripts',$values['fields'], $form); ?>
61
- function frmClearDefault(default_value,thefield){if(thefield.value==default_value)thefield.value='';thefield.style.fontStyle='inherit'}
62
- function frmReplaceDefault(default_value,thefield){if(thefield.value==''){thefield.value=default_value;thefield.style.fontStyle='italic';}}</script>
1
  <?php
2
+ global $frm_forms_loaded, $frm_load_css, $frm_css_loaded, $frm_settings;
3
  $frm_forms_loaded[] = $form;
4
  if($values['custom_style']) $frm_load_css = true;
5
 
9
  }
10
 
11
  echo FrmFormsHelper::replace_shortcodes($values['before_html'], $form, $title, $description); ?>
12
+ <div class="frm_form_fields">
13
  <fieldset>
14
  <div>
15
  <input type="hidden" name="action" value="<?php echo $form_action ?>" />
21
  <input type="hidden" name="plugin" value="<?php echo $plugin; ?>" />
22
  <?php }
23
 
 
 
 
 
 
 
 
 
24
  if($values['fields']){
25
  foreach($values['fields'] as $field){
26
  $field_name = "item_meta[". $field['id'] ."]";
27
  if (apply_filters('frm_show_normal_field_type', true, $field['type']))
28
+ echo FrmFieldsHelper::replace_shortcodes($field['custom_html'], $field, $errors, $form);
29
  else
30
  do_action('frm_show_other_field_type', $field, $form);
31
 
33
  }
34
  }
35
 
 
 
36
  if (is_admin() && !$frm_settings->lock_keys){ ?>
37
  <div class="form-field">
38
  <label><?php _e('Entry Key', 'formidable') ?></label>
39
+ <input type="text" name="item_key" value="<?php echo $values['item_key'] ?>" />
40
  </div>
41
  <?php }else{ ?>
42
+ <input type="hidden" name="item_key" value="<?php echo $values['item_key'] ?>" />
43
+ <?php }
44
+
45
+ do_action('frm_entry_form', $form, $form_action, $errors);
46
+
47
+ global $frm_div;
48
+ if($frm_div){
49
+ echo "</div>\n";
50
+ $frm_div = false;
51
+ } ?>
52
  </div>
53
  </fieldset>
54
  </div>
55
  <?php echo FrmFormsHelper::replace_shortcodes($values['after_html'], $form); ?>
56
  <script type="text/javascript">
57
+ <?php do_action('frm_entries_footer_scripts', $values['fields'], $form); ?>
58
+ </script>
 
classes/views/frm-entries/frm-entry.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
  global $frm_form, $frm_field, $frm_entry, $frm_entry_meta, $user_ID, $frm_settings;
3
  $form_name = $form->name;
4
- $form_options = stripslashes_deep(maybe_unserialize($form->options));
5
 
6
- $submit = isset($form_options['submit_value'])?$form_options['submit_value'] : $frm_settings->submit_value;
7
- $saved_message = isset($form_options['success_msg'])? $form_options['success_msg'] : $frm_settings->success_msg;
8
 
9
  $params = FrmEntriesController::get_params($form);
10
  $message = $errors = '';
@@ -19,7 +19,8 @@ if($params['action'] == 'create' && $params['posted_form_id'] == $form->id){
19
  $values = FrmEntriesHelper::setup_new_vars($fields, $form);
20
  require('new.php');
21
  ?>
22
- <script type="text/javascript">window.onload = function(){window.location.href = "#form_<?php echo $form->form_key ?>";}</script>
 
23
  <?php
24
  }else{
25
  $fields = FrmFieldsHelper::get_form_fields($form->id);
@@ -28,26 +29,26 @@ if($params['action'] == 'create' && $params['posted_form_id'] == $form->id){
28
  $values = FrmEntriesHelper::setup_new_vars($fields, $form, true);
29
  $created = $frm_entry->create( $_POST );
30
  $saved_message = apply_filters('frm_content', $saved_message, $form, $created);
31
- $conf_method = apply_filters('frm_success_filter', 'message', $form, $form_options);
32
  if (!$created or !is_numeric($created) or $conf_method == 'message'){
33
- $message = '<div class="frm_message" id="message">'.(($created and is_numeric($created)) ? apply_filters('the_content', $saved_message) : $frm_settings->failed_msg).'</div>';
34
- if (!isset($form_options['show_form']) or $form_options['show_form'])
35
  require('new.php');
36
- else{
37
  global $frm_forms_loaded, $frm_load_css, $frm_css_loaded;
38
  $frm_forms_loaded[] = $form;
39
  if($values['custom_style']) $frm_load_css = true;
40
 
41
  if(!$frm_css_loaded and $frm_load_css){
42
- echo FrmAppController::footer_js('header');
43
- $frm_css_loaded = true;
44
  }
45
  ?>
46
  <div class="frm_forms<?php echo ($values['custom_style']) ? ' with_frm_style' : ''; ?>" id="frm_form_<?php echo $form->id ?>_container"><?php echo $message ?></div>
47
  <?php
48
  }
49
  }else
50
- do_action('frm_success_action', $conf_method, $form, $form_options, $created);
51
  }
52
  }
53
  }else{
1
  <?php
2
  global $frm_form, $frm_field, $frm_entry, $frm_entry_meta, $user_ID, $frm_settings;
3
  $form_name = $form->name;
4
+ $form->options = stripslashes_deep(maybe_unserialize($form->options));
5
 
6
+ $submit = isset($form->options['submit_value']) ? $form->options['submit_value'] : $frm_settings->submit_value;
7
+ $saved_message = isset($form->options['success_msg']) ? $form->options['success_msg'] : $frm_settings->success_msg;
8
 
9
  $params = FrmEntriesController::get_params($form);
10
  $message = $errors = '';
19
  $values = FrmEntriesHelper::setup_new_vars($fields, $form);
20
  require('new.php');
21
  ?>
22
+ <script type="text/javascript">window.onload = function(){var frm_pos=jQuery('#form_<?php echo $form->form_key ?>').offset();
23
+ window.scrollTo(frm_pos.left,frm_pos.top);}</script>
24
  <?php
25
  }else{
26
  $fields = FrmFieldsHelper::get_form_fields($form->id);
29
  $values = FrmEntriesHelper::setup_new_vars($fields, $form, true);
30
  $created = $frm_entry->create( $_POST );
31
  $saved_message = apply_filters('frm_content', $saved_message, $form, $created);
32
+ $conf_method = apply_filters('frm_success_filter', 'message', $form, $form->options);
33
  if (!$created or !is_numeric($created) or $conf_method == 'message'){
34
+ $message = '<div class="frm_message" id="message">'.(($created and is_numeric($created)) ? apply_filters('wpautop', apply_filters('do_shortcode', $saved_message)) : $frm_settings->failed_msg).'</div>';
35
+ if (!isset($form->options['show_form']) or $form->options['show_form']){
36
  require('new.php');
37
+ }else{
38
  global $frm_forms_loaded, $frm_load_css, $frm_css_loaded;
39
  $frm_forms_loaded[] = $form;
40
  if($values['custom_style']) $frm_load_css = true;
41
 
42
  if(!$frm_css_loaded and $frm_load_css){
43
+ echo FrmAppController::footer_js('header');
44
+ $frm_css_loaded = true;
45
  }
46
  ?>
47
  <div class="frm_forms<?php echo ($values['custom_style']) ? ' with_frm_style' : ''; ?>" id="frm_form_<?php echo $form->id ?>_container"><?php echo $message ?></div>
48
  <?php
49
  }
50
  }else
51
+ do_action('frm_success_action', $conf_method, $form, $form->options, $created);
52
  }
53
  }
54
  }else{
classes/views/frm-entries/list.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="wrap">
2
- <div class="frmicon icon32"><br/></div>
3
- <h2><?php echo FRM_PLUGIN_TITLE ?>: <?php _e('Pro Entries', 'formidable') ?></h2>
4
 
5
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
6
 
1
  <div class="wrap">
2
+ <div id="icon-edit-pages" class="icon32"><br/></div>
3
+ <h2><?php _e('Pro Form Entries', 'formidable') ?></h2>
4
 
5
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
6
 
classes/views/frm-entries/new.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="frm_forms<?php echo ($values['custom_style']) ? ' with_frm_style' : ''; ?>" id="frm_form_<?php echo $form->id ?>_container">
2
- <form action="" enctype="multipart/form-data" method="post" class="frm-show-form" id="form_<?php echo $form->form_key ?>">
3
- <?php include(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
4
  <?php $form_action = 'create'; ?>
5
  <?php require(FRM_VIEWS_PATH.'/frm-entries/form.php'); ?>
6
 
1
  <div class="frm_forms<?php echo ($values['custom_style']) ? ' with_frm_style' : ''; ?>" id="frm_form_<?php echo $form->id ?>_container">
2
+ <form enctype="multipart/form-data" method="post" class="frm-show-form" id="form_<?php echo $form->form_key ?>" <?php echo ($frm_settings->use_html) ? '' : 'action=""'; ?>>
3
+ <?php include(FRM_VIEWS_PATH.'/frm-entries/errors.php'); ?>
4
  <?php $form_action = 'create'; ?>
5
  <?php require(FRM_VIEWS_PATH.'/frm-entries/form.php'); ?>
6
 
classes/views/frm-fields/import_choices.php ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html <?php language_attributes(); ?>>
3
+
4
+ <head>
5
+ <meta charset="<?php bloginfo( 'charset' ); ?>" />
6
+ <title><?php bloginfo('name'); ?></title>
7
+ <?php
8
+ wp_admin_css( 'global' );
9
+ wp_admin_css();
10
+ wp_admin_css( 'colors' );
11
+ wp_admin_css( 'ie' );
12
+ if ( is_multisite() )
13
+ wp_admin_css( 'ms' );
14
+ wp_enqueue_script('utils');
15
+
16
+ do_action('admin_enqueue_scripts', $hook_suffix);
17
+ do_action("admin_print_styles-$hook_suffix");
18
+ do_action('admin_print_styles');
19
+ do_action("admin_print_scripts-$hook_suffix");
20
+ do_action('admin_print_scripts');
21
+ do_action("admin_head-$hook_suffix");
22
+ do_action('admin_head');
23
+
24
+ ?>
25
+ <style type="text/css">
26
+ #wpadminbar{display:none;}
27
+ .prepop{
28
+ float:left;
29
+ width:240px;
30
+ list-style:none;
31
+ overflow:auto;
32
+ border-right: 2px solid #DEDEDE;
33
+ padding-right:10px;
34
+ }
35
+ .prepop li{
36
+ margin: 0 0 3px;
37
+ }
38
+
39
+ .prepop li a{
40
+ background:#F5F5F5;
41
+ border:1px solid #EEEEEE;
42
+ border-color:#EEEEEE #DEDEDE #DEDEDE #EEEEEE;
43
+ display: block;
44
+ font-weight: bold;
45
+ height: 30px;
46
+ line-height: 30px;
47
+ margin: 0 10px 0 0;
48
+ text-align: center;
49
+ text-decoration: none;
50
+ cursor:pointer;
51
+ }
52
+ </style>
53
+ </head>
54
+ <body class="wp-admin no-js <?php echo apply_filters( 'admin_body_class', '' ) . " $admin_body_class"; ?>" style="min-width:300px;">
55
+ <div style="padding:10px;">
56
+ <p><?php _e('Edit or add field options (one per line)', 'formidable') ?></p>
57
+ <ul class="prepop">
58
+ <?php foreach($prepop as $label => $pop){ ?>
59
+ <li><a onclick='frmPrePop(<?php echo str_replace("'", '&#145;', json_encode($pop)) ?>); return false;'><?php echo $label ?></a></li>
60
+ <?php } ?>
61
+ </ul>
62
+ <textarea name="frm_bulk_options" id="frm_bulk_options" rows="12" style="width:335px;float:right;">
63
+ <?php foreach($field->options as $fopt){
64
+ echo $fopt ."\n";
65
+ } ?>
66
+ </textarea>
67
+
68
+ <p class="submit clear">
69
+ <input type="button" onclick="window.top.frmUpdateOpts(<?php echo $field->id ?>, '<?php echo $frm_ajax_url ?>', jQuery('#frm_bulk_options').val()); window.top.tb_remove();" class="button-primary" value="<?php _e('Update Field Choices', 'formidable') ?>" />
70
+ <input type="button" onclick="window.top.tb_remove();" class="button" value="<?php _e('Cancel', 'formidable') ?>" />
71
+ </p>
72
+ </div>
73
+
74
+ <?php
75
+ do_action('admin_footer', '');
76
+ do_action('admin_print_footer_scripts');
77
+ ?>
78
+
79
+ <script type="text/javascript">
80
+ function frmPrePop(opts){
81
+ jQuery('#frm_bulk_options').val(opts.join("\n"));
82
+ return false;
83
+ }
84
+ </script>
85
+ </body>
86
+ </html>
classes/views/frm-fields/input.php CHANGED
@@ -2,46 +2,64 @@
2
  <input type="text" id="field_<?php echo $field['field_key'] ?>" name="<?php echo $field_name ?>" value="<?php echo $field['value'] ?>" <?php do_action('frm_field_input_html', $field) ?>/>
3
 
4
  <?php }else if ($field['type'] == 'textarea'){ ?>
5
- <textarea name="<?php echo $field_name ?>" id="field_<?php echo $field['field_key'] ?>"<?php if($field['size']) echo ' cols="'. $field['size'].'"'; if($field['max']) echo ' rows="'. $field['max'] .'"'; ?> <?php do_action('frm_field_input_html', $field) ?>><?php echo $field['value'] ?></textarea>
6
 
7
- <?php }else if ($field['type'] == 'radio'){
 
 
 
 
 
8
  if (is_array($field['options'])){
9
  foreach($field['options'] as $opt_key => $opt){
10
  if(isset($atts) and isset($atts['opt']) and ($atts['opt'] != $opt_key)) continue;
11
  $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field);
12
  ?>
13
- <div class="frm_radio"><input type="radio" name="<?php echo $field_name ?>" id="item_meta_val<?php echo $field['id'] .'_'. sanitize_title_with_dashes($field_val) ?>" value="<?php echo $field_val ?>" <?php echo ($field['value'] == $field_val) ? 'checked="checked"' : ''; ?> <?php do_action('frm_field_input_html', $field) ?>/><?php if(!isset($atts) or !isset($atts['label']) or $atts['label']){ ?><label for="item_meta_val<?php echo $field['id'] .'_'. sanitize_title_with_dashes($field_val) ?>"><?php echo $opt ?></label><?php } ?></div>
 
14
  <?php }
15
- } ?>
16
- <?php }else if ($field['type'] == 'select'){ ?>
 
 
 
 
 
17
  <select name="<?php echo $field_name ?>" id="field_<?php echo $field['field_key'] ?>" <?php do_action('frm_field_input_html', $field) ?>>
18
  <?php foreach ($field['options'] as $opt_key => $opt){
19
  $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field); ?>
20
- <option value="<?php echo $field_val ?>" <?php if ($field['value'] == $field_val) echo 'selected="selected"'; ?>><?php echo $opt ?></option>
21
  <?php } ?>
22
  </select>
23
- <?php }else if ($field['type'] == 'checkbox'){
24
- $checked_values = $field['value'];
 
 
 
 
 
 
25
  foreach ($field['options'] as $opt_key => $opt){
26
  if(isset($atts) and isset($atts['opt']) and ($atts['opt'] != $opt_key)) continue;
27
  $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field);
28
- $checked = ((!is_array($checked_values) && $checked_values == $field_val ) || (is_array($checked_values) && in_array($field_val, $checked_values)))?' checked="checked"':''; ?>
29
- <div class="frm_checkbox" id="frm_checkbox<?php echo $field['id'] .'_'. sanitize_title_with_dashes($field_val) ?>"><input type="checkbox" name="<?php echo $field_name ?>[]" id="item_meta_val<?php echo $field['id'] .'_'. sanitize_title_with_dashes($field_val) ?>" value="<?php echo $field_val ?>" <?php echo $checked ?> <?php do_action('frm_field_input_html', $field) ?>/><?php if(!isset($atts) or !isset($atts['label']) or $atts['label']){ ?><label for="item_meta_val<?php echo $field['id'] .'_'. sanitize_title_with_dashes($field_val) ?>"><?php echo $opt ?></label><?php } ?></div>
30
- <?php
 
 
31
  }
32
- }else if ($field['type'] == 'captcha'){
 
 
33
  global $frm_settings;
34
  $error_msg = null;
35
- if(!empty($error_keys)){
36
- foreach($error_keys as $error_key){
37
  if(preg_match('/^captcha-/', $error_key))
38
  $error_msg = preg_replace('/^captcha-/', '', $error_key);
39
  }
40
  }
41
  if (!empty($frm_settings->pubkey))
42
  FrmFieldsHelper::display_recaptcha($field, $error_msg);
43
- }else if ($field['type'] == 'nucaptcha'){
44
- if(function_exists('nucaptcha_comment_form'))
45
- nucaptcha_comment_form();
46
- }else do_action('frm_form_fields',$field, $field_name);
47
- ?>
2
  <input type="text" id="field_<?php echo $field['field_key'] ?>" name="<?php echo $field_name ?>" value="<?php echo $field['value'] ?>" <?php do_action('frm_field_input_html', $field) ?>/>
3
 
4
  <?php }else if ($field['type'] == 'textarea'){ ?>
5
+ <textarea name="<?php echo $field_name ?>" id="field_<?php echo $field['field_key'] ?>"<?php if($field['size']) echo ' cols="'. $field['size'].'"'; if($field['max']) echo ' rows="'. $field['max'] .'"'; ?> <?php do_action('frm_field_input_html', $field) ?>><?php echo FrmAppHelper::esc_textarea($field['value']) ?></textarea>
6
 
7
+ <?php
8
+
9
+ }else if ($field['type'] == 'radio'){
10
+ if(isset($field['post_field']) and $field['post_field'] == 'post_category')
11
+ do_action('frm_after_checkbox', array('field' => $field, 'field_name' => $field_name, 'type' => $field['type']));
12
+ else{
13
  if (is_array($field['options'])){
14
  foreach($field['options'] as $opt_key => $opt){
15
  if(isset($atts) and isset($atts['opt']) and ($atts['opt'] != $opt_key)) continue;
16
  $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field);
17
  ?>
18
+ <div class="frm_radio"><input type="radio" name="<?php echo $field_name ?>" id="field_<?php echo $field['id'] ?>-<?php echo $opt_key ?>" value="<?php echo $field_val ?>" <?php echo (FrmAppHelper::check_selected($field['value'], $field_val)) ? 'checked="checked"' : ''; ?> <?php do_action('frm_field_input_html', $field) ?>/><?php if(!isset($atts) or !isset($atts['label']) or $atts['label']){ ?><label for="field_<?php echo $field['id'] ?>-<?php echo $opt_key ?>"><?php echo $opt ?></label><?php }
19
+ ?></div>
20
  <?php }
21
+ }
22
+ }
23
+
24
+ }else if ($field['type'] == 'select'){
25
+ if(isset($field['post_field']) and $field['post_field'] == 'post_category'){
26
+ echo FrmFieldsHelper::dropdown_categories(array('name' => $field_name, 'field' => $field) );
27
+ }else{ ?>
28
  <select name="<?php echo $field_name ?>" id="field_<?php echo $field['field_key'] ?>" <?php do_action('frm_field_input_html', $field) ?>>
29
  <?php foreach ($field['options'] as $opt_key => $opt){
30
  $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field); ?>
31
+ <option value="<?php echo $field_val ?>" <?php if (FrmAppHelper::check_selected($field['value'], $field_val)) echo 'selected="selected"'; ?>><?php echo $opt ?></option>
32
  <?php } ?>
33
  </select>
34
+ <?php }
35
+
36
+ }else if ($field['type'] == 'checkbox'){
37
+ $checked_values = $field['value'];
38
+
39
+ if(isset($field['post_field']) and $field['post_field'] == 'post_category'){
40
+ do_action('frm_after_checkbox', array('field' => $field, 'field_name' => $field_name, 'type' => $field['type']));
41
+ }else{
42
  foreach ($field['options'] as $opt_key => $opt){
43
  if(isset($atts) and isset($atts['opt']) and ($atts['opt'] != $opt_key)) continue;
44
  $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field);
45
+ $checked = (FrmAppHelper::check_selected($checked_values, $field_val)) ? ' checked="checked"' : '';
46
+ ?>
47
+ <div class="frm_checkbox" id="frm_checkbox_<?php echo $field['id']?>-<?php echo $opt_key ?>"><input type="checkbox" name="<?php echo $field_name ?>[]" id="field_<?php echo $field['id']?>-<?php echo $opt_key ?>" value="<?php echo $field_val ?>" <?php echo $checked ?> <?php do_action('frm_field_input_html', $field) ?>/><?php if(!isset($atts) or !isset($atts['label']) or $atts['label']){ ?><label for="field_<?php echo $field['id']?>-<?php echo $opt_key ?>"><?php echo $opt ?></label><?php }
48
+ ?></div>
49
+ <?php
50
  }
51
+ }
52
+
53
+ }else if ($field['type'] == 'captcha' and !is_admin()){
54
  global $frm_settings;
55
  $error_msg = null;
56
+ if(!empty($errors)){
57
+ foreach($errors as $error_key => $error){
58
  if(preg_match('/^captcha-/', $error_key))
59
  $error_msg = preg_replace('/^captcha-/', '', $error_key);
60
  }
61
  }
62
  if (!empty($frm_settings->pubkey))
63
  FrmFieldsHelper::display_recaptcha($field, $error_msg);
64
+ }else do_action('frm_form_fields', $field, $field_name);
65
+ ?>
 
 
 
classes/views/frm-fields/show.php CHANGED
@@ -1 +1 @@
1
- <?php echo FrmFieldsHelper::replace_shortcodes($field['custom_html'], $field, $error_keys, $form); ?>
1
+ <?php echo FrmFieldsHelper::replace_shortcodes($field['custom_html'], $field, $errors, $form); ?>
classes/views/frm-fields/single-option.php CHANGED
@@ -1,6 +1,5 @@
1
  <span id="frm_delete_field_<?php echo $field['id']; ?>-<?php echo $opt_key ?>_container" class="frm_single_option">
2
- <span class="frm_spacer"></span>
3
- <a href="javascript:frm_delete_field_option(<?php echo $field['id']?>, <?php echo $opt_key ?>, '<?php echo $frm_ajax_url ?>');" class="frm_single_show_hover alignleft" ><img src="<?php echo FRM_IMAGES_URL ?>/trash.png" alt="Delete"></a>
4
  <?php if ($field['type'] != 'select'){ ?>
5
  <input type="<?php echo $field['type'] ?>" name="<?php echo $field_name ?><?php echo ($field['type'] == 'checkbox')?'[]':''; ?>" value="<?php echo str_replace('"', '&quot;', $opt) ?>"<?php echo isset($checked)? $checked : ''; ?>/>
6
  <?php } ?>
1
  <span id="frm_delete_field_<?php echo $field['id']; ?>-<?php echo $opt_key ?>_container" class="frm_single_option">
2
+ <a href="javascript:frm_delete_field_option(<?php echo $field['id']?>,<?php echo $opt_key ?>,'<?php echo $frm_ajax_url ?>');" class="frm_single_visible_hover alignleft"><img src="<?php echo FRM_IMAGES_URL ?>/trash.png" alt="Delete" /></a>
 
3
  <?php if ($field['type'] != 'select'){ ?>
4
  <input type="<?php echo $field['type'] ?>" name="<?php echo $field_name ?><?php echo ($field['type'] == 'checkbox')?'[]':''; ?>" value="<?php echo str_replace('"', '&quot;', $opt) ?>"<?php echo isset($checked)? $checked : ''; ?>/>
5
  <?php } ?>
classes/views/frm-forms/add_field.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php $display = apply_filters('frm_display_field_options', array('type' => $field['type'], 'field_data' => $field, 'required' => true, 'description' => true, 'options' => true, 'label_position' => true, 'invalid' => false, 'size' => false, 'clear_on_focus' => false, 'default_blank' => true)); ?>
2
 
3
- <li id="frm_field_id_<?php echo $field['id']; ?>" class="form-field edit_form_item frm_field_box ui-state-default frm_hide_options<?php echo $display['options'] ?> edit_field_type_<?php echo $display['type'] ?>" onmouseover="frm_field_hover(1,<?php echo $field['id']; ?>)" onmouseout="frm_field_hover(0,<?php echo $field['id']; ?>)">
4
  <a href="javascript:void(0);" class="alignright frm-show-hover frm-move" title="Move Field"><img src="<?php echo FRM_IMAGES_URL ?>/move.png" alt="Move"></a>
5
  <a href="javascript:frm_delete_field(<?php echo $field['id']; ?>)" class="alignright frm-show-hover" id="frm_delete_field<?php echo $field['id']; ?>" title="Delete Field"><img src="<?php echo FRM_IMAGES_URL ?>/trash.png" alt="Delete"></a>
6
  <a href="javascript:frm_duplicate_field(<?php echo $field['id']; ?>,'<?php echo $frm_ajax_url ?>')" class="alignright frm-show-hover" title="<?php _e('Duplicate Field', 'formidable') ?>"><img src="<?php echo FRM_IMAGES_URL ?>/duplicate.png" alt="<?php _e('Duplicate', 'formidable') ?>"></a>
@@ -8,25 +8,44 @@
8
 
9
  <?php if ($display['required']){ ?>
10
  <span id="require_field_<?php echo $field['id']; ?>">
11
- <a href="javascript:frm_mark_required(<?php echo $field['id']; ?>,<?php echo $field_required = ($field['required'] == '0')?('0'):('1'); ?>,'<?php echo FRM_IMAGES_URL ?>','<?php echo $frm_ajax_url?>')" class="alignleft frm_required<?php echo $field_required ?>" id="req_field_<?php echo $field['id']; ?>" title="Click to Mark as <?php echo ($field['required'] == '0')?'':'not '; ?>Required"><img src="<?php echo FRM_IMAGES_URL?>/required.png" alt="required"></a>
12
  </span>
13
  <?php } ?>
14
- <label class="frm_ipe_field_label frm_pos_<?php echo $field['label']; ?>" id="field_<?php echo $field['id']; ?>"><?php echo $field['name'] ?></label>
15
 
16
  <?php if ($display['type'] == 'text'){ ?>
17
  <input type="text" name="<?php echo $field_name ?>" value="<?php echo $field['default_value']; ?>" <?php echo (isset($field['size']) && $field['size']) ? 'style="width:auto" size="'.$field['size'] .'"' : ''; ?> />
18
  <?php }else if ($field['type'] == 'textarea'){ ?>
19
- <textarea name="<?php echo $field_name ?>"<?php if ($field['size']) echo ' style="width:auto" cols="'.$field['size'].'"' ?> rows="<?php echo $field['max']; ?>"><?php echo $field['default_value']; ?></textarea>
20
 
21
- <?php }else if ($field['type'] == 'radio' or $field['type'] == 'checkbox'){
22
- $field['default_value'] = maybe_unserialize($field['default_value']); ?>
23
- <?php require(FRM_VIEWS_PATH.'/frm-fields/radio.php'); ?>
24
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  <div id="frm_add_field_<?php echo $field['id']; ?>" class="frm-show-click">
26
  <a href="javascript:frm_add_field_option(<?php echo $field['id']; ?>,'<?php echo $frm_ajax_url ?>')" class="frm_orange frm_add_opt">+ <?php _e('Add an Option', 'formidable') ?></a>
 
 
 
 
 
27
  </div>
 
28
 
29
- <?php }else if ($field['type'] == 'select'){ ?>
 
 
 
30
  <select name="<?php echo $field_name ?>" id="<?php echo $field_name ?>" <?php echo (isset($field['size']) && $field['size']) ? 'style="width:auto"' : ''; ?>>
31
  <?php foreach ($field['options'] as $opt_key => $opt){
32
  $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field);
@@ -34,22 +53,39 @@
34
  <option value="<?php echo $field_val ?>"<?php echo $selected ?>><?php echo $opt ?></option>
35
  <?php } ?>
36
  </select>
37
- <?php if ($display['default_blank']) FrmFieldsHelper::show_default_blank_js($field['id'], $field['default_blank']); ?>
 
38
  <br/>
39
  <div class="frm-show-click">
40
- <?php foreach ($field['options'] as $opt_key => $opt) require(FRM_VIEWS_PATH.'/frm-fields/single-option.php'); ?>
 
 
 
 
 
 
 
41
  <div id="frm_add_field_<?php echo $field['id']; ?>">
42
  <a href="javascript:frm_add_field_option(<?php echo $field['id']; ?>,'<?php echo $frm_ajax_url ?>')" class="frm_orange frm_add_opt">+ <?php _e('Add an Option', 'formidable') ?></a>
 
 
 
 
 
 
43
  <?php do_action('frm_add_multiple_opts', $field); ?>
44
  </div>
 
45
  </div>
46
- <?php }else if ($field['type'] == 'captcha'){ ?>
47
- <img src="<?php echo FRM_URL ?>/images/<?php echo $frm_settings->re_theme ?>-captcha.png">
48
- <span class="howto"><?php printf(__('Hint: Change colors in the %1$sFormidable settings', 'formidable'), '<a href="?page=formidable-settings">') ?></a></span>
49
- <input type="hidden" name="<?php echo $field_name ?>" value="1"/>
 
 
50
  <?php
51
- }else
52
- do_action('frm_display_added_fields',$field);
53
 
54
  if ($display['clear_on_focus']){
55
  FrmFieldsHelper::show_onfocus_js($field['id'], $field['clear_on_focus']);
@@ -88,7 +124,8 @@ if ($display['options']){ ?>
88
  <option value="top"<?php selected($field['label'], 'top'); ?>><?php _e('Top', 'formidable') ?></option>
89
  <option value="left"<?php selected($field['label'], 'left'); ?>><?php _e('Left', 'formidable') ?></option>
90
  <option value="right"<?php selected($field['label'], 'right'); ?>><?php _e('Right', 'formidable') ?></option>
91
- <option value="none"<?php selected($field['label'], 'none'); ?>><?php _e('Hidden', 'formidable') ?></option>
 
92
  </select>
93
  </td>
94
  </tr>
@@ -96,22 +133,22 @@ if ($display['options']){ ?>
96
  <?php if ($display['required']){ ?>
97
  <tr>
98
  <td><label><?php _e('Required Field', 'formidable') ?>:</label></td>
99
- <td><input type="checkbox" id="frm_req_field_<?php echo $field['id'] ?>" name="field_options[required_<?php echo $field['id'] ?>]" value="1" <?php echo ($field['required']) ? 'checked="checked"': ''; ?> onclick="frm_mark_required(<?php echo $field['id'] ?>,<?php echo $field_required ?>,'<?php echo FRM_IMAGES_URL ?>','<?php echo $frm_ajax_url?>')" /> <span ><?php _e('Required', 'formidable') ?></span>
100
- <span class="frm_required_details<?php echo $field['id'] ?>">&mdash; <span class="howto"><?php _e('Indicate required field with', 'formidable') ?>:</span>
101
  <input type="text" name="field_options[required_indicator_<?php echo $field['id'] ?>]" value="<?php echo htmlentities($field['required_indicator']); ?>" />
102
  </span>
103
  </td>
104
  </tr>
105
- <tr class="frm_required_details<?php echo $field['id'] ?>"<?php if($field['required'] == 0) echo 'style="display:none;"'?>><td><label><?php _e('Error message if field is left blank', 'formidable') ?>:</label></td>
106
  <td><input type="text" name="field_options[blank_<?php echo $field['id'] ?>]" value="<?php echo $field['blank']; ?>" class="frm_long_input" /></td>
107
  </tr>
108
  <?php } ?>
109
  <?php if ($display['invalid']){ ?>
110
- <tr><td><label><?php _e('Error message if entry is an invalid format', 'formidable') ?>:</label></td>
111
- <td><input type="text" name="field_options[invalid_<?php echo $field['id'] ?>]" value="<?php echo $field['invalid']; ?>" size="50" /></td>
112
  </tr>
113
  <?php } ?>
114
- <?php do_action('frm_field_options_form', $field, $display); ?>
115
  </table>
116
  </div>
117
  </div>
@@ -119,3 +156,4 @@ if ($display['options']){ ?>
119
  </div>
120
  <?php } ?>
121
  </li>
 
1
  <?php $display = apply_filters('frm_display_field_options', array('type' => $field['type'], 'field_data' => $field, 'required' => true, 'description' => true, 'options' => true, 'label_position' => true, 'invalid' => false, 'size' => false, 'clear_on_focus' => false, 'default_blank' => true)); ?>
2
 
3
+ <li id="frm_field_id_<?php echo $field['id']; ?>" class="form-field edit_form_item frm_field_box ui-state-default frm_hide_options<?php echo $display['options'] ?> edit_field_type_<?php echo $display['type'] ?> frm_top_container" onmouseover="frm_field_hover(1,<?php echo $field['id']; ?>)" onmouseout="frm_field_hover(0,<?php echo $field['id']; ?>)">
4
  <a href="javascript:void(0);" class="alignright frm-show-hover frm-move" title="Move Field"><img src="<?php echo FRM_IMAGES_URL ?>/move.png" alt="Move"></a>
5
  <a href="javascript:frm_delete_field(<?php echo $field['id']; ?>)" class="alignright frm-show-hover" id="frm_delete_field<?php echo $field['id']; ?>" title="Delete Field"><img src="<?php echo FRM_IMAGES_URL ?>/trash.png" alt="Delete"></a>
6
  <a href="javascript:frm_duplicate_field(<?php echo $field['id']; ?>,'<?php echo $frm_ajax_url ?>')" class="alignright frm-show-hover" title="<?php _e('Duplicate Field', 'formidable') ?>"><img src="<?php echo FRM_IMAGES_URL ?>/duplicate.png" alt="<?php _e('Duplicate', 'formidable') ?>"></a>
8
 
9
  <?php if ($display['required']){ ?>
10
  <span id="require_field_<?php echo $field['id']; ?>">
11
+ <a href="javascript:frm_mark_required(<?php echo $field['id']; ?>,<?php echo $field_required = ($field['required'] == '0')? '0' : '1'; ?>,'<?php echo FRM_IMAGES_URL ?>','<?php echo $frm_ajax_url?>')" class="alignleft frm_required<?php echo $field_required ?>" id="req_field_<?php echo $field['id']; ?>" title="Click to Mark as <?php echo ($field['required'] == '0') ? '' : 'not '; ?>Required"><img src="<?php echo FRM_IMAGES_URL?>/required.png" alt="Required"></a>
12
  </span>
13
  <?php } ?>
14
+ <label class="frm_ipe_field_label frm_primary_label" id="field_<?php echo $field['id']; ?>"><?php echo $field['name'] ?></label>
15
 
16
  <?php if ($display['type'] == 'text'){ ?>
17
  <input type="text" name="<?php echo $field_name ?>" value="<?php echo $field['default_value']; ?>" <?php echo (isset($field['size']) && $field['size']) ? 'style="width:auto" size="'.$field['size'] .'"' : ''; ?> />
18
  <?php }else if ($field['type'] == 'textarea'){ ?>
19
+ <textarea name="<?php echo $field_name ?>"<?php if ($field['size']) echo ' style="width:auto" cols="'.$field['size'].'"' ?> rows="<?php echo $field['max']; ?>"><?php echo FrmAppHelper::esc_textarea($field['default_value']); ?></textarea>
20
 
21
+ <?php
 
 
22
 
23
+ }else if ($field['type'] == 'radio' or $field['type'] == 'checkbox'){
24
+ $field['default_value'] = maybe_unserialize($field['default_value']);
25
+ if(isset($field['post_field']) and $field['post_field'] == 'post_category'){
26
+ do_action('frm_after_checkbox', array('field' => $field, 'field_name' => $field_name, 'type' => $field['type']));
27
+ }else{ ?>
28
+ <div id="frm_field_<?php echo $field['id'] ?>_opts"<?php echo (count($field['options']) > 10) ? ' class="frm_field_opts_list"' : ''; ?>>
29
+ <?php require(FRM_VIEWS_PATH.'/frm-fields/radio.php'); ?>
30
+ </div>
31
+ <?php
32
+ }
33
+
34
+ ?>
35
  <div id="frm_add_field_<?php echo $field['id']; ?>" class="frm-show-click">
36
  <a href="javascript:frm_add_field_option(<?php echo $field['id']; ?>,'<?php echo $frm_ajax_url ?>')" class="frm_orange frm_add_opt">+ <?php _e('Add an Option', 'formidable') ?></a>
37
+
38
+ <?php if (!isset($field['post_field']) or $field['post_field'] != 'post_category'){ ?>
39
+ <?php _e('or', 'formidable'); ?>
40
+ <a title="<?php _e('Bulk Edit Field Choices', 'formidable') ?>" href="<?php echo FRM_SCRIPT_URL ?>&amp;controller=fields&amp;action=import_choices&amp;field_id=<?php echo $field['id'] ?>&amp;TB_iframe=1" class="thickbox frm_orange"><?php _e('Bulk Edit Field Choices', 'formidable') ?></a>
41
+ <?php } ?>
42
  </div>
43
+ <?php
44
 
45
+ }else if ($field['type'] == 'select'){
46
+ if(isset($field['post_field']) and $field['post_field'] == 'post_category'){
47
+ echo FrmFieldsHelper::dropdown_categories(array('name' => $field_name, 'field' => $field) );
48
+ }else{ ?>
49
  <select name="<?php echo $field_name ?>" id="<?php echo $field_name ?>" <?php echo (isset($field['size']) && $field['size']) ? 'style="width:auto"' : ''; ?>>
50
  <?php foreach ($field['options'] as $opt_key => $opt){
51
  $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field);
53
  <option value="<?php echo $field_val ?>"<?php echo $selected ?>><?php echo $opt ?></option>
54
  <?php } ?>
55
  </select>
56
+ <?php }
57
+ if ($display['default_blank']) FrmFieldsHelper::show_default_blank_js($field['id'], $field['default_blank']); ?>
58
  <br/>
59
  <div class="frm-show-click">
60
+ <?php if(isset($field['post_field']) and $field['post_field'] == 'post_category'){ ?>
61
+ <p class="howto"><?php _e('Please add options from the WordPress "Categories" page', 'formidable') ?></p>
62
+ <?php }else if(!isset($field['post_field']) or $field['post_field'] != 'post_status'){ ?>
63
+ <div id="frm_field_<?php echo $field['id'] ?>_opts"<?php echo (count($field['options']) > 10) ? ' class="frm_field_opts_list"' : ''; ?>>
64
+ <?php foreach ($field['options'] as $opt_key => $opt)
65
+ require(FRM_VIEWS_PATH.'/frm-fields/single-option.php');
66
+ ?>
67
+ </div>
68
  <div id="frm_add_field_<?php echo $field['id']; ?>">
69
  <a href="javascript:frm_add_field_option(<?php echo $field['id']; ?>,'<?php echo $frm_ajax_url ?>')" class="frm_orange frm_add_opt">+ <?php _e('Add an Option', 'formidable') ?></a>
70
+
71
+ <?php if (!isset($field['post_field']) or $field['post_field'] != 'post_category'){ ?>
72
+ <?php _e('or', 'formidable'); ?>
73
+ <a title="<?php _e('Bulk Edit Field Choices', 'formidable') ?>" href="<?php echo FRM_SCRIPT_URL ?>&amp;controller=fields&amp;action=import_choices&amp;field_id=<?php echo $field['id'] ?>&amp;TB_iframe=1" class="thickbox frm_orange"><?php _e('Bulk Edit Field Choices', 'formidable') ?></a>
74
+ <?php } ?>
75
+
76
  <?php do_action('frm_add_multiple_opts', $field); ?>
77
  </div>
78
+ <?php } ?>
79
  </div>
80
+ <?php
81
+ }else if ($field['type'] == 'captcha'){
82
+ global $frm_settings; ?>
83
+ <img src="<?php echo FRM_URL ?>/images/<?php echo $frm_settings->re_theme ?>-captcha.png" alt="captcha" />
84
+ <span class="howto"><?php printf(__('Hint: Change colors in the %1$sFormidable settings', 'formidable'), '<a href="?page=formidable-settings">') ?></a></span>
85
+ <input type="hidden" name="<?php echo $field_name ?>" value="1"/>
86
  <?php
87
+ }else
88
+ do_action('frm_display_added_fields',$field);
89
 
90
  if ($display['clear_on_focus']){
91
  FrmFieldsHelper::show_onfocus_js($field['id'], $field['clear_on_focus']);
124
  <option value="top"<?php selected($field['label'], 'top'); ?>><?php _e('Top', 'formidable') ?></option>
125
  <option value="left"<?php selected($field['label'], 'left'); ?>><?php _e('Left', 'formidable') ?></option>
126
  <option value="right"<?php selected($field['label'], 'right'); ?>><?php _e('Right', 'formidable') ?></option>
127
+ <option value="none"<?php selected($field['label'], 'none'); ?>><?php _e('None', 'formidable') ?></option>
128
+ <option value="hidden"<?php selected($field['label'], 'hidden'); ?>><?php _e('Hidden', 'formidable') ?></option>
129
  </select>
130
  </td>
131
  </tr>
133
  <?php if ($display['required']){ ?>
134
  <tr>
135
  <td><label><?php _e('Required Field', 'formidable') ?>:</label></td>
136
+ <td><input type="checkbox" id="frm_req_field_<?php echo $field['id'] ?>" name="field_options[required_<?php echo $field['id'] ?>]" value="1" <?php echo ($field['required']) ? 'checked="checked"': ''; ?> onclick="frm_mark_required(<?php echo $field['id'] ?>,<?php echo $field_required ?>,'<?php echo FRM_IMAGES_URL ?>','<?php echo $frm_ajax_url?>')" /> <span><?php _e('Required', 'formidable') ?></span>
137
+ <span class="frm_required_details<?php echo $field['id'] ?>" <?php if(!$field['required']) echo 'style="display:none;"'?>>&mdash; <span class="howto"><?php _e('Indicate required field with', 'formidable') ?>:</span>
138
  <input type="text" name="field_options[required_indicator_<?php echo $field['id'] ?>]" value="<?php echo htmlentities($field['required_indicator']); ?>" />
139
  </span>
140
  </td>
141
  </tr>
142
+ <tr class="frm_required_details<?php echo $field['id'] ?>"<?php if(!$field['required']) echo 'style="display:none;"'?>><td><label><?php _e('Error message for blank required field', 'formidable') ?>:</label></td>
143
  <td><input type="text" name="field_options[blank_<?php echo $field['id'] ?>]" value="<?php echo $field['blank']; ?>" class="frm_long_input" /></td>
144
  </tr>
145
  <?php } ?>
146
  <?php if ($display['invalid']){ ?>
147
+ <tr><td><label><?php _e('Error message for invalid submission', 'formidable') ?>:</label></td>
148
+ <td><input type="text" name="field_options[invalid_<?php echo $field['id'] ?>]" value="<?php echo $field['invalid']; ?>" class="frm_long_input" /></td>
149
  </tr>
150
  <?php } ?>
151
+ <?php do_action('frm_field_options_form', $field, $display, $values); ?>
152
  </table>
153
  </div>
154
  </div>
156
  </div>
157
  <?php } ?>
158
  </li>
159
+ <?php unset($display); ?>
classes/views/frm-forms/add_field_links.php CHANGED
@@ -1,14 +1,19 @@
1
  <div id="frm_form_options" class="inner-sidebar">
2
- <?php if (!$values['is_template']){ ?>
3
- <p class="howto"><?php _e('Copy this code and paste it into your post, page or text widget', 'formidable') ?>:
4
- <input type='text' style="text-align:center; font-weight:bold; width: 100%;" readonly="true" onclick='this.select();' onfocus='this.select();' value='[formidable id=<?php echo $id; ?>]' /></p>
 
5
  <?php } ?>
6
 
 
7
  <p class="frm_orange"><a href="<?php echo FrmFormsHelper::get_direct_link($values['form_key']); ?>" target="_blank"><?php _e('Preview Form', 'formidable') ?></a>
8
- <?php global $frm_settings; if ($frm_settings->preview_page_id > 0){ ?>
 
9
  or <a href="<?php echo add_query_arg('form', $values['form_key'], get_permalink($frm_settings->preview_page_id)) ?>" target="_blank"><?php _e('Preview in Current Theme', 'formidable') ?></a>
10
  <?php } ?>
11
  </p>
 
 
12
 
13
  <p class="howto"><?php _e('Click on or drag a field into your form', 'formidable') ?></p>
14
  <div class="themeRoller clearfix">
@@ -43,7 +48,7 @@
43
  </div><!-- /theme group Error -->
44
  <div class="theme-group-content corner-bottom clearfix">
45
  <div class="clearfix">
46
- <ul<?php echo apply_filters('frm_drag_field_class','') ?>>
47
  <?php $col_class = 'frm_col_one';
48
  foreach (FrmFieldsHelper::pro_field_selection() as $field_key => $field_type){ ?>
49
  <li class="frmbutton button <?php echo $col_class ?>" id="<?php echo $field_key ?>"><?php echo apply_filters('frmpro_field_links',$field_type, $id, $field_key) ?></li>
1
  <div id="frm_form_options" class="inner-sidebar">
2
+ <?php if(!isset($hide_preview) or !$hide_preview){
3
+ if (!$values['is_template']){ ?>
4
+ <p class="howto"><?php _e('Insert into a post, page or text widget', 'formidable') ?>:
5
+ <input type="text" style="text-align:center;font-weight:bold;width:100%;" readonly="true" onclick="this.select();" onfocus='this.select();' value='[formidable id=<?php echo $id; ?>]' /></p>
6
  <?php } ?>
7
 
8
+ <?php if(isset($show_preview)){ ?>
9
  <p class="frm_orange"><a href="<?php echo FrmFormsHelper::get_direct_link($values['form_key']); ?>" target="_blank"><?php _e('Preview Form', 'formidable') ?></a>
10
+ <?php global $frm_settings;
11
+ if ($frm_settings->preview_page_id > 0){ ?>
12
  or <a href="<?php echo add_query_arg('form', $values['form_key'], get_permalink($frm_settings->preview_page_id)) ?>" target="_blank"><?php _e('Preview in Current Theme', 'formidable') ?></a>
13
  <?php } ?>
14
  </p>
15
+ <?php }
16
+ } ?>
17
 
18
  <p class="howto"><?php _e('Click on or drag a field into your form', 'formidable') ?></p>
19
  <div class="themeRoller clearfix">
48
  </div><!-- /theme group Error -->
49
  <div class="theme-group-content corner-bottom clearfix">
50
  <div class="clearfix">
51
+ <ul<?php echo apply_filters('frm_drag_field_class', '') ?>>
52
  <?php $col_class = 'frm_col_one';
53
  foreach (FrmFieldsHelper::pro_field_selection() as $field_key => $field_type){ ?>
54
  <li class="frmbutton button <?php echo $col_class ?>" id="<?php echo $field_key ?>"><?php echo apply_filters('frmpro_field_links',$field_type, $id, $field_key) ?></li>
classes/views/frm-forms/default-templates.php CHANGED
@@ -12,14 +12,16 @@
12
  <tr><td colspan="2"><?php _e('No Templates Found', 'formidable') ?></td></tr>
13
  <?php
14
  }else{
 
15
  foreach($default_templates as $form){
16
- ?>
17
- <tr style="min-height: 60px; height: 60px;">
 
18
  <td class="post-title">
19
  <a class="row-title" href="<?php echo $url = FrmFormsHelper::get_direct_link($form->form_key); ?>" title="<?php _e('Preview', 'formidable')?> <?php echo htmlentities(stripslashes($form->name)) ?>" target="blank"><?php echo stripslashes($form->name); ?></a><br/>
20
  <div class="row-actions">
21
  <?php if(current_user_can('frm_edit_forms')){ ?>
22
- <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&action=duplicate&id=<?php echo $form->id; ?>" title="<?php _e('Copy', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)); ?>"><?php _e('Create Form from Template', 'formidable') ?></a></span> |
23
  <?php } ?>
24
  <?php global $frm_settings;
25
  if ($frm_settings->preview_page_id > 0)
12
  <tr><td colspan="2"><?php _e('No Templates Found', 'formidable') ?></td></tr>
13
  <?php
14
  }else{
15
+ $alternate = false;
16
  foreach($default_templates as $form){
17
+ $alternate = (!$alternate) ? 'alternate' : false;
18
+ ?>
19
+ <tr class="<?php echo $alternate ?>">
20
  <td class="post-title">
21
  <a class="row-title" href="<?php echo $url = FrmFormsHelper::get_direct_link($form->form_key); ?>" title="<?php _e('Preview', 'formidable')?> <?php echo htmlentities(stripslashes($form->name)) ?>" target="blank"><?php echo stripslashes($form->name); ?></a><br/>
22
  <div class="row-actions">
23
  <?php if(current_user_can('frm_edit_forms')){ ?>
24
+ <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=duplicate&amp;id=<?php echo $form->id; ?>" title="<?php _e('Copy', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)); ?>"><?php _e('Create Form from Template', 'formidable') ?></a></span> |
25
  <?php } ?>
26
  <?php global $frm_settings;
27
  if ($frm_settings->preview_page_id > 0)
classes/views/frm-forms/edit.php CHANGED
@@ -1,17 +1,20 @@
1
  <div class="wrap">
2
  <div class="frmicon icon32"><br/></div>
3
- <h2><?php echo FRM_PLUGIN_TITLE ?>: <?php _e('Edit Form', 'formidable') ?></h2>
4
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
5
  <?php require(FRM_VIEWS_PATH.'/shared/nav.php'); ?>
6
  <div id="poststuff" class="metabox-holder has-right-sidebar">
7
- <?php require('add_field_links.php'); ?>
 
 
 
8
  <div id="post-body">
9
  <div id="post-body-content">
10
  <div class="frm_form_builder<?php echo ($values['custom_style']) ? ' with_frm_style' : ''; ?>">
11
- <form method="post" action="">
12
  <p>
13
  <span class="alignright">
14
- <a title="<?php _e('Customize Form HTML', 'formidable') ?>" href="#TB_inline?height=500&amp;width=700&amp;inlineId=frm_editable_html" class="thickbox button"><?php _e('Customize Form HTML', 'formidable') ?> <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('Advanced Users: Customize your form HTML here', 'formidable') ?>" /></a>
15
  </span>
16
  <input type="submit" name="Submit" value="<?php _e('Update', 'formidable') ?>" class="button-primary" />
17
  <?php _e('or', 'formidable') ?>
@@ -25,7 +28,7 @@
25
  <?php require(FRM_VIEWS_PATH.'/frm-forms/form.php'); ?>
26
 
27
  <p>
28
- <span class="alignright"><a title="<?php _e('Customize Form HTML', 'formidable') ?>" href="#TB_inline?height=500&amp;width=700&amp;inlineId=frm_editable_html" class="thickbox button"><?php _e('Customize Form HTML', 'formidable') ?> <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('Advanced Users: Customize your form HTML here', 'formidable') ?>" /></a></span>
29
  <input type="submit" name="Submit" value="<?php _e('Update', 'formidable') ?>" class="button-primary" />
30
  <?php _e('or', 'formidable') ?>
31
  <a class="button-secondary cancel" href="?page=<?php echo FRM_PLUGIN_NAME ?>"><?php _e('Cancel', 'formidable') ?></a>
1
  <div class="wrap">
2
  <div class="frmicon icon32"><br/></div>
3
+ <h2><?php _e('Edit Form', 'formidable') ?></h2>
4
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
5
  <?php require(FRM_VIEWS_PATH.'/shared/nav.php'); ?>
6
  <div id="poststuff" class="metabox-holder has-right-sidebar">
7
+ <?php
8
+ $show_preview = true;
9
+ require('add_field_links.php');
10
+ ?>
11
  <div id="post-body">
12
  <div id="post-body-content">
13
  <div class="frm_form_builder<?php echo ($values['custom_style']) ? ' with_frm_style' : ''; ?>">
14
+ <form method="post" >
15
  <p>
16
  <span class="alignright">
17
+ <a title="<?php _e('Customize Form HTML', 'formidable') ?>" href="<?php echo admin_url('admin.php') ?>#TB_inline?height=500&amp;width=700&amp;inlineId=frm_editable_html" class="thickbox button"><?php _e('Customize Form HTML', 'formidable') ?> <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('Advanced Users: Customize your form HTML here', 'formidable') ?>" /></a>
18
  </span>
19
  <input type="submit" name="Submit" value="<?php _e('Update', 'formidable') ?>" class="button-primary" />
20
  <?php _e('or', 'formidable') ?>
28
  <?php require(FRM_VIEWS_PATH.'/frm-forms/form.php'); ?>
29
 
30
  <p>
31
+ <span class="alignright"><a title="<?php _e('Customize Form HTML', 'formidable') ?>" href="<?php echo admin_url('admin.php') ?>#TB_inline?height=500&amp;width=700&amp;inlineId=frm_editable_html" class="thickbox button"><?php _e('Customize Form HTML', 'formidable') ?> <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('Advanced Users: Customize your form HTML here', 'formidable') ?>" /></a></span>
32
  <input type="submit" name="Submit" value="<?php _e('Update', 'formidable') ?>" class="button-primary" />
33
  <?php _e('or', 'formidable') ?>
34
  <a class="button-secondary cancel" href="?page=<?php echo FRM_PLUGIN_NAME ?>"><?php _e('Cancel', 'formidable') ?></a>
classes/views/frm-forms/footer.php CHANGED
@@ -22,7 +22,7 @@ $(".frm_ipe_field_label").editInPlace({
22
 
23
  $(".frm_ipe_field_desc").editInPlace({
24
  url:"<?php echo $frm_ajax_url ?>",params:"action=frm_field_desc_in_place_edit",
25
- default_text:"(Click here to add optional description or instructions)",
26
  field_type:'textarea',textarea_rows:3
27
  });
28
 
22
 
23
  $(".frm_ipe_field_desc").editInPlace({
24
  url:"<?php echo $frm_ajax_url ?>",params:"action=frm_field_desc_in_place_edit",
25
+ default_text:"(<?php _e('Click here to add optional description or instructions', 'formidable') ?>)",
26
  field_type:'textarea',textarea_rows:3
27
  });
28
 
classes/views/frm-forms/form.php CHANGED
@@ -7,11 +7,13 @@
7
  </div>
8
 
9
  <ul id="new_fields">
10
- <?php
11
  if (isset($values['fields']) && !empty($values['fields'])){
12
  foreach($values['fields'] as $field){
13
  $field_name = "item_meta[". $field['id'] ."]";
14
  require('add_field.php');
 
 
15
  }
16
  } ?>
17
  </ul>
@@ -28,7 +30,7 @@ if (isset($values['fields']) && !empty($values['fields'])){
28
  <table class="form-table">
29
  <tr>
30
  <td width="200px"><label><?php _e('Form ShortCodes', 'formidable') ?>:</label> <a href="http://formidablepro.com/publish-your-forms/" target="_blank"><img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('Key and id are generally synonymous. For more information on using this shortcode, click now.', 'formidable') ?>" /></a></td>
31
- <td>[formidable id=<?php echo $id; ?> title=true description=true] or [formidable key=<?php echo $values['form_key']; ?>]</td>
32
  </tr>
33
 
34
  <tr>
@@ -58,8 +60,8 @@ if (isset($values['fields']) && !empty($values['fields'])){
58
  </tr>
59
 
60
  <tr class="success_action_message_box success_action_box"><td valign="top"><label><?php _e('Confirmation Message', 'formidable') ?>:</label></td>
61
- <td><?php if($frmpro_is_installed){ FrmProFieldsHelper::get_shortcode_select($values['id'], 'success_msg'); echo '<br/>'; } ?>
62
- <textarea id="success_msg" name="options[success_msg]" cols="50" rows="4" class="frm_long_input"><?php echo $values['success_msg']; ?></textarea> <br/>
63
  <input type="checkbox" name="options[show_form]" id="show_form" value="1" <?php checked($values['show_form'], 1) ?>> <label for="show_form"><?php _e('Show the form with the success message.', 'formidable')?></label>
64
  <td>
65
  </tr>
@@ -91,12 +93,14 @@ if (isset($values['fields']) && !empty($values['fields'])){
91
  </div>
92
  </div><!-- /theme group content -->
93
  </div><!-- /theme group -->
 
 
94
  </div>
95
 
96
  </div>
97
- <div id="frm_editable_html" style="display:none;">
98
- <div class="alignleft" style="width:500px">
99
- <p><label class="frm_pos_top"><?php _e('Before Fields', 'formidable') ?></label>
100
  <textarea name="options[before_html]" rows="4" class="frm_long_input"><?php echo $values['before_html']?></textarea></p>
101
 
102
  <div id="add_html_fields">
@@ -104,14 +108,15 @@ if (isset($values['fields']) && !empty($values['fields'])){
104
  if (isset($values['fields'])){
105
  foreach($values['fields'] as $field){
106
  if (apply_filters('frm_show_custom_html', true, $field['type'])){ ?>
107
- <p><label class="frm_pos_top"><?php echo $field['name'] ?></label>
108
- <textarea name="field_options[custom_html_<?php echo $field['id'] ?>]" rows="7" class="frm_long_input"><?php echo $field['custom_html'] ?></textarea></p>
109
  <?php }
 
110
  }
111
  } ?>
112
  </div>
113
 
114
- <p><label class="frm_pos_top"><?php _e('After Fields', 'formidable') ?></label>
115
  <textarea name="options[after_html]" rows="3" style="width:100%"><?php echo $values['after_html']?></textarea></p>
116
  </div>
117
 
@@ -131,8 +136,8 @@ if (isset($values['fields']) && !empty($values['fields'])){
131
  <li><b><?php _e('Label Position', 'formidable') ?>:</b> <pre>[label_position]</pre></li>
132
  <li><b><?php _e('Required label', 'formidable') ?>:</b> <pre>[required_label]</pre></li>
133
  <li><b><?php _e('Input Field', 'formidable') ?>:</b> <pre>[input]</pre><br/>
134
- <?php _e('Show a single radio or checkbox option by replacing "1" with the order of the option','formidable') ?>: <pre>[input opt=1]</pre><br/>
135
- <?php _e('Hide the option labels','formidable') ?>: <pre>[input label=0]</pre>
136
  </li>
137
  <li><b><?php _e('Add class name if field is required', 'formidable') ?>:</b> <pre>[required_class]</pre></li>
138
  <li><b><?php _e('Add class name if field has an error on form submit', 'formidable') ?>:</b> <pre>[error_class]</pre></li>
7
  </div>
8
 
9
  <ul id="new_fields">
10
+ <?php
11
  if (isset($values['fields']) && !empty($values['fields'])){
12
  foreach($values['fields'] as $field){
13
  $field_name = "item_meta[". $field['id'] ."]";
14
  require('add_field.php');
15
+ unset($field);
16
+ unset($field_name);
17
  }
18
  } ?>
19
  </ul>
30
  <table class="form-table">
31
  <tr>
32
  <td width="200px"><label><?php _e('Form ShortCodes', 'formidable') ?>:</label> <a href="http://formidablepro.com/publish-your-forms/" target="_blank"><img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('Key and id are generally synonymous. For more information on using this shortcode, click now.', 'formidable') ?>" /></a></td>
33
+ <td>[formidable id=<?php echo $id; ?> title=true description=true] or [formidable key=<?php echo $values['form_key']; ?>]</td>
34
  </tr>
35
 
36
  <tr>
60
  </tr>
61
 
62
  <tr class="success_action_message_box success_action_box"><td valign="top"><label><?php _e('Confirmation Message', 'formidable') ?>:</label></td>
63
+ <td><?php if($frmpro_is_installed and isset($values['id'])){ FrmProFieldsHelper::get_shortcode_select($values['id'], 'success_msg'); echo '<br/>'; } ?>
64
+ <textarea id="success_msg" name="options[success_msg]" cols="50" rows="4" class="frm_long_input"><?php echo FrmAppHelper::esc_textarea($values['success_msg']); ?></textarea> <br/>
65
  <input type="checkbox" name="options[show_form]" id="show_form" value="1" <?php checked($values['show_form'], 1) ?>> <label for="show_form"><?php _e('Show the form with the success message.', 'formidable')?></label>
66
  <td>
67
  </tr>
93
  </div>
94
  </div><!-- /theme group content -->
95
  </div><!-- /theme group -->
96
+
97
+ <?php do_action('frm_add_form_option_section', $values); ?>
98
  </div>
99
 
100
  </div>
101
+ <div id="frm_editable_html" style="display:none;" title="<?php _e('Customize Form HTML', 'formidable') ?>">
102
+ <div class="alignleft frm_top_container" style="width:500px">
103
+ <p><label class="frm_primary_label"><?php _e('Before Fields', 'formidable') ?></label>
104
  <textarea name="options[before_html]" rows="4" class="frm_long_input"><?php echo $values['before_html']?></textarea></p>
105
 
106
  <div id="add_html_fields">
108
  if (isset($values['fields'])){
109
  foreach($values['fields'] as $field){
110
  if (apply_filters('frm_show_custom_html', true, $field['type'])){ ?>
111
+ <p><label class="frm_primary_label"><?php echo $field['name'] ?></label>
112
+ <textarea name="field_options[custom_html_<?php echo $field['id'] ?>]" rows="7" class="frm_long_input"><?php echo FrmAppHelper::esc_textarea($field['custom_html']) ?></textarea></p>
113
  <?php }
114
+ unset($field);
115
  }
116
  } ?>
117
  </div>
118
 
119
+ <p><label class="frm_primary_label"><?php _e('After Fields', 'formidable') ?></label>
120
  <textarea name="options[after_html]" rows="3" style="width:100%"><?php echo $values['after_html']?></textarea></p>
121
  </div>
122
 
136
  <li><b><?php _e('Label Position', 'formidable') ?>:</b> <pre>[label_position]</pre></li>
137
  <li><b><?php _e('Required label', 'formidable') ?>:</b> <pre>[required_label]</pre></li>
138
  <li><b><?php _e('Input Field', 'formidable') ?>:</b> <pre>[input]</pre><br/>
139
+ <?php _e('Show a single radio or checkbox option by replacing "1" with the order of the option', 'formidable') ?>: <pre>[input opt=1]</pre><br/>
140
+ <?php _e('Hide the option labels', 'formidable') ?>: <pre>[input label=0]</pre>
141
  </li>
142
  <li><b><?php _e('Add class name if field is required', 'formidable') ?>:</b> <pre>[required_class]</pre></li>
143
  <li><b><?php _e('Add class name if field has an error on form submit', 'formidable') ?>:</b> <pre>[error_class]</pre></li>
classes/views/frm-forms/insert_form_popup.php CHANGED
@@ -44,7 +44,7 @@
44
 
45
  <?php if(isset($displays) and !empty($displays)){ ?>
46
  <div style="border-bottom:1px solid #DFDFDF;display:block;margin:20px 0;"></div>
47
- <h3><?php _e("Select custom display settings to insert", "formidable"); ?></h3>
48
 
49
  <p>
50
  <select name="frm_add_display_id" id="frm_add_display_id" class="frm-dropdown">
44
 
45
  <?php if(isset($displays) and !empty($displays)){ ?>
46
  <div style="border-bottom:1px solid #DFDFDF;display:block;margin:20px 0;"></div>
47
+ <h3><?php _e('Select custom display to insert', 'formidable'); ?></h3>
48
 
49
  <p>
50
  <select name="frm_add_display_id" id="frm_add_display_id" class="frm-dropdown">
classes/views/frm-forms/list.php CHANGED
@@ -1,6 +1,10 @@
1
  <div class="wrap">
2
  <div class="frmicon icon32"><br/></div>
3
- <h2><?php echo FRM_PLUGIN_TITLE ?>: <?php echo ($params['template'])? __('Templates', 'formidable') : __('Forms', 'formidable'); ?></h2>
 
 
 
 
4
 
5
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
6
 
@@ -9,33 +13,33 @@
9
 
10
  <?php if ($params['template']) require('default-templates.php'); ?>
11
 
12
- <form class="form-fields item-list-form" name="item_list_form" id="posts-filter" method="post" action="">
13
  <input type="hidden" name="action" value="list-form"/>
14
  <input type="hidden" name="template" value="<?php echo $params['template'] ?>" />
15
  <?php $footer = false; require(FRM_VIEWS_PATH.'/shared/item-table-nav.php'); ?>
16
- <table class="widefat post fixed" cellspacing="0">
17
  <thead>
18
  <tr>
19
  <th class="manage-column check-column" scope="col"> <?php do_action('frm_column_header'); ?> </th>
20
  <?php if ($params['template']){ ?>
21
  <th class="manage-column" width="">
22
- <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>-templates&sort=name<?php echo (($sort_str == 'name' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Name', 'formidable') ?><?php echo (($sort_str == 'name')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
23
  </th>
24
  <th class="manage-column">
25
- <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>-templates&sort=description<?php echo (($sort_str == 'description' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Description', 'formidable') ?><?php echo (($sort_str == 'description')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
26
  </th>
27
  <?php }else{?>
28
  <th class="manage-column" width="50px">
29
- <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&sort=id<?php echo (($sort_str == 'id' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('ID', 'formidable') ?><?php echo (($sort_str == 'id')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
30
  </th>
31
  <th class="manage-column" width="">
32
- <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&sort=name<?php echo (($sort_str == 'name' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Name', 'formidable') ?><?php echo (($sort_str == 'name')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
33
  </th>
34
  <th class="manage-column">
35
- <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&sort=description<?php echo (($sort_str == 'description' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Description', 'formidable') ?><?php echo (($sort_str == 'description')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
36
  </th>
37
  <th class="manage-column" width="70px">
38
- <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&sort=form_key<?php echo (($sort_str == 'form_key' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Key', 'formidable') ?><?php echo (($sort_str == 'form_key')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
39
  </th>
40
  <th class="manage-column" width="60px"><?php _e('Entries', 'formidable') ?></th>
41
  <th class="manage-column" width="115px"><?php _e('Direct Link', 'formidable') ?></th>
@@ -50,17 +54,19 @@
50
  </tr>
51
  <?php
52
  }else{
 
53
  foreach($forms as $form){
 
54
  ?>
55
- <tr style="min-height: 75px; height: 75px;" class="iedit">
56
  <th class="check-column" scope="row"><?php do_action('frm_first_col', $form->id); ?></th>
57
  <?php if ($params['template']){ ?>
58
  <td class="post-title">
59
  <?php if(current_user_can('frm_edit_forms')){ ?>
60
  <a class="row-title" href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=edit&amp;id=<?php echo $form->id; ?>" title="<?php _e('Edit', 'formidable') ?> <?php echo stripslashes($form->name); ?>"><?php echo stripslashes($form->name); ?></a>
61
- <?php }else{ ?>
62
- <?php echo stripslashes($form->name); ?>
63
- <?php }?>
64
  <br/>
65
  <div class="row-actions">
66
  <?php if(current_user_can('frm_edit_forms')){ ?>
@@ -87,21 +93,26 @@
87
  <?php if(current_user_can('frm_edit_forms')){ ?>
88
  <span class="edit"><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=edit&amp;id=<?php echo $form->id; ?>" title="<?php _e('Edit', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?>"><?php _e('Edit', 'formidable') ?></a></span>
89
  <?php } ?>
90
- <?php if($frmpro_is_installed){ ?>
91
- <?php if(current_user_can('frm_create_entries')){ ?>
92
  | <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>-entries&amp;action=new&amp;form=<?php echo $form->id; ?>" title="<?php _e('New', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?> <?php _e('Entry', 'formidable') ?>"><?php _e('New Entry', 'formidable') ?></a></span>
93
- <?php } ?>
94
- <?php if(current_user_can('frm_view_entries')){ ?>
 
95
  | <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>-entries&amp;form=<?php echo $form->id; ?>" title="<?php echo htmlentities(stripslashes($form->name)); ?> Entries"><?php _e('Entries', 'formidable') ?></a></span>
96
  <?php } ?>
97
  | <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>-reports&amp;form=<?php echo $form->id; ?>" title="<?php echo htmlentities(stripslashes($form->name)); ?> Reports"><?php _e('Reports', 'formidable') ?></a></span>
98
- <?php } ?>
99
- <?php if(current_user_can('frm_edit_forms')){ ?>
 
100
  | <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=duplicate&amp;id=<?php echo $form->id; ?>" title="<?php _e('Copy', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?>"><?php _e('Duplicate', 'formidable') ?></a></span>
101
  | <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=duplicate&amp;id=<?php echo $form->id; ?>&amp;template=1" title="<?php _e('Create', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?> <?php _e('Template', 'formidable') ?>"><?php _e('Create Template', 'formidable') ?></a></span>
 
102
  | <span><a href="<?php echo FRM_SCRIPT_URL ?>&amp;controller=forms&amp;action=export&amp;id=<?php echo $form->id; ?>" title="<?php _e('Export', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?> <?php _e('Template', 'formidable') ?>"><?php _e('Export Template', 'formidable') ?></a></span>
103
- <?php } ?>
104
- <?php if(current_user_can('frm_delete_forms')){ ?>
 
 
105
  | <span class="trash"><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=destroy&amp;id=<?php echo $form->id; ?>" onclick="return confirm('<?php printf(__('Are you sure you want to delete your %1$s Form?', 'formidable'), htmlentities(stripslashes($form->name))) ?>');" title="<?php _e('Delete', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?>"><?php _e('Delete', 'formidable') ?></a></span>
106
  <?php } ?>
107
  </div>
1
  <div class="wrap">
2
  <div class="frmicon icon32"><br/></div>
3
+ <h2><?php echo ($params['template'])? __('Form Templates', 'formidable') : __('Forms', 'formidable');
4
+ if(!$params['template'] and current_user_can('frm_edit_forms')){ ?>
5
+ <a href="?page=<?php echo FRM_PLUGIN_NAME ?>-new" class="button add-new-h2"><?php _e('Add New', 'formidable'); ?></a>
6
+ <?php } ?>
7
+ </h2>
8
 
9
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
10
 
13
 
14
  <?php if ($params['template']) require('default-templates.php'); ?>
15
 
16
+ <form class="form-fields item-list-form" name="item_list_form" id="posts-filter" method="post" >
17
  <input type="hidden" name="action" value="list-form"/>
18
  <input type="hidden" name="template" value="<?php echo $params['template'] ?>" />
19
  <?php $footer = false; require(FRM_VIEWS_PATH.'/shared/item-table-nav.php'); ?>
20
+ <table class="widefat fixed" cellspacing="0">
21
  <thead>
22
  <tr>
23
  <th class="manage-column check-column" scope="col"> <?php do_action('frm_column_header'); ?> </th>
24
  <?php if ($params['template']){ ?>
25
  <th class="manage-column" width="">
26
+ <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>-templates&amp;sort=name&amp;sdir=<?php echo (($sort_str == 'name' and $sdir_str == 'desc')?'asc':'desc'); ?>"><?php _e('Name', 'formidable') ?><?php echo (($sort_str == 'name')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
27
  </th>
28
  <th class="manage-column">
29
+ <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>-templates&amp;sort=description&amp;sdir=<?php echo (($sort_str == 'description' and $sdir_str == 'desc')?'asc':'desc'); ?>"><?php _e('Description', 'formidable') ?><?php echo (($sort_str == 'description')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
30
  </th>
31
  <?php }else{?>
32
  <th class="manage-column" width="50px">
33
+ <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;sort=id&amp;sdir=<?php echo (($sort_str == 'id' and $sdir_str == 'desc')?'asc':'desc'); ?>"><?php _e('ID', 'formidable') ?><?php echo (($sort_str == 'id')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
34
  </th>
35
  <th class="manage-column" width="">
36
+ <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;sort=name&amp;sdir=<?php echo (($sort_str == 'name' and $sdir_str == 'desc')?'asc':'desc'); ?>"><?php _e('Name', 'formidable') ?><?php echo (($sort_str == 'name')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
37
  </th>
38
  <th class="manage-column">
39
+ <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;sort=description&amp;sdir=<?php echo (($sort_str == 'description' and $sdir_str == 'desc')?'asc':'desc'); ?>"><?php _e('Description', 'formidable') ?><?php echo (($sort_str == 'description')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
40
  </th>
41
  <th class="manage-column" width="70px">
42
+ <a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;sort=form_key&amp;sdir=<?php echo (($sort_str == 'form_key' and $sdir_str == 'desc')?'asc':'desc'); ?>"><?php _e('Key', 'formidable') ?><?php echo (($sort_str == 'form_key')?' &nbsp; <img src="'.FRM_URL.'/images/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
43
  </th>
44
  <th class="manage-column" width="60px"><?php _e('Entries', 'formidable') ?></th>
45
  <th class="manage-column" width="115px"><?php _e('Direct Link', 'formidable') ?></th>
54
  </tr>
55
  <?php
56
  }else{
57
+ $alternate = '';
58
  foreach($forms as $form){
59
+ $alternate = (empty($alternate)) ? ' alternate' : '';
60
  ?>
61
+ <tr class="iedit<?php echo $alternate ?>" >
62
  <th class="check-column" scope="row"><?php do_action('frm_first_col', $form->id); ?></th>
63
  <?php if ($params['template']){ ?>
64
  <td class="post-title">
65
  <?php if(current_user_can('frm_edit_forms')){ ?>
66
  <a class="row-title" href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=edit&amp;id=<?php echo $form->id; ?>" title="<?php _e('Edit', 'formidable') ?> <?php echo stripslashes($form->name); ?>"><?php echo stripslashes($form->name); ?></a>
67
+ <?php }else{
68
+ echo stripslashes($form->name);
69
+ } ?>
70
  <br/>
71
  <div class="row-actions">
72
  <?php if(current_user_can('frm_edit_forms')){ ?>
93
  <?php if(current_user_can('frm_edit_forms')){ ?>
94
  <span class="edit"><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=edit&amp;id=<?php echo $form->id; ?>" title="<?php _e('Edit', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?>"><?php _e('Edit', 'formidable') ?></a></span>
95
  <?php } ?>
96
+ <?php if($frmpro_is_installed){
97
+ if(current_user_can('frm_create_entries')){ ?>
98
  | <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>-entries&amp;action=new&amp;form=<?php echo $form->id; ?>" title="<?php _e('New', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?> <?php _e('Entry', 'formidable') ?>"><?php _e('New Entry', 'formidable') ?></a></span>
99
+ <?php }
100
+
101
+ if(current_user_can('frm_view_entries')){ ?>
102
  | <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>-entries&amp;form=<?php echo $form->id; ?>" title="<?php echo htmlentities(stripslashes($form->name)); ?> Entries"><?php _e('Entries', 'formidable') ?></a></span>
103
  <?php } ?>
104
  | <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>-reports&amp;form=<?php echo $form->id; ?>" title="<?php echo htmlentities(stripslashes($form->name)); ?> Reports"><?php _e('Reports', 'formidable') ?></a></span>
105
+ <?php }
106
+
107
+ if(current_user_can('frm_edit_forms')){ ?>
108
  | <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=duplicate&amp;id=<?php echo $form->id; ?>" title="<?php _e('Copy', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?>"><?php _e('Duplicate', 'formidable') ?></a></span>
109
  | <span><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=duplicate&amp;id=<?php echo $form->id; ?>&amp;template=1" title="<?php _e('Create', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?> <?php _e('Template', 'formidable') ?>"><?php _e('Create Template', 'formidable') ?></a></span>
110
+ <?php if($frmpro_is_installed){ ?>
111
  | <span><a href="<?php echo FRM_SCRIPT_URL ?>&amp;controller=forms&amp;action=export&amp;id=<?php echo $form->id; ?>" title="<?php _e('Export', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?> <?php _e('Template', 'formidable') ?>"><?php _e('Export Template', 'formidable') ?></a></span>
112
+ <?php }
113
+ }
114
+
115
+ if(current_user_can('frm_delete_forms')){ ?>
116
  | <span class="trash"><a href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=destroy&amp;id=<?php echo $form->id; ?>" onclick="return confirm('<?php printf(__('Are you sure you want to delete your %1$s Form?', 'formidable'), htmlentities(stripslashes($form->name))) ?>');" title="<?php _e('Delete', 'formidable') ?> <?php echo htmlentities(stripslashes($form->name)) ?>"><?php _e('Delete', 'formidable') ?></a></span>
117
  <?php } ?>
118
  </div>
classes/views/frm-forms/new-field-js.php CHANGED
@@ -1,5 +1,6 @@
1
- <script>
2
  jQuery(document).ready(function($){
 
3
  jQuery('#frm_field_id_<?php echo $field['id']; ?>.ui-state-default').click(function(){
4
  $('.frm-show-click').hide(); $(this).children(".frm-show-click").show();
5
  $('.frm-show-hover').hide(); $(this).children(".frm-show-hover").show();
@@ -7,27 +8,27 @@ jQuery(document).ready(function($){
7
  });
8
 
9
  $('#frm_form_editor_container #frm_field_id_<?php echo $field['id']; ?> .theme-group-header').addClass('corner-all').spinDown();
 
10
 
11
- jQuery('#frm_field_id_<?php echo $field['id']; ?> .frm_single_option').hover(
12
- function(){jQuery(this).children(".frm_single_show_hover").show(); jQuery(this).children(".frm_spacer").hide();},
13
- function(){jQuery(this).children(".frm_single_show_hover").hide(); jQuery(this).children(".frm_spacer").show();}
14
  );
15
 
16
  jQuery("#frm_field_id_<?php echo $field['id']; ?> .frm_ipe_field_option").editInPlace({
17
- url:"<?php bloginfo( 'wpurl' ); ?>/wp-admin/admin-ajax.php",
18
  params:"action=frm_field_option_ipe", default_text:"<?php _e('(Blank)', 'formidable') ?>"
19
  });
20
 
21
  jQuery("#frm_field_id_<?php echo $field['id']; ?> .frm_ipe_field_label").editInPlace({
22
- url:"<?php bloginfo( 'wpurl' ); ?>/wp-admin/admin-ajax.php",
23
  params:"action=frm_field_name_in_place_edit", value_required:"true"
24
  });
25
 
26
  jQuery("#frm_field_id_<?php echo $field['id']; ?> .frm_ipe_field_desc").editInPlace({
27
- url:"<?php bloginfo( 'wpurl' ); ?>/wp-admin/admin-ajax.php",
28
- params:"action=frm_field_desc_in_place_edit",
29
- default_text:"<?php _e('(Click here to add optional description or instructions)', 'formidable') ?>",
30
- field_type:'textarea', textarea_rows:1
31
  });
32
  });
33
  </script>
1
+ <script type="text/javascript">
2
  jQuery(document).ready(function($){
3
+ <?php if(!isset($partial_js) or !$partial_js){ ?>
4
  jQuery('#frm_field_id_<?php echo $field['id']; ?>.ui-state-default').click(function(){
5
  $('.frm-show-click').hide(); $(this).children(".frm-show-click").show();
6
  $('.frm-show-hover').hide(); $(this).children(".frm-show-hover").show();
8
  });
9
 
10
  $('#frm_form_editor_container #frm_field_id_<?php echo $field['id']; ?> .theme-group-header').addClass('corner-all').spinDown();
11
+ <?php } ?>
12
 
13
+ $('#frm_field_id_<?php echo $field['id']; ?> .frm_single_option').hover(
14
+ function(){jQuery(this).children(".frm_single_show_hover").show(); jQuery(this).children(".frm_single_visible_hover").css('visibility','visible');},
15
+ function(){jQuery(this).children(".frm_single_show_hover").hide(); jQuery(this).children(".frm_single_visible_hover").css('visibility','hidden');}
16
  );
17
 
18
  jQuery("#frm_field_id_<?php echo $field['id']; ?> .frm_ipe_field_option").editInPlace({
19
+ url:"<?php echo $frm_ajax_url ?>",
20
  params:"action=frm_field_option_ipe", default_text:"<?php _e('(Blank)', 'formidable') ?>"
21
  });
22
 
23
  jQuery("#frm_field_id_<?php echo $field['id']; ?> .frm_ipe_field_label").editInPlace({
24
+ url:"<?php echo $frm_ajax_url ?>",
25
  params:"action=frm_field_name_in_place_edit", value_required:"true"
26
  });
27
 
28
  jQuery("#frm_field_id_<?php echo $field['id']; ?> .frm_ipe_field_desc").editInPlace({
29
+ url:"<?php echo $frm_ajax_url ?>",params:"action=frm_field_desc_in_place_edit",
30
+ field_type:'textarea',textarea_rows:3,
31
+ default_text:"(<?php _e('Click here to add optional description or instructions', 'formidable') ?>)"
 
32
  });
33
  });
34
  </script>
classes/views/frm-forms/new-option-js.php CHANGED
@@ -1,15 +1,14 @@
1
- <script>
2
  jQuery(document).ready(function(){
3
- jQuery('#frm_delete_field_<?php echo $field['id']; ?>-<?php echo $opt_key ?>_container .frm_single_show_hover').hide();
4
- jQuery('#frm_delete_field_<?php echo $field['id']; ?>-<?php echo $opt_key ?>_container.frm_single_option').hover(
5
- function(){jQuery(this).children(".frm_single_show_hover").show(); jQuery(this).children(".frm_spacer").hide();},
6
- function(){jQuery(this).children(".frm_single_show_hover").hide(); jQuery(this).children(".frm_spacer").show();}
7
- );
8
-
9
- jQuery("#frm_delete_field_<?php echo $field['id']; ?>-<?php echo $opt_key ?>_container .frm_ipe_field_option").editInPlace({
10
- url:"<?php echo $frm_ajax_url ?>",
11
- params:"action=frm_field_option_ipe",
12
- default_text:"<?php _e('(Blank)', 'formidable') ?>"
13
- });
14
  });
15
  </script>
1
+ <script type="text/javascript">
2
  jQuery(document).ready(function(){
3
+ jQuery('#frm_delete_field_<?php echo $field['id']; ?>-<?php echo $opt_key ?>_container .frm_single_show_hover').hide();
4
+ jQuery('#frm_delete_field_<?php echo $field['id']; ?>-<?php echo $opt_key ?>_container .frm_single_visible_hover').attr('visibility','hidden');
5
+
6
+ jQuery('#frm_delete_field_<?php echo $field['id']; ?>-<?php echo $opt_key ?>_container.frm_single_option').hover(
7
+ function(){jQuery(this).children(".frm_single_show_hover").show(); jQuery(this).children(".frm_single_visible_hover").css('visibility','visible');},
8
+ function(){jQuery(this).children(".frm_single_show_hover").hide(); jQuery(this).children(".frm_single_visible_hover").css('visibility','hidden');}
9
+ );
10
+ jQuery("#frm_delete_field_<?php echo $field['id']; ?>-<?php echo $opt_key ?>_container .frm_ipe_field_option").editInPlace({
11
+ url:"<?php echo $frm_ajax_url ?>",params:"action=frm_field_option_ipe",default_text:"<?php _e('(Blank)', 'formidable') ?>"
12
+ });
 
13
  });
14
  </script>
classes/views/frm-forms/new-selection.php CHANGED
@@ -1,14 +1,13 @@
1
  <div class="wrap">
2
  <div class="frmicon icon32"><br/></div>
3
-
4
- <h2><?php echo FRM_PLUGIN_TITLE ?>: <?php _e('Create Form', 'formidable') ?></h2>
5
 
6
  <?php require(FRM_VIEWS_PATH.'/shared/nav.php'); ?>
7
  <br/>
8
  <p>
9
  <?php FrmFormsHelper::get_template_dropdown($all_templates); ?>
10
  <?php _e('or', 'formidable') ?>
11
- <a href="<?php echo add_query_arg('action','new') ?>"><?php _e('Create New Form', 'formidable') ?></a>
12
  </p>
13
 
14
  </div>
1
  <div class="wrap">
2
  <div class="frmicon icon32"><br/></div>
3
+ <h2><?php _e('Add New Form', 'formidable') ?></h2>
 
4
 
5
  <?php require(FRM_VIEWS_PATH.'/shared/nav.php'); ?>
6
  <br/>
7
  <p>
8
  <?php FrmFormsHelper::get_template_dropdown($all_templates); ?>
9
  <?php _e('or', 'formidable') ?>
10
+ <a href="<?php echo add_query_arg('action', 'new') ?>" class="button"><?php _e('Add New Form', 'formidable') ?></a>
11
  </p>
12
 
13
  </div>
classes/views/frm-forms/new.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="wrap">
2
  <div class="frmicon icon32"><br/></div>
3
- <h2><?php echo FRM_PLUGIN_TITLE ?>: <?php _e('Create Form', 'formidable') ?></h2>
4
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
5
  <?php require(FRM_VIEWS_PATH.'/shared/nav.php'); ?>
6
  <div id="poststuff" class="metabox-holder has-right-sidebar">
@@ -8,7 +8,13 @@
8
  <div id="post-body">
9
  <div id="post-body-content">
10
  <div class="frm_form_builder<?php echo ($values['custom_style']) ? ' with_frm_style' : ''; ?>">
11
- <form method="post" action="">
 
 
 
 
 
 
12
  <input type="hidden" name="action" value="create" />
13
  <input type="hidden" name="id" value="<?php echo $id; ?>" />
14
  <?php wp_nonce_field('update-options'); ?>
1
  <div class="wrap">
2
  <div class="frmicon icon32"><br/></div>
3
+ <h2><?php _e('Add New Form', 'formidable') ?></h2>
4
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
5
  <?php require(FRM_VIEWS_PATH.'/shared/nav.php'); ?>
6
  <div id="poststuff" class="metabox-holder has-right-sidebar">
8
  <div id="post-body">
9
  <div id="post-body-content">
10
  <div class="frm_form_builder<?php echo ($values['custom_style']) ? ' with_frm_style' : ''; ?>">
11
+ <form method="post" >
12
+ <p>
13
+ <input type="submit" name="Submit" value="<?php _e('Create', 'formidable') ?>" class="button-primary" />
14
+ <?php _e('or', 'formidable') ?>
15
+ <a class="button-secondary cancel" href="?page=<?php echo FRM_PLUGIN_NAME; ?>&amp;action=destroy&amp;id=<?php echo $id; ?>"><?php _e('Cancel', 'formidable') ?></a>
16
+ </p>
17
+
18
  <input type="hidden" name="action" value="create" />
19
  <input type="hidden" name="id" value="<?php echo $id; ?>" />
20
  <?php wp_nonce_field('update-options'); ?>
classes/views/frm-settings/form.php CHANGED
@@ -1,18 +1,29 @@
1
  <div class="wrap">
2
  <div id="icon-options-general" class="icon32"><br/></div>
3
- <h2><?php echo FRM_PLUGIN_TITLE ?>: <?php _e('Settings', 'formidable'); ?></h2>
4
 
5
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
6
 
7
  <?php require(FRM_VIEWS_PATH.'/shared/nav.php'); ?>
8
 
9
- <form name="frm_settings_form" method="post" action="">
10
  <input type="hidden" name="action" value="process-form" />
11
  <?php wp_nonce_field('update-options'); ?>
12
- <p class="submit" style="padding-bottom:0;">
13
- <input class="button-primary" type="submit" name="Submit" value="<?php _e('Update Options', 'formidable') ?>" />
14
- </p>
15
- <table class="form-table">
 
 
 
 
 
 
 
 
 
 
 
16
  <tr class="form-field">
17
  <td valign="top" width="200px"><?php _e('Preview Page', 'formidable'); ?>: </td>
18
  <td>
@@ -20,18 +31,29 @@
20
  </td>
21
  </tr>
22
 
 
 
 
 
 
 
 
 
23
  <tr class="form-field">
24
  <td valign="top"><?php _e('Stylesheets', 'formidable'); ?>: </td>
25
  <td>
26
 
27
  <p><?php _e('Load Formidable styling', 'formidable') ?>
28
  <select id="frm_load_style" name="frm_load_style">
29
- <option value="all" <?php selected($frm_settings->load_style, 'all') ?>><?php _e('on every page of your site', 'formidable') ?>
30
- <option value="dynamic" <?php selected($frm_settings->load_style, 'dynamic') ?>><?php _e('only on applicable pages', 'formidable') ?>
31
- <option value="none" <?php selected($frm_settings->load_style, 'none') ?>><?php _e('Don\'t use Formidable styling on any page', 'formidable') ?>
32
  </select>
33
  </p>
34
 
 
 
 
35
  <?php if($frmpro_is_installed){ ?>
36
  <p><input type="checkbox" value="1" id="frm_jquery_css" name="frm_jquery_css" <?php checked($frm_settings->jquery_css, 1) ?> />
37
  <?php _e('Include the jQuery CSS on ALL pages', 'formidable'); ?> <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help" title="<?php _e('The styling for the date field calendar. Some users may be using this css on pages other than just the ones that include a date field.', 'formidable') ?>" /></p>
@@ -53,7 +75,7 @@
53
  <td><?php _e('reCAPTCHA', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_big" title="<?php _e('reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking spam on your blog. reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a human. This verifies that they are not a spambot.', 'formidable') ?>" />
54
  </td>
55
  <td>
56
- reCAPTCHA requires an API key, consisting of a "public" and a "private" key. You can sign up for a <a href="http://recaptcha.net/api/getkey?domain=localhost.localdomain&amp;app=wordpress">free reCAPTCHA key</a>.
57
  <br/>
58
 
59
  <!-- reCAPTCHA public key -->
@@ -77,7 +99,7 @@
77
  <?php } ?>
78
  </select><br/>
79
 
80
- <label style="width:135px;float:left;text-align:right;padding-right:10px;"><?php _e('reCAPTCHA Language', 'formiable') ?>:</label>
81
  <select name="frm_re_lang" id="frm_re_lang">
82
  <?php foreach(array('en' => __('English', 'formidable'), 'nl' => __('Dutch', 'formidable'), 'fr' => __('French', 'formidable'), 'de' => __('German', 'formidable'), 'pt' => __('Portuguese', 'formidable'), 'ru' => __('Russian', 'formidable'), 'es' => __('Spanish', 'formidable'), 'tr' => __('Turkish', 'formidable')) as $lang => $lang_name){ ?>
83
  <option value="<?php echo $lang ?>" <?php selected($frm_settings->re_lang, $lang) ?>><?php echo $lang_name ?></option>
@@ -85,37 +107,36 @@
85
  </select>
86
  </td>
87
  </tr>
88
-
89
 
90
  <tr class="form-field">
91
  <td valign="top"><?php _e('Default Messages', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('You can override the success message and submit button settings on individual forms.', 'formidable') ?>" /></td>
92
- <td>
93
- <?php _e('Success Message', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('The default message seen after a form is submitted.', 'formidable') ?>" /><br/>
94
- <textarea id="frm_success_msg" name="frm_success_msg"><?php echo stripslashes($frm_settings->success_msg) ?></textarea>
95
  </td>
96
  </tr>
97
 
98
  <tr class="form-field">
99
  <td></td>
100
- <td>
101
- <?php _e('Failed or Duplicate Entry Message', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help" title="<?php _e('The message seen when a form is submitted and passes validation, but something goes wrong. You will likely never see this error.', 'formidable') ?>" /><br/>
102
- <textarea id="frm_failed_msg" name="frm_failed_msg"><?php echo stripslashes($frm_settings->failed_msg) ?></textarea>
103
  </td>
104
- </tr>
105
 
106
  <tr class="form-field">
107
  <td></td>
108
  <td>
109
- <?php _e('Incorrect Captcha Message', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help" title="<?php _e('The message seen when a captcha response is either incorrect or missing.', 'formidable') ?>" /><br/>
110
- <textarea id="frm_re_msg" name="frm_re_msg"><?php echo stripslashes($frm_settings->re_msg) ?></textarea>
111
  </td>
112
- </tr>
113
 
114
  <tr class="form-field">
115
  <td></td>
116
  <td>
117
  <?php _e('Login Message', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('The message seen when a user who is not logged-in views a form only logged-in users can submit.', 'formidable') ?>" /><br/>
118
- <textarea id="frm_login_msg" name="frm_login_msg"><?php echo stripslashes($frm_settings->login_msg) ?></textarea>
119
  </td>
120
  </tr>
121
 
@@ -123,7 +144,7 @@
123
  <td></td>
124
  <td>
125
  <?php _e('Default Submit Button', 'formidable'); ?>:<br/>
126
- <input type="text" value="<?php echo $frm_settings->submit_value ?>" id="frm_submit_value" name="frm_submit_value" />
127
  </td>
128
  </tr>
129
 
@@ -131,7 +152,9 @@
131
 
132
  </table>
133
 
134
- <p class="alignright frm_uninstall"><a href="<?php echo $frm_ajax_url ?>?action=frm_uninstall" onClick="return confirm('<?php _e('Are you sure you want to do this? Clicking OK will delete all forms, form data, and all other Formidable data. There is no Undo.', 'formidable') ?>')"><?php _e('Uninstall Formidable', 'formidable') ?></a></p>
 
 
135
  <p class="submit">
136
  <input class="button-primary" type="submit" name="Submit" value="<?php _e('Update Options', 'formidable') ?>" />
137
  </p>
1
  <div class="wrap">
2
  <div id="icon-options-general" class="icon32"><br/></div>
3
+ <h2><?php _e('Form Settings', 'formidable'); ?></h2>
4
 
5
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
6
 
7
  <?php require(FRM_VIEWS_PATH.'/shared/nav.php'); ?>
8
 
9
+ <form name="frm_settings_form" method="post">
10
  <input type="hidden" name="action" value="process-form" />
11
  <?php wp_nonce_field('update-options'); ?>
12
+
13
+ <div class="categorydiv" id="side-sortables">
14
+ <?php if($frmpro_is_installed){ ?>
15
+ <ul id="category-tabs" class="category-tabs">
16
+ <li class="tabs"><a onclick="frmSettingsTab(jQuery(this),'general');" style="cursor:pointer"><?php _e('General', 'formidable') ?></a></li>
17
+ <li class="hide-if-no-js"><a onclick="frmSettingsTab(jQuery(this),'styling');" style="cursor:pointer"><?php _e('Form Styling', 'formidable') ?></a></li>
18
+ </ul>
19
+ <div class="tabs-panel" style="border-bottom:none;border-left:none;border-right:none;height:auto;"></div>
20
+ <?php } ?>
21
+
22
+ <p class="submit" style="padding:0;">
23
+ <input class="button-primary" type="submit" name="Submit" value="<?php _e('Update Options', 'formidable') ?>" />
24
+ </p>
25
+
26
+ <table id="general_settings" class="form-table">
27
  <tr class="form-field">
28
  <td valign="top" width="200px"><?php _e('Preview Page', 'formidable'); ?>: </td>
29
  <td>
31
  </td>
32
  </tr>
33
 
34
+ <tr class="form-field">
35
+ <td valign="top" width="200px"><?php _e('Tracking', 'formidable'); ?>: </td>
36
+ <td>
37
+ <p><input type="checkbox" id="frm_track" name="frm_track" value="1" <?php checked($frm_settings->track, 1) ?>> <?php _e('Track referrer information and pages visited', 'formidable') ?>
38
+ </p>
39
+ </td>
40
+ </tr>
41
+
42
  <tr class="form-field">
43
  <td valign="top"><?php _e('Stylesheets', 'formidable'); ?>: </td>
44
  <td>
45
 
46
  <p><?php _e('Load Formidable styling', 'formidable') ?>
47
  <select id="frm_load_style" name="frm_load_style">
48
+ <option value="all" <?php selected($frm_settings->load_style, 'all') ?>><?php _e('on every page of your site', 'formidable') ?></option>
49
+ <option value="dynamic" <?php selected($frm_settings->load_style, 'dynamic') ?>><?php _e('only on applicable pages', 'formidable') ?></option>
50
+ <option value="none" <?php selected($frm_settings->load_style, 'none') ?>><?php _e('Don\'t use Formidable styling on any page', 'formidable') ?></option>
51
  </select>
52
  </p>
53
 
54
+ <p><input type="checkbox" id="frm_use_html" name="frm_use_html" value="1" <?php checked($frm_settings->use_html, 1) ?>> <?php _e('Use HTML5 in forms', 'formidable') ?>
55
+ </p>
56
+
57
  <?php if($frmpro_is_installed){ ?>
58
  <p><input type="checkbox" value="1" id="frm_jquery_css" name="frm_jquery_css" <?php checked($frm_settings->jquery_css, 1) ?> />
59
  <?php _e('Include the jQuery CSS on ALL pages', 'formidable'); ?> <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help" title="<?php _e('The styling for the date field calendar. Some users may be using this css on pages other than just the ones that include a date field.', 'formidable') ?>" /></p>
75
  <td><?php _e('reCAPTCHA', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_big" title="<?php _e('reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking spam on your blog. reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a human. This verifies that they are not a spambot.', 'formidable') ?>" />
76
  </td>
77
  <td>
78
+ reCAPTCHA requires an API key, consisting of a "public" and a "private" key. You can sign up for a <a href="https://www.google.com/recaptcha/admin/create">free reCAPTCHA key</a>.
79
  <br/>
80
 
81
  <!-- reCAPTCHA public key -->
99
  <?php } ?>
100
  </select><br/>
101
 
102
+ <label style="width:135px;float:left;text-align:right;padding-right:10px;"><?php _e('reCAPTCHA Language', 'formidable') ?>:</label>
103
  <select name="frm_re_lang" id="frm_re_lang">
104
  <?php foreach(array('en' => __('English', 'formidable'), 'nl' => __('Dutch', 'formidable'), 'fr' => __('French', 'formidable'), 'de' => __('German', 'formidable'), 'pt' => __('Portuguese', 'formidable'), 'ru' => __('Russian', 'formidable'), 'es' => __('Spanish', 'formidable'), 'tr' => __('Turkish', 'formidable')) as $lang => $lang_name){ ?>
105
  <option value="<?php echo $lang ?>" <?php selected($frm_settings->re_lang, $lang) ?>><?php echo $lang_name ?></option>
107
  </select>
108
  </td>
109
  </tr>
 
110
 
111
  <tr class="form-field">
112
  <td valign="top"><?php _e('Default Messages', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('You can override the success message and submit button settings on individual forms.', 'formidable') ?>" /></td>
113
+ <td>
114
+ <?php _e('Incorrect Field', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help" title="<?php _e('The message seen when a field response is either incorrect or missing.', 'formidable') ?>" /><br/>
115
+ <input type="text" id="frm_invalid_msg" name="frm_invalid_msg" class="frm_long_input" value="<?php echo esc_attr(stripslashes($frm_settings->invalid_msg)) ?>" />
116
  </td>
117
  </tr>
118
 
119
  <tr class="form-field">
120
  <td></td>
121
+ <td>
122
+ <?php _e('Success Message', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('The default message seen after a form is submitted.', 'formidable') ?>" /><br/>
123
+ <input type="text" id="frm_success_msg" name="frm_success_msg" class="frm_long_input" value="<?php echo esc_attr(stripslashes($frm_settings->success_msg)) ?>" />
124
  </td>
125
+ </tr>
126
 
127
  <tr class="form-field">
128
  <td></td>
129
  <td>
130
+ <?php _e('Failed or Duplicate Entry Message', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help" title="<?php _e('The message seen when a form is submitted and passes validation, but something goes wrong.', 'formidable') ?>" /><br/>
131
+ <input type="text" id="frm_failed_msg" name="frm_failed_msg" class="frm_long_input" value="<?php echo esc_attr(stripslashes($frm_settings->failed_msg)) ?>" />
132
  </td>
133
+ </tr>
134
 
135
  <tr class="form-field">
136
  <td></td>
137
  <td>
138
  <?php _e('Login Message', 'formidable'); ?>: <img src="<?php echo FRM_IMAGES_URL ?>/tooltip.png" alt="?" class="frm_help_text" title="<?php _e('The message seen when a user who is not logged-in views a form only logged-in users can submit.', 'formidable') ?>" /><br/>
139
+ <input type="text" id="frm_login_msg" name="frm_login_msg" class="frm_long_input" value="<?php echo esc_attr(stripslashes($frm_settings->login_msg)) ?>" />
140
  </td>
141
  </tr>
142
 
144
  <td></td>
145
  <td>
146
  <?php _e('Default Submit Button', 'formidable'); ?>:<br/>
147
+ <input type="text" value="<?php echo esc_attr(stripslashes($frm_settings->submit_value)) ?>" id="frm_submit_value" name="frm_submit_value" />
148
  </td>
149
  </tr>
150
 
152
 
153
  </table>
154
 
155
+ </div>
156
+
157
+ <p class="alignright frm_uninstall"><a href="<?php echo $frm_ajax_url ?>?action=frm_uninstall" onclick="return confirm('<?php _e('Are you sure you want to do this? Clicking OK will delete all forms, form data, and all other Formidable data. There is no Undo.', 'formidable') ?>')"><?php _e('Uninstall Formidable', 'formidable') ?></a></p>
158
  <p class="submit">
159
  <input class="button-primary" type="submit" name="Submit" value="<?php _e('Update Options', 'formidable') ?>" />
160
  </p>
classes/views/frm-statistics/list.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="wrap">
2
- <div class="frmicon icon32"><br/></div>
3
- <h2><?php echo FRM_PLUGIN_TITLE ?>: <?php _e('Pro Statistics', 'formidable') ?></h2>
4
 
5
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
6
 
1
  <div class="wrap">
2
+ <div class="frm_report_icon icon32"><br/></div>
3
+ <h2><?php _e('Pro Form Statistics', 'formidable') ?></h2>
4
 
5
  <?php require(FRM_VIEWS_PATH.'/shared/errors.php'); ?>
6
 
classes/views/shared/item-table-nav.php CHANGED
@@ -1,15 +1,12 @@
1
  <div class="tablenav">
2
- <div class="alignleft actions">
3
- <?php do_action('frm_before_table', $footer, $params['form']); ?>
4
- </div>
5
- <?php
6
- // Only show the pager bar if there is more than 1 page
7
- if($page_count > 1){ ?>
8
- <div class='tablenav-pages'><span class="displaying-num"><?php printf(__('Displaying %1$s&#8211;%2$s of %3$s', 'formidable'), $page_first_record, $page_last_record, $record_count); ?></span>
9
-
10
  <?php $page_param = 'paged'; require('pagination.php'); ?>
11
- </div>
12
  <?php } ?>
13
 
14
- </div>
15
- <div style="clear:both;"></div>
1
  <div class="tablenav">
2
+ <?php do_action('frm_before_table', $footer, $params['form']);
3
+
4
+ // Only show the pager bar if there is more than 1 page
5
+ if($page_count > 1){ ?>
6
+ <div class="tablenav-pages"><span class="displaying-num"><?php printf(__('Displaying %1$s&#8211;%2$s of %3$s', 'formidable'), $page_first_record, $page_last_record, $record_count); ?></span>
 
 
 
7
  <?php $page_param = 'paged'; require('pagination.php'); ?>
8
+ </div>
9
  <?php } ?>
10
 
11
+ <br class="clear" />
12
+ </div>
classes/views/shared/nav.php CHANGED
@@ -1,15 +1,16 @@
1
  <div id="button_bar">
2
  <ul class="subsubsub">
3
- <?php $current_page = (isset($_GET['page'])) ? $_GET['page'] : 'None'; ?>
4
- <?php $nav_items = apply_filters('frm_nav_array', array());
5
- $nav_count = count($nav_items);
6
- $i = 1;
7
- ?>
8
- <?php foreach ($nav_items as $nav_link => $nav_label){ ?>
 
9
  <li><a href="?page=<?php echo $nav_link ?>"<?php if($current_page == $nav_link) echo ' class="current"'; ?>><?php echo $nav_label ?></a> <?php if($i != $nav_count) echo '|'; ?> </li>
10
- <?php $i++; ?>
11
- <?php } ?>
12
- <?php do_action('frm_nav_items'); ?>
13
  </ul>
14
  </div>
15
 
1
  <div id="button_bar">
2
  <ul class="subsubsub">
3
+ <?php
4
+ $current_page = (isset($_GET['page'])) ? $_GET['page'] : 'None';
5
+ $nav_items = apply_filters('frm_nav_array', array());
6
+ $nav_count = count($nav_items);
7
+ $i = 1;
8
+
9
+ foreach ($nav_items as $nav_link => $nav_label){ ?>
10
  <li><a href="?page=<?php echo $nav_link ?>"<?php if($current_page == $nav_link) echo ' class="current"'; ?>><?php echo $nav_label ?></a> <?php if($i != $nav_count) echo '|'; ?> </li>
11
+ <?php $i++;
12
+ }
13
+ do_action('frm_nav_items'); ?>
14
  </ul>
15
  </div>
16
 
classes/views/shared/pagination.php CHANGED
@@ -3,9 +3,12 @@ if(!is_numeric($current_page))
3
  $current_page = FrmAppHelper::get_param($page_param, '1');
4
 
5
  $page_params = (isset($page_params)) ? $page_params : '';
 
 
 
6
 
7
  if($current_page > 1){ // Only show the prev page button if the current page is not the first page ?>
8
- <a class='prev page-numbers' href="<?php echo add_query_arg(array($page_param => $current_page - 1)); echo $page_params; ?>">&laquo;</a> <?php
9
  }
10
 
11
  // First page is always displayed
@@ -21,13 +24,13 @@ if($current_page >= 5){ ?>
21
  }
22
 
23
  // display the current page icon and the 2 pages beneath and above it
24
- $low_page = (($current_page >= 5)?($current_page-2):2);
25
- $high_page = ((($current_page + 2) < ($page_count-1))?($current_page+2):($page_count-1));
26
  for($i = $low_page; $i <= $high_page; $i++){
27
  if($current_page==$i){ ?>
28
- <span class='page-numbers current'><?php print $i; ?></span> <?php
29
  }else{ ?>
30
- <a class='page-numbers' href="<?php echo add_query_arg(array($page_param => $i)); echo $page_params; ?>"><?php print $i; ?></a> <?php
31
  }
32
  }
33
 
@@ -38,12 +41,12 @@ if($current_page < ($page_count - 3)){ ?>
38
 
39
  // Display the last page icon
40
  if($current_page == $page_count){ ?>
41
- <span class='page-numbers current'><?php print $page_count; ?></span><?php
42
  }else{ ?>
43
- <a class='page-numbers' href="<?php echo add_query_arg(array($page_param => $page_count)); echo $page_params; ?>"><?php print $page_count; ?></a><?php
44
  }
45
 
46
  // Display the next page icon if there is a next page
47
  if($current_page < $page_count){ ?>
48
- <a class='next page-numbers' href="<?php echo add_query_arg(array($page_param => $current_page + 1)); echo $page_params; ?>">&raquo;</a><?php
49
  } ?>
3
  $current_page = FrmAppHelper::get_param($page_param, '1');
4
 
5
  $page_params = (isset($page_params)) ? $page_params : '';
6
+ $s = FrmAppHelper::get_param('frm_search', false);
7
+ if($s)
8
+ $page_params .= '&frm_search='. urlencode($s);
9
 
10
  if($current_page > 1){ // Only show the prev page button if the current page is not the first page ?>
11
+ <a class='prev page-numbers' href="<?php echo add_query_arg(array($page_param => $current_page - 1)); echo $page_params; ?>">&#171;</a> <?php
12
  }
13
 
14
  // First page is always displayed
24
  }
25
 
26
  // display the current page icon and the 2 pages beneath and above it
27
+ $low_page = ($current_page >= 5) ? ($current_page-2) : 2;
28
+ $high_page = (($current_page + 2) < ($page_count-1)) ? ($current_page+2) : ($page_count-1);
29
  for($i = $low_page; $i <= $high_page; $i++){
30
  if($current_page==$i){ ?>
31
+ <span class='page-numbers current'><?php echo $i; ?></span> <?php
32
  }else{ ?>
33
+ <a class='page-numbers' href="<?php echo add_query_arg(array($page_param => $i)); echo $page_params; ?>"><?php echo $i; ?></a> <?php
34
  }
35
  }
36
 
41
 
42
  // Display the last page icon
43
  if($current_page == $page_count){ ?>
44
+ <span class='page-numbers current'><?php echo $page_count; ?></span><?php
45
  }else{ ?>
46
+ <a class='page-numbers' href="<?php echo add_query_arg(array($page_param => $page_count)); echo $page_params; ?>"><?php echo $page_count; ?></a><?php
47
  }
48
 
49
  // Display the next page icon if there is a next page
50
  if($current_page < $page_count){ ?>
51
+ <a class='next page-numbers' href="<?php echo add_query_arg(array($page_param => $current_page + 1)); echo $page_params; ?>">&#187;</a><?php
52
  } ?>
classes/widgets/FrmShowForm.php ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class FrmShowForm extends WP_Widget {
4
+
5
+ function FrmShowForm() {
6
+ $widget_ops = array( 'description' => __( "Display a Formidable Form", 'formidable') );
7
+ $this->WP_Widget('frm_show_form', __('Formidable Form', 'formidable'), $widget_ops);
8
+ }
9
+
10
+ function widget( $args, $instance ) {
11
+ global $frm_form;
12
+ extract($args);
13
+
14
+ $form_name = $frm_form->getName( $instance['form'] );
15
+ $title = apply_filters('widget_title', empty($instance['title']) ? $form_name : $instance['title']);
16
+ $instance['description'] = isset($instance['description']) ? $instance['description'] : false;
17
+
18
+ echo $before_widget;
19
+ $select_class = (isset($instance['select_width']) and $instance['select_width']) ? ' frm_set_select' : '';
20
+ echo '<div class="frm_form_widget'.$select_class.'">';
21
+ if ( $title )
22
+ echo $before_title . stripslashes($title) . $after_title;
23
+
24
+ if(isset($instance['size']) and is_numeric($instance['size'])){
25
+ global $frm_sidebar_width;
26
+ $frm_sidebar_width = $instance['size'];
27
+ }
28
+
29
+ echo FrmEntriesController::show_form($instance['form'], '', false, $instance['description']);
30
+ $frm_sidebar_width = '';
31
+ echo '</div>';
32
+ echo $after_widget;
33
+ }
34
+
35
+ function update( $new_instance, $old_instance ) {
36
+ return $new_instance;
37
+ }
38
+
39
+ function form( $instance ) {
40
+ //Defaults
41
+ $instance = wp_parse_args( (array) $instance, array('title' => false, 'form' => false, 'description' => false, 'size' => 20, 'select_width' => false) );
42
+ ?>
43
+ <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title', 'formidable') ?>:</label>
44
+ <input type="text" class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" value="<?php echo esc_attr( stripslashes($instance['title']) ); ?>" /></p>
45
+
46
+ <p><label for="<?php echo $this->get_field_id('form'); ?>"><?php _e('Form', 'formidable') ?>:</label>
47
+ <?php FrmFormsHelper::forms_dropdown( $this->get_field_name('form'), $instance['form'], false, $this->get_field_id('form') )?>
48
+ </p>
49
+
50
+ <p><input class="checkbox" type="checkbox" <?php checked($instance['description'], true) ?> id="<?php echo $this->get_field_id('description'); ?>" name="<?php echo $this->get_field_name('description'); ?>" value="1" />
51
+ <label for="<?php echo $this->get_field_id('description'); ?>"><?php _e('Show Description', 'formidable') ?></label></p>
52
+
53
+ <p><input class="checkbox" type="checkbox" <?php checked($instance['select_width'], true) ?> id="<?php echo $this->get_field_id('select_width'); ?>" name="<?php echo $this->get_field_name('select_width'); ?>" value="1" />
54
+ <label for="<?php echo $this->get_field_id('select_width'); ?>"><?php _e('Fit Select Boxes into SideBar', 'formidable') ?></label></p>
55
+
56
+ <p><label class="checkbox" for="<?php echo $this->get_field_id('size'); ?>"><?php _e('Field Size', 'formidable') ?>:</label>
57
+
58
+ <input type="text" size="3" id="<?php echo $this->get_field_id('size'); ?>" name="<?php echo $this->get_field_name('size'); ?>" value="<?php echo esc_attr( $instance['size'] ); ?>" /> <span class="howto" style="display:inline;"><?php _e('characters wide', 'formidable') ?></span></p>
59
+ <p class="description"><?php _e('If your text fields are too big for your sidebar insert a size here.', 'formidable') ?></p>
60
+ <?php
61
+ }
62
+ }
63
+
64
+ ?>
css/frm_admin.css CHANGED
@@ -1,4 +1,4 @@
1
- .frm_long_input{width:98% !important;}
2
  .frm_tooltip, .frm_tooltip_big, .frm_tooltip_text {
3
  display:none;background:transparent url(../images/black_arrow.png);
4
  font-size:12px;height:90px;width:180px;padding:15px;color:#fff;z-index:100;
@@ -25,7 +25,8 @@ font-size:12px;height:90px;width:180px;padding:15px;color:#fff;z-index:100;
25
  box-sizing: border-box;
26
  }
27
  .frmcenter{text-align:center;}
28
- #wpbody-content .frmicon.icon32{background: url(../images/icon_32.png) no-repeat top center !important;}
 
29
 
30
  .frm_form_builder a:hover{text-decoration:underline;}
31
 
@@ -35,6 +36,7 @@ font-size:12px;height:90px;width:180px;padding:15px;color:#fff;z-index:100;
35
  #frm_form_options .button a{display:block;font-weight:normal;text-decoration:none;}
36
  .frm_col_one{margin-right:4px;clear:both;}
37
 
 
38
  #poststuff h2.frm_ipe_form_name{
39
  border:1px solid #dfdfdf; background-color:#fff; display:block; padding:0 5px; margin-top:0;
40
  -moz-border-radius:4px; -webkit-border-radius:4px;
@@ -42,7 +44,14 @@ font-size:12px;height:90px;width:180px;padding:15px;color:#fff;z-index:100;
42
  .frm_ipe_form_name input{
43
  border:none; width:90%;
44
  font-size:1.1em; background:transparent;
45
- font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;
 
 
 
 
 
 
 
46
  }
47
 
48
  .form-table .form-field input, .form-field #ed_toolbar input{width:auto;}
@@ -56,13 +65,14 @@ textarea.inplace_field{width:98% !important;}
56
  .with_frm_style .frm_full_rte textarea{width:98%; padding:0;}
57
  .frm_field_box{padding:5px;min-height:20px;}
58
 
59
- .frm_pos_top{display:block;}
60
- .frm_pos_left{float:left; width:150px;}
61
- .frm_pos_none, .form-wrap label.frm_pos_none{display:none;}
62
- .frm_spacer{float:left; width:16px; height:16px;}
63
  .frm_charts object{background:transparent;}
64
 
65
  .frm-show-hover, .frm_single_show_hover, .frm-show-click{display:none;}
 
66
  li.ui-state-default.selected .frm-show-click, li.ui-state-default.selected .frm-show-hover{display:inline;}
67
  #new_fields span.ui-icon{width:16px;}
68
 
@@ -230,7 +240,7 @@ opacity:.4; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; fi
230
  width: 53px;
231
  margin: 10px 4px 0 0;
232
  }
233
- #global-font .field-group,
234
  #global-corners .field-group,
235
  .themeRoller .field-group-background,
236
  .themeRoller .field-group-opacity,
@@ -250,7 +260,7 @@ opacity:.4; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; fi
250
  margin: 6px 0 5px;
251
  display: block;
252
  }
253
- #global-font .field-group label,
254
  #global-corners .field-group label,
255
  .themeRoller .field-group-opacity label{
256
  float: left;
@@ -258,7 +268,7 @@ opacity:.4; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; fi
258
  margin: 0 4px 0 0;
259
  text-align: right;
260
  }
261
- #global-font .field-group label {
262
  width: 45px;
263
  }
264
 
1
+ .frm_long_input{width:95% !important;}
2
  .frm_tooltip, .frm_tooltip_big, .frm_tooltip_text {
3
  display:none;background:transparent url(../images/black_arrow.png);
4
  font-size:12px;height:90px;width:180px;padding:15px;color:#fff;z-index:100;
25
  box-sizing: border-box;
26
  }
27
  .frmcenter{text-align:center;}
28
+ #wpbody-content .frmicon.icon32{background: url(../images/form_32.png) no-repeat top center !important;}
29
+ #wpbody-content .frm_report_icon.icon32{background: url(../images/report_icon.png) no-repeat top center !important;}
30
 
31
  .frm_form_builder a:hover{text-decoration:underline;}
32
 
36
  #frm_form_options .button a{display:block;font-weight:normal;text-decoration:none;}
37
  .frm_col_one{margin-right:4px;clear:both;}
38
 
39
+ #ed_fullscreen{display:none !important;}
40
  #poststuff h2.frm_ipe_form_name{
41
  border:1px solid #dfdfdf; background-color:#fff; display:block; padding:0 5px; margin-top:0;
42
  -moz-border-radius:4px; -webkit-border-radius:4px;
44
  .frm_ipe_form_name input{
45
  border:none; width:90%;
46
  font-size:1.1em; background:transparent;
47
+ font-weight: 200;
48
+ }
49
+ .frm_field_opts_list{
50
+ height:105px;
51
+ border:1px solid #ddd;
52
+ background:#fff;
53
+ overflow:auto;
54
+ width:80%;
55
  }
56
 
57
  .form-table .form-field input, .form-field #ed_toolbar input{width:auto;}
65
  .with_frm_style .frm_full_rte textarea{width:98%; padding:0;}
66
  .frm_field_box{padding:5px;min-height:20px;}
67
 
68
+ .frm_top_container .frm_primary_label, .frm_pos_top{display:block;}
69
+ .frm_left_container .frm_primary_label, .frm_pos_left{float:left; width:150px;}
70
+ .frm_none_container .frm_primary_label, .frm_pos_none{display:none;}
71
+ .frm_hidden_container .frm_primary_label, .frm_pos_hidden{visibility:hidden;}
72
  .frm_charts object{background:transparent;}
73
 
74
  .frm-show-hover, .frm_single_show_hover, .frm-show-click{display:none;}
75
+ .frm_single_visible_hover{visibility:hidden;}
76
  li.ui-state-default.selected .frm-show-click, li.ui-state-default.selected .frm-show-hover{display:inline;}
77
  #new_fields span.ui-icon{width:16px;}
78
 
240
  width: 53px;
241
  margin: 10px 4px 0 0;
242
  }
243
+ .global-font .field-group,
244
  #global-corners .field-group,
245
  .themeRoller .field-group-background,
246
  .themeRoller .field-group-opacity,
260
  margin: 6px 0 5px;
261
  display: block;
262
  }
263
+ .global-font .field-group label,
264
  #global-corners .field-group label,
265
  .themeRoller .field-group-opacity label{
266
  float: left;
268
  margin: 0 4px 0 0;
269
  text-align: right;
270
  }
271
+ .global-font .field-group label {
272
  width: 45px;
273
  }
274
 
css/frm_display.css CHANGED
@@ -1,23 +1,23 @@
1
- .with_frm_style .form-field label.frm_pos, .with_frm_style .form-field label.frm_pos_, .with_frm_style .form-field label.frm_pos_top, .with_frm_style .form-field label.frm_pos_left, .with_frm_style .form-field label.frm_pos_right, .with_frm_style .form-field label.frm_pos_none{font-size:12px;font-weight:bold;float:none;text-align:left;margin:0;padding:0;width:auto;display:block;}
2
- .with_frm_style .form-field label.frm_pos_top, .with_frm_style .form-field label.frm_pos_{display:block;float:none;width:auto;}
3
- .with_frm_style .frm_pos_top{display:block;}
4
- .with_frm_style .frm_pos_left{float:left;padding-right:10px;width:150px;}
5
- .with_frm_style .frm_pos_right{float:right;padding-left:10px;width:150px;}
6
- .with_frm_style .frm_pos_none{display:none;}
 
7
  .with_frm_style .form-field{margin-top:15px;}
8
- .with_frm_style .form-field.frm_blank_field label{color:#be2e17;}
9
- .with_frm_style .frm_blank_field input, .with_frm_style .frm_blank_field textarea, .with_frm_style .frm_blank_field select, .frm_form_fields_error_style, .with_frm_style input.error, .with_frm_style textarea.error, .with_frm_style select.error{border:1px solid #be2e17;}
10
- .with_frm_style ul#frm_errors{list-style:square inside url(../images/error.png);margin:0;padding:0;}
11
  .with_frm_style .frm_checkbox, .with_frm_style .frm_radio{display:block;margin:0;}
12
- .with_frm_style input[type="radio"], .with_frm_style input[type="checkbox"]{width:auto;margin-right:3px;}
13
  .with_frm_style fieldset{border:none;margin:0;padding:0;}
14
  .with_frm_style p.submit{padding-top:20px;padding-bottom:20px;}
15
- .with_frm_style .form-field p.description, .with_frm_style .form-field div.description{margin:0;padding:0;font-size:11px;font-weight:normal;text-align:left;font-style:normal;}
16
- .with_frm_style .form-field input, .with_frm_style .form-field select, .with_frm_style .form-field textarea, #content .with_frm_style .form-field input, #content .with_frm_style .form-field select, #content .with_frm_style .form-field textarea{font-size:13px;}
17
- .with_frm_style .form-field input, #wpcontent .with_frm_style .form-field select, .with_frm_style .form-field select, .with_frm_style .form-field textarea{border-width:1px;border-style:solid;width:400px;font-size:13px;padding:2px;}
18
- .with_frm_style .form-field input.auto_width, .with_frm_style .form-field select.auto_width, .with_frm_style .form-field textarea.auto_width{width:auto;}
19
- .with_frm_style .form-field input:focus, .with_frm_style .form-field select:focus, .with_frm_style .form-field textarea:focus, .with_frm_style .frm_focus_field input[type='text']{border-color:#dddddd;}
20
- .with_frm_style .form-field .frm_radio label, .with_frm_style .form-field .frm_checkbox label{display:inline;}
21
- .with_frm_style .form-field .frm_radio input[type="radio"], .with_frm_style .form-field .frm_checkbox input[type="checkbox"]{margin-right:5px;width:auto;}
22
- .with_frm_style .form-field input[type="radio"],.with_frm_style .form-field input[type="checkbox"]{width:auto;}
23
- .with_frm_style .frm_message{font-size:14px;margin:5px 0 15px;padding:5px 10px;background-color:#FFFFE0;border:1px solid #E6DB55;color:#444444;}
 
1
+ .with_frm_style label{font-size:12px;float:none;text-align:left;margin:0;padding:0;width:auto;}
2
+ .with_frm_style label.frm_primary_label{font-weight:bold;display:block;}
3
+ .with_frm_style .frm_top_container label.frm_primary_label{display:block;float:none;width:auto;}
4
+ .with_frm_style .frm_left_container label.frm_primary_label{float:left;padding-right:10px;width:150px;}
5
+ .with_frm_style .frm_right_container label.frm_primary_label{float:right;padding-left:10px;width:150px;}
6
+ .with_frm_style .frm_none_container label.frm_primary_label{display:none;}
7
+ .with_frm_style .frm_hidden_container label.frm_primary_label{display:hidden;}
8
  .with_frm_style .form-field{margin-top:15px;}
9
+ .with_frm_style .frm_blank_field label, .with_frm_style .frm_error{color:#be2e17;}
10
+ .with_frm_style .frm_blank_field input, .with_frm_style .frm_blank_field textarea, .with_frm_style .frm_blank_field select, .with_frm_style .frm_blank_field #recaptcha_area{border:1px solid #be2e17;}
 
11
  .with_frm_style .frm_checkbox, .with_frm_style .frm_radio{display:block;margin:0;}
 
12
  .with_frm_style fieldset{border:none;margin:0;padding:0;}
13
  .with_frm_style p.submit{padding-top:20px;padding-bottom:20px;}
14
+ .with_frm_style p.description, .with_frm_style div.description, .with_frm_style .frm_error{margin:0;padding:0;font-size:11px;font-weight:normal;text-align:left;font-style:normal;}
15
+ .with_frm_style .frm_left_container .description, .with_frm_style .frm_left_container .frm_error, .with_frm_style .frm_left_container .frm_description{margin-left:160px;}
16
+ .with_frm_style .frm_error{font-weight:bold;}
17
+ .with_frm_style .frm_form_fields input, .with_frm_style .frm_form_fields select, .with_frm_style .frm_form_fields textarea{font-size:13px;margin-bottom:0;}
18
+ .with_frm_style .frm_form_fields input, #wpcontent .with_frm_style .frm_form_fields select, .with_frm_style .frm_form_fields select, .with_frm_style .frm_form_fields textarea{border-width:1px;border-style:solid;width:400px;font-size:13px;padding:2px;}
19
+ .with_frm_style .frm_form_fields input.auto_width, .with_frm_style .frm_form_fields select.auto_width, .with_frm_style .frm_form_fields textarea.auto_width{width:auto;}
20
+ .frm_set_select .with_frm_style .frm_form_fields select, .frm_set_select .with_frm_style .frm_form_fields select.auto_width{width:95%;}
21
+ .with_frm_style .frm_radio label, .with_frm_style .frm_checkbox label{display:inline;}
22
+ .with_frm_style input[type="radio"], .with_frm_style input[type="checkbox"]{width:auto;margin-right:3px;}
23
+ .with_frm_style .frm_message, .with_frm_style .frm_message p{font-size:14px;margin:5px 0 15px;padding:5px 10px;background-color:#FFFFE0;border:1px solid #E6DB55;color:#444444;}
formidable.php CHANGED
@@ -5,9 +5,9 @@
5
  /*
6
  Plugin Name: Formidable
7
  Description: Quickly and easily create drag-and-drop forms
8
- Version: 1.04.07
9
- Plugin URI: http://blog.strategy11.com/formidable-wordpress-plugin
10
- Author URI: http://blog.strategy11.com
11
  Author: Strategy11
12
  */
13
 
@@ -21,31 +21,27 @@ Author: Strategy11
21
  but WITHOUT ANY WARRANTY; without even the implied warranty of
22
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
  GNU General Public License for more details.
24
-
25
- You should have received a copy of the GNU General Public License
26
- along with this program; if not, write to the Free Software
27
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
 
30
- define('FRM_PLUGIN_TITLE','Formidable');
31
- define('FRM_PLUGIN_NAME','formidable');
32
- define('FRM_PATH',WP_PLUGIN_DIR.'/'.FRM_PLUGIN_NAME);
33
- define('FRM_MODELS_PATH',FRM_PATH.'/classes/models');
34
- define('FRM_VIEWS_PATH',FRM_PATH.'/classes/views');
35
- define('FRM_HELPERS_PATH',FRM_PATH.'/classes/helpers');
36
- define('FRM_CONTROLLERS_PATH',FRM_PATH.'/classes/controllers');
37
- define('FRM_TEMPLATES_PATH',FRM_PATH.'/classes/templates');
38
-
39
- global $frm_blogurl;
40
- $frm_blogurl = (get_option('home')) ? get_option('home') : get_option('siteurl');
41
- if(is_ssl() and !preg_match('/^https:\/\/.*\..*$/', $frm_blogurl)){
42
- $frm_blogurl = str_replace('http://', 'https://', $frm_blogurl);
43
- define('FRM_URL',str_replace('http://', 'https://', WP_PLUGIN_URL.'/'.FRM_PLUGIN_NAME));
44
  }else
45
- define('FRM_URL',WP_PLUGIN_URL.'/'.FRM_PLUGIN_NAME); //plugins_url('/'.FRM_PLUGIN_NAME)
46
 
47
- define('FRM_SCRIPT_URL', $frm_blogurl .'/index.php?plugin=' . FRM_PLUGIN_NAME);
48
- define('FRM_IMAGES_URL',FRM_URL.'/images');
49
 
50
  require_once(FRM_MODELS_PATH.'/FrmSettings.php');
51
 
@@ -59,18 +55,16 @@ if (!defined ('IS_WPMU')){
59
  }
60
 
61
  global $frm_version, $frm_db_version;
62
- $frm_version = '1.04.07';
63
- $frm_db_version = 4;
64
 
65
 
66
- global $frm_siteurl;
67
  global $frm_ajax_url;
68
- $frm_siteurl = get_option('siteurl');
69
  $frm_ajax_url = admin_url('admin-ajax.php');
70
 
71
- global $frm_load_css, $frm_forms_loaded, $frm_css_loaded, $frm_loaded_fields;
72
  $frm_load_css = $frm_css_loaded = false;
73
- $frm_forms_loaded = $frm_loaded_fields = array();
74
 
75
  require_once(FRM_HELPERS_PATH. "/FrmAppHelper.php");
76
  global $frm_app_helper;
@@ -82,19 +76,22 @@ global $frm_settings;
82
  $frm_settings = get_option('frm_options');
83
 
84
  // If unserializing didn't work
85
- if(!$frm_settings){
86
- $frm_settings = new FrmSettings();
87
- update_option('frm_options',$frm_settings);
88
- }else
89
- $frm_settings->set_default_options(); // Sets defaults for unset options
90
 
 
 
 
 
91
  require_once(FRM_MODELS_PATH.'/FrmDb.php');
92
  require_once(FRM_MODELS_PATH.'/FrmField.php');
93
  require_once(FRM_MODELS_PATH.'/FrmForm.php');
94
  require_once(FRM_MODELS_PATH.'/FrmEntry.php');
95
  require_once(FRM_MODELS_PATH.'/FrmEntryMeta.php');
96
  require_once(FRM_MODELS_PATH.'/FrmNotification.php');
97
- require_once(FRM_MODELS_PATH.'/FrmUpdate.php');
98
 
99
  global $frmdb;
100
  global $frm_field;
@@ -158,4 +155,14 @@ if($frmpro_is_installed)
158
  global $frm_page_size;
159
  $frm_page_size = 20;
160
 
 
 
 
 
 
 
 
 
 
 
161
  ?>
5
  /*
6
  Plugin Name: Formidable
7
  Description: Quickly and easily create drag-and-drop forms
8
+ Version: 1.05.05
9
+ Plugin URI: http://formidablepro.com/
10
+ Author URI: http://strategy11.com
11
  Author: Strategy11
12
  */
13
 
21
  but WITHOUT ANY WARRANTY; without even the implied warranty of
22
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
  GNU General Public License for more details.
 
 
 
 
24
  */
25
 
26
+ define('FRM_PLUGIN_TITLE', 'Formidable');
27
+ define('FRM_PLUGIN_NAME', 'formidable');
28
+ define('FRM_PATH', WP_PLUGIN_DIR.'/'.FRM_PLUGIN_NAME);
29
+ define('FRM_MODELS_PATH', FRM_PATH.'/classes/models');
30
+ define('FRM_VIEWS_PATH', FRM_PATH.'/classes/views');
31
+ define('FRM_HELPERS_PATH', FRM_PATH.'/classes/helpers');
32
+ define('FRM_CONTROLLERS_PATH', FRM_PATH.'/classes/controllers');
33
+ define('FRM_TEMPLATES_PATH', FRM_PATH.'/classes/templates');
34
+
35
+ global $frm_siteurl;
36
+ $frm_siteurl = get_bloginfo('url');
37
+ if(is_ssl() and !preg_match('/^https:\/\/.*\..*$/', $frm_siteurl)){
38
+ $frm_siteurl = str_replace('http://', 'https://', $frm_siteurl);
39
+ define('FRM_URL', str_replace('http://', 'https://', WP_PLUGIN_URL.'/'.FRM_PLUGIN_NAME));
40
  }else
41
+ define('FRM_URL', WP_PLUGIN_URL.'/'.FRM_PLUGIN_NAME); //plugins_url('/'.FRM_PLUGIN_NAME)
42
 
43
+ define('FRM_SCRIPT_URL', $frm_siteurl .'/index.php?plugin=' . FRM_PLUGIN_NAME);
44
+ define('FRM_IMAGES_URL', FRM_URL.'/images');
45
 
46
  require_once(FRM_MODELS_PATH.'/FrmSettings.php');
47
 
55
  }
56
 
57
  global $frm_version, $frm_db_version;
58
+ $frm_version = '1.05.05';
59
+ $frm_db_version = 7;
60
 
61
 
 
62
  global $frm_ajax_url;
 
63
  $frm_ajax_url = admin_url('admin-ajax.php');
64
 
65
+ global $frm_load_css, $frm_forms_loaded, $frm_css_loaded, $frm_loaded_fields, $frm_saved_entries;
66
  $frm_load_css = $frm_css_loaded = false;
67
+ $frm_forms_loaded = $frm_loaded_fields = $frm_saved_entries = array();
68
 
69
  require_once(FRM_HELPERS_PATH. "/FrmAppHelper.php");
70
  global $frm_app_helper;
76
  $frm_settings = get_option('frm_options');
77
 
78
  // If unserializing didn't work
79
+ if(!is_object($frm_settings)){
80
+ $frm_settings = new FrmSettings();
81
+ update_option('frm_options', $frm_settings);
82
+ }
 
83
 
84
+ $frm_settings->set_default_options(); // Sets defaults for unset options
85
+
86
+
87
+ // Instansiate Models
88
  require_once(FRM_MODELS_PATH.'/FrmDb.php');
89
  require_once(FRM_MODELS_PATH.'/FrmField.php');
90
  require_once(FRM_MODELS_PATH.'/FrmForm.php');
91
  require_once(FRM_MODELS_PATH.'/FrmEntry.php');
92
  require_once(FRM_MODELS_PATH.'/FrmEntryMeta.php');
93
  require_once(FRM_MODELS_PATH.'/FrmNotification.php');
94
+ include_once(FRM_MODELS_PATH.'/FrmUpdate.php');
95
 
96
  global $frmdb;
97
  global $frm_field;
155
  global $frm_page_size;
156
  $frm_page_size = 20;
157
 
158
+ global $frm_sidebar_width;
159
+ $frm_sidebar_width = '';
160
+
161
+ // Register Widgets
162
+ if(class_exists('WP_Widget')){
163
+ require_once(FRM_PATH . "/classes/widgets/FrmShowForm.php");
164
+ add_action('widgets_init', create_function('', 'return register_widget("FrmShowForm");'));
165
+ }
166
+
167
+
168
  ?>
images/ajax_loader.gif CHANGED
Binary file
images/form_16.png ADDED
Binary file
images/form_32.png ADDED
Binary file
images/grey_bg.png ADDED
Binary file
images/report_icon.png ADDED
Binary file
js/formidable.js CHANGED
@@ -1,267 +1,203 @@
1
  jQuery(document).ready(function($){
2
- $(".frm_elastic_text").elastic();
3
-
4
- window.onscroll = document.documentElement.onscroll = frmSetMenuOffset;
5
- frmSetMenuOffset();
6
-
7
- if ($("input[name='options[success_action]']:checked").val() == 'redirect')
8
- $('.success_action_redirect_box.success_action_box').show();
9
- else if ($("input[name='options[success_action]']:checked").val() == 'page')
10
- $('.success_action_page_box.success_action_box').show();
11
- else
12
- $('.success_action_message_box.success_action_box').show();
13
-
14
- $("input[name='options[success_action]']").change(function(){
15
- $('.success_action_box').hide();
16
- if ($(this).val() == 'redirect')
17
- $('.success_action_redirect_box.success_action_box').show();
18
- else if ($(this).val() == 'page')
19
- $('.success_action_page_box.success_action_box').show();
20
- else
21
- $('.success_action_message_box.success_action_box').show();
22
- });
23
-
24
- jQuery('.item-list-form').submit(function(){
25
- if(jQuery('#bulkaction').val() == 'delete'){return confirm('Are you sure you want to delete each of the selected items below?');}
26
- });
27
-
28
- jQuery('.frm_single_option').hover(
29
- function(){jQuery(this).children(".frm_single_show_hover").show(); jQuery(this).children(".frm_spacer").hide();},
30
- function(){jQuery(this).children(".frm_single_show_hover").hide(); jQuery(this).children(".frm_spacer").show();}
31
- );
32
-
33
- jQuery('li.ui-state-default').click(function(evt){
34
- var target = evt.target;
35
- $('.frm-show-hover').hide(); $(this).children(".frm-show-hover").show();
36
- $('.frm-show-click').hide(); $(this).children(".frm-show-click").show();
37
- $('li.ui-state-default.selected').removeClass('selected'); $(this).addClass('selected');
38
- if(!$(target).is('.inplace_field') && !$(target).is('.frm_ipe_field_label') && !$(target).is('.frm_ipe_field_desc') && !$(target).is('.frm_ipe_field_option')){ $('.inplace_field').blur();}
39
- });
40
- $("img.frm_help[title]").tooltip({tip:'#frm_tooltip',lazy:true});
41
- $("img.frm_help_text[title]").tooltip({tip:'#frm_tooltip_text',lazy:true});
42
- $("img.frm_help_big[title]").tooltip({tip:'#frm_tooltip_big',lazy:true});
43
-
44
- jQuery('.field_type_list > li').draggable({connectToSortable:'#new_fields',cursor:'move',helper:'clone',revert:'invalid',delay:10});
45
- jQuery("ul.field_type_list, .field_type_list li").disableSelection();
46
-
47
- /*
48
- jQuery('.frm-grid').find('input').live('keydown',function(e){
49
- if(e.which >= 37 && e.which <= 40){
50
- var matches;
51
- var pattern= /_([0-9]+)_([0-9]+)$/;
52
- if (matches=this.id.match(pattern)){
53
- var row=parseInt(matches[1]);
54
- var col=parseInt(matches[2]);
55
- var table=jQuery('#'+this.id).parents('.frm-grid');
56
- var max_row=jQuery('#'+this.id).parents('.frm-grid').find('tr').length - 2; // the -2 comes from 1 for the header row and 1 for the fact that we're 0-based
57
- var max_col=jQuery('#'+this.id).parents('tr').find('td input').length -1; // the -1 is for the fact that we're 0-based
58
- switch (e.which){
59
- case 37: // left arrow
60
- if (col > 0){col--;}else if(row > 0){col=max_col;row--;}
61
- break;
62
- case 38: // up arrow
63
- if(row > 0){row--;}else if(col > 0){col--;row=max_row;}
64
- e.preventDefault(); // prevent list of previously entered values showing up and confusing
65
- break;
66
- case 39: // right arrow
67
- if (col < max_col){col++;}else if (row < max_row){row++;col=0;}
68
- break;
69
- case 40: // down arrow
70
- if (row < max_row){row++;}else if (col < max_col){col++;row=0;}
71
- break;
72
- }
73
- if (row != parseInt(matches[1]) || col != parseInt(matches[2])){
74
- // need to reset the focus
75
- jQuery('#' + this.id.replace(pattern,'_'+row+'_'+col)).focus();
76
- }
77
- }
78
- }
79
- }); */
80
  });
81
 
82
- function frm_show_div(div,value,show_if,class_id){
83
- if(value==show_if) jQuery(class_id+div).fadeIn('slow'); else jQuery(class_id+div).fadeOut('slow');
84
- }
85
- function frm_select_item_checkbox(checked){if(!checked){jQuery(".select-all-item-action-checkboxes").removeAttr("checked");}}
86
-
87
- function frm_select_all_checkboxes(checked){
88
- if(checked){
89
- jQuery(".item-action-checkbox").attr("checked","checked");jQuery(".select-all-item-action-checkboxes").attr("checked","checked");
90
  }else{
91
- jQuery(".item-action-checkbox").removeAttr("checked");jQuery(".select-all-item-action-checkboxes").removeAttr("checked");
 
92
  }
93
  }
94
 
95
- function add_frm_field_link(form_id, field_type, ajax_url){
96
- jQuery.ajax({type:"POST",url:ajax_url,data:"action=frm_insert_field&form_id="+form_id+"&field="+field_type,
97
- success:function(msg){jQuery('#new_fields').append(msg);}
98
- });
99
- };
100
-
101
- function frm_duplicate_field(field_id,ajax_url){
102
- jQuery.ajax({type:"POST",url:ajax_url,data:"action=frm_duplicate_field&field_id="+field_id,
103
- success:function(msg){jQuery('#new_fields').append(msg);}
104
- });
105
- };
106
-
107
- function frm_mark_required(field_id, required, images_url, ajax_url){
108
- var thisid='req_field_'+field_id;
109
- if(required=='0'){var switch_to='1';var atitle='Click to Mark as Not Required';var checked='checked="checked"';
110
- jQuery('.frm_required_details'+field_id).fadeIn('slow');}
111
- else{var switch_to='0';var atitle='Click to Mark as Required';var checked='';
112
- jQuery('.frm_required_details'+field_id).fadeOut('slow');}
113
- jQuery('#'+thisid).replaceWith('<a href="javascript:frm_mark_required('+field_id+','+switch_to+',\''+images_url+'\',\''+ajax_url+'\')" class="alignleft frm_required'+switch_to+'" id="'+thisid+'" title="'+atitle+'"><img src="'+images_url+'/required.png" alt="required"></a>');
114
- jQuery('#frm_'+thisid).replaceWith('<input type="checkbox" id="frm_'+thisid+'" name="field_options[required_'+field_id+']" value="1" '+checked+' onclick="frm_mark_required('+field_id+','+switch_to+',\''+images_url+'\',\''+ajax_url+'\')" />');
115
- jQuery.ajax({type:"POST",url:ajax_url,data:"action=frm_mark_required&field="+field_id+"&required="+switch_to});
116
- };
117
-
118
- function frm_clear_on_focus(field_id, active, images_url, ajax_url){
119
- var thisid='clear_field_'+field_id;
120
- if (active=='1'){var switch_to='0';var new_class='frm_inactive_icon';}
121
- else{var switch_to='1';var new_class='';}
122
- jQuery('#'+thisid).replaceWith('<a href="javascript:frm_clear_on_focus('+field_id+','+switch_to+',\''+images_url+'\',\''+ajax_url+'\')" class="'+new_class +' frm-show-hover" id="'+thisid+'"><img src="'+images_url+'/reload.png"></a>');
123
- jQuery.ajax({type:"POST",url:ajax_url,data:"action=frm_clear_on_focus&field="+field_id+"&active="+switch_to});
124
- };
125
-
126
- function frm_default_blank(field_id, active, images_url, ajax_url){
127
- var thisid='default_blank_'+field_id;
128
- if(active=='1'){var switch_to='0';var new_class='frm_inactive_icon';}
129
- else{var switch_to='1';var new_class='';}
130
- jQuery('#'+thisid).replaceWith('<a href="javascript:frm_default_blank('+field_id+','+switch_to+',\''+images_url+'\',\''+ajax_url+'\')" class="'+new_class+' frm-show-hover" id="'+thisid+'"><img src="'+images_url+'/error.png"></a>');
131
- jQuery.ajax({type:"POST",url:ajax_url,data:"action=frm_default_blank&field="+field_id+"&active="+switch_to});
132
- };
133
-
134
- function frm_add_field_option(field_id, ajax_url, table){
135
- var data = {action:'frm_add_field_option',field_id:field_id,t:table};
136
- jQuery.post(ajax_url,data,function(msg){
137
- jQuery('#frm_add_field_'+field_id).before(msg);
138
- if(table=='row'){ jQuery('#frm-grid-'+field_id+' tr:last').after(msg);}
139
  });
140
- };
141
-
142
- function frm_delete_field_option(field_id, opt_key, ajax_url){
143
- jQuery.ajax({type:"POST",url:ajax_url,
144
- data:"action=frm_delete_field_option&field_id="+field_id+"&opt_key="+opt_key,
145
- success:function(msg){ jQuery('#frm_delete_field_'+field_id+'-'+opt_key+'_container').fadeOut("slow");}
146
- });
147
- };
148
-
149
- function frm_field_hover(show, field_id){
150
- var html_id = '#frm_field_id_'+field_id;
151
- if(show){jQuery(html_id).children(".frm-show-hover").show();}
152
- else{if(!jQuery(html_id).is('.selected')){jQuery(html_id).children(".frm-show-hover").hide();}}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
  }
154
-
155
- function frmSetMenuOffset() {
156
- var fields = jQuery('#frm_form_options .themeRoller');
157
- if (!fields) return;
158
- var currentOffset = document.documentElement.scrollTop || document.body.scrollTop; // body for Safari
159
- var desiredOffset = 315 - currentOffset;
160
- if (desiredOffset < 10) desiredOffset = 10;
161
- //if (desiredOffset != parseInt(header.style.top))
162
- fields.attr('style', 'top:'+desiredOffset + 'px;');
163
  }
164
 
165
- function frmDisplayFormSelected(form_id, ajax_url){
166
- if (form_id == '') return;
167
- jQuery.ajax({type:"POST",url:ajax_url,
168
- data:"action=frm_get_field_tags&form_id="+form_id,
169
- success:function(html){ jQuery('#content_fields').html(html);}
170
- });
171
- jQuery.ajax({type:"POST",url:ajax_url,
172
- data:"action=frm_get_field_tags&target_id=dyncontent&form_id="+form_id,
173
- success:function(html){ jQuery('#dyncontent_fields').html(html);}
174
- });
175
- jQuery.ajax({type:"POST",url:ajax_url,
176
- data:"action=frm_get_entry_select&form_id="+form_id,
177
- success:function(html){ jQuery('#entry_select_container').html(html);}
178
- });
179
- };
180
-
181
- function frmInsertFieldCode(element_id, variable){
182
- if(!element_id || element_id == 'content'){
183
- send_to_editor(variable);
184
- return;
185
- }
186
- var content_box=jQuery("#"+element_id);
187
- if(content_box){
188
- if(document.selection){content_box[0].focus();document.selection.createRange().text=variable;}
189
- else if(content_box[0].selectionStart){obj=content_box[0];obj.value=obj.value.substr(0,obj.selectionStart)+variable+obj.value.substr(obj.selectionEnd,obj.value.length);}
190
- else{content_box.val(variable+content_box.val());}
191
- }
192
  }
193
 
194
- function frm_delete_row(field_id,opt_key,ajax_url){
195
- if (jQuery('#frm-grid-'+field_id+' tr').length == 2){ // header row and only one data row
196
- alert('Sorry, you must leave at least one row in this table.');
197
- }else if(confirm('Are you sure you wish to permanently delete this row? This cannot be undone.')){
198
- jQuery.ajax({type:"POST",url:ajax_url,
199
- data:"action=frm_delete_field_option&field_id="+field_id+"&opt_key="+opt_key,
200
- success:function(msg){jQuery('#frm-grid-'+field_id+' tr.'+opt_key).fadeOut("slow");frm_adjust_row_numbers(field_id);}
201
- });
202
- }
 
203
  }
204
 
205
- function frm_delete_col(field_id,opt_key,ajax_url){
206
- if (jQuery('#frm-grid-'+field_id+' th').length == 2){ // header col and only one data col
207
- alert('Sorry, you must leave at least one column in this table.');
208
- }else if(confirm('Are you sure you wish to permanently delete this column? This cannot be undone.')){
209
- jQuery.ajax({type:"POST",url:ajax_url,
210
- data:"action=frm_delete_field_option&field_id="+field_id+"&opt_key="+opt_key,
211
- success:function(msg){
212
- jQuery('#frm-grid-'+field_id+' td.'+opt_key).fadeOut("slow");
213
- jQuery('#frm-grid-'+field_id+' th.'+opt_key).fadeOut("slow");
214
- frm_adjust_row_numbers(field_id);
215
- }
216
- });
217
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  }
219
 
220
- function frm_adjust_row_numbers(field_id){
221
- var row_num;
222
- jQuery('#frm-grid-'+field_id+' tr').each(function(){
223
- if (row_num == null){
224
- // skip the first row (column headers)
225
- row_num=0;
226
- }else{
227
- // This searches for inputs and readjusts their name to match the new row numbering scenario
228
- jQuery(this).find('input').each(function(){ //input[name^=item_meta]
229
- var name=jQuery(this).attr('name');
230
- name=name.replace(/\[[0-9]+\]\[\]/,'['+row_num+'][]');
231
- jQuery(this).attr('name',name);
232
 
233
- var id=jQuery(this).attr('id');
234
- id=id.replace(/_[0-9]+(_[0-9]+)$/,'_'+row_num+'$1');
235
- jQuery(this).attr('id',id);
236
- });
237
-
238
- // Now replace the javascript (for delete_row)
239
- jQuery(this).find('a').each(function(){
240
- var href=jQuery(this).attr('href');
241
- href=href.replace(/(delete_row\([0-9]+,)[0-9]+/,'$1'+row_num);
242
- jQuery(this).attr('href',href);
243
- });
244
 
245
- // Finally, need to reset the class for the row
246
- jQuery(this).get(0).className=jQuery(this).get(0).className.replace(/\brow-.*?\b/g,'');
247
- jQuery(this).addClass("row-"+row_num);
248
- row_num++;
249
  }
250
  });
251
  }
252
 
253
- var frm_active_requests=0; // = false;
254
- function frm_add_row(field_id,ajax_url){
255
- jQuery.ajax({
256
- type:"POST",url:ajax_url,
257
- data:"action=frm_add_table_row&field_id="+field_id+"&row_num="+(jQuery('#frm-grid-'+field_id+' tr').length-1+frm_active_requests++),
258
- success:function(msg){
259
- frm_active_requests--;jQuery('#frm-grid-'+field_id+' tr:last').after(msg);
260
- frm_post_add_row(field_id,jQuery('#frm-grid-'+field_id+' tr:last'));
 
 
 
 
 
 
 
 
 
261
  }
262
- });
263
  }
264
 
265
- function frm_post_add_row(field_id,new_row){
266
- // Just a stub that can be overridden by another script
 
 
 
 
 
 
 
 
 
 
 
267
  }
1
  jQuery(document).ready(function($){
2
+ var trigger = $('.frm_blank_field').closest('.frm_toggle_container').prev('.frm_trigger');
3
+ if(trigger) frmToggleSection(trigger);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  });
5
 
6
+ function frmToggleSection($sec){
7
+ $sec.next('.frm_toggle_container').slideToggle(200);
8
+ if($sec.hasClass('active')){
9
+ $sec.removeClass('active'),$sec.children('.ui-icon-triangle-1-s').addClass('ui-icon-triangle-1-e');
10
+ $sec.children('.ui-icon-triangle-1-e').removeClass('ui-icon-triangle-1-s');
 
 
 
11
  }else{
12
+ $sec.addClass("active"), $sec.children('.ui-icon-triangle-1-e').addClass('ui-icon-triangle-1-s');
13
+ $sec.children('.ui-icon-triangle-1-s').removeClass('ui-icon-triangle-1-e');
14
  }
15
  }
16
 
17
+ function frmCheckParents(id){
18
+ var $chk = jQuery('#'+id);
19
+ var ischecked = $chk.is(":checked");
20
+ if(!ischecked) return;
21
+ $chk.parent().parent().siblings().children("label").children("input").each(function(){
22
+ var b= this.checked;ischecked=ischecked || b;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  });
24
+ frmCheckParentNodes(ischecked, $chk);
25
+ }
26
+ function frmCheckParentNodes(b,$obj){
27
+ $prt=frmFindParentObj($obj);if($prt.length !=0){$prt[0].checked=b;frmCheckParentNodes(b,$prt);}
28
+ }
29
+ function frmFindParentObj($obj){return $obj.parent().parent().parent().prev().children("input");}
30
+
31
+ function frmClearDefault(default_value,thefield){if(thefield.value==default_value){thefield.value='';thefield.style.fontStyle='inherit';}}
32
+ function frmReplaceDefault(default_value,thefield){if(thefield.value==''){thefield.value=default_value;thefield.style.fontStyle='italic';}}
33
+
34
+ function frmCheckDependent(selected,type,field_id,opts,ajax_url){
35
+ var atts=String(opts).split('||');
36
+ if(atts.length==1){var this_opts=new Array();this_opts[0]=opts;}
37
+ else{var this_opts=atts;}
38
+ var len=this_opts.length;
39
+ for(i=0; i<len; i++){
40
+ (function(i){
41
+ var field_data = String(this_opts[i]).split('|');
42
+ if(type=='checkbox'){
43
+ var show_field=false;
44
+ jQuery("input[name='item_meta["+field_id+"][]']:checked").each(function(){if(show_field==false && jQuery(this).val() == field_data[1]){
45
+ show_field=true;jQuery('#frm_field_'+field_data[0]+'_container').fadeIn('slow');
46
+ }});
47
+ if(show_field==false){jQuery('#frm_field_'+field_data[0]+'_container').fadeOut('slow');}
48
+ }else if(type=='data-radio'){
49
+ var entry_id=jQuery("input[name='item_meta["+field_id+"]']:checked").val();
50
+ if(entry_id==''){
51
+ jQuery('#frm_field_'+field_data[0]+'_container').fadeOut('slow');
52
+ jQuery('#frm_field_'+field_data[0]+'_container').html('');
53
+ }else{frmGetData(field_data,entry_id,ajax_url,0);}
54
+ }else if(type=='data-checkbox'){
55
+ if(field_data[2]=='undefined' || field_data[2]=='' || field_data[2]=='data'){
56
+ var replace_it=false;
57
+ if(selected!=''){replace_it=frmGetData(field_data,selected,ajax_url,1);}
58
+ if(replace_it!=true){
59
+ jQuery('#frm_field_'+field_data[0]+'_container').fadeOut('slow');
60
+ jQuery('#frm_data_field_'+field_data[0]+'_container').html('');
61
+ }
62
+ }else{
63
+ var checked_vals=new Array();
64
+ jQuery("input[name='item_meta["+field_id+"][]']:checked").each(function(){checked_vals.push(jQuery(this).val());});
65
+ if(checked_vals.length==0){jQuery('#frm_field_'+field_data[0]+'_container').fadeOut('slow');}
66
+ else{frmGetDataOpts(field_data,checked_vals,ajax_url,field_id);}
67
+ }
68
+ }else if(type=='data-select' && typeof field_data[2]!='undefined'){
69
+ if(field_data[2]=='' || field_data[2]=='data'){
70
+ if(selected==''){jQuery('#frm_data_field_'+field_data[0]+'_container').html('');}
71
+ else{frmGetData(field_data,selected,ajax_url,0);}
72
+ }else{
73
+ if(selected==''){jQuery('#frm_field_'+field_data[0]+'_container').fadeOut('slow');}
74
+ else{frmGetDataOpts(field_data,selected,ajax_url,field_id);}
75
+ }
76
+ }else{
77
+ if(selected==field_data[1]) jQuery('#frm_field_'+field_data[0]+'_container').fadeIn('slow');
78
+ else jQuery('#frm_field_'+field_data[0]+'_container').fadeOut('slow');
79
+ }
80
+ })(i);
81
  }
 
 
 
 
 
 
 
 
 
82
  }
83
 
84
+ function frmGetData(field_data,selected,ajax_url,append){
85
+ jQuery.ajax({
86
+ type:"POST",url:ajax_url,
87
+ data:"controller=fields&action=ajax_get_data&entry_id="+selected+"&field_id="+field_data[1]+"&current_field="+field_data[0],
88
+ success:function(html){
89
+ if(html != '') jQuery('#frm_field_'+field_data[0]+'_container').fadeIn('slow');
90
+
91
+ if(append){jQuery('#frm_data_field_'+field_data[0]+'_container').append(html);}
92
+ else{
93
+ jQuery('#frm_data_field_'+field_data[0]+'_container').html(html);
94
+ if(html == '') jQuery('#frm_field_'+field_data[0]+'_container').fadeOut('slow');
95
+ }
96
+ return true;
97
+ }
98
+ });
 
 
 
 
 
 
 
 
 
 
 
 
99
  }
100
 
101
+ function frmGetDataOpts(field_data,selected,ajax_url,field_id){
102
+ jQuery.ajax({
103
+ type:"POST",url:ajax_url,
104
+ data:"controller=fields&action=ajax_data_options&hide_field="+field_id+"&entry_id="+selected+"&selected_field_id="+field_data[1]+"&field_id="+field_data[0],
105
+ success:function(html){
106
+ if(html != '') jQuery('#frm_field_'+field_data[0]+'_container').fadeIn('slow');
107
+ else jQuery('#frm_field_'+field_data[0]+'_container').fadeOut('slow');
108
+ jQuery('#frm_data_field_'+field_data[0]+'_container').html(html);
109
+ }
110
+ });
111
  }
112
 
113
+ function frmGetFormErrors(object,ajax_url){
114
+ jQuery.ajax({
115
+ type:"POST",url:ajax_url,dataType:'json',
116
+ data:jQuery(object).serialize()+"&controller=entries",
117
+ success:function(errObj){
118
+ if(errObj=='' || !errObj){
119
+ if(jQuery("#frm_loading").length){window.setTimeout(function(){jQuery("#frm_loading").fadeIn('slow');},2000);}
120
+ object.submit();
121
+ }else{
122
+ //show errors
123
+ var cont_submit=true;
124
+ jQuery('.form-field').removeClass('frm_blank_field');
125
+ jQuery('.form-field .frm_error').replaceWith('');
126
+ var jump='';
127
+ for (var key in errObj){
128
+ if(jQuery('#frm_field_'+key+'_container').length && jQuery('#frm_field_'+key+'_container').is(":visible")){
129
+ cont_submit=false;
130
+ if(jump==''){
131
+ jump='#frm_field_'+key+'_container';
132
+ var new_position=jQuery(jump).offset();
133
+ if(new_position)
134
+ window.scrollTo(new_position.left,new_position.top);
135
+ }
136
+ jQuery('#frm_field_'+key+'_container').append('<div class="frm_error">'+errObj[key]+'</div>').addClass('frm_blank_field');
137
+ }
138
+ }
139
+ if(cont_submit) object.submit();
140
+ }
141
+ },
142
+ error:function(html){object.submit();}
143
+ });
144
  }
145
 
146
+ function frmGetEntryToEdit(form_id,entry_id,post_id,ajax_url){
147
+ jQuery.ajax({
148
+ type:"POST",url:ajax_url,
149
+ data:"controller=entries&action=edit_entry_ajax&id="+form_id+"&post_id="+post_id+"entry_id="+entry_id,
150
+ success:function(form){jQuery('#frm_form_'+form_id+'_container').replaceWith(form);}
151
+ });
152
+ }
 
 
 
 
 
153
 
154
+ function frmEditEntry(entry_id,ajax_url,prefix,post_id,form_id,cancel){
155
+ var label=jQuery('#frm_edit_'+entry_id).text();
156
+ var orig=jQuery('#'+prefix+entry_id).html();
157
+ jQuery('#'+prefix+entry_id).html('<span class="frm-loading-img" id="'+prefix+entry_id+'"></span><div class="frm_orig_content" style="display:none">'+orig+'</div>');
158
+ jQuery.ajax({
159
+ type:"POST",url:ajax_url,
160
+ data:"controller=entries&action=edit_entry_ajax&post_id="+post_id+"&entry_id="+entry_id+"&id="+form_id,
161
+ success:function(html){
162
+ jQuery('#'+prefix+entry_id).children('.frm-loading-img').replaceWith(html);
163
+ jQuery('#frm_edit_'+entry_id).replaceWith('<span id="frm_edit_'+entry_id+'"><a onclick="frmCancelEdit('+entry_id+',\''+prefix+'\',\''+label+'\',\''+ajax_url+'\','+post_id+','+form_id+')">'+cancel+'</a></span>');
 
164
 
 
 
 
 
165
  }
166
  });
167
  }
168
 
169
+ function frmCancelEdit(entry_id,prefix,label,ajax_url,post_id,form_id){
170
+ var cancel=jQuery('#frm_edit_'+entry_id).text();
171
+ jQuery('#'+prefix+entry_id).children('.frm_forms').replaceWith('');
172
+ jQuery('#'+prefix+entry_id).children('.frm_orig_content').fadeIn('slow').removeClass('frm_orig_content');
173
+ jQuery('#frm_edit_'+entry_id).replaceWith('<a id="frm_edit_'+entry_id+'" class="frm_edit_link" href="javascript:frmEditEntry('+entry_id+',\''+ajax_url+'\',\''+prefix+'\','+post_id+','+form_id+',\''+cancel+'\')">'+label+'</a>');
174
+ }
175
+
176
+ function frmUpdateField(entry_id,field_id,value,message,ajax_url){
177
+ jQuery('#frm_update_field_'+entry_id+'_'+field_id).html('<span class="frm-loading-img"></span>');
178
+ jQuery.ajax({
179
+ type:"POST",url:ajax_url,
180
+ data:"controller=entries&action=update_field_ajax&entry_id="+entry_id+"&field_id="+field_id+"&value="+value,
181
+ success:function(html){
182
+ if(message == '')
183
+ jQuery('#frm_update_field_'+entry_id+'_'+field_id).fadeOut('slow');
184
+ else
185
+ jQuery('#frm_update_field_'+entry_id+'_'+field_id).replaceWith(message);
186
  }
187
+ });
188
  }
189
 
190
+ function frmDeleteEntry(entry_id,ajax_url,prefix){
191
+ jQuery('#frm_delete_'+entry_id).replaceWith('<span class="frm-loading-img" id="frm_delete_'+entry_id+'"></span>');
192
+ jQuery.ajax({
193
+ type:"POST",url:ajax_url,
194
+ data:"controller=entries&action=destroy&entry="+entry_id,
195
+ success:function(html){
196
+ if(html == 'success')
197
+ jQuery('#'+prefix+entry_id).fadeOut('slow');
198
+ else
199
+ jQuery('#frm_delete_'+entry_id).replaceWith(html);
200
+
201
+ }
202
+ });
203
  }
js/formidable_admin.js ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(document).ready(function($){
2
+ $(".frm_elastic_text").elastic();
3
+
4
+ window.onscroll = document.documentElement.onscroll = frmSetMenuOffset;
5
+ frmSetMenuOffset();
6
+
7
+ if ($("input[name='options[success_action]']:checked").val() == 'redirect')
8
+ $('.success_action_redirect_box.success_action_box').fadeIn('slow');
9
+ else if ($("input[name='options[success_action]']:checked").val() == 'page')
10
+ $('.success_action_page_box.success_action_box').fadeIn('slow');
11
+ else
12
+ $('.success_action_message_box.success_action_box').fadeIn('slow');
13
+
14
+ $("input[name='options[success_action]']").change(function(){
15
+ $('.success_action_box').hide();
16
+ if($(this).val()=='redirect')
17
+ $('.success_action_redirect_box.success_action_box').fadeIn('slow');
18
+ else if($(this).val()=='page')
19
+ $('.success_action_page_box.success_action_box').fadeIn('slow');
20
+ else
21
+ $('.success_action_message_box.success_action_box').fadeIn('slow');
22
+ });
23
+
24
+ jQuery('.item-list-form').submit(function(){
25
+ if(jQuery('#bulkaction').val()=='delete'){return confirm('Are you sure you want to delete each of the selected items below?');}
26
+ });
27
+
28
+ jQuery('.frm_single_option').hover(
29
+ function(){jQuery(this).children(".frm_single_show_hover").show(); jQuery(this).children(".frm_single_visible_hover").css('visibility','visible');},
30
+ function(){jQuery(this).children(".frm_single_show_hover").hide(); jQuery(this).children(".frm_single_visible_hover").css('visibility','hidden');}
31
+ );
32
+
33
+ jQuery('li.ui-state-default').click(function(evt){
34
+ var target = evt.target;
35
+ $('.frm-show-hover').hide(); $(this).children(".frm-show-hover").show();
36
+ $('.frm-show-click').hide(); $(this).children(".frm-show-click").show();
37
+ $('li.ui-state-default.selected').removeClass('selected'); $(this).addClass('selected');
38
+ if(!$(target).is('.inplace_field') && !$(target).is('.frm_ipe_field_label') && !$(target).is('.frm_ipe_field_desc') && !$(target).is('.frm_ipe_field_option')){ $('.inplace_field').blur();}
39
+ });
40
+ $("img.frm_help[title]").tooltip({tip:'#frm_tooltip',lazy:true});
41
+ $("img.frm_help_text[title]").tooltip({tip:'#frm_tooltip_text',lazy:true});
42
+ $("img.frm_help_big[title]").tooltip({tip:'#frm_tooltip_big',lazy:true});
43
+
44
+ jQuery('.field_type_list > li').draggable({connectToSortable:'#new_fields',cursor:'move',helper:'clone',revert:'invalid',delay:10});
45
+ jQuery("ul.field_type_list, .field_type_list li").disableSelection();
46
+
47
+
48
+ });
49
+
50
+ function frmUpdateOpts(field_id, ajax_url, opts){
51
+ jQuery('#frm_field_'+field_id+'_opts').html('').addClass('frm-loading-img');
52
+ jQuery.ajax({
53
+ type:"POST",url:ajax_url,
54
+ data:{action:'frm_import_options',field_id:field_id,opts:opts},
55
+ success:function(html){jQuery('#frm_field_'+field_id+'_opts').html(html).removeClass('frm-loading-img');}
56
+ });
57
+ }
58
+
59
+ function frm_remove_tag(html_tag){jQuery(html_tag).remove();}
60
+
61
+ function frm_show_div(div,value,show_if,class_id){
62
+ if(value==show_if) jQuery(class_id+div).fadeIn('slow'); else jQuery(class_id+div).fadeOut('slow');
63
+ }
64
+ function frm_select_item_checkbox(checked){if(!checked){jQuery(".select-all-item-action-checkboxes").removeAttr("checked");}}
65
+
66
+ function frm_select_all_checkboxes(checked){
67
+ if(checked){
68
+ jQuery(".item-action-checkbox").attr("checked","checked");jQuery(".select-all-item-action-checkboxes").attr("checked","checked");
69
+ }else{
70
+ jQuery(".item-action-checkbox").removeAttr("checked");jQuery(".select-all-item-action-checkboxes").removeAttr("checked");
71
+ }
72
+ }
73
+
74
+ function frmAddNewForm(form,action){
75
+ if(form !='') window.location='?page=formidable&action='+action+'&id='+form;
76
+ }
77
+ function frmRedirectToForm(form,action){
78
+ if(form !='') window.location='?page=formidable-entries&action='+action+'&form='+form;
79
+ }
80
+
81
+ function add_frm_field_link(form_id, field_type, ajax_url){
82
+ jQuery.ajax({type:"POST",url:ajax_url,data:"action=frm_insert_field&form_id="+form_id+"&field="+field_type,
83
+ success:function(msg){jQuery('#new_fields').append(msg);}
84
+ });
85
+ };
86
+
87
+ function frm_duplicate_field(field_id,ajax_url){
88
+ jQuery.ajax({type:"POST",url:ajax_url,data:"action=frm_duplicate_field&field_id="+field_id,
89
+ success:function(msg){jQuery('#new_fields').append(msg);}
90
+ });
91
+ };
92
+
93
+ function frm_mark_required(field_id, required, images_url, ajax_url){
94
+ var thisid='req_field_'+field_id;
95
+ if(required=='0'){var switch_to='1';var atitle='Click to Mark as Not Required';var checked='checked="checked"';
96
+ jQuery('.frm_required_details'+field_id).fadeIn('slow');}
97
+ else{var switch_to='0';var atitle='Click to Mark as Required';var checked='';
98
+ jQuery('.frm_required_details'+field_id).fadeOut('slow');}
99
+ jQuery('#'+thisid).replaceWith('<a href="javascript:frm_mark_required('+field_id+','+switch_to+',\''+images_url+'\',\''+ajax_url+'\')" class="alignleft frm_required'+switch_to+'" id="'+thisid+'" title="'+atitle+'"><img src="'+images_url+'/required.png" alt="required"></a>');
100
+ jQuery('#frm_'+thisid).replaceWith('<input type="checkbox" id="frm_'+thisid+'" name="field_options[required_'+field_id+']" value="1" '+checked+' onclick="frm_mark_required('+field_id+','+switch_to+',\''+images_url+'\',\''+ajax_url+'\')" />');
101
+ jQuery.ajax({type:"POST",url:ajax_url,data:"action=frm_mark_required&field="+field_id+"&required="+switch_to});
102
+ };
103
+
104
+ function frm_clear_on_focus(field_id, active, images_url, ajax_url){
105
+ var thisid='clear_field_'+field_id;
106
+ if (active=='1'){var switch_to='0';var new_class='frm_inactive_icon';}
107
+ else{var switch_to='1';var new_class='';}
108
+ jQuery('#'+thisid).replaceWith('<a href="javascript:frm_clear_on_focus('+field_id+','+switch_to+',\''+images_url+'\',\''+ajax_url+'\')" class="'+new_class +' frm-show-hover" id="'+thisid+'"><img src="'+images_url+'/reload.png"></a>');
109
+ jQuery.ajax({type:"POST",url:ajax_url,data:"action=frm_clear_on_focus&field="+field_id+"&active="+switch_to});
110
+ };
111
+
112
+ function frm_default_blank(field_id, active, images_url, ajax_url){
113
+ var thisid='default_blank_'+field_id;
114
+ if(active=='1'){var switch_to='0';var new_class='frm_inactive_icon';}
115
+ else{var switch_to='1';var new_class='';}
116
+ jQuery('#'+thisid).replaceWith('<a href="javascript:frm_default_blank('+field_id+','+switch_to+',\''+images_url+'\',\''+ajax_url+'\')" class="'+new_class+' frm-show-hover" id="'+thisid+'"><img src="'+images_url+'/error.png"></a>');
117
+ jQuery.ajax({type:"POST",url:ajax_url,data:"action=frm_default_blank&field="+field_id+"&active="+switch_to});
118
+ };
119
+
120
+ function frm_add_field_option(field_id, ajax_url, table){
121
+ var data = {action:'frm_add_field_option',field_id:field_id,t:table};
122
+ jQuery.post(ajax_url,data,function(msg){
123
+ jQuery('#frm_add_field_'+field_id).before(msg);
124
+ if(table=='row'){ jQuery('#frm-grid-'+field_id+' tr:last').after(msg);}
125
+ });
126
+ };
127
+
128
+ function frm_delete_field_option(field_id, opt_key, ajax_url){
129
+ jQuery.ajax({type:"POST",url:ajax_url,
130
+ data:"action=frm_delete_field_option&field_id="+field_id+"&opt_key="+opt_key,
131
+ success:function(msg){ jQuery('#frm_delete_field_'+field_id+'-'+opt_key+'_container').fadeOut("slow");}
132
+ });
133
+ };
134
+
135
+ function frm_field_hover(show, field_id){
136
+ var html_id = '#frm_field_id_'+field_id;
137
+ if(show){jQuery(html_id).children(".frm-show-hover").show();}
138
+ else{if(!jQuery(html_id).is('.selected')){jQuery(html_id).children(".frm-show-hover").hide();}}
139
+ }
140
+
141
+ function frmSetMenuOffset() {
142
+ var fields = jQuery('#frm_form_options .themeRoller');
143
+ if (!fields) return;
144
+ var currentOffset = document.documentElement.scrollTop || document.body.scrollTop; // body for Safari
145
+ var desiredOffset = 315 - currentOffset;
146
+ if (desiredOffset < 10) desiredOffset = 10;
147
+ //if (desiredOffset != parseInt(header.style.top))
148
+ fields.attr('style', 'top:'+desiredOffset + 'px;');
149
+ }
150
+
151
+ function frmDisplayFormSelected(form_id, ajax_url){
152
+ if (form_id == '') return;
153
+ jQuery.ajax({type:"POST",url:ajax_url,
154
+ data:"action=frm_get_field_tags&form_id="+form_id,
155
+ success:function(html){ jQuery('#content_fields').html(html);}
156
+ });
157
+ jQuery.ajax({type:"POST",url:ajax_url,
158
+ data:"action=frm_get_field_tags&target_id=dyncontent&form_id="+form_id,
159
+ success:function(html){ jQuery('#dyncontent_fields').html(html);}
160
+ });
161
+ jQuery.ajax({type:"POST",url:ajax_url,
162
+ data:"action=frm_get_entry_select&form_id="+form_id,
163
+ success:function(html){ jQuery('#entry_select_container').html(html);}
164
+ });
165
+ };
166
+
167
+ function frmInsertFieldCode(element_id, variable){
168
+ if(!element_id || element_id == 'content'){
169
+ send_to_editor(variable);
170
+ return;
171
+ }
172
+ var content_box=jQuery("#"+element_id);
173
+ if(content_box){
174
+ if(document.selection){content_box[0].focus();document.selection.createRange().text=variable;}
175
+ else if(content_box[0].selectionStart){obj=content_box[0];obj.value=obj.value.substr(0,obj.selectionStart)+variable+obj.value.substr(obj.selectionEnd,obj.value.length);}
176
+ else{content_box.val(variable+content_box.val());}
177
+ }
178
+ }
179
+
180
+ function frmSettingsTab(tab, id){
181
+ var t = tab.attr('href');
182
+ tab.parent().addClass('tabs').siblings('li').removeClass('tabs');
183
+ jQuery('#general_settings,#styling_settings').hide();
184
+ jQuery('#'+id+'_settings').show();
185
+ return false;
186
+ }
js/jquery/jquery-ui-themepicker.js CHANGED
@@ -125,7 +125,7 @@ jQuery.fn.themeswitcher = function(settings){
125
  updateCSS( css );
126
  var themeName = jQuery(this).find('span').text();
127
  button.find('.jquery-ui-themeswitcher-title').text( options.buttonPreText + themeName );
128
- jQuery('#frm_themepicker_input').html('<input type="hidden" value="'+css+'" id="frm_theme_css" name="frm_theme_css"><input type="hidden" value="'+themeName+'" id="frm_theme_name" name="frm_theme_name">');
129
  options.onSelect();
130
  if(options.closeOnSelect && switcherpane.is(':visible')){ switcherpane.spHide(); }
131
  return false;
125
  updateCSS( css );
126
  var themeName = jQuery(this).find('span').text();
127
  button.find('.jquery-ui-themeswitcher-title').text( options.buttonPreText + themeName );
128
+ jQuery('#frm_themepicker_input').html('<input type="hidden" value="'+css+'" id="frm_theme_css" name="frm_theme_css" /><input type="hidden" value="'+themeName+'" id="frm_theme_name" name="frm_theme_name" />');
129
  options.onSelect();
130
  if(options.closeOnSelect && switcherpane.is(':visible')){ switcherpane.spHide(); }
131
  return false;
languages/formidable-en_US.po CHANGED
@@ -19,7 +19,7 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: classes/controllers/FrmAppController.php:57
23
  #: classes/controllers/FrmFormsController.php:21
24
  #: classes/views/frm-forms/list.php:3
25
  #: pro/classes/views/shared/import_form.php:47
@@ -27,45 +27,31 @@ msgstr ""
27
  msgid "Forms"
28
  msgstr ""
29
 
30
- #: classes/controllers/FrmAppController.php:60
31
- #: classes/controllers/FrmFormsController.php:22
32
- #@ formidable
33
- msgid "Create a Form"
34
- msgstr ""
35
-
36
  #: classes/controllers/FrmAppController.php:63
37
  #: classes/controllers/FrmFormsController.php:23
38
- #: classes/views/frm-forms/list.php:3
39
  #@ formidable
40
  msgid "Templates"
41
  msgstr ""
42
 
43
- #: classes/controllers/FrmAppController.php:69
44
  #: classes/controllers/FrmSettingsController.php:14
45
- #: classes/views/frm-settings/form.php:3
46
  #@ formidable
47
  msgid "Settings"
48
  msgstr ""
49
 
50
- #: classes/controllers/FrmAppController.php:84
51
- #: classes/controllers/FrmAppController.php:114
52
  #, php-format
53
  #@ formidable
54
  msgid "Your Formidable Pro installation isn't quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Formidable Pro%2$s"
55
  msgstr ""
56
 
57
- #: classes/controllers/FrmAppController.php:105
58
- #@ formidable
59
- msgid "Your Formidable database needs to be updated.<br/>Please deactivate and reactivate the plugin to fix this."
60
- msgstr ""
61
-
62
- #: classes/controllers/FrmAppController.php:194
63
  #@ formidable
64
  msgid "Formidable was successfully uninstalled."
65
  msgstr ""
66
 
67
  #: classes/controllers/FrmEntriesController.php:15
68
- #: classes/views/frm-entries/list.php:3
69
  #@ formidable
70
  msgid "Pro Entries"
71
  msgstr ""
@@ -75,42 +61,42 @@ msgstr ""
75
  msgid "Please select a valid form"
76
  msgstr ""
77
 
78
- #: classes/controllers/FrmFormsController.php:76
79
  #@ formidable
80
  msgid "Form was Successfully Created"
81
  msgstr ""
82
 
83
- #: classes/controllers/FrmFormsController.php:111
84
  #@ formidable
85
  msgid "Form was Successfully Updated"
86
  msgstr ""
87
 
88
- #: classes/controllers/FrmFormsController.php:121
89
  #@ formidable
90
  msgid "Form template was Successfully Created"
91
  msgstr ""
92
 
93
- #: classes/controllers/FrmFormsController.php:121
94
  #@ formidable
95
  msgid "Form was Successfully Copied"
96
  msgstr ""
97
 
98
- #: classes/controllers/FrmFormsController.php:125
99
  #@ formidable
100
  msgid "There was a problem creating new template."
101
  msgstr ""
102
 
103
- #: classes/controllers/FrmFormsController.php:170
104
  #@ formidable
105
  msgid "Form was Successfully Deleted"
106
  msgstr ""
107
 
108
- #: classes/controllers/FrmFormsController.php:191
109
  #@ formidable
110
  msgid "Add Formidable Form"
111
  msgstr ""
112
 
113
- #: classes/controllers/FrmFormsController.php:314
114
  #@ formidable
115
  msgid "That template cannot be edited"
116
  msgstr ""
@@ -125,11 +111,6 @@ msgstr ""
125
  msgid "View Forms and Templates"
126
  msgstr ""
127
 
128
- #: classes/helpers/FrmAppHelper.php:45
129
- #@ formidable
130
- msgid "Create/Edit Forms and Templates"
131
- msgstr ""
132
-
133
  #: classes/helpers/FrmAppHelper.php:46
134
  #@ formidable
135
  msgid "Delete Forms and Templates"
@@ -145,11 +126,6 @@ msgstr ""
145
  msgid "View Entries from Admin Area"
146
  msgstr ""
147
 
148
- #: classes/helpers/FrmAppHelper.php:51
149
- #@ formidable
150
- msgid "Create Entries from Admin Area"
151
- msgstr ""
152
-
153
  #: classes/helpers/FrmAppHelper.php:52
154
  #@ formidable
155
  msgid "Edit Entries from Admin Area"
@@ -165,17 +141,6 @@ msgstr ""
165
  msgid "View Reports"
166
  msgstr ""
167
 
168
- #: classes/helpers/FrmAppHelper.php:55
169
- #@ formidable
170
- msgid "Create/Edit Custom Displays"
171
- msgstr ""
172
-
173
- #: classes/helpers/FrmAppHelper.php:169
174
- #: pro/classes/models/FrmProEntryMeta.php:129
175
- #@ formidable
176
- msgid "is an invalid format"
177
- msgstr ""
178
-
179
  #: classes/helpers/FrmFieldsHelper.php:7
180
  #@ formidable
181
  msgid "Text Input (One Line)"
@@ -212,7 +177,7 @@ msgid "Page Break"
212
  msgstr ""
213
 
214
  #: classes/helpers/FrmFieldsHelper.php:23
215
- #: pro/classes/views/settings/form.php:103
216
  #@ formidable
217
  msgid "File Upload"
218
  msgstr ""
@@ -228,19 +193,19 @@ msgid "Phone Number"
228
  msgstr ""
229
 
230
  #: classes/helpers/FrmFieldsHelper.php:27
231
- #: pro/classes/views/frmpro-forms/notifications.php:127
232
  #@ formidable
233
  msgid "Email Address"
234
  msgstr ""
235
 
236
  #: classes/helpers/FrmFieldsHelper.php:28
237
- #: pro/classes/models/FrmProField.php:24
238
  #@ formidable
239
  msgid "Date"
240
  msgstr ""
241
 
242
  #: classes/helpers/FrmFieldsHelper.php:29
243
- #: pro/classes/models/FrmProField.php:29
244
  #@ formidable
245
  msgid "Time"
246
  msgstr ""
@@ -275,48 +240,36 @@ msgstr ""
275
  msgid "Tags"
276
  msgstr ""
277
 
278
- #: classes/helpers/FrmFieldsHelper.php:55
279
  #@ formidable
280
  msgid "Untitled"
281
  msgstr ""
282
 
283
- #: classes/helpers/FrmFieldsHelper.php:55
284
- #: pro/classes/models/FrmProEntryMeta.php:129
285
- #@ formidable
286
- msgid "Untitled is an invalid format"
287
- msgstr ""
288
-
289
- #: classes/helpers/FrmFieldsHelper.php:220
290
  #, php-format
291
  #@ formidable
292
  msgid "Set this field to %1$sclear on click"
293
  msgstr ""
294
 
295
- #: classes/helpers/FrmFieldsHelper.php:226
296
  #, php-format
297
  #@ formidable
298
  msgid "This default value should %1$sbe considered blank"
299
  msgstr ""
300
 
301
  #: classes/helpers/FrmFormsHelper.php:16
302
- #: classes/views/frm-forms/default-templates.php:22
303
- #: classes/views/frm-forms/list.php:67
304
  #@ formidable
305
  msgid "Create Form from Template"
306
  msgstr ""
307
 
308
- #: classes/helpers/FrmFormsHelper.php:48
309
  #@ formidable
310
  msgid "Untitled Form"
311
  msgstr ""
312
 
313
- #: classes/helpers/FrmFieldsHelper.php:55
314
- #: classes/models/FrmEntry.php:228
315
- #@ formidable
316
- msgid "Untitled cannot be blank"
317
- msgstr ""
318
-
319
- #: classes/models/FrmEntry.php:260
320
  #@ formidable
321
  msgid "Your entry appears to be spam!"
322
  msgstr ""
@@ -327,117 +280,106 @@ msgstr ""
327
  msgid "%1$s form has been submitted on %2$s."
328
  msgstr ""
329
 
330
- #: classes/models/FrmNotification.php:39
331
- #: pro/classes/models/FrmProNotification.php:139
332
  #: pro/classes/views/displays/tags.php:21
333
- #: pro/classes/views/frmpro-entries/show.php:35
334
  #@ formidable
335
  msgid "User Information"
336
  msgstr ""
337
 
338
- #: classes/models/FrmNotification.php:40
339
- #: pro/classes/models/FrmProNotification.php:140
340
- #: pro/classes/models/FrmProNotification.php:144
341
- #: pro/classes/views/frmpro-entries/show.php:38
342
- #: pro/classes/views/frmpro-forms/add_form_options.php:60
 
343
  #@ formidable
344
  msgid "IP Address"
345
  msgstr ""
346
 
347
- #: classes/models/FrmNotification.php:41
348
- #: pro/classes/models/FrmProNotification.php:141
349
- #: pro/classes/models/FrmProNotification.php:146
350
- #: pro/classes/views/frmpro-entries/show.php:43
351
  #@ formidable
352
  msgid "User-Agent (Browser/OS)"
353
  msgstr ""
354
 
355
- #: classes/models/FrmNotification.php:42
356
- #: pro/classes/models/FrmProNotification.php:142
357
- #: pro/classes/models/FrmProNotification.php:148
358
- #: pro/classes/views/frmpro-entries/show.php:47
359
  #@ formidable
360
  msgid "Referrer"
361
  msgstr ""
362
 
363
- #: classes/models/FrmNotification.php:45
364
- #: pro/classes/models/FrmProNotification.php:160
365
- #: pro/classes/models/FrmProNotification.php:248
366
  #, php-format
367
  #@ formidable
368
  msgid "%1$s Form submitted on %2$s"
369
  msgstr ""
370
 
371
- #: classes/models/FrmSettings.php:90
372
- #: classes/models/FrmSettings.php:141
373
  #@ formidable
374
  msgid "Your responses were successfully submitted. Thank you!"
375
  msgstr ""
376
 
377
- #: classes/models/FrmSettings.php:94
378
- #: classes/models/FrmSettings.php:142
379
- #@ formidable
380
- msgid "We're sorry. There was an error processing your responses."
381
- msgstr ""
382
-
383
- #: classes/models/FrmSettings.php:98
384
- #: classes/models/FrmSettings.php:143
385
  #@ formidable
386
  msgid "Submit"
387
  msgstr ""
388
 
389
- #: classes/models/FrmSettings.php:101
390
  #@ formidable
391
  msgid "You do not have permission to view this form."
392
  msgstr ""
393
 
394
- #: classes/models/FrmSettings.php:105
395
  #@ formidable
396
  msgid "You do not have permission to do that"
397
  msgstr ""
398
 
399
- #: classes/models/FrmSettings.php:144
400
- #@ formidable
401
- msgid "You must log in"
402
- msgstr ""
403
-
404
- #: classes/models/FrmUpdate.php:132
405
  #@ formidable
406
  msgid "Pro Account Information"
407
  msgstr ""
408
 
409
- #: classes/models/FrmUpdate.php:141
410
  #, php-format
411
  #@ formidable
412
  msgid "Your Username & Password was accepted<br/>Now you can %1$sUpgrade Automatically!%2$s"
413
  msgstr ""
414
 
415
- #: classes/models/FrmUpdate.php:149
416
  #@ formidable
417
  msgid "ERROR"
418
  msgstr ""
419
 
420
- #: classes/models/FrmUpdate.php:169
421
  #@ formidable
422
  msgid "Ready to take your forms to the next level?<br/>Formidable Pro will help you style forms, manage data, and get reports."
423
  msgstr ""
424
 
425
- #: classes/models/FrmUpdate.php:171
426
  #@ formidable
427
  msgid "Learn More"
428
  msgstr ""
429
 
430
- #: classes/models/FrmUpdate.php:200
431
  #@ formidable
432
  msgid "WordPress MU"
433
  msgstr ""
434
 
435
- #: classes/models/FrmUpdate.php:203
436
  #@ formidable
437
  msgid "Use this username and password to enable Formidable Pro site-wide"
438
  msgstr ""
439
 
440
- #: classes/models/FrmUpdate.php:209
441
  #@ formidable
442
  msgid "Save"
443
  msgstr ""
@@ -452,90 +394,68 @@ msgstr ""
452
  msgid "We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly."
453
  msgstr ""
454
 
455
- #: classes/templates/contact.php:19
456
  #: classes/views/frm-forms/default-templates.php:7
457
- #: classes/views/frm-forms/default-templates.php:39
458
- #: classes/views/frm-forms/list.php:22
459
- #: classes/views/frm-forms/list.php:32
460
- #: classes/views/frm-forms/list.php:129
461
- #: classes/views/frm-forms/list.php:133
462
- #: pro/classes/views/displays/form.php:61
463
- #: pro/classes/views/displays/list.php:25
464
- #: pro/classes/views/displays/list.php:83
465
- #: pro/classes/views/frmpro-forms/notifications.php:125
 
 
466
  #@ formidable
467
  msgid "Name"
468
  msgstr ""
469
 
470
- #: classes/templates/contact.php:21
471
- #: pro/classes/models/FrmProDisplay.php:157
472
  #@ formidable
473
  msgid "Name cannot be blank"
474
  msgstr ""
475
 
476
- #: classes/templates/contact.php:26
477
- #: pro/classes/models/FrmProField.php:48
 
 
478
  #@ formidable
479
  msgid "Email"
480
  msgstr ""
481
 
482
- #: classes/templates/contact.php:28
483
- #@ formidable
484
- msgid "Email cannot be blank"
485
- msgstr ""
486
-
487
- #: classes/templates/contact.php:29
488
  #@ formidable
489
  msgid "Please enter a valid email address"
490
  msgstr ""
491
 
492
- #: classes/templates/contact.php:34
493
- #: pro/classes/models/FrmProField.php:43
494
  #@ formidable
495
  msgid "Website"
496
  msgstr ""
497
 
498
- #: classes/templates/contact.php:35
499
- #@ formidable
500
- msgid "Website cannot be blank"
501
- msgstr ""
502
-
503
- #: classes/templates/contact.php:36
504
- #@ formidable
505
- msgid "Website is an invalid format"
506
- msgstr ""
507
-
508
- #: classes/templates/contact.php:41
509
- #: pro/classes/views/frmpro-forms/notifications.php:79
510
- #: pro/classes/views/frmpro-forms/notifications.php:137
511
  #@ formidable
512
  msgid "Subject"
513
  msgstr ""
514
 
515
- #: classes/templates/contact.php:43
516
- #@ formidable
517
- msgid "Subject cannot be blank"
518
- msgstr ""
519
-
520
- #: classes/templates/contact.php:48
521
- #: pro/classes/views/frmpro-forms/notifications.php:85
522
- #: pro/classes/views/frmpro-forms/notifications.php:143
523
  #@ formidable
524
  msgid "Message"
525
  msgstr ""
526
 
527
- #: classes/templates/contact.php:50
528
- #@ formidable
529
- msgid "Message cannot be blank"
530
- msgstr ""
531
-
532
- #: classes/templates/contact.php:55
533
  #@ formidable
534
  msgid "Captcha"
535
  msgstr ""
536
 
537
- #: classes/views/frm-entries/form.php:48
538
- #: pro/classes/helpers/FrmProFieldsHelper.php:553
 
539
  #@ formidable
540
  msgid "Entry Key"
541
  msgstr ""
@@ -546,180 +466,173 @@ msgstr ""
546
  msgid "Upgrade to %1$sFormidable Pro%2$s to view, search, export, and bulk delete your saved entries."
547
  msgstr ""
548
 
549
- #: classes/views/frm-forms/add_field.php:26
550
- #: classes/views/frm-forms/add_field.php:42
551
  #@ formidable
552
  msgid "Add an Option"
553
  msgstr ""
554
 
555
- #: classes/views/frm-forms/add_field.php:72
556
- #: classes/views/frm-forms/add_field_links.php:20
557
- #: classes/views/frm-forms/add_field_links.php:41
558
- #: classes/views/frm-forms/add_field_links.php:62
559
- #: classes/views/frm-forms/form.php:23
560
- #: classes/views/frm-forms/form.php:79
 
 
561
  #@ formidable
562
  msgid "Collapse"
563
  msgstr ""
564
 
565
- #: classes/views/frm-forms/add_field.php:73
566
  #@ formidable
567
  msgid "Field Options"
568
  msgstr ""
569
 
570
- #: classes/views/frm-forms/add_field.php:79
571
- #: pro/classes/views/frmpro-fields/options-form.php:66
572
- #: pro/classes/widgets/FrmShowForm.php:56
573
  #@ formidable
574
  msgid "Field Size"
575
  msgstr ""
576
 
577
- #: classes/views/frm-forms/add_field.php:80
578
  #@ formidable
579
  msgid "columns wide"
580
  msgstr ""
581
 
582
- #: classes/views/frm-forms/add_field.php:80
 
583
  #@ formidable
584
  msgid "characters wide"
585
  msgstr ""
586
 
587
- #: classes/views/frm-forms/add_field.php:82
588
  #@ formidable
589
  msgid "rows high"
590
  msgstr ""
591
 
592
- #: classes/views/frm-forms/add_field.php:82
593
  #@ formidable
594
  msgid "characters maximum"
595
  msgstr ""
596
 
597
- #: classes/views/frm-forms/add_field.php:86
598
- #: classes/views/frm-forms/form.php:131
599
  #@ formidable
600
  msgid "Label Position"
601
  msgstr ""
602
 
603
- #: classes/views/frm-forms/add_field.php:88
604
  #@ formidable
605
  msgid "Top"
606
  msgstr ""
607
 
608
- #: classes/views/frm-forms/add_field.php:89
609
  #@ formidable
610
  msgid "Left"
611
  msgstr ""
612
 
613
- #: classes/views/frm-forms/add_field.php:90
614
  #@ formidable
615
  msgid "Right"
616
  msgstr ""
617
 
618
- #: classes/views/frm-forms/add_field.php:91
619
  #@ formidable
620
  msgid "Hidden"
621
  msgstr ""
622
 
623
- #: classes/views/frm-forms/add_field.php:100
624
  #@ formidable
625
  msgid "Indicate required field with"
626
  msgstr ""
627
 
628
- #: classes/views/frm-forms/add_field.php:110
629
- #@ formidable
630
- msgid "Error message if entry is an invalid format"
631
- msgstr ""
632
-
633
- #: classes/views/frm-forms/add_field_links.php:3
634
- #@ formidable
635
- msgid "Copy this code and paste it into your post, page or text widget"
636
- msgstr ""
637
-
638
- #: classes/views/frm-forms/add_field_links.php:7
639
  #@ formidable
640
  msgid "Preview Form"
641
  msgstr ""
642
 
643
- #: classes/views/frm-forms/add_field_links.php:9
644
  #@ formidable
645
  msgid "Preview in Current Theme"
646
  msgstr ""
647
 
648
- #: classes/views/frm-forms/add_field_links.php:13
649
  #@ formidable
650
  msgid "Click on or drag a field into your form"
651
  msgstr ""
652
 
653
- #: classes/views/frm-forms/add_field_links.php:21
654
  #@ formidable
655
  msgid "Basic Fields"
656
  msgstr ""
657
 
658
- #: classes/views/frm-forms/add_field_links.php:42
659
  #@ formidable
660
  msgid "Pro Fields"
661
  msgstr ""
662
 
663
- #: classes/views/frm-forms/add_field_links.php:63
664
- #: classes/views/frm-forms/form.php:119
665
- #: classes/views/frm-forms/list.php:38
666
- #: classes/views/frm-forms/list.php:135
667
- #: pro/classes/helpers/FrmProFieldsHelper.php:562
668
- #: pro/classes/helpers/FrmProFieldsHelper.php:577
669
- #: pro/classes/views/displays/form.php:127
670
- #: pro/classes/views/displays/form.php:138
671
- #: pro/classes/views/displays/list.php:37
672
- #: pro/classes/views/displays/list.php:85
673
  #@ formidable
674
  msgid "Key"
675
  msgstr ""
676
 
677
- #: classes/views/frm-forms/add_field_links.php:70
678
  #@ formidable
679
  msgid "required field"
680
  msgstr ""
681
 
682
- #: classes/views/frm-forms/add_field_links.php:72
683
  #@ formidable
684
  msgid "not required"
685
  msgstr ""
686
 
687
- #: classes/views/frm-forms/add_field_links.php:74
688
  #@ formidable
689
  msgid "clear default text on click"
690
  msgstr ""
691
 
692
- #: classes/views/frm-forms/add_field_links.php:76
693
  #@ formidable
694
  msgid "do not clear default text on click"
695
  msgstr ""
696
 
697
- #: classes/views/frm-forms/add_field_links.php:78
698
  #@ formidable
699
  msgid "default value will NOT pass validation"
700
  msgstr ""
701
 
702
- #: classes/views/frm-forms/add_field_links.php:80
703
  #@ formidable
704
  msgid "default value will pass validation"
705
  msgstr ""
706
 
707
- #: classes/views/frm-forms/add_field_links.php:82
708
  #@ formidable
709
  msgid "delete field and all inputed data"
710
  msgstr ""
711
 
712
- #: classes/views/frm-forms/add_field_links.php:84
713
  #@ formidable
714
  msgid "duplicate field"
715
  msgstr ""
716
 
717
- #: classes/views/frm-forms/add_field_links.php:86
718
  #@ formidable
719
  msgid "move field"
720
  msgstr ""
721
 
722
- #: classes/views/frm-forms/add_field_links.php:95
723
  #@ formidable
724
  msgid "Enter or select default values into fields on this form."
725
  msgstr ""
@@ -730,14 +643,14 @@ msgid "Default Templates"
730
  msgstr ""
731
 
732
  #: classes/views/frm-forms/default-templates.php:8
733
- #: classes/views/frm-forms/default-templates.php:40
734
- #: classes/views/frm-forms/list.php:25
735
- #: classes/views/frm-forms/list.php:35
736
- #: classes/views/frm-forms/list.php:130
737
- #: classes/views/frm-forms/list.php:134
738
- #: pro/classes/views/displays/form.php:77
739
- #: pro/classes/views/displays/list.php:31
740
- #: pro/classes/views/displays/list.php:84
741
  #@ formidable
742
  msgid "Description"
743
  msgstr ""
@@ -747,63 +660,71 @@ msgstr ""
747
  msgid "No Templates Found"
748
  msgstr ""
749
 
750
- #: classes/views/frm-forms/default-templates.php:19
751
  #@ formidable
752
  msgid "Preview"
753
  msgstr ""
754
 
755
- #: classes/views/frm-forms/default-templates.php:22
756
- #: classes/views/frm-forms/list.php:67
757
- #: classes/views/frm-forms/list.php:100
758
- #: pro/classes/views/displays/form.php:256
759
- #: pro/classes/views/displays/list.php:63
760
  #@ formidable
761
  msgid "Copy"
762
  msgstr ""
763
 
764
- #: classes/views/frm-forms/default-templates.php:28
765
- #: pro/classes/views/frmpro-entries/list.php:55
 
766
  #@ formidable
767
  msgid "View"
768
  msgstr ""
769
 
770
- #: classes/views/frm-forms/default-templates.php:45
771
  #@ formidable
772
  msgid "Custom Templates"
773
  msgstr ""
774
 
775
  #: classes/views/frm-forms/edit.php:3
776
- #: pro/classes/controllers/FrmProEntriesController.php:117
777
  #@ formidable
778
  msgid "Edit Form"
779
  msgstr ""
780
 
781
- #: classes/views/frm-forms/edit.php:16
782
- #: classes/views/frm-forms/edit.php:29
783
- #: pro/classes/controllers/FrmProDisplaysController.php:342
784
- #: pro/classes/models/FrmProSettings.php:183
785
  #@ formidable
786
  msgid "Update"
787
  msgstr ""
788
 
789
- #: classes/views/frm-forms/edit.php:17
790
- #: classes/views/frm-forms/edit.php:30
791
- #: classes/views/frm-forms/new-selection.php:10
792
- #: classes/views/frm-forms/new.php:20
793
- #: pro/classes/views/displays/form.php:280
794
- #: pro/classes/views/frmpro-entries/edit.php:24
795
- #: pro/classes/views/frmpro-entries/new.php:20
 
 
 
796
  #@ formidable
797
  msgid "or"
798
  msgstr ""
799
 
800
- #: classes/views/frm-forms/edit.php:18
801
- #: classes/views/frm-forms/edit.php:31
802
- #: classes/views/frm-forms/new.php:21
803
- #: pro/classes/views/displays/form.php:39
804
- #: pro/classes/views/displays/form.php:281
805
- #: pro/classes/views/frmpro-entries/edit.php:25
 
 
 
806
  #: pro/classes/views/frmpro-entries/new.php:21
 
807
  #@ formidable
808
  msgid "Cancel"
809
  msgstr ""
@@ -813,9 +734,11 @@ msgstr ""
813
  msgid "(Click here to add form description or instructions)"
814
  msgstr ""
815
 
 
816
  #: classes/views/frm-forms/footer.php:35
817
- #: pro/classes/helpers/FrmProEntriesHelper.php:45
818
- #: pro/classes/views/settings/formroller.php:511
 
819
  #@ formidable
820
  msgid "Loading..."
821
  msgstr ""
@@ -825,166 +748,166 @@ msgstr ""
825
  msgid "Are you sure you want to delete this field and all data associated with it?"
826
  msgstr ""
827
 
828
- #: classes/views/frm-forms/form.php:24
829
  #@ formidable
830
  msgid "Advanced Form Options"
831
  msgstr ""
832
 
833
- #: classes/views/frm-forms/form.php:30
834
  #@ formidable
835
  msgid "Form ShortCodes"
836
  msgstr ""
837
 
838
- #: classes/views/frm-forms/form.php:30
839
  #@ formidable
840
  msgid "Key and id are generally synonymous. For more information on using this shortcode, click now."
841
  msgstr ""
842
 
843
- #: classes/views/frm-forms/form.php:35
844
- #: classes/views/frm-forms/form.php:123
845
  #@ formidable
846
  msgid "Form Key"
847
  msgstr ""
848
 
849
- #: classes/views/frm-forms/form.php:39
850
  #@ formidable
851
  msgid "Styling"
852
  msgstr ""
853
 
854
- #: classes/views/frm-forms/form.php:41
855
  #@ formidable
856
  msgid "Use Formidable styling for this form"
857
  msgstr ""
858
 
859
- #: classes/views/frm-forms/form.php:44
860
  #@ formidable
861
  msgid "Submit Button Text"
862
  msgstr ""
863
 
864
- #: classes/views/frm-forms/form.php:48
865
  #@ formidable
866
  msgid "Action After Form Submission"
867
  msgstr ""
868
 
869
- #: classes/views/frm-forms/form.php:50
870
  #@ formidable
871
  msgid "To use the second two options, you must upgrade to Formidable Pro."
872
  msgstr ""
873
 
874
- #: classes/views/frm-forms/form.php:54
875
  #@ formidable
876
  msgid "Display a Message"
877
  msgstr ""
878
 
879
- #: classes/views/frm-forms/form.php:55
880
  #@ formidable
881
  msgid "Display content from another page"
882
  msgstr ""
883
 
884
- #: classes/views/frm-forms/form.php:56
885
  #@ formidable
886
  msgid "Redirect"
887
  msgstr ""
888
 
889
- #: classes/views/frm-forms/form.php:60
890
  #@ formidable
891
  msgid "Confirmation Message"
892
  msgstr ""
893
 
894
- #: classes/views/frm-forms/form.php:63
895
  #@ formidable
896
  msgid "Show the form with the success message."
897
  msgstr ""
898
 
899
- #: classes/views/frm-forms/form.php:70
900
  #@ formidable
901
  msgid "Use Akismet to check entries for spam"
902
  msgstr ""
903
 
904
- #: classes/views/frm-forms/form.php:80
905
  #@ formidable
906
  msgid "Form Notification Options"
907
  msgstr ""
908
 
909
- #: classes/views/frm-forms/form.php:86
910
  #@ formidable
911
  msgid "Email Form Responses to"
912
  msgstr ""
913
 
914
- #: classes/views/frm-forms/form.php:86
915
  #@ formidable
916
  msgid "To send to multiple addresses, separate each address with a comma"
917
  msgstr ""
918
 
919
- #: classes/views/frm-forms/form.php:99
920
  #@ formidable
921
  msgid "Before Fields"
922
  msgstr ""
923
 
924
- #: classes/views/frm-forms/form.php:114
925
  #@ formidable
926
  msgid "After Fields"
927
  msgstr ""
928
 
929
- #: classes/views/frm-forms/form.php:121
930
  #@ formidable
931
  msgid "Form Name"
932
  msgstr ""
933
 
934
- #: classes/views/frm-forms/form.php:122
935
  #@ formidable
936
  msgid "Form Description"
937
  msgstr ""
938
 
939
- #: classes/views/frm-forms/form.php:127
940
  #@ formidable
941
  msgid "Field Id"
942
  msgstr ""
943
 
944
- #: classes/views/frm-forms/form.php:128
945
  #: pro/classes/views/displays/tags.php:14
946
- #: pro/classes/views/frmpro-fields/options-form.php:210
947
  #@ formidable
948
  msgid "Field Key"
949
  msgstr ""
950
 
951
- #: classes/views/frm-forms/form.php:129
952
  #@ formidable
953
  msgid "Field Name"
954
  msgstr ""
955
 
956
- #: classes/views/frm-forms/form.php:130
957
  #: pro/classes/views/settings/formroller.php:92
958
  #@ formidable
959
  msgid "Field Description"
960
  msgstr ""
961
 
962
- #: classes/views/frm-forms/form.php:132
963
  #@ formidable
964
  msgid "Required label"
965
  msgstr ""
966
 
967
- #: classes/views/frm-forms/form.php:133
968
  #@ formidable
969
  msgid "Input Field"
970
  msgstr ""
971
 
972
- #: classes/views/frm-forms/form.php:134
973
  #@ formidable
974
  msgid "Show a single radio or checkbox option by replacing \"1\" with the order of the option"
975
  msgstr ""
976
 
977
- #: classes/views/frm-forms/form.php:135
978
  #@ formidable
979
  msgid "Hide the option labels"
980
  msgstr ""
981
 
982
- #: classes/views/frm-forms/form.php:137
983
  #@ formidable
984
  msgid "Add class name if field is required"
985
  msgstr ""
986
 
987
- #: classes/views/frm-forms/form.php:138
988
  #@ formidable
989
  msgid "Add class name if field has an error on form submit"
990
  msgstr ""
@@ -1009,248 +932,228 @@ msgstr ""
1009
  msgid "Display form description"
1010
  msgstr ""
1011
 
1012
- #: classes/views/frm-forms/list.php:29
1013
- #: classes/views/frm-forms/list.php:132
1014
- #: pro/classes/helpers/FrmProFieldsHelper.php:561
1015
- #: pro/classes/helpers/FrmProFieldsHelper.php:576
1016
- #: pro/classes/views/displays/form.php:126
1017
- #: pro/classes/views/displays/form.php:137
1018
- #: pro/classes/views/displays/list.php:19
1019
- #: pro/classes/views/displays/list.php:82
1020
  #@ formidable
1021
  msgid "ID"
1022
  msgstr ""
1023
 
1024
- #: classes/views/frm-forms/list.php:40
1025
- #: classes/views/frm-forms/list.php:95
1026
- #: classes/views/frm-forms/list.php:111
1027
- #: classes/views/frm-forms/list.php:136
1028
- #: pro/classes/controllers/FrmProEntriesController.php:44
1029
  #: pro/classes/views/frmpro-entries/list.php:3
 
1030
  #: pro/classes/views/shared/import_form.php:48
1031
  #@ formidable
1032
  msgid "Entries"
1033
  msgstr ""
1034
 
1035
- #: classes/views/frm-forms/list.php:41
1036
- #: classes/views/frm-forms/list.php:137
1037
  #@ formidable
1038
  msgid "Direct Link"
1039
  msgstr ""
1040
 
1041
- #: pro/classes/views/displays/list.php:44
1042
- #: pro/classes/views/displays/list.php:89
1043
  #@ formidable
1044
  msgid "ShortCode"
1045
  msgstr ""
1046
 
1047
- #: classes/views/frm-forms/list.php:49
1048
  #@ formidable
1049
  msgid "No Forms Found"
1050
  msgstr ""
1051
 
1052
- #: classes/views/frm-forms/list.php:60
1053
- #: classes/views/frm-forms/list.php:68
1054
- #: classes/views/frm-forms/list.php:81
1055
- #: classes/views/frm-forms/list.php:88
1056
- #: pro/classes/helpers/FrmProAppHelper.php:57
1057
- #: pro/classes/helpers/FrmProFieldsHelper.php:639
1058
- #: pro/classes/views/displays/list.php:62
1059
- #: pro/classes/views/frmpro-entries/list.php:58
 
 
1060
  #@ formidable
1061
  msgid "Edit"
1062
  msgstr ""
1063
 
1064
- #: classes/views/frm-forms/list.php:72
1065
- #: classes/views/frm-forms/list.php:105
1066
  #, php-format
1067
  #@ formidable
1068
  msgid "Are you sure you want to delete your %1$s Form?"
1069
  msgstr ""
1070
 
1071
- #: classes/views/frm-forms/list.php:72
1072
- #: classes/views/frm-forms/list.php:105
1073
- #: pro/classes/helpers/FrmProAppHelper.php:124
1074
- #: pro/classes/helpers/FrmProFieldsHelper.php:687
1075
- #: pro/classes/views/displays/form.php:37
1076
- #: pro/classes/views/displays/list.php:64
1077
- #: pro/classes/views/frmpro-entries/list.php:67
 
1078
  #@ formidable
1079
  msgid "Delete"
1080
  msgstr ""
1081
 
1082
- #: classes/views/frm-forms/list.php:92
1083
  #@ formidable
1084
  msgid "New"
1085
  msgstr ""
1086
 
1087
- #: classes/views/frm-forms/list.php:92
1088
- #: pro/classes/views/displays/list.php:42
1089
- #: pro/classes/views/displays/list.php:87
 
1090
  #@ formidable
1091
  msgid "Entry"
1092
  msgstr ""
1093
 
1094
- #: classes/views/frm-forms/list.php:92
1095
  #@ formidable
1096
  msgid "New Entry"
1097
  msgstr ""
1098
 
1099
- #: classes/views/frm-forms/list.php:97
1100
  #: pro/classes/controllers/FrmProStatisticsController.php:13
1101
  #: pro/classes/controllers/FrmProStatisticsController.php:25
1102
- #: pro/classes/views/frmpro-statistics/show.php:3
1103
  #@ formidable
1104
  msgid "Reports"
1105
  msgstr ""
1106
 
1107
  #: classes/views/frm-forms/add_field.php:6
1108
- #: classes/views/frm-forms/list.php:100
1109
- #: pro/classes/views/displays/list.php:63
1110
- #: pro/classes/views/frmpro-entries/list.php:62
 
 
1111
  #@ formidable
1112
  msgid "Duplicate"
1113
  msgstr ""
1114
 
1115
- #: classes/views/frm-forms/list.php:101
1116
- #: classes/views/frm-forms/new.php:19
1117
- #: pro/classes/controllers/FrmProDisplaysController.php:77
1118
- #: pro/classes/controllers/FrmProDisplaysController.php:86
1119
- #: pro/classes/views/frmpro-entries/new.php:19
1120
  #@ formidable
1121
  msgid "Create"
1122
  msgstr ""
1123
 
1124
- #: classes/views/frm-forms/list.php:101
1125
- #: classes/views/frm-forms/list.php:102
1126
  #@ formidable
1127
  msgid "Template"
1128
  msgstr ""
1129
 
1130
- #: classes/views/frm-forms/list.php:101
1131
  #@ formidable
1132
  msgid "Create Template"
1133
  msgstr ""
1134
 
1135
- #: classes/views/frm-forms/list.php:113
1136
  #@ formidable
1137
  msgid "View Form"
1138
  msgstr ""
1139
 
1140
- #: classes/views/frm-forms/new-field-js.php:18
1141
- #: classes/views/frm-forms/new-option-js.php:12
1142
  #@ formidable
1143
  msgid "(Blank)"
1144
  msgstr ""
1145
 
1146
- #: classes/views/frm-forms/new-field-js.php:29
1147
- #@ formidable
1148
- msgid "(Click here to add optional description or instructions)"
1149
- msgstr ""
1150
-
1151
- #: classes/views/frm-forms/new-selection.php:4
1152
- #: classes/views/frm-forms/new.php:3
1153
- #@ formidable
1154
- msgid "Create Form"
1155
- msgstr ""
1156
-
1157
- #: classes/views/frm-forms/new-selection.php:11
1158
- #@ formidable
1159
- msgid "Create New Form"
1160
- msgstr ""
1161
-
1162
- #: classes/views/frm-settings/form.php:13
1163
- #: classes/views/frm-settings/form.php:136
1164
  #@ formidable
1165
  msgid "Update Options"
1166
  msgstr ""
1167
 
1168
- #: classes/views/frm-settings/form.php:17
1169
  #@ formidable
1170
  msgid "Preview Page"
1171
  msgstr ""
1172
 
1173
- #: classes/views/frm-settings/form.php:37
1174
  #@ formidable
1175
  msgid "Include the jQuery CSS on ALL pages"
1176
  msgstr ""
1177
 
1178
- #: classes/views/frm-settings/form.php:37
1179
  #@ formidable
1180
  msgid "The styling for the date field calendar. Some users may be using this css on pages other than just the ones that include a date field."
1181
  msgstr ""
1182
 
1183
- #: classes/views/frm-settings/form.php:43
1184
  #@ formidable
1185
  msgid "User Permissions"
1186
  msgstr ""
1187
 
1188
- #: classes/views/frm-settings/form.php:43
1189
  #@ formidable
1190
  msgid "Select users that are allowed access to Formidable. Without access to View Forms, users will be unable to see the Formidable menu."
1191
  msgstr ""
1192
 
1193
- #: classes/views/frm-settings/form.php:91
1194
  #@ formidable
1195
  msgid "Default Messages"
1196
  msgstr ""
1197
 
1198
- #: classes/views/frm-settings/form.php:91
1199
  #@ formidable
1200
  msgid "You can override the success message and submit button settings on individual forms."
1201
  msgstr ""
1202
 
1203
- #: classes/views/frm-settings/form.php:93
1204
  #@ formidable
1205
  msgid "Success Message"
1206
  msgstr ""
1207
 
1208
- #: classes/views/frm-settings/form.php:93
1209
  #@ formidable
1210
  msgid "The default message seen after a form is submitted."
1211
  msgstr ""
1212
 
1213
- #: classes/views/frm-settings/form.php:101
1214
- #@ formidable
1215
- msgid "The message seen when a form is submitted and passes validation, but something goes wrong. You will likely never see this error."
1216
- msgstr ""
1217
-
1218
- #: classes/views/frm-settings/form.php:117
1219
  #@ formidable
1220
  msgid "Login Message"
1221
  msgstr ""
1222
 
1223
- #: classes/views/frm-settings/form.php:117
1224
  #@ formidable
1225
  msgid "The message seen when a user who is not logged-in views a form only logged-in users can submit."
1226
  msgstr ""
1227
 
1228
- #: pro/classes/views/settings/formroller.php:341
1229
  #@ formidable
1230
  msgid "Submit Button"
1231
  msgstr ""
1232
 
1233
- #: classes/views/frm-settings/form.php:134
1234
  #@ formidable
1235
  msgid "Are you sure you want to do this? Clicking OK will delete all forms, form data, and all other Formidable data. There is no Undo."
1236
  msgstr ""
1237
 
1238
- #: classes/views/frm-settings/form.php:134
1239
  #@ formidable
1240
  msgid "Uninstall Formidable"
1241
  msgstr ""
1242
 
1243
- #: classes/views/frm-statistics/list.php:3
1244
- #@ formidable
1245
- msgid "Pro Statistics"
1246
- msgstr ""
1247
-
1248
  #: classes/views/frm-statistics/list.php:9
1249
  #@ formidable
1250
  msgid "Upgrade to Formidable Pro to get reports and statistics on your saved entries"
1251
  msgstr ""
1252
 
1253
- #: classes/views/shared/item-table-nav.php:8
1254
  #, php-format
1255
  #@ formidable
1256
  msgid "Displaying %1$s&#8211;%2$s of %3$s"
@@ -1266,195 +1169,149 @@ msgstr ""
1266
  msgid "Formidable Tag"
1267
  msgstr ""
1268
 
1269
- #: pro/classes/controllers/FrmProDisplaysController.php:32
1270
- #: pro/classes/views/displays/list.php:3
1271
- #@ formidable
1272
- msgid "Custom Display"
1273
- msgstr ""
1274
-
1275
- #: pro/classes/controllers/FrmProDisplaysController.php:33
1276
- #@ formidable
1277
- msgid "New Custom Display"
1278
- msgstr ""
1279
-
1280
- #: pro/classes/controllers/FrmProDisplaysController.php:40
1281
- #@ formidable
1282
- msgid "Setup new Custom Display Settings"
1283
- msgstr ""
1284
-
1285
- #: pro/classes/controllers/FrmProDisplaysController.php:91
1286
- #@ formidable
1287
- msgid "Custom Display settings were Successfully Created"
1288
- msgstr ""
1289
-
1290
- #: pro/classes/controllers/FrmProDisplaysController.php:112
1291
- #@ formidable
1292
- msgid "Custom Display settings were Successfully Updated"
1293
- msgstr ""
1294
-
1295
- #: pro/classes/controllers/FrmProDisplaysController.php:122
1296
- #@ formidable
1297
- msgid "Custom Display settings were Successfully Copied"
1298
- msgstr ""
1299
-
1300
- #: pro/classes/controllers/FrmProDisplaysController.php:126
1301
  #@ formidable
1302
  msgid "There was a problem creating new Entry Display settings."
1303
  msgstr ""
1304
 
1305
- #: pro/classes/controllers/FrmProDisplaysController.php:134
1306
- #@ formidable
1307
- msgid "Custom Display settings were Successfully Deleted"
1308
- msgstr ""
1309
-
1310
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1311
  #@ formidable
1312
  msgid "January"
1313
  msgstr ""
1314
 
1315
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1316
  #@ formidable
1317
  msgid "February"
1318
  msgstr ""
1319
 
1320
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1321
  #@ formidable
1322
  msgid "March"
1323
  msgstr ""
1324
 
1325
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1326
  #@ formidable
1327
  msgid "April"
1328
  msgstr ""
1329
 
1330
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1331
  #@ formidable
1332
  msgid "May"
1333
  msgstr ""
1334
 
1335
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1336
  #@ formidable
1337
  msgid "June"
1338
  msgstr ""
1339
 
1340
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1341
  #@ formidable
1342
  msgid "July"
1343
  msgstr ""
1344
 
1345
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1346
  #@ formidable
1347
  msgid "August"
1348
  msgstr ""
1349
 
1350
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1351
  #@ formidable
1352
  msgid "September"
1353
  msgstr ""
1354
 
1355
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1356
  #@ formidable
1357
  msgid "October"
1358
  msgstr ""
1359
 
1360
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1361
  #@ formidable
1362
  msgid "November"
1363
  msgstr ""
1364
 
1365
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1366
  #@ formidable
1367
  msgid "December"
1368
  msgstr ""
1369
 
1370
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1371
  #@ formidable
1372
  msgid "Sunday"
1373
  msgstr ""
1374
 
1375
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1376
  #@ formidable
1377
  msgid "Monday"
1378
  msgstr ""
1379
 
1380
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1381
  #@ formidable
1382
  msgid "Tuesday"
1383
  msgstr ""
1384
 
1385
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1386
  #@ formidable
1387
  msgid "Wednesday"
1388
  msgstr ""
1389
 
1390
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1391
  #@ formidable
1392
  msgid "Thursday"
1393
  msgstr ""
1394
 
1395
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1396
  #@ formidable
1397
  msgid "Friday"
1398
  msgstr ""
1399
 
1400
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1401
  #@ formidable
1402
  msgid "Saturday"
1403
  msgstr ""
1404
 
1405
- #: pro/classes/controllers/FrmProDisplaysController.php:376
1406
  #@ formidable
1407
  msgid "That is not a valid custom display ID"
1408
  msgstr ""
1409
 
1410
- #: pro/classes/controllers/FrmProDisplaysController.php:594
1411
- #: pro/classes/views/frmpro-entries/list.php:29
 
1412
  #@ formidable
1413
  msgid "No Entries Found"
1414
  msgstr ""
1415
 
1416
- #: pro/classes/controllers/FrmProEntriesController.php:46
1417
- #@ formidable
1418
- msgid "Create an Entry"
1419
- msgstr ""
1420
-
1421
- #: pro/classes/controllers/FrmProEntriesController.php:120
1422
- #@ formidable
1423
- msgid "Add an Entry"
1424
- msgstr ""
1425
-
1426
- #: pro/classes/controllers/FrmProEntriesController.php:181
1427
  #@ formidable
1428
  msgid "Entry was Successfully Created"
1429
  msgstr ""
1430
 
1431
- #: pro/classes/controllers/FrmProEntriesController.php:205
1432
  #@ formidable
1433
  msgid "Entry was Successfully Updated"
1434
  msgstr ""
1435
 
1436
- #: pro/classes/controllers/FrmProEntriesController.php:205
1437
  #@ formidable
1438
  msgid "Back to Entries"
1439
  msgstr ""
1440
 
1441
- #: pro/classes/controllers/FrmProEntriesController.php:221
1442
  #@ formidable
1443
  msgid "Entry was Successfully Duplicated"
1444
  msgstr ""
1445
 
1446
- #: pro/classes/controllers/FrmProEntriesController.php:223
1447
  #@ formidable
1448
  msgid "There was a problem duplicating that entry"
1449
  msgstr ""
1450
 
1451
- #: pro/classes/controllers/FrmProEntriesController.php:241
1452
- #: pro/classes/controllers/FrmProEntriesController.php:348
1453
  #@ formidable
1454
  msgid "Entry was Successfully Destroyed"
1455
  msgstr ""
1456
 
1457
- #: pro/classes/controllers/FrmProEntriesController.php:256
1458
  #@ formidable
1459
  msgid "No entries were specified"
1460
  msgstr ""
@@ -1464,597 +1321,592 @@ msgstr ""
1464
  msgid "Duplicate Field"
1465
  msgstr ""
1466
 
1467
- #: pro/classes/controllers/FrmProFieldsController.php:210
1468
  #@ formidable
1469
  msgid "English/Western"
1470
  msgstr ""
1471
 
1472
- #: pro/classes/controllers/FrmProFieldsController.php:210
1473
  #@ formidable
1474
  msgid "Afrikaans"
1475
  msgstr ""
1476
 
1477
- #: pro/classes/controllers/FrmProFieldsController.php:210
1478
  #@ formidable
1479
  msgid "Albanian"
1480
  msgstr ""
1481
 
1482
- #: pro/classes/controllers/FrmProFieldsController.php:210
1483
  #@ formidable
1484
  msgid "Arabic"
1485
  msgstr ""
1486
 
1487
- #: pro/classes/controllers/FrmProFieldsController.php:210
1488
  #@ formidable
1489
  msgid "Armenian"
1490
  msgstr ""
1491
 
1492
- #: pro/classes/controllers/FrmProFieldsController.php:210
1493
  #@ formidable
1494
  msgid "Azerbaijani"
1495
  msgstr ""
1496
 
1497
- #: pro/classes/controllers/FrmProFieldsController.php:210
1498
  #@ formidable
1499
  msgid "Basque"
1500
  msgstr ""
1501
 
1502
- #: pro/classes/controllers/FrmProFieldsController.php:210
1503
  #@ formidable
1504
  msgid "Bosnian"
1505
  msgstr ""
1506
 
1507
- #: pro/classes/controllers/FrmProFieldsController.php:210
1508
  #@ formidable
1509
  msgid "Bulgarian"
1510
  msgstr ""
1511
 
1512
- #: pro/classes/controllers/FrmProFieldsController.php:210
1513
  #@ formidable
1514
  msgid "Catalan"
1515
  msgstr ""
1516
 
1517
- #: pro/classes/controllers/FrmProFieldsController.php:210
1518
  #@ formidable
1519
  msgid "Chinese Hong Kong"
1520
  msgstr ""
1521
 
1522
- #: pro/classes/controllers/FrmProFieldsController.php:210
1523
  #@ formidable
1524
  msgid "Chinese Simplified"
1525
  msgstr ""
1526
 
1527
- #: pro/classes/controllers/FrmProFieldsController.php:210
1528
  #@ formidable
1529
  msgid "Chinese Traditional"
1530
  msgstr ""
1531
 
1532
- #: pro/classes/controllers/FrmProFieldsController.php:210
1533
  #@ formidable
1534
  msgid "Croatian"
1535
  msgstr ""
1536
 
1537
- #: pro/classes/controllers/FrmProFieldsController.php:210
1538
  #@ formidable
1539
  msgid "Czech"
1540
  msgstr ""
1541
 
1542
- #: pro/classes/controllers/FrmProFieldsController.php:210
1543
  #@ formidable
1544
  msgid "Danish"
1545
  msgstr ""
1546
 
1547
- #: classes/views/frm-settings/form.php:82
1548
- #: pro/classes/controllers/FrmProFieldsController.php:210
1549
  #@ formidable
1550
  msgid "Dutch"
1551
  msgstr ""
1552
 
1553
- #: pro/classes/controllers/FrmProFieldsController.php:210
1554
  #@ formidable
1555
  msgid "English/UK"
1556
  msgstr ""
1557
 
1558
- #: pro/classes/controllers/FrmProFieldsController.php:210
1559
  #@ formidable
1560
  msgid "Esperanto"
1561
  msgstr ""
1562
 
1563
- #: pro/classes/controllers/FrmProFieldsController.php:210
1564
  #@ formidable
1565
  msgid "Estonian"
1566
  msgstr ""
1567
 
1568
- #: pro/classes/controllers/FrmProFieldsController.php:210
1569
  #@ formidable
1570
  msgid "Faroese"
1571
  msgstr ""
1572
 
1573
- #: pro/classes/controllers/FrmProFieldsController.php:210
1574
  #@ formidable
1575
  msgid "Farsi/Persian"
1576
  msgstr ""
1577
 
1578
- #: pro/classes/controllers/FrmProFieldsController.php:210
1579
  #@ formidable
1580
  msgid "Finnish"
1581
  msgstr ""
1582
 
1583
- #: classes/views/frm-settings/form.php:82
1584
- #: pro/classes/controllers/FrmProFieldsController.php:210
1585
  #@ formidable
1586
  msgid "French"
1587
  msgstr ""
1588
 
1589
- #: pro/classes/controllers/FrmProFieldsController.php:210
1590
  #@ formidable
1591
  msgid "French/Swiss"
1592
  msgstr ""
1593
 
1594
- #: classes/views/frm-settings/form.php:82
1595
- #: pro/classes/controllers/FrmProFieldsController.php:210
1596
  #@ formidable
1597
  msgid "German"
1598
  msgstr ""
1599
 
1600
- #: pro/classes/controllers/FrmProFieldsController.php:210
1601
  #@ formidable
1602
  msgid "Greek"
1603
  msgstr ""
1604
 
1605
- #: pro/classes/controllers/FrmProFieldsController.php:210
1606
  #@ formidable
1607
  msgid "Hebrew"
1608
  msgstr ""
1609
 
1610
- #: pro/classes/controllers/FrmProFieldsController.php:210
1611
  #@ formidable
1612
  msgid "Hungarian"
1613
  msgstr ""
1614
 
1615
- #: pro/classes/controllers/FrmProFieldsController.php:210
1616
  #@ formidable
1617
  msgid "Icelandic"
1618
  msgstr ""
1619
 
1620
- #: pro/classes/controllers/FrmProFieldsController.php:210
1621
  #@ formidable
1622
  msgid "Italian"
1623
  msgstr ""
1624
 
1625
- #: pro/classes/controllers/FrmProFieldsController.php:210
1626
  #@ formidable
1627
  msgid "Japanese"
1628
  msgstr ""
1629
 
1630
- #: pro/classes/controllers/FrmProFieldsController.php:210
1631
  #@ formidable
1632
  msgid "Korean"
1633
  msgstr ""
1634
 
1635
- #: pro/classes/controllers/FrmProFieldsController.php:210
1636
  #@ formidable
1637
  msgid "Latvian"
1638
  msgstr ""
1639
 
1640
- #: pro/classes/controllers/FrmProFieldsController.php:210
1641
  #@ formidable
1642
  msgid "Lithuanian"
1643
  msgstr ""
1644
 
1645
- #: pro/classes/controllers/FrmProFieldsController.php:210
1646
  #@ formidable
1647
  msgid "Malaysian"
1648
  msgstr ""
1649
 
1650
- #: pro/classes/controllers/FrmProFieldsController.php:210
1651
  #@ formidable
1652
  msgid "Norwegian"
1653
  msgstr ""
1654
 
1655
- #: pro/classes/controllers/FrmProFieldsController.php:210
1656
  #@ formidable
1657
  msgid "Polish"
1658
  msgstr ""
1659
 
1660
- #: pro/classes/controllers/FrmProFieldsController.php:210
1661
  #@ formidable
1662
  msgid "Portuguese/Brazilian"
1663
  msgstr ""
1664
 
1665
- #: pro/classes/controllers/FrmProFieldsController.php:210
1666
  #@ formidable
1667
  msgid "Romanian"
1668
  msgstr ""
1669
 
1670
- #: classes/views/frm-settings/form.php:82
1671
- #: pro/classes/controllers/FrmProFieldsController.php:210
1672
  #@ formidable
1673
  msgid "Russian"
1674
  msgstr ""
1675
 
1676
- #: pro/classes/controllers/FrmProFieldsController.php:210
 
1677
  #@ formidable
1678
  msgid "Serbian"
1679
  msgstr ""
1680
 
1681
- #: pro/classes/controllers/FrmProFieldsController.php:210
1682
  #@ formidable
1683
  msgid "Slovak"
1684
  msgstr ""
1685
 
1686
- #: pro/classes/controllers/FrmProFieldsController.php:210
1687
  #@ formidable
1688
  msgid "Slovenian"
1689
  msgstr ""
1690
 
1691
- #: classes/views/frm-settings/form.php:82
1692
- #: pro/classes/controllers/FrmProFieldsController.php:210
1693
  #@ formidable
1694
  msgid "Spanish"
1695
  msgstr ""
1696
 
1697
- #: pro/classes/controllers/FrmProFieldsController.php:210
1698
  #@ formidable
1699
  msgid "Swedish"
1700
  msgstr ""
1701
 
1702
- #: pro/classes/controllers/FrmProFieldsController.php:210
1703
  #@ formidable
1704
  msgid "Tamil"
1705
  msgstr ""
1706
 
1707
- #: pro/classes/controllers/FrmProFieldsController.php:210
1708
  #@ formidable
1709
  msgid "Thai"
1710
  msgstr ""
1711
 
1712
- #: classes/views/frm-settings/form.php:82
1713
- #: pro/classes/controllers/FrmProFieldsController.php:210
1714
  #@ formidable
1715
  msgid "Turkish"
1716
  msgstr ""
1717
 
1718
- #: pro/classes/controllers/FrmProFieldsController.php:210
1719
  #@ formidable
1720
  msgid "Ukranian"
1721
  msgstr ""
1722
 
1723
- #: pro/classes/controllers/FrmProFieldsController.php:210
1724
  #@ formidable
1725
  msgid "Vietnamese"
1726
  msgstr ""
1727
 
1728
- #: pro/classes/controllers/FrmProFormsController.php:63
1729
  #@ formidable
1730
  msgid "Current Date"
1731
  msgstr ""
1732
 
1733
- #: pro/classes/controllers/FrmProFormsController.php:64
1734
  #@ formidable
1735
  msgid "Current Time"
1736
  msgstr ""
1737
 
1738
- #: pro/classes/controllers/FrmProFormsController.php:65
1739
  #@ formidable
1740
  msgid "User Email"
1741
  msgstr ""
1742
 
1743
- #: pro/classes/controllers/FrmProFormsController.php:66
1744
  #@ formidable
1745
  msgid "User Login"
1746
  msgstr ""
1747
 
1748
- #: pro/classes/controllers/FrmProFormsController.php:67
1749
  #@ formidable
1750
  msgid "User Display Name"
1751
  msgstr ""
1752
 
1753
- #: pro/classes/controllers/FrmProFormsController.php:68
1754
  #@ formidable
1755
  msgid "User First Name"
1756
  msgstr ""
1757
 
1758
- #: pro/classes/controllers/FrmProFormsController.php:69
1759
  #@ formidable
1760
  msgid "User Last Name"
1761
  msgstr ""
1762
 
1763
- #: pro/classes/controllers/FrmProFormsController.php:70
1764
  #@ formidable
1765
  msgid "User Meta"
1766
  msgstr ""
1767
 
1768
- #: pro/classes/controllers/FrmProFormsController.php:71
 
 
1769
  #@ formidable
1770
  msgid "Post ID"
1771
  msgstr ""
1772
 
1773
- #: pro/classes/controllers/FrmProFormsController.php:73
1774
  #@ formidable
1775
  msgid "Client IP Address"
1776
  msgstr ""
1777
 
1778
- #: pro/classes/controllers/FrmProFormsController.php:74
1779
  #@ formidable
1780
  msgid "Auto Increment"
1781
  msgstr ""
1782
 
1783
- #: pro/classes/controllers/FrmProFormsController.php:75
1784
  #@ formidable
1785
  msgid "GET/POST variable"
1786
  msgstr ""
1787
 
1788
- #: classes/views/frm-forms/list.php:102
1789
- #: pro/classes/controllers/FrmProFormsController.php:100
1790
  #@ formidable
1791
  msgid "Export Template"
1792
  msgstr ""
1793
 
1794
- #: pro/classes/controllers/FrmProStatisticsController.php:226
1795
  #@ formidable
1796
  msgid "Completed"
1797
  msgstr ""
1798
 
1799
- #: pro/classes/controllers/FrmProStatisticsController.php:226
1800
  #@ formidable
1801
  msgid "Not Completed"
1802
  msgstr ""
1803
 
1804
- #: pro/classes/helpers/FrmProAppHelper.php:123
1805
  #@ formidable
1806
  msgid "Bulk Actions"
1807
  msgstr ""
1808
 
1809
- #: pro/classes/helpers/FrmProAppHelper.php:127
1810
  #@ formidable
1811
  msgid "Apply"
1812
  msgstr ""
1813
 
1814
- #: pro/classes/helpers/FrmProAppHelper.php:150
1815
  #@ formidable
1816
  msgid "All Fields"
1817
  msgstr ""
1818
 
1819
- #: pro/classes/helpers/FrmProAppHelper.php:157
1820
  #@ formidable
1821
  msgid "Search"
1822
  msgstr ""
1823
 
1824
- #: pro/classes/helpers/FrmProAppHelper.php:159
1825
  #@ formidable
1826
  msgid "Reset"
1827
  msgstr ""
1828
 
1829
- #: pro/classes/helpers/FrmProFieldsHelper.php:246
1830
  #@ formidable
1831
  msgid "Draft"
1832
  msgstr ""
1833
 
1834
- #: pro/classes/helpers/FrmProFieldsHelper.php:247
1835
  #@ formidable
1836
  msgid "Pending Review"
1837
  msgstr ""
1838
 
1839
- #: pro/classes/helpers/FrmProFieldsHelper.php:249
1840
  #@ formidable
1841
  msgid "Published"
1842
  msgstr ""
1843
 
1844
- #: pro/classes/helpers/FrmProFieldsHelper.php:250
1845
  #@ formidable
1846
  msgid "Scheduled"
1847
  msgstr ""
1848
 
1849
- #: pro/classes/helpers/FrmProFieldsHelper.php:426
1850
  #@ formidable
1851
  msgid "Edit Uploaded File"
1852
  msgstr ""
1853
 
1854
- #: pro/classes/helpers/FrmProFieldsHelper.php:550
1855
  #@ formidable
1856
  msgid "Select a value to insert into the box below"
1857
  msgstr ""
1858
 
1859
- #: pro/classes/helpers/FrmProFieldsHelper.php:552
1860
  #@ formidable
1861
  msgid "Entry ID"
1862
  msgstr ""
1863
 
1864
- #: pro/classes/helpers/FrmProFieldsHelper.php:554
1865
  #@ formidable
1866
  msgid "Entry Creation Date"
1867
  msgstr ""
1868
 
1869
- #: pro/classes/helpers/FrmProFieldsHelper.php:556
1870
  #@ formidable
1871
  msgid "Form Fields"
1872
  msgstr ""
1873
 
1874
- #: pro/classes/helpers/FrmProFieldsHelper.php:564
1875
  #@ formidable
1876
  msgid "Thumbnail"
1877
  msgstr ""
1878
 
1879
- #: pro/classes/helpers/FrmProFieldsHelper.php:565
1880
  #@ formidable
1881
  msgid "Medium"
1882
  msgstr ""
1883
 
1884
- #: pro/classes/helpers/FrmProFieldsHelper.php:566
1885
  #@ formidable
1886
  msgid "Large"
1887
  msgstr ""
1888
 
1889
- #: pro/classes/helpers/FrmProFieldsHelper.php:567
1890
  #@ formidable
1891
  msgid "Full Size"
1892
  msgstr ""
1893
 
1894
- #: pro/classes/helpers/FrmProFieldsHelper.php:588
1895
  #@ formidable
1896
  msgid "Helpers"
1897
  msgstr ""
1898
 
1899
- #: pro/classes/helpers/FrmProFieldsHelper.php:589
1900
  #@ formidable
1901
  msgid "Admin link to edit the entry"
1902
  msgstr ""
1903
 
1904
- #: pro/classes/helpers/FrmProFieldsHelper.php:591
1905
  #@ formidable
1906
  msgid "Link to view single page if showing dynamic entries"
1907
  msgstr ""
1908
 
1909
- #: pro/classes/helpers/FrmProFieldsHelper.php:595
1910
  #@ formidable
1911
  msgid "Add a rotating 'even' or 'odd' class"
1912
  msgstr ""
1913
 
1914
- #: pro/classes/helpers/FrmProFieldsHelper.php:597
1915
  #@ formidable
1916
  msgid "Site URL"
1917
  msgstr ""
1918
 
1919
- #: pro/classes/models/FrmProDisplay.php:169
1920
  #@ formidable
1921
  msgid "Limit must be a number"
1922
  msgstr ""
1923
 
1924
- #: pro/classes/models/FrmProEntryMeta.php:94
 
1925
  #@ formidable
1926
  msgid "must be unique"
1927
  msgstr ""
1928
 
1929
- #: pro/classes/models/FrmProField.php:19
1930
- #@ formidable
1931
- msgid "1 = Not Important, 10 = Very Important"
1932
- msgstr ""
1933
-
1934
- #: pro/classes/models/FrmProField.php:33
1935
  #@ formidable
1936
  msgid "Phone"
1937
  msgstr ""
1938
 
1939
- #: pro/classes/models/FrmProField.php:39
1940
- #: pro/classes/models/FrmProForm.php:77
1941
  #@ formidable
1942
  msgid "User ID"
1943
  msgstr ""
1944
 
1945
- #: pro/classes/models/FrmProField.php:54
1946
  #@ formidable
1947
  msgid "Heading"
1948
  msgstr ""
1949
 
1950
- #: pro/classes/models/FrmProField.php:60
1951
- #: pro/classes/views/displays/list.php:43
1952
- #: pro/classes/views/displays/list.php:88
1953
  #@ formidable
1954
  msgid "Page"
1955
  msgstr ""
1956
 
1957
- #: pro/classes/models/FrmProForm.php:84
1958
  #@ formidable
1959
  msgid "Please insert a message for your auto responder."
1960
  msgstr ""
1961
 
1962
- #: pro/classes/models/FrmProForm.php:86
1963
  #@ formidable
1964
  msgid "That is not a valid reply-to email address for your auto responder."
1965
  msgstr ""
1966
 
1967
- #: pro/classes/models/FrmProSettings.php:101
1968
  #@ formidable
1969
  msgid "You have already submitted that form"
1970
  msgstr ""
1971
 
1972
- #: pro/classes/models/FrmProSettings.php:182
1973
- #@ formidable
1974
- msgid "Your responses were successfully saved."
1975
- msgstr ""
1976
-
1977
- #: pro/classes/views/displays/edit.php:7
1978
  #: pro/classes/views/displays/new.php:7
1979
  #@ formidable
1980
  msgid "Get Help with This Page"
1981
  msgstr ""
1982
 
1983
- #: pro/classes/views/displays/form.php:26
1984
  #@ formidable
1985
  msgid "Save to get ID"
1986
  msgstr ""
1987
 
1988
- #: pro/classes/views/settings/formroller.php:320
1989
  #@ formidable
1990
  msgid "Calendar"
1991
  msgstr ""
1992
 
1993
- #: pro/classes/views/displays/form.php:112
1994
  #@ formidable
1995
  msgid "Date Field"
1996
  msgstr ""
1997
 
1998
- #: pro/classes/views/displays/form.php:114
1999
- #: pro/classes/views/displays/form.php:204
2000
- #: pro/classes/views/displays/where_row.php:5
2001
  #@ formidable
2002
  msgid "Entry creation date"
2003
  msgstr ""
2004
 
2005
- #: pro/classes/views/displays/form.php:92
2006
  #@ formidable
2007
  msgid "Use Entries from Form"
2008
  msgstr ""
2009
 
2010
- #: pro/classes/views/displays/form.php:96
2011
  #@ formidable
2012
  msgid "Select Entry"
2013
  msgstr ""
2014
 
2015
- #: pro/classes/views/displays/form.php:96
2016
  #@ formidable
2017
  msgid "The first one depending on the Order specified below"
2018
  msgstr ""
2019
 
2020
- #: pro/classes/views/displays/form.php:153
2021
  #@ formidable
2022
  msgid "Before Content"
2023
  msgstr ""
2024
 
2025
- #: pro/classes/views/displays/form.php:153
2026
  #@ formidable
2027
  msgid "This content will not be repeated. This would be a good place to put any HTML table tags."
2028
  msgstr ""
2029
 
2030
- #: pro/classes/views/displays/form.php:148
2031
- #: pro/classes/views/displays/form.php:160
2032
- #: pro/classes/views/frmpro-fields/options-form.php:109
 
2033
  #@ formidable
2034
  msgid "Content"
2035
  msgstr ""
2036
 
2037
- #: pro/classes/views/displays/form.php:160
2038
  #@ formidable
2039
  msgid "The HTML for your page. If 'All Entries' is selected above, this content will be repeated for each entry. The field ID and Key work synonymously, although there are times one choice may be better. If you are panning to copy your custom display settings to other blogs, use the Key since they will be copied and the ids may differ from blog to blog."
2040
  msgstr ""
2041
 
2042
- #: pro/classes/views/displays/form.php:172
2043
  #@ formidable
2044
  msgid "After Content"
2045
  msgstr ""
2046
 
2047
- #: pro/classes/views/displays/form.php:172
2048
  #@ formidable
2049
  msgid "This content will not be repeated. This would be a good place to close any HTML tags from the Before Content field."
2050
  msgstr ""
2051
 
2052
- #: pro/classes/views/displays/form.php:179
2053
  #@ formidable
2054
  msgid "Dynamic Content"
2055
  msgstr ""
2056
 
2057
- #: pro/classes/views/displays/form.php:179
2058
  #, php-format
2059
  #@ formidable
2060
  msgid "The HTML for the entry on the dynamic page. This content will NOT be repeated, and will only show when the %1$s is clicked."
@@ -2075,82 +1927,77 @@ msgstr ""
2075
  msgid "If you would like the content to be inserted automatically, you must then select the page in which to insert it."
2076
  msgstr ""
2077
 
2078
- #: pro/classes/views/displays/form.php:121
2079
  #@ formidable
2080
  msgid "Detail Link"
2081
  msgstr ""
2082
 
2083
- #: pro/classes/views/displays/form.php:121
2084
  #, php-format
2085
  #@ formidable
2086
  msgid "Example: If parameter name is 'contact', the url would be like %1$s/selected-page?contact=2. If this entry is linked to a post, the post permalink will be used instead."
2087
  msgstr ""
2088
 
2089
- #: pro/classes/views/displays/form.php:129
2090
  #, php-format
2091
  #@ formidable
2092
  msgid "Select the value that will be added onto the page URL. This will create a pretty URL like %1$s/selected-page/entry-key"
2093
  msgstr ""
2094
 
2095
- #: pro/classes/views/displays/form.php:131
2096
  #@ formidable
2097
  msgid "Parameter Name"
2098
  msgstr ""
2099
 
2100
- #: pro/classes/views/displays/form.php:134
2101
  #@ formidable
2102
  msgid "Parameter Value"
2103
  msgstr ""
2104
 
2105
- #: pro/classes/views/displays/form.php:203
2106
  #@ formidable
2107
  msgid "Random"
2108
  msgstr ""
2109
 
2110
- #: pro/classes/views/displays/form.php:210
2111
  #@ formidable
2112
  msgid "Ascending"
2113
  msgstr ""
2114
 
2115
- #: pro/classes/views/displays/form.php:211
2116
  #@ formidable
2117
  msgid "Descending"
2118
  msgstr ""
2119
 
2120
- #: pro/classes/views/displays/form.php:218
2121
  #@ formidable
2122
  msgid "Narrow down which entries will be used."
2123
  msgstr ""
2124
 
2125
- #: pro/classes/views/displays/form.php:238
2126
  #@ formidable
2127
  msgid "If you don’t want all your entries displayed, you can insert the number limit here. Leave blank if you’d like all entries shown."
2128
  msgstr ""
2129
 
2130
- #: pro/classes/views/displays/form.php:247
2131
  #@ formidable
2132
  msgid "The number of entries to show per page. Leave blank to not use pagination."
2133
  msgstr ""
2134
 
2135
- #: pro/classes/views/displays/form.php:257
2136
- #@ formidable
2137
- msgid "Copy these display settings to other blogs when Formidable Pro is activated. Note: Use only field keys in the content box(es) below."
2138
- msgstr ""
2139
-
2140
- #: pro/classes/views/displays/list.php:41
2141
- #: pro/classes/views/displays/list.php:86
2142
  #: pro/classes/widgets/FrmPollResults.php:40
2143
- #: pro/classes/widgets/FrmShowForm.php:46
2144
  #@ formidable
2145
  msgid "Form"
2146
  msgstr ""
2147
 
2148
- #: pro/classes/views/displays/list.php:50
2149
  #@ formidable
2150
  msgid "No Records Found"
2151
  msgstr ""
2152
 
2153
- #: pro/classes/views/displays/list.php:64
2154
  #, php-format
2155
  #@ formidable
2156
  msgid "Are you sure you want to delete your %1$s display data?"
@@ -2211,32 +2058,32 @@ msgstr ""
2211
  msgid "Date options: 'NOW' or a date in yyyy-mm-dd format."
2212
  msgstr ""
2213
 
2214
- #: pro/classes/views/displays/where_row.php:8
2215
  #@ formidable
2216
  msgid "is"
2217
  msgstr ""
2218
 
2219
- #: pro/classes/views/displays/where_row.php:10
2220
  #@ formidable
2221
  msgid "equal to"
2222
  msgstr ""
2223
 
2224
- #: pro/classes/views/displays/where_row.php:11
2225
  #@ formidable
2226
  msgid "NOT equal to"
2227
  msgstr ""
2228
 
2229
- #: pro/classes/views/displays/where_row.php:12
2230
  #@ formidable
2231
  msgid "greater than"
2232
  msgstr ""
2233
 
2234
- #: pro/classes/views/displays/where_row.php:13
2235
  #@ formidable
2236
  msgid "less than"
2237
  msgstr ""
2238
 
2239
- #: pro/classes/views/displays/where_row.php:14
2240
  #@ formidable
2241
  msgid "like"
2242
  msgstr ""
@@ -2246,45 +2093,28 @@ msgstr ""
2246
  msgid "Edit Entry"
2247
  msgstr ""
2248
 
2249
- #: pro/classes/controllers/FrmProEntriesController.php:939
2250
- #: pro/classes/views/frmpro-entries/list.php:67
2251
- #@ default
2252
  #@ formidable
2253
  msgid "Are you sure you want to delete that entry?"
2254
  msgstr ""
2255
 
2256
- #: pro/classes/views/frmpro-entries/list.php:91
2257
  #@ formidable
2258
  msgid "Download CSV for"
2259
  msgstr ""
2260
 
2261
- #: pro/classes/views/frmpro-entries/new-selection.php:4
2262
- #@ formidable
2263
- msgid "Create Entry"
2264
- msgstr ""
2265
-
2266
  #: pro/classes/views/frmpro-entries/new-selection.php:8
2267
  #@ formidable
2268
  msgid "Select Form for New Entry"
2269
  msgstr ""
2270
 
2271
- #: pro/classes/views/frmpro-entries/new.php:3
2272
- #, php-format
2273
- #@ formidable
2274
- msgid "New %1$s Entry"
2275
- msgstr ""
2276
-
2277
  #: pro/classes/views/frmpro-entries/show.php:3
2278
  #@ formidable
2279
  msgid "View Entry"
2280
  msgstr ""
2281
 
2282
- #: pro/classes/views/frmpro-entries/show.php:12
2283
- #: pro/classes/views/frmpro-entries/show.php:55
2284
- #@ formidable
2285
- msgid "Edit this entry"
2286
- msgstr ""
2287
-
2288
  #: pro/classes/views/frmpro-fields/dynamic-options.php:18
2289
  #@ formidable
2290
  msgid "Limit selection choices to those created by the user filling out this form"
@@ -2305,119 +2135,124 @@ msgstr ""
2305
  msgid "Just show it"
2306
  msgstr ""
2307
 
2308
- #: pro/classes/views/frmpro-fields/options-form.php:26
2309
  #@ formidable
2310
  msgid "Calendar Localization"
2311
  msgstr ""
2312
 
2313
- #: pro/classes/views/frmpro-fields/options-form.php:37
2314
  #@ formidable
2315
  msgid "Start Year"
2316
  msgstr ""
2317
 
2318
- #: pro/classes/views/frmpro-fields/options-form.php:45
2319
  #@ formidable
2320
  msgid "End Year"
2321
  msgstr ""
2322
 
2323
- #: pro/classes/views/frmpro-fields/options-form.php:54
2324
  #@ formidable
2325
  msgid "Clock Settings"
2326
  msgstr ""
2327
 
2328
- #: pro/classes/views/frmpro-fields/options-form.php:59
2329
  #@ formidable
2330
  msgid "hour clock"
2331
  msgstr ""
2332
 
2333
- #: pro/classes/views/frmpro-fields/options-form.php:62
2334
  #@ formidable
2335
  msgid "minute step"
2336
  msgstr ""
2337
 
2338
- #: pro/classes/views/frmpro-fields/options-form.php:67
2339
  #@ formidable
2340
  msgid "automatic width"
2341
  msgstr ""
2342
 
2343
- #: pro/classes/views/frmpro-fields/options-form.php:71
2344
  #@ formidable
2345
  msgid "Email Attachment"
2346
  msgstr ""
2347
 
2348
- #: pro/classes/views/frmpro-fields/options-form.php:72
2349
  #@ formidable
2350
  msgid "attach this file to the email notification"
2351
  msgstr ""
2352
 
2353
- #: pro/classes/views/frmpro-fields/options-form.php:75
2354
  #@ formidable
2355
  msgid "Number Range"
2356
  msgstr ""
2357
 
2358
- #: pro/classes/views/frmpro-fields/options-form.php:75
2359
  #@ formidable
2360
  msgid "Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field."
2361
  msgstr ""
2362
 
2363
- #: pro/classes/views/frmpro-fields/options-form.php:76
2364
  #@ formidable
2365
  msgid "minimum"
2366
  msgstr ""
2367
 
2368
- #: pro/classes/views/frmpro-fields/options-form.php:77
2369
  #@ formidable
2370
  msgid "maximum"
2371
  msgstr ""
2372
 
2373
- #: pro/classes/views/frmpro-fields/options-form.php:78
2374
  #@ formidable
2375
  msgid "step"
2376
  msgstr ""
2377
 
2378
- #: pro/classes/views/frmpro-fields/options-form.php:81
2379
  #@ formidable
2380
  msgid "Range"
2381
  msgstr ""
2382
 
2383
- #: pro/classes/views/frmpro-fields/options-form.php:88
2384
  #@ formidable
2385
  msgid "to"
2386
  msgstr ""
2387
 
2388
- #: pro/classes/views/frmpro-fields/options-form.php:98
2389
- #: pro/classes/views/frmpro-fields/options-form.php:119
2390
- #: pro/classes/views/frmpro-fields/options-form.php:127
2391
  #@ formidable
2392
  msgid "Field Type"
2393
  msgstr ""
2394
 
2395
- #: pro/classes/views/frmpro-fields/options-form.php:157
2396
  #@ formidable
2397
  msgid "Hide this field unless the value of"
2398
  msgstr ""
2399
 
2400
- #: pro/classes/views/frmpro-fields/options-form.php:159
 
 
 
 
 
 
2401
  #@ formidable
2402
  msgid "Select Field"
2403
  msgstr ""
2404
 
2405
- #: pro/classes/views/frmpro-fields/options-form.php:167
2406
  #@ formidable
2407
  msgid "is equal to"
2408
  msgstr ""
2409
 
2410
- #: pro/classes/views/frmpro-fields/options-form.php:181
2411
  #@ formidable
2412
  msgid "Post field"
2413
  msgstr ""
2414
 
2415
- #: pro/classes/views/frmpro-fields/options-form.php:181
2416
  #@ formidable
2417
  msgid "Create a post from each form submission by selecting which part of the post this field will create. 'Custom field' is the only post field type that should be used multiple times."
2418
  msgstr ""
2419
 
2420
- #: pro/classes/views/frmpro-fields/options-form.php:210
2421
  #@ formidable
2422
  msgid "The field key can be used as an alternative to the field ID in many cases."
2423
  msgstr ""
@@ -2427,16 +2262,6 @@ msgstr ""
2427
  msgid "These buttons are for illustrative purposes only. They will be functional in your form."
2428
  msgstr ""
2429
 
2430
- #: pro/classes/views/frmpro-fields/show.php:110
2431
- #@ formidable
2432
- msgid "Add a Row"
2433
- msgstr ""
2434
-
2435
- #: pro/classes/views/frmpro-fields/show.php:111
2436
- #@ formidable
2437
- msgid "Add a Column"
2438
- msgstr ""
2439
-
2440
  #: pro/classes/views/frmpro-forms/add_form_options.php:1
2441
  #@ formidable
2442
  msgid "Use Content from Page"
@@ -2452,62 +2277,62 @@ msgstr ""
2452
  msgid "Submit this Form with AJAX"
2453
  msgstr ""
2454
 
2455
- #: pro/classes/views/frmpro-forms/add_form_options.php:14
2456
  #@ formidable
2457
  msgid "Only"
2458
  msgstr ""
2459
 
2460
- #: pro/classes/views/frmpro-forms/add_form_options.php:22
2461
  #@ formidable
2462
  msgid "Can See and Submit this Form"
2463
  msgstr ""
2464
 
2465
- #: pro/classes/views/frmpro-forms/add_form_options.php:24
2466
  #@ formidable
2467
  msgid "Allow"
2468
  msgstr ""
2469
 
2470
- #: pro/classes/views/frmpro-forms/add_form_options.php:32
2471
  #@ formidable
2472
  msgid "to Edit Their Own Previous Responses"
2473
  msgstr ""
2474
 
2475
- #: pro/classes/views/frmpro-forms/add_form_options.php:35
2476
  #@ formidable
2477
  msgid "Also Allow"
2478
  msgstr ""
2479
 
2480
- #: pro/classes/views/frmpro-forms/add_form_options.php:43
2481
  #@ formidable
2482
  msgid "to Edit Responses Submitted by Anyone"
2483
  msgstr ""
2484
 
2485
- #: pro/classes/views/frmpro-forms/add_form_options.php:47
2486
  #@ formidable
2487
  msgid "Update Submit Button Text"
2488
  msgstr ""
2489
 
2490
- #: pro/classes/views/frmpro-forms/add_form_options.php:52
2491
  #@ formidable
2492
  msgid "Update Confirmation Message"
2493
  msgstr ""
2494
 
2495
- #: pro/classes/views/frmpro-forms/add_form_options.php:56
2496
  #@ formidable
2497
  msgid "Allow Only One Entry for Each"
2498
  msgstr ""
2499
 
2500
- #: pro/classes/views/frmpro-forms/add_form_options.php:59
2501
  #@ formidable
2502
  msgid "Logged-in User"
2503
  msgstr ""
2504
 
2505
- #: pro/classes/views/frmpro-forms/add_form_options.php:61
2506
  #@ formidable
2507
  msgid "Saved Cookie"
2508
  msgstr ""
2509
 
2510
- #: pro/classes/views/frmpro-forms/add_form_options.php:78
2511
  #@ formidable
2512
  msgid "Copy this form to other blogs when Formidable Pro is activated"
2513
  msgstr ""
@@ -2522,11 +2347,6 @@ msgstr ""
2522
  msgid "A variable from the URL or value posted from previous page."
2523
  msgstr ""
2524
 
2525
- #: pro/classes/views/frmpro-forms/instructions.php:18
2526
- #@ formidable
2527
- msgid "Replace CUSTOM with the parameter name. In url.com?product=form, the variable is 'product'. You would use [get-product] in your field."
2528
- msgstr ""
2529
-
2530
  #: pro/classes/views/frmpro-forms/notifications.php:3
2531
  #@ formidable
2532
  msgid "and/or"
@@ -2537,54 +2357,49 @@ msgstr ""
2537
  msgid "Select a user id, hidden, or email field to send a notification."
2538
  msgstr ""
2539
 
2540
- #: pro/classes/views/frmpro-forms/notifications.php:31
2541
  #@ formidable
2542
  msgid "Usually the name and email of the person filling out the form. Select from Text, Email, User ID, or hidden fields for the name. Select from Email, User ID, and hidden fields for the email. Defaults to your site name and admin email found on the WordPress General Settings page."
2543
  msgstr ""
2544
 
2545
- #: pro/classes/views/frmpro-forms/notifications.php:74
2546
- #: pro/classes/views/frmpro-forms/notifications.php:132
2547
  #@ formidable
2548
  msgid "Email Format"
2549
  msgstr ""
2550
 
2551
- #: pro/classes/views/frmpro-forms/notifications.php:75
2552
- #: pro/classes/views/frmpro-forms/notifications.php:133
2553
  #@ formidable
2554
  msgid "Send Plain Text"
2555
  msgstr ""
2556
 
2557
- #: pro/classes/views/frmpro-forms/notifications.php:85
2558
- #@ formidable
2559
- msgid "Leave blank to use default message."
2560
- msgstr ""
2561
-
2562
- #: pro/classes/views/frmpro-forms/notifications.php:92
2563
  #@ formidable
2564
  msgid "Append IP Address, Browser, and Referring URL to message"
2565
  msgstr ""
2566
 
2567
- #: pro/classes/views/frmpro-forms/notifications.php:96
2568
  #@ formidable
2569
  msgid "Auto Responder"
2570
  msgstr ""
2571
 
2572
- #: pro/classes/views/frmpro-forms/notifications.php:97
2573
  #@ formidable
2574
  msgid "Send an automatic response to users submitting the form"
2575
  msgstr ""
2576
 
2577
- #: pro/classes/views/frmpro-forms/notifications.php:101
2578
  #@ formidable
2579
  msgid "Email to"
2580
  msgstr ""
2581
 
2582
- #: pro/classes/views/frmpro-forms/notifications.php:101
2583
  #@ formidable
2584
  msgid "Select a user id, hidden, or email field to send the autoresponse."
2585
  msgstr ""
2586
 
2587
- #: pro/classes/views/frmpro-forms/notifications.php:124
2588
  #@ formidable
2589
  msgid "Reply to"
2590
  msgstr ""
@@ -2614,19 +2429,9 @@ msgstr ""
2614
  msgid "Keys"
2615
  msgstr ""
2616
 
2617
- #: pro/classes/views/settings/form.php:18
2618
  #@ formidable
2619
- msgid "Hide Key input fields to prevent them from being edited. Uncheck this box if you'd like to change the saved keys for use in your template."
2620
- msgstr ""
2621
-
2622
- #: pro/classes/views/settings/form.php:21
2623
- #@ formidable
2624
- msgid "Lock Field and Entry Keys"
2625
- msgstr ""
2626
-
2627
- #: pro/classes/views/settings/form.php:26
2628
- #@ formidable
2629
- msgid "Path to Extra Templates"
2630
  msgstr ""
2631
 
2632
  #: pro/classes/views/settings/form.php:26
@@ -2650,23 +2455,23 @@ msgstr ""
2650
  msgid "Change the format of the date used in the calendar."
2651
  msgstr ""
2652
 
2653
- #: pro/classes/views/settings/form.php:56
2654
  #@ formidable
2655
  msgid "Pretty Permalinks"
2656
  msgstr ""
2657
 
2658
- #: pro/classes/views/settings/form.php:59
2659
  #@ formidable
2660
  msgid "Use pretty permalinks for entry detail links"
2661
  msgstr ""
2662
 
2663
  #: pro/classes/views/settings/formroller.php:22
2664
- #: pro/classes/views/settings/formroller.php:194
2665
- #: pro/classes/views/settings/formroller.php:226
2666
- #: pro/classes/views/settings/formroller.php:250
2667
- #: pro/classes/views/settings/formroller.php:396
2668
- #: pro/classes/views/settings/formroller.php:446
2669
- #: pro/classes/views/settings/formroller.php:472
2670
  #@ formidable
2671
  msgid "Border"
2672
  msgstr ""
@@ -2674,67 +2479,67 @@ msgstr ""
2674
  #: pro/classes/views/settings/formroller.php:27
2675
  #: pro/classes/views/settings/formroller.php:50
2676
  #: pro/classes/views/settings/formroller.php:100
2677
- #: pro/classes/views/settings/formroller.php:299
2678
  #@ formidable
2679
  msgid "Color"
2680
  msgstr ""
2681
 
2682
  #: pro/classes/views/settings/formroller.php:32
2683
- #: pro/classes/views/settings/formroller.php:165
2684
- #: pro/classes/views/settings/formroller.php:413
2685
  #@ formidable
2686
  msgid "Padding"
2687
  msgstr ""
2688
 
2689
  #: pro/classes/views/settings/formroller.php:111
2690
- #: pro/classes/views/settings/formroller.php:202
2691
- #: pro/classes/views/settings/formroller.php:258
2692
  #@ formidable
2693
  msgid "Style"
2694
  msgstr ""
2695
 
2696
- #: pro/classes/views/settings/formroller.php:204
2697
- #: pro/classes/views/settings/formroller.php:260
2698
  #@ formidable
2699
  msgid "solid"
2700
  msgstr ""
2701
 
2702
- #: pro/classes/views/settings/formroller.php:205
2703
- #: pro/classes/views/settings/formroller.php:261
2704
  #@ formidable
2705
  msgid "dotted"
2706
  msgstr ""
2707
 
2708
- #: pro/classes/views/settings/formroller.php:206
2709
- #: pro/classes/views/settings/formroller.php:262
2710
  #@ formidable
2711
  msgid "dashed"
2712
  msgstr ""
2713
 
2714
- #: pro/classes/views/settings/formroller.php:207
2715
- #: pro/classes/views/settings/formroller.php:263
2716
  #@ formidable
2717
  msgid "double"
2718
  msgstr ""
2719
 
2720
- #: pro/classes/views/settings/formroller.php:198
2721
- #: pro/classes/views/settings/formroller.php:254
2722
- #: pro/classes/views/settings/formroller.php:400
2723
  #@ formidable
2724
  msgid "Thickness"
2725
  msgstr ""
2726
 
2727
- #: pro/classes/views/settings/formroller.php:345
2728
  #@ formidable
2729
  msgid "Disable submit button styling"
2730
  msgstr ""
2731
 
2732
- #: pro/classes/views/settings/formroller.php:347
2733
  #@ formidable
2734
  msgid "Note: If disabled, you may not see the change take effect until you make 2 more styling changes or click \"Update Options\"."
2735
  msgstr ""
2736
 
2737
- #: pro/classes/views/settings/formroller.php:513
2738
  #@ formidable
2739
  msgid "Templates Updated"
2740
  msgstr ""
@@ -2749,9 +2554,10 @@ msgstr ""
2749
  msgid "Formidable Entries List"
2750
  msgstr ""
2751
 
 
 
2752
  #: pro/classes/widgets/FrmListEntries.php:133
2753
  #: pro/classes/widgets/FrmPollResults.php:34
2754
- #: pro/classes/widgets/FrmShowForm.php:43
2755
  #@ formidable
2756
  msgid "Title"
2757
  msgstr ""
@@ -2816,44 +2622,34 @@ msgstr ""
2816
  msgid "Formidable Poll & Results"
2817
  msgstr ""
2818
 
 
2819
  #: pro/classes/widgets/FrmPollResults.php:38
2820
- #: pro/classes/widgets/FrmShowForm.php:51
2821
  #@ formidable
2822
  msgid "Show Description"
2823
  msgstr ""
2824
 
2825
- #: pro/classes/widgets/FrmShowForm.php:6
2826
  #@ formidable
2827
  msgid "Display a Formidable Form"
2828
  msgstr ""
2829
 
2830
- #: pro/classes/widgets/FrmShowForm.php:7
2831
  #@ formidable
2832
  msgid "Formidable Form"
2833
  msgstr ""
2834
 
2835
- #: pro/classes/widgets/FrmShowForm.php:54
2836
  #@ formidable
2837
  msgid "Fit Select Boxes into SideBar"
2838
  msgstr ""
2839
 
2840
- #: pro/classes/widgets/FrmShowForm.php:57
2841
- #@ formidable
2842
- msgid "If your text fields are too big for your sidebar, insert a size here. If the field doesn't change after saving this widget, it is probably getting overridden in your field settings. To correct this, edit the form and remove the number in the 'Size' field option."
2843
- msgstr ""
2844
-
2845
- #: pro/classes/controllers/FrmProDisplaysController.php:93
2846
- #@ formidable
2847
- msgid "Oops! There was a problem saving your Custom Display Settings. Please try deactivating and reactivating Formidable to correct the problem."
2848
- msgstr ""
2849
-
2850
- #: pro/classes/controllers/FrmProEntriesController.php:112
2851
  #@ formidable
2852
  msgid "Entries from:"
2853
  msgstr ""
2854
 
2855
- #: classes/helpers/FrmFieldsHelper.php:220
2856
- #: classes/helpers/FrmFieldsHelper.php:226
2857
  #@ formidable
2858
  msgid "not"
2859
  msgstr ""
@@ -2863,11 +2659,6 @@ msgstr ""
2863
  msgid "Select a form to insert"
2864
  msgstr ""
2865
 
2866
- #: classes/views/frm-forms/insert_form_popup.php:47
2867
- #@ formidable
2868
- msgid "Select custom display settings to insert"
2869
- msgstr ""
2870
-
2871
  #: classes/views/frm-forms/insert_form_popup.php:58
2872
  #@ formidable
2873
  msgid "Filter shortcodes within the custom display content"
@@ -2883,17 +2674,18 @@ msgstr ""
2883
  msgid "Insert a search box"
2884
  msgstr ""
2885
 
2886
- #: classes/views/frm-forms/list.php:102
2887
  #: pro/classes/views/shared/import_form.php:37
2888
  #@ formidable
2889
  msgid "Export"
2890
  msgstr ""
2891
 
2892
- #: pro/classes/views/frmpro-forms/notifications.php:31
2893
  #@ formidable
2894
  msgid "From/Reply to"
2895
  msgstr ""
2896
 
 
2897
  #: pro/classes/views/settings/formroller.php:9
2898
  #@ formidable
2899
  msgid "General"
@@ -2932,15 +2724,15 @@ msgstr ""
2932
 
2933
  #: pro/classes/views/settings/formroller.php:46
2934
  #: pro/classes/views/settings/formroller.php:96
2935
- #: pro/classes/views/settings/formroller.php:295
2936
  #@ formidable
2937
  msgid "Family"
2938
  msgstr ""
2939
 
2940
  #: pro/classes/views/settings/formroller.php:54
2941
  #: pro/classes/views/settings/formroller.php:104
2942
- #: pro/classes/views/settings/formroller.php:303
2943
- #: pro/classes/views/settings/formroller.php:350
2944
  #@ formidable
2945
  msgid "Weight"
2946
  msgstr ""
@@ -2948,9 +2740,10 @@ msgstr ""
2948
  #: pro/classes/views/settings/formroller.php:61
2949
  #: pro/classes/views/settings/formroller.php:118
2950
  #: pro/classes/views/settings/formroller.php:155
2951
- #: pro/classes/views/settings/formroller.php:310
2952
- #: pro/classes/views/settings/formroller.php:363
2953
- #: pro/classes/views/settings/formroller.php:480
 
2954
  #@ formidable
2955
  msgid "Size"
2956
  msgstr ""
@@ -2962,22 +2755,22 @@ msgstr ""
2962
 
2963
  #: pro/classes/views/settings/formroller.php:83
2964
  #: pro/classes/views/settings/formroller.php:160
2965
- #: pro/classes/views/settings/formroller.php:368
2966
  #@ formidable
2967
  msgid "Width"
2968
  msgstr ""
2969
 
2970
  #: pro/classes/views/settings/formroller.php:106
2971
  #: pro/classes/views/settings/formroller.php:113
2972
- #: pro/classes/views/settings/formroller.php:305
2973
- #: pro/classes/views/settings/formroller.php:352
2974
  #@ formidable
2975
  msgid "normal"
2976
  msgstr ""
2977
 
2978
  #: pro/classes/views/settings/formroller.php:107
2979
- #: pro/classes/views/settings/formroller.php:306
2980
- #: pro/classes/views/settings/formroller.php:353
2981
  #@ formidable
2982
  msgid "bold"
2983
  msgstr ""
@@ -2993,7 +2786,7 @@ msgid "Corner Radius"
2993
  msgstr ""
2994
 
2995
  #: pro/classes/views/settings/formroller.php:140
2996
- #: pro/classes/views/settings/formroller.php:358
2997
  #@ formidable
2998
  msgid "Corners"
2999
  msgstr ""
@@ -3008,188 +2801,186 @@ msgstr ""
3008
  msgid "Field Settings"
3009
  msgstr ""
3010
 
3011
- #: pro/classes/views/settings/formroller.php:170
3012
- #@ formidable
3013
- msgid "Top Margin"
3014
- msgstr ""
3015
-
3016
- #: pro/classes/views/settings/formroller.php:180
3017
  #@ formidable
3018
  msgid "Field Colors"
3019
  msgstr ""
3020
 
3021
- #: pro/classes/views/settings/formroller.php:185
3022
- #: pro/classes/views/settings/formroller.php:222
3023
- #: pro/classes/views/settings/formroller.php:241
3024
  #@ formidable
3025
  msgid "BG color"
3026
  msgstr ""
3027
 
3028
- #: pro/classes/views/settings/formroller.php:189
3029
- #: pro/classes/views/settings/formroller.php:245
3030
- #: pro/classes/views/settings/formroller.php:386
3031
- #: pro/classes/views/settings/formroller.php:451
3032
- #: pro/classes/views/settings/formroller.php:476
3033
  #@ formidable
3034
  msgid "Text"
3035
  msgstr ""
3036
 
3037
- #: pro/classes/views/settings/formroller.php:217
3038
  #@ formidable
3039
  msgid "Field Colors: active state"
3040
  msgstr ""
3041
 
3042
- #: pro/classes/views/settings/formroller.php:236
3043
  #@ formidable
3044
  msgid "Field Colors: error state"
3045
  msgstr ""
3046
 
3047
- #: pro/classes/views/settings/formroller.php:272
3048
  #@ formidable
3049
  msgid "Radio Buttons & Check Boxes"
3050
  msgstr ""
3051
 
3052
- #: pro/classes/views/settings/formroller.php:277
3053
  #@ formidable
3054
  msgid "Radio"
3055
  msgstr ""
3056
 
3057
- #: pro/classes/views/settings/formroller.php:286
3058
  #@ formidable
3059
  msgid "Check Box"
3060
  msgstr ""
3061
 
3062
- #: pro/classes/views/settings/formroller.php:324
3063
  #@ formidable
3064
  msgid "Theme"
3065
  msgstr ""
3066
 
3067
- #: pro/classes/views/settings/formroller.php:373
3068
  #@ formidable
3069
  msgid "Height"
3070
  msgstr ""
3071
 
3072
- #: pro/classes/views/settings/formroller.php:378
3073
- #: pro/classes/views/settings/formroller.php:382
3074
- #: pro/classes/views/settings/formroller.php:441
3075
- #: pro/classes/views/settings/formroller.php:467
3076
  #@ formidable
3077
  msgid "BG Color"
3078
  msgstr ""
3079
 
3080
- #: pro/classes/views/settings/formroller.php:391
3081
  #@ formidable
3082
  msgid "BG Image"
3083
  msgstr ""
3084
 
3085
- #: pro/classes/views/settings/formroller.php:404
3086
  #@ formidable
3087
  msgid "Shadow"
3088
  msgstr ""
3089
 
3090
- #: pro/classes/views/settings/formroller.php:409
3091
  #@ formidable
3092
  msgid "Margin"
3093
  msgstr ""
3094
 
3095
- #: pro/classes/views/settings/formroller.php:424
3096
  #@ formidable
3097
  msgid "Error"
3098
  msgstr ""
3099
 
3100
- #: pro/classes/views/settings/formroller.php:429
3101
  #@ formidable
3102
  msgid "Icon"
3103
  msgstr ""
3104
 
3105
- #: pro/classes/views/settings/formroller.php:462
3106
  #@ formidable
3107
  msgid "Success"
3108
  msgstr ""
3109
 
3110
- #: classes/views/frm-forms/edit.php:14
3111
- #: classes/views/frm-forms/edit.php:28
 
3112
  #@ formidable
3113
  msgid "Customize Form HTML"
3114
  msgstr ""
3115
 
3116
- #: classes/views/frm-forms/edit.php:14
3117
- #: classes/views/frm-forms/edit.php:28
3118
  #@ formidable
3119
  msgid "Advanced Users: Customize your form HTML here"
3120
  msgstr ""
3121
 
3122
- #: pro/classes/controllers/FrmProFormsController.php:72
 
 
3123
  #@ formidable
3124
  msgid "Post Title"
3125
  msgstr ""
3126
 
3127
- #: pro/classes/views/frmpro-fields/options-form.php:132
3128
  #@ formidable
3129
  msgid "Unique"
3130
  msgstr ""
3131
 
3132
- #: pro/classes/views/frmpro-fields/options-form.php:134
3133
  #@ formidable
3134
  msgid "Read Only"
3135
  msgstr ""
3136
 
3137
- #: classes/views/frm-settings/form.php:53
3138
  #@ formidable
3139
  msgid "reCAPTCHA"
3140
  msgstr ""
3141
 
3142
- #: classes/views/frm-settings/form.php:53
3143
  #@ formidable
3144
  msgid "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking spam on your blog. reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a human. This verifies that they are not a spambot."
3145
  msgstr ""
3146
 
3147
- #: classes/views/frm-settings/form.php:60
3148
  #@ formidable
3149
  msgid "Public Key"
3150
  msgstr ""
3151
 
3152
- #: classes/views/frm-settings/form.php:64
3153
  #@ formidable
3154
  msgid "Private Key"
3155
  msgstr ""
3156
 
3157
- #: classes/views/frm-settings/form.php:73
3158
  #@ formidable
3159
  msgid "reCAPTCHA Theme"
3160
  msgstr ""
3161
 
3162
- #: classes/views/frm-settings/form.php:75
3163
  #@ formidable
3164
  msgid "Red"
3165
  msgstr ""
3166
 
3167
- #: classes/views/frm-settings/form.php:75
3168
  #@ formidable
3169
  msgid "White"
3170
  msgstr ""
3171
 
3172
- #: classes/views/frm-settings/form.php:75
3173
  #@ formidable
3174
  msgid "Black Glass"
3175
  msgstr ""
3176
 
3177
- #: classes/views/frm-settings/form.php:75
3178
  #@ formidable
3179
  msgid "Clean"
3180
  msgstr ""
3181
 
3182
- #: classes/views/frm-settings/form.php:80
3183
- #@ formiable
3184
  msgid "reCAPTCHA Language"
3185
  msgstr ""
3186
 
3187
- #: classes/views/frm-settings/form.php:82
3188
  #@ formidable
3189
  msgid "English"
3190
  msgstr ""
3191
 
3192
- #: classes/views/frm-settings/form.php:82
3193
  #@ formidable
3194
  msgid "Portuguese"
3195
  msgstr ""
@@ -3199,38 +2990,22 @@ msgstr ""
3199
  msgid "Hidden User ID"
3200
  msgstr ""
3201
 
3202
- #: classes/models/FrmSettings.php:72
3203
  #@ formidable
3204
  msgid "The reCAPTCHA was not entered correctly"
3205
  msgstr ""
3206
 
3207
- #: classes/views/frm-forms/add_field.php:48
3208
  #, php-format
3209
  #@ formidable
3210
  msgid "Hint: Change colors in the %1$sFormidable settings"
3211
  msgstr ""
3212
 
3213
- #: classes/views/frm-forms/form.php:124
3214
  #@ formidable
3215
  msgid "Delete Entry Link"
3216
  msgstr ""
3217
 
3218
- #: classes/views/frm-settings/form.php:109
3219
- #@ formidable
3220
- msgid "Incorrect Captcha Message"
3221
- msgstr ""
3222
-
3223
- #: classes/views/frm-settings/form.php:109
3224
- #@ formidable
3225
- msgid "The message seen when a captcha response is either incorrect or missing."
3226
- msgstr ""
3227
-
3228
- #: classes/helpers/FrmAppHelper.php:167
3229
- #: classes/models/FrmEntry.php:228
3230
- #@ formidable
3231
- msgid "cannot be blank"
3232
- msgstr ""
3233
-
3234
  #: classes/helpers/FrmFieldsHelper.php:12
3235
  #@ formidable
3236
  msgid "reCAPTCHA (SPAM Control)"
@@ -3242,103 +3017,93 @@ msgid "Rich Text"
3242
  msgstr ""
3243
 
3244
  #: classes/helpers/FrmFieldsHelper.php:37
3245
- #: pro/classes/models/FrmProField.php:51
3246
  #@ formidable
3247
  msgid "HTML"
3248
  msgstr ""
3249
 
3250
- #: classes/views/frm-forms/add_field.php:98
3251
  #@ formidable
3252
  msgid "Required Field"
3253
  msgstr ""
3254
 
3255
- #: classes/views/frm-forms/add_field.php:99
3256
  #@ formidable
3257
  msgid "Required"
3258
  msgstr ""
3259
 
3260
- #: classes/views/frm-forms/add_field.php:105
3261
- #@ formidable
3262
- msgid "Error message if field is left blank"
3263
- msgstr ""
3264
-
3265
- #: classes/views/frm-forms/list.php:42
3266
- #: classes/views/frm-forms/list.php:138
3267
  #@ formidable
3268
  msgid "ShortCodes"
3269
  msgstr ""
3270
 
3271
- #: classes/views/frm-settings/form.php:125
3272
  #@ formidable
3273
  msgid "Default Submit Button"
3274
  msgstr ""
3275
 
3276
- #: pro/classes/controllers/FrmProEntriesController.php:975
3277
  #@ formidable
3278
  msgid "No one! You do not have permission"
3279
  msgstr ""
3280
 
3281
- #: pro/classes/helpers/FrmProAppHelper.php:125
3282
  #@ formidable
3283
  msgid "Export to XML"
3284
  msgstr ""
3285
 
3286
- #: pro/classes/helpers/FrmProEntriesHelper.php:40
3287
  #@ formidable
3288
  msgid "Resend Email Notification"
3289
  msgstr ""
3290
 
3291
- #: pro/classes/helpers/FrmProEntriesHelper.php:41
3292
  #@ formidable
3293
  msgid "Resend Autoresponse"
3294
  msgstr ""
3295
 
3296
- #: pro/classes/helpers/FrmProEntriesHelper.php:47
3297
  #@ formidable
3298
  msgid "Email Resent to"
3299
  msgstr ""
3300
 
3301
- #: pro/classes/models/FrmProDisplay.php:159
3302
- #: pro/classes/views/displays/form.php:78
3303
  #@ formidable
3304
  msgid "This is not displayed anywhere, but is just for your reference. (optional)"
3305
  msgstr ""
3306
 
3307
- #: pro/classes/models/FrmProDisplay.php:163
3308
  #@ formidable
3309
  msgid "Content cannot be blank"
3310
  msgstr ""
3311
 
3312
- #: pro/classes/models/FrmProDisplay.php:166
3313
  #@ formidable
3314
  msgid "Page cannot be blank if you want the content inserted automatically"
3315
  msgstr ""
3316
 
3317
- #: pro/classes/models/FrmProDisplay.php:173
3318
  #@ formidable
3319
  msgid "Dynamic Content cannot be blank"
3320
  msgstr ""
3321
 
3322
- #: pro/classes/models/FrmProDisplay.php:177
3323
  #@ formidable
3324
  msgid "Parameter Name cannot be blank if content is dynamic"
3325
  msgstr ""
3326
 
3327
- #: pro/classes/models/FrmProDisplay.php:180
3328
  #@ formidable
3329
  msgid "Parameter Value cannot be blank if content is dynamic"
3330
  msgstr ""
3331
 
3332
- #: pro/classes/models/FrmProDisplay.php:183
3333
  #@ formidable
3334
  msgid "Detail Link cannot be blank if content is dynamic"
3335
  msgstr ""
3336
 
3337
- #: pro/classes/views/displays/edit.php:3
3338
- #@ formidable
3339
- msgid "Edit Custom Display Settings"
3340
- msgstr ""
3341
-
3342
  #: pro/classes/views/displays/form.php:4
3343
  #@ formidable
3344
  msgid "Shortcode Options"
@@ -3364,98 +3129,95 @@ msgstr ""
3364
  msgid "on page"
3365
  msgstr ""
3366
 
3367
- #: pro/classes/views/displays/form.php:25
3368
  #@ formidable
3369
  msgid "Insert on a page, post, or text widget"
3370
  msgstr ""
3371
 
3372
- #: pro/classes/views/displays/form.php:29
3373
  #@ formidable
3374
  msgid "Insert in a template"
3375
  msgstr ""
3376
 
3377
- #: pro/classes/views/displays/form.php:37
3378
  #, php-format
3379
  #@ formidable
3380
  msgid "Are you sure you want to delete your %1$s display?"
3381
  msgstr ""
3382
 
3383
- #: pro/classes/views/displays/form.php:57
3384
  #@ formidable
3385
  msgid "Custom Display Info"
3386
  msgstr ""
3387
 
3388
- #: pro/classes/views/displays/form.php:69
3389
  #@ formidable
3390
  msgid "Display Key"
3391
  msgstr ""
3392
 
3393
- #: pro/classes/views/displays/form.php:88
3394
  #@ formidable
3395
  msgid "Form and Display Type"
3396
  msgstr ""
3397
 
3398
- #: pro/classes/views/displays/form.php:102
3399
  #@ formidable
3400
  msgid "Display Format"
3401
  msgstr ""
3402
 
3403
- #: pro/classes/views/displays/form.php:105
3404
  #@ formidable
3405
  msgid "All Entries &mdash; list all entries in the specified form"
3406
  msgstr ""
3407
 
3408
- #: pro/classes/views/displays/form.php:106
3409
  #@ formidable
3410
  msgid "Single Entry &mdash; display one entry"
3411
  msgstr ""
3412
 
3413
- #: pro/classes/views/displays/form.php:107
3414
  #@ formidable
3415
  msgid "Both (Dynamic) &mdash; list the entries that will link to a single entry page"
3416
  msgstr ""
3417
 
3418
- #: pro/classes/views/displays/form.php:108
3419
  #@ formidable
3420
  msgid "Calendar &mdash; insert entries into a calendar"
3421
  msgstr ""
3422
 
3423
- #: pro/classes/views/displays/form.php:153
3424
- #: pro/classes/views/displays/form.php:172
 
 
3425
  #@ formidable
3426
  msgid "optional"
3427
  msgstr ""
3428
 
3429
- #: pro/classes/views/displays/form.php:194
3430
  #@ formidable
3431
  msgid "Advanced"
3432
  msgstr ""
3433
 
3434
- #: pro/classes/views/displays/form.php:199
3435
  #@ formidable
3436
  msgid "Order"
3437
  msgstr ""
3438
 
3439
- #: pro/classes/views/displays/form.php:217
3440
  #@ formidable
3441
  msgid "Where"
3442
  msgstr ""
3443
 
3444
- #: pro/classes/views/displays/form.php:237
3445
  #@ formidable
3446
  msgid "Limit"
3447
  msgstr ""
3448
 
3449
- #: pro/classes/views/displays/form.php:246
3450
  #@ formidable
3451
  msgid "Page Size"
3452
  msgstr ""
3453
 
3454
- #: pro/classes/views/displays/new.php:3
3455
- #@ formidable
3456
- msgid "Add New Custom Display Settings"
3457
- msgstr ""
3458
-
3459
  #: pro/classes/views/displays/tags.php:2
3460
  #@ formidable
3461
  msgid "Image Size"
@@ -3486,27 +3248,17 @@ msgstr ""
3486
  msgid "Other Options"
3487
  msgstr ""
3488
 
3489
- #: pro/classes/views/frmpro-entries/show.php:32
3490
- #@ formidable
3491
- msgid "Timestamp"
3492
- msgstr ""
3493
-
3494
- #: pro/classes/views/frmpro-entries/show.php:52
3495
- #@ formidable
3496
- msgid "Resend Emails"
3497
- msgstr ""
3498
-
3499
- #: pro/classes/views/frmpro-fields/options-form.php:136
3500
  #@ formidable
3501
  msgid "Admin Only"
3502
  msgstr ""
3503
 
3504
- #: pro/classes/views/frmpro-fields/options-form.php:144
3505
  #@ formidable
3506
  msgid "Calculations"
3507
  msgstr ""
3508
 
3509
- #: pro/classes/views/frmpro-fields/options-form.php:146
3510
  #@ formidable
3511
  msgid "Calculate the default value for this field"
3512
  msgstr ""
@@ -3521,7 +3273,7 @@ msgstr ""
3521
  msgid "You can edit this content in the field options."
3522
  msgstr ""
3523
 
3524
- #: pro/classes/views/frmpro-statistics/show.php:8
3525
  #@ formidable
3526
  msgid "Go to Report"
3527
  msgstr ""
@@ -3571,92 +3323,83 @@ msgstr ""
3571
  msgid "The format of that path is incorrect. Please try again."
3572
  msgstr ""
3573
 
3574
- #: pro/classes/views/settings/form.php:79
3575
- #: pro/classes/views/settings/form.php:80
3576
- #@ formidable
3577
- msgid "Alert"
3578
- msgstr ""
3579
-
3580
- #: pro/classes/views/settings/form.php:79
3581
- #: pro/classes/views/settings/form.php:80
3582
- #@ formidable
3583
- msgid "Sample error style"
3584
- msgstr ""
3585
-
3586
- #: pro/classes/views/settings/form.php:87
3587
  #@ formidable
3588
  msgid "Text field"
3589
  msgstr ""
3590
 
3591
- #: pro/classes/views/settings/form.php:88
3592
- #: pro/classes/views/settings/form.php:94
3593
  #@ formidable
3594
  msgid "This is sample text"
3595
  msgstr ""
3596
 
3597
- #: pro/classes/views/settings/form.php:89
3598
  #@ formidable
3599
  msgid "A field with a description"
3600
  msgstr ""
3601
 
3602
- #: pro/classes/views/settings/form.php:93
3603
  #@ formidable
3604
  msgid "Text field with error"
3605
  msgstr ""
3606
 
3607
- #: pro/classes/views/settings/form.php:98
3608
  #@ formidable
3609
  msgid "Text field in active state"
3610
  msgstr ""
3611
 
3612
- #: pro/classes/views/settings/form.php:99
3613
  #@ formidable
3614
  msgid "The active state will be seen when the field is clicked"
3615
  msgstr ""
3616
 
3617
- #: pro/classes/views/settings/form.php:108
3618
  #@ formidable
3619
  msgid "Drop-down Select"
3620
  msgstr ""
3621
 
3622
- #: pro/classes/views/settings/form.php:111
3623
  #@ formidable
3624
  msgid "An Option"
3625
  msgstr ""
3626
 
3627
- #: pro/classes/views/settings/form.php:116
3628
  #@ formidable
3629
  msgid "Radio Buttons"
3630
  msgstr ""
3631
 
3632
- #: pro/classes/views/settings/form.php:117
3633
- #: pro/classes/views/settings/form.php:123
 
 
3634
  #@ formidable
3635
  msgid "Option 1"
3636
  msgstr ""
3637
 
3638
- #: pro/classes/views/settings/form.php:118
3639
- #: pro/classes/views/settings/form.php:124
 
3640
  #@ formidable
3641
  msgid "Option 2"
3642
  msgstr ""
3643
 
3644
- #: pro/classes/views/settings/form.php:122
3645
  #@ formidable
3646
  msgid "Check Boxes"
3647
  msgstr ""
3648
 
3649
- #: pro/classes/views/settings/form.php:128
3650
  #@ formidable
3651
  msgid "Text Area"
3652
  msgstr ""
3653
 
3654
- #: pro/classes/views/settings/form.php:130
3655
  #@ formidable
3656
  msgid "Another field with a description"
3657
  msgstr ""
3658
 
3659
- #: pro/classes/views/settings/form.php:134
3660
  #@ formidable
3661
  msgid "Rich Text Area"
3662
  msgstr ""
@@ -3666,6 +3409,8 @@ msgstr ""
3666
  msgid "Import/Export"
3667
  msgstr ""
3668
 
 
 
3669
  #: pro/classes/views/shared/import_form.php:13
3670
  #@ formidable
3671
  msgid "Import"
@@ -3706,53 +3451,1897 @@ msgstr ""
3706
  msgid "Include the following data types in your export file"
3707
  msgstr ""
3708
 
3709
- #: pro/classes/views/shared/import_form.php:49
3710
- #@ formidable
3711
- msgid "Custom Display Settings"
3712
- msgstr ""
3713
-
3714
  #: pro/classes/views/shared/import_form.php:54
3715
  #@ formidable
3716
  msgid "Select forms (optional)"
3717
  msgstr ""
3718
 
3719
- #: pro/classes/views/shared/import_form.php:56
3720
- #@ formidable
3721
- msgid "If you would like to include ONLY specific forms and the entries and custom display settings related to those forms, select those forms here"
3722
- msgstr ""
3723
-
3724
  #: pro/classes/views/shared/import_form.php:64
3725
  #@ formidable
3726
  msgid "Export Selection"
3727
  msgstr ""
3728
 
3729
- #: classes/views/frm-settings/form.php:24
3730
  #@ formidable
3731
  msgid "Stylesheets"
3732
  msgstr ""
3733
 
3734
- #: classes/views/frm-settings/form.php:27
3735
  #@ formidable
3736
  msgid "Load Formidable styling"
3737
  msgstr ""
3738
 
3739
- #: classes/views/frm-settings/form.php:29
3740
  #@ formidable
3741
  msgid "on every page of your site"
3742
  msgstr ""
3743
 
3744
- #: classes/views/frm-settings/form.php:30
3745
  #@ formidable
3746
  msgid "only on applicable pages"
3747
  msgstr ""
3748
 
3749
- #: classes/views/frm-settings/form.php:31
3750
  #@ formidable
3751
  msgid "Don't use Formidable styling on any page"
3752
  msgstr ""
3753
 
3754
- #: classes/views/frm-settings/form.php:101
3755
  #@ formidable
3756
  msgid "Failed or Duplicate Entry Message"
3757
  msgstr ""
3758
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: classes/controllers/FrmAppController.php:62
23
  #: classes/controllers/FrmFormsController.php:21
24
  #: classes/views/frm-forms/list.php:3
25
  #: pro/classes/views/shared/import_form.php:47
27
  msgid "Forms"
28
  msgstr ""
29
 
 
 
 
 
 
 
30
  #: classes/controllers/FrmAppController.php:63
31
  #: classes/controllers/FrmFormsController.php:23
 
32
  #@ formidable
33
  msgid "Templates"
34
  msgstr ""
35
 
36
+ #: classes/controllers/FrmAppController.php:70
37
  #: classes/controllers/FrmSettingsController.php:14
 
38
  #@ formidable
39
  msgid "Settings"
40
  msgstr ""
41
 
42
+ #: classes/controllers/FrmAppController.php:85
43
+ #: classes/controllers/FrmAppController.php:123
44
  #, php-format
45
  #@ formidable
46
  msgid "Your Formidable Pro installation isn't quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Formidable Pro%2$s"
47
  msgstr ""
48
 
49
+ #: classes/controllers/FrmAppController.php:213
 
 
 
 
 
50
  #@ formidable
51
  msgid "Formidable was successfully uninstalled."
52
  msgstr ""
53
 
54
  #: classes/controllers/FrmEntriesController.php:15
 
55
  #@ formidable
56
  msgid "Pro Entries"
57
  msgstr ""
61
  msgid "Please select a valid form"
62
  msgstr ""
63
 
64
+ #: classes/controllers/FrmFormsController.php:78
65
  #@ formidable
66
  msgid "Form was Successfully Created"
67
  msgstr ""
68
 
69
+ #: classes/controllers/FrmFormsController.php:113
70
  #@ formidable
71
  msgid "Form was Successfully Updated"
72
  msgstr ""
73
 
74
+ #: classes/controllers/FrmFormsController.php:123
75
  #@ formidable
76
  msgid "Form template was Successfully Created"
77
  msgstr ""
78
 
79
+ #: classes/controllers/FrmFormsController.php:123
80
  #@ formidable
81
  msgid "Form was Successfully Copied"
82
  msgstr ""
83
 
84
+ #: classes/controllers/FrmFormsController.php:127
85
  #@ formidable
86
  msgid "There was a problem creating new template."
87
  msgstr ""
88
 
89
+ #: classes/controllers/FrmFormsController.php:169
90
  #@ formidable
91
  msgid "Form was Successfully Deleted"
92
  msgstr ""
93
 
94
+ #: classes/controllers/FrmFormsController.php:190
95
  #@ formidable
96
  msgid "Add Formidable Form"
97
  msgstr ""
98
 
99
+ #: classes/controllers/FrmFormsController.php:308
100
  #@ formidable
101
  msgid "That template cannot be edited"
102
  msgstr ""
111
  msgid "View Forms and Templates"
112
  msgstr ""
113
 
 
 
 
 
 
114
  #: classes/helpers/FrmAppHelper.php:46
115
  #@ formidable
116
  msgid "Delete Forms and Templates"
126
  msgid "View Entries from Admin Area"
127
  msgstr ""
128
 
 
 
 
 
 
129
  #: classes/helpers/FrmAppHelper.php:52
130
  #@ formidable
131
  msgid "Edit Entries from Admin Area"
141
  msgid "View Reports"
142
  msgstr ""
143
 
 
 
 
 
 
 
 
 
 
 
 
144
  #: classes/helpers/FrmFieldsHelper.php:7
145
  #@ formidable
146
  msgid "Text Input (One Line)"
177
  msgstr ""
178
 
179
  #: classes/helpers/FrmFieldsHelper.php:23
180
+ #: pro/classes/views/settings/form.php:113
181
  #@ formidable
182
  msgid "File Upload"
183
  msgstr ""
193
  msgstr ""
194
 
195
  #: classes/helpers/FrmFieldsHelper.php:27
196
+ #: pro/classes/views/frmpro-forms/notifications.php:125
197
  #@ formidable
198
  msgid "Email Address"
199
  msgstr ""
200
 
201
  #: classes/helpers/FrmFieldsHelper.php:28
202
+ #: pro/classes/models/FrmProField.php:34
203
  #@ formidable
204
  msgid "Date"
205
  msgstr ""
206
 
207
  #: classes/helpers/FrmFieldsHelper.php:29
208
+ #: pro/classes/models/FrmProField.php:39
209
  #@ formidable
210
  msgid "Time"
211
  msgstr ""
240
  msgid "Tags"
241
  msgstr ""
242
 
243
+ #: classes/helpers/FrmFieldsHelper.php:54
244
  #@ formidable
245
  msgid "Untitled"
246
  msgstr ""
247
 
248
+ #: classes/helpers/FrmFieldsHelper.php:265
 
 
 
 
 
 
249
  #, php-format
250
  #@ formidable
251
  msgid "Set this field to %1$sclear on click"
252
  msgstr ""
253
 
254
+ #: classes/helpers/FrmFieldsHelper.php:271
255
  #, php-format
256
  #@ formidable
257
  msgid "This default value should %1$sbe considered blank"
258
  msgstr ""
259
 
260
  #: classes/helpers/FrmFormsHelper.php:16
261
+ #: classes/views/frm-forms/default-templates.php:24
262
+ #: classes/views/frm-forms/list.php:73
263
  #@ formidable
264
  msgid "Create Form from Template"
265
  msgstr ""
266
 
267
+ #: classes/helpers/FrmFormsHelper.php:46
268
  #@ formidable
269
  msgid "Untitled Form"
270
  msgstr ""
271
 
272
+ #: classes/models/FrmEntry.php:297
 
 
 
 
 
 
273
  #@ formidable
274
  msgid "Your entry appears to be spam!"
275
  msgstr ""
280
  msgid "%1$s form has been submitted on %2$s."
281
  msgstr ""
282
 
283
+ #: classes/models/FrmNotification.php:44
284
+ #: pro/classes/models/FrmProNotification.php:180
285
  #: pro/classes/views/displays/tags.php:21
286
+ #: pro/classes/views/frmpro-entries/show.php:93
287
  #@ formidable
288
  msgid "User Information"
289
  msgstr ""
290
 
291
+ #: classes/models/FrmNotification.php:45
292
+ #: pro/classes/models/FrmProNotification.php:181
293
+ #: pro/classes/models/FrmProNotification.php:185
294
+ #: pro/classes/views/frmpro-entries/import.php:98
295
+ #: pro/classes/views/frmpro-entries/show.php:98
296
+ #: pro/classes/views/frmpro-forms/add_form_options.php:74
297
  #@ formidable
298
  msgid "IP Address"
299
  msgstr ""
300
 
301
+ #: classes/models/FrmNotification.php:46
302
+ #: pro/classes/models/FrmProNotification.php:182
303
+ #: pro/classes/models/FrmProNotification.php:187
304
+ #: pro/classes/views/frmpro-entries/show.php:102
305
  #@ formidable
306
  msgid "User-Agent (Browser/OS)"
307
  msgstr ""
308
 
309
+ #: classes/models/FrmNotification.php:47
310
+ #: pro/classes/models/FrmProNotification.php:183
311
+ #: pro/classes/models/FrmProNotification.php:189
312
+ #: pro/classes/views/frmpro-entries/show.php:106
313
  #@ formidable
314
  msgid "Referrer"
315
  msgstr ""
316
 
317
+ #: classes/models/FrmNotification.php:50
318
+ #: pro/classes/models/FrmProNotification.php:203
319
+ #: pro/classes/models/FrmProNotification.php:316
320
  #, php-format
321
  #@ formidable
322
  msgid "%1$s Form submitted on %2$s"
323
  msgstr ""
324
 
325
+ #: classes/models/FrmSettings.php:99
 
326
  #@ formidable
327
  msgid "Your responses were successfully submitted. Thank you!"
328
  msgstr ""
329
 
330
+ #: classes/models/FrmSettings.php:111
331
+ #: pro/classes/views/frmpro-entries/show.php:159
 
 
 
 
 
 
332
  #@ formidable
333
  msgid "Submit"
334
  msgstr ""
335
 
336
+ #: classes/models/FrmSettings.php:114
337
  #@ formidable
338
  msgid "You do not have permission to view this form."
339
  msgstr ""
340
 
341
+ #: classes/models/FrmSettings.php:118
342
  #@ formidable
343
  msgid "You do not have permission to do that"
344
  msgstr ""
345
 
346
+ #: classes/models/FrmUpdate.php:134
 
 
 
 
 
347
  #@ formidable
348
  msgid "Pro Account Information"
349
  msgstr ""
350
 
351
+ #: classes/models/FrmUpdate.php:143
352
  #, php-format
353
  #@ formidable
354
  msgid "Your Username & Password was accepted<br/>Now you can %1$sUpgrade Automatically!%2$s"
355
  msgstr ""
356
 
357
+ #: classes/models/FrmUpdate.php:151
358
  #@ formidable
359
  msgid "ERROR"
360
  msgstr ""
361
 
362
+ #: classes/models/FrmUpdate.php:171
363
  #@ formidable
364
  msgid "Ready to take your forms to the next level?<br/>Formidable Pro will help you style forms, manage data, and get reports."
365
  msgstr ""
366
 
367
+ #: classes/models/FrmUpdate.php:173
368
  #@ formidable
369
  msgid "Learn More"
370
  msgstr ""
371
 
372
+ #: classes/models/FrmUpdate.php:202
373
  #@ formidable
374
  msgid "WordPress MU"
375
  msgstr ""
376
 
377
+ #: classes/models/FrmUpdate.php:205
378
  #@ formidable
379
  msgid "Use this username and password to enable Formidable Pro site-wide"
380
  msgstr ""
381
 
382
+ #: classes/models/FrmUpdate.php:210
383
  #@ formidable
384
  msgid "Save"
385
  msgstr ""
394
  msgid "We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly."
395
  msgstr ""
396
 
 
397
  #: classes/views/frm-forms/default-templates.php:7
398
+ #: classes/views/frm-forms/default-templates.php:41
399
+ #: classes/views/frm-forms/list.php:26
400
+ #: classes/views/frm-forms/list.php:36
401
+ #: classes/views/frm-forms/list.php:140
402
+ #: classes/views/frm-forms/list.php:144
403
+ #: pro/classes/views/displays/form.php:67
404
+ #: pro/classes/views/displays/list.php:29
405
+ #: pro/classes/views/displays/list.php:89
406
+ #: pro/classes/views/frmpro-fields/options-form.php:189
407
+ #: pro/classes/views/frmpro-forms/notifications.php:30
408
+ #: pro/classes/views/frmpro-forms/notifications.php:123
409
  #@ formidable
410
  msgid "Name"
411
  msgstr ""
412
 
413
+ #: pro/classes/models/FrmProDisplay.php:167
 
414
  #@ formidable
415
  msgid "Name cannot be blank"
416
  msgstr ""
417
 
418
+ #: classes/templates/contact.php:37
419
+ #: pro/classes/models/FrmProField.php:58
420
+ #: pro/classes/views/frmpro-forms/notifications.php:50
421
+ #: pro/classes/views/frmpro-forms/notifications.php:125
422
  #@ formidable
423
  msgid "Email"
424
  msgstr ""
425
 
426
+ #: classes/templates/contact.php:39
 
 
 
 
 
427
  #@ formidable
428
  msgid "Please enter a valid email address"
429
  msgstr ""
430
 
431
+ #: classes/templates/contact.php:44
432
+ #: pro/classes/models/FrmProField.php:53
433
  #@ formidable
434
  msgid "Website"
435
  msgstr ""
436
 
437
+ #: classes/templates/contact.php:50
438
+ #: pro/classes/views/frmpro-forms/notifications.php:77
439
+ #: pro/classes/views/frmpro-forms/notifications.php:135
 
 
 
 
 
 
 
 
 
 
440
  #@ formidable
441
  msgid "Subject"
442
  msgstr ""
443
 
444
+ #: classes/templates/contact.php:56
445
+ #: pro/classes/views/frmpro-forms/notifications.php:83
446
+ #: pro/classes/views/frmpro-forms/notifications.php:141
 
 
 
 
 
447
  #@ formidable
448
  msgid "Message"
449
  msgstr ""
450
 
451
+ #: classes/templates/contact.php:62
 
 
 
 
 
452
  #@ formidable
453
  msgid "Captcha"
454
  msgstr ""
455
 
456
+ #: classes/views/frm-entries/form.php:38
457
+ #: pro/classes/helpers/FrmProFieldsHelper.php:831
458
+ #: pro/classes/views/frmpro-entries/import.php:99
459
  #@ formidable
460
  msgid "Entry Key"
461
  msgstr ""
466
  msgid "Upgrade to %1$sFormidable Pro%2$s to view, search, export, and bulk delete your saved entries."
467
  msgstr ""
468
 
469
+ #: classes/views/frm-forms/add_field.php:36
470
+ #: classes/views/frm-forms/add_field.php:69
471
  #@ formidable
472
  msgid "Add an Option"
473
  msgstr ""
474
 
475
+ #: classes/views/frm-forms/add_field.php:108
476
+ #: classes/views/frm-forms/add_field_links.php:25
477
+ #: classes/views/frm-forms/add_field_links.php:46
478
+ #: classes/views/frm-forms/add_field_links.php:67
479
+ #: classes/views/frm-forms/form.php:25
480
+ #: classes/views/frm-forms/form.php:81
481
+ #: pro/classes/views/frmpro-forms/comment_options.php:3
482
+ #: pro/classes/views/frmpro-forms/post_options.php:3
483
  #@ formidable
484
  msgid "Collapse"
485
  msgstr ""
486
 
487
+ #: classes/views/frm-forms/add_field.php:109
488
  #@ formidable
489
  msgid "Field Options"
490
  msgstr ""
491
 
492
+ #: classes/views/frm-forms/add_field.php:115
493
+ #: classes/widgets/FrmShowForm.php:56
494
+ #: pro/classes/views/frmpro-fields/options-form.php:65
495
  #@ formidable
496
  msgid "Field Size"
497
  msgstr ""
498
 
499
+ #: classes/views/frm-forms/add_field.php:116
500
  #@ formidable
501
  msgid "columns wide"
502
  msgstr ""
503
 
504
+ #: classes/views/frm-forms/add_field.php:116
505
+ #: classes/widgets/FrmShowForm.php:58
506
  #@ formidable
507
  msgid "characters wide"
508
  msgstr ""
509
 
510
+ #: classes/views/frm-forms/add_field.php:118
511
  #@ formidable
512
  msgid "rows high"
513
  msgstr ""
514
 
515
+ #: classes/views/frm-forms/add_field.php:118
516
  #@ formidable
517
  msgid "characters maximum"
518
  msgstr ""
519
 
520
+ #: classes/views/frm-forms/add_field.php:122
521
+ #: classes/views/frm-forms/form.php:136
522
  #@ formidable
523
  msgid "Label Position"
524
  msgstr ""
525
 
526
+ #: classes/views/frm-forms/add_field.php:124
527
  #@ formidable
528
  msgid "Top"
529
  msgstr ""
530
 
531
+ #: classes/views/frm-forms/add_field.php:125
532
  #@ formidable
533
  msgid "Left"
534
  msgstr ""
535
 
536
+ #: classes/views/frm-forms/add_field.php:126
537
  #@ formidable
538
  msgid "Right"
539
  msgstr ""
540
 
541
+ #: classes/views/frm-forms/add_field.php:128
542
  #@ formidable
543
  msgid "Hidden"
544
  msgstr ""
545
 
546
+ #: classes/views/frm-forms/add_field.php:137
547
  #@ formidable
548
  msgid "Indicate required field with"
549
  msgstr ""
550
 
551
+ #: classes/views/frm-forms/add_field_links.php:9
 
 
 
 
 
 
 
 
 
 
552
  #@ formidable
553
  msgid "Preview Form"
554
  msgstr ""
555
 
556
+ #: classes/views/frm-forms/add_field_links.php:12
557
  #@ formidable
558
  msgid "Preview in Current Theme"
559
  msgstr ""
560
 
561
+ #: classes/views/frm-forms/add_field_links.php:18
562
  #@ formidable
563
  msgid "Click on or drag a field into your form"
564
  msgstr ""
565
 
566
+ #: classes/views/frm-forms/add_field_links.php:26
567
  #@ formidable
568
  msgid "Basic Fields"
569
  msgstr ""
570
 
571
+ #: classes/views/frm-forms/add_field_links.php:47
572
  #@ formidable
573
  msgid "Pro Fields"
574
  msgstr ""
575
 
576
+ #: classes/views/frm-forms/add_field_links.php:68
577
+ #: classes/views/frm-forms/form.php:124
578
+ #: classes/views/frm-forms/list.php:42
579
+ #: classes/views/frm-forms/list.php:146
580
+ #: pro/classes/helpers/FrmProFieldsHelper.php:845
581
+ #: pro/classes/helpers/FrmProFieldsHelper.php:859
582
+ #: pro/classes/views/displays/form.php:133
583
+ #: pro/classes/views/displays/form.php:144
584
+ #: pro/classes/views/displays/list.php:41
585
+ #: pro/classes/views/displays/list.php:91
586
  #@ formidable
587
  msgid "Key"
588
  msgstr ""
589
 
590
+ #: classes/views/frm-forms/add_field_links.php:75
591
  #@ formidable
592
  msgid "required field"
593
  msgstr ""
594
 
595
+ #: classes/views/frm-forms/add_field_links.php:77
596
  #@ formidable
597
  msgid "not required"
598
  msgstr ""
599
 
600
+ #: classes/views/frm-forms/add_field_links.php:79
601
  #@ formidable
602
  msgid "clear default text on click"
603
  msgstr ""
604
 
605
+ #: classes/views/frm-forms/add_field_links.php:81
606
  #@ formidable
607
  msgid "do not clear default text on click"
608
  msgstr ""
609
 
610
+ #: classes/views/frm-forms/add_field_links.php:83
611
  #@ formidable
612
  msgid "default value will NOT pass validation"
613
  msgstr ""
614
 
615
+ #: classes/views/frm-forms/add_field_links.php:85
616
  #@ formidable
617
  msgid "default value will pass validation"
618
  msgstr ""
619
 
620
+ #: classes/views/frm-forms/add_field_links.php:87
621
  #@ formidable
622
  msgid "delete field and all inputed data"
623
  msgstr ""
624
 
625
+ #: classes/views/frm-forms/add_field_links.php:89
626
  #@ formidable
627
  msgid "duplicate field"
628
  msgstr ""
629
 
630
+ #: classes/views/frm-forms/add_field_links.php:91
631
  #@ formidable
632
  msgid "move field"
633
  msgstr ""
634
 
635
+ #: classes/views/frm-forms/add_field_links.php:100
636
  #@ formidable
637
  msgid "Enter or select default values into fields on this form."
638
  msgstr ""
643
  msgstr ""
644
 
645
  #: classes/views/frm-forms/default-templates.php:8
646
+ #: classes/views/frm-forms/default-templates.php:42
647
+ #: classes/views/frm-forms/list.php:29
648
+ #: classes/views/frm-forms/list.php:39
649
+ #: classes/views/frm-forms/list.php:141
650
+ #: classes/views/frm-forms/list.php:145
651
+ #: pro/classes/views/displays/form.php:83
652
+ #: pro/classes/views/displays/list.php:35
653
+ #: pro/classes/views/displays/list.php:90
654
  #@ formidable
655
  msgid "Description"
656
  msgstr ""
660
  msgid "No Templates Found"
661
  msgstr ""
662
 
663
+ #: classes/views/frm-forms/default-templates.php:21
664
  #@ formidable
665
  msgid "Preview"
666
  msgstr ""
667
 
668
+ #: classes/views/frm-forms/default-templates.php:24
669
+ #: classes/views/frm-forms/list.php:73
670
+ #: classes/views/frm-forms/list.php:108
671
+ #: pro/classes/views/displays/form.php:270
672
+ #: pro/classes/views/displays/list.php:69
673
  #@ formidable
674
  msgid "Copy"
675
  msgstr ""
676
 
677
+ #: classes/views/frm-forms/default-templates.php:30
678
+ #: pro/classes/views/frmpro-entries/edit.php:20
679
+ #: pro/classes/views/frmpro-entries/list.php:61
680
  #@ formidable
681
  msgid "View"
682
  msgstr ""
683
 
684
+ #: classes/views/frm-forms/default-templates.php:47
685
  #@ formidable
686
  msgid "Custom Templates"
687
  msgstr ""
688
 
689
  #: classes/views/frm-forms/edit.php:3
690
+ #: pro/classes/helpers/FrmProEntriesHelper.php:85
691
  #@ formidable
692
  msgid "Edit Form"
693
  msgstr ""
694
 
695
+ #: classes/views/frm-forms/edit.php:19
696
+ #: classes/views/frm-forms/edit.php:32
697
+ #: pro/classes/controllers/FrmProDisplaysController.php:408
698
+ #: pro/classes/models/FrmProSettings.php:189
699
  #@ formidable
700
  msgid "Update"
701
  msgstr ""
702
 
703
+ #: classes/views/frm-forms/add_field.php:39
704
+ #: classes/views/frm-forms/add_field.php:72
705
+ #: classes/views/frm-forms/edit.php:20
706
+ #: classes/views/frm-forms/edit.php:33
707
+ #: classes/views/frm-forms/new-selection.php:9
708
+ #: classes/views/frm-forms/new.php:14
709
+ #: classes/views/frm-forms/new.php:26
710
+ #: pro/classes/views/displays/form.php:292
711
+ #: pro/classes/views/frmpro-entries/edit.php:55
712
+ #: pro/classes/views/frmpro-entries/new.php:39
713
  #@ formidable
714
  msgid "or"
715
  msgstr ""
716
 
717
+ #: classes/views/frm-fields/import_choices.php:70
718
+ #: classes/views/frm-forms/edit.php:21
719
+ #: classes/views/frm-forms/edit.php:34
720
+ #: classes/views/frm-forms/new.php:15
721
+ #: classes/views/frm-forms/new.php:27
722
+ #: pro/classes/controllers/FrmProEntriesController.php:1058
723
+ #: pro/classes/views/displays/form.php:45
724
+ #: pro/classes/views/displays/form.php:293
725
+ #: pro/classes/views/frmpro-entries/edit.php:56
726
  #: pro/classes/views/frmpro-entries/new.php:21
727
+ #: pro/classes/views/frmpro-entries/new.php:40
728
  #@ formidable
729
  msgid "Cancel"
730
  msgstr ""
734
  msgid "(Click here to add form description or instructions)"
735
  msgstr ""
736
 
737
+ #: classes/controllers/FrmAppController.php:109
738
  #: classes/views/frm-forms/footer.php:35
739
+ #: pro/classes/helpers/FrmProEntriesHelper.php:67
740
+ #: pro/classes/views/frmpro-entries/import.php:16
741
+ #: pro/classes/views/settings/formroller.php:523
742
  #@ formidable
743
  msgid "Loading..."
744
  msgstr ""
748
  msgid "Are you sure you want to delete this field and all data associated with it?"
749
  msgstr ""
750
 
751
+ #: classes/views/frm-forms/form.php:26
752
  #@ formidable
753
  msgid "Advanced Form Options"
754
  msgstr ""
755
 
756
+ #: classes/views/frm-forms/form.php:32
757
  #@ formidable
758
  msgid "Form ShortCodes"
759
  msgstr ""
760
 
761
+ #: classes/views/frm-forms/form.php:32
762
  #@ formidable
763
  msgid "Key and id are generally synonymous. For more information on using this shortcode, click now."
764
  msgstr ""
765
 
766
+ #: classes/views/frm-forms/form.php:37
767
+ #: classes/views/frm-forms/form.php:128
768
  #@ formidable
769
  msgid "Form Key"
770
  msgstr ""
771
 
772
+ #: classes/views/frm-forms/form.php:41
773
  #@ formidable
774
  msgid "Styling"
775
  msgstr ""
776
 
777
+ #: classes/views/frm-forms/form.php:43
778
  #@ formidable
779
  msgid "Use Formidable styling for this form"
780
  msgstr ""
781
 
782
+ #: classes/views/frm-forms/form.php:46
783
  #@ formidable
784
  msgid "Submit Button Text"
785
  msgstr ""
786
 
787
+ #: classes/views/frm-forms/form.php:50
788
  #@ formidable
789
  msgid "Action After Form Submission"
790
  msgstr ""
791
 
792
+ #: classes/views/frm-forms/form.php:52
793
  #@ formidable
794
  msgid "To use the second two options, you must upgrade to Formidable Pro."
795
  msgstr ""
796
 
797
+ #: classes/views/frm-forms/form.php:56
798
  #@ formidable
799
  msgid "Display a Message"
800
  msgstr ""
801
 
802
+ #: classes/views/frm-forms/form.php:57
803
  #@ formidable
804
  msgid "Display content from another page"
805
  msgstr ""
806
 
807
+ #: classes/views/frm-forms/form.php:58
808
  #@ formidable
809
  msgid "Redirect"
810
  msgstr ""
811
 
812
+ #: classes/views/frm-forms/form.php:62
813
  #@ formidable
814
  msgid "Confirmation Message"
815
  msgstr ""
816
 
817
+ #: classes/views/frm-forms/form.php:65
818
  #@ formidable
819
  msgid "Show the form with the success message."
820
  msgstr ""
821
 
822
+ #: classes/views/frm-forms/form.php:72
823
  #@ formidable
824
  msgid "Use Akismet to check entries for spam"
825
  msgstr ""
826
 
827
+ #: classes/views/frm-forms/form.php:82
828
  #@ formidable
829
  msgid "Form Notification Options"
830
  msgstr ""
831
 
832
+ #: classes/views/frm-forms/form.php:88
833
  #@ formidable
834
  msgid "Email Form Responses to"
835
  msgstr ""
836
 
837
+ #: classes/views/frm-forms/form.php:88
838
  #@ formidable
839
  msgid "To send to multiple addresses, separate each address with a comma"
840
  msgstr ""
841
 
842
+ #: classes/views/frm-forms/form.php:103
843
  #@ formidable
844
  msgid "Before Fields"
845
  msgstr ""
846
 
847
+ #: classes/views/frm-forms/form.php:119
848
  #@ formidable
849
  msgid "After Fields"
850
  msgstr ""
851
 
852
+ #: classes/views/frm-forms/form.php:126
853
  #@ formidable
854
  msgid "Form Name"
855
  msgstr ""
856
 
857
+ #: classes/views/frm-forms/form.php:127
858
  #@ formidable
859
  msgid "Form Description"
860
  msgstr ""
861
 
862
+ #: classes/views/frm-forms/form.php:132
863
  #@ formidable
864
  msgid "Field Id"
865
  msgstr ""
866
 
867
+ #: classes/views/frm-forms/form.php:133
868
  #: pro/classes/views/displays/tags.php:14
869
+ #: pro/classes/views/frmpro-fields/options-form.php:219
870
  #@ formidable
871
  msgid "Field Key"
872
  msgstr ""
873
 
874
+ #: classes/views/frm-forms/form.php:134
875
  #@ formidable
876
  msgid "Field Name"
877
  msgstr ""
878
 
879
+ #: classes/views/frm-forms/form.php:135
880
  #: pro/classes/views/settings/formroller.php:92
881
  #@ formidable
882
  msgid "Field Description"
883
  msgstr ""
884
 
885
+ #: classes/views/frm-forms/form.php:137
886
  #@ formidable
887
  msgid "Required label"
888
  msgstr ""
889
 
890
+ #: classes/views/frm-forms/form.php:138
891
  #@ formidable
892
  msgid "Input Field"
893
  msgstr ""
894
 
895
+ #: classes/views/frm-forms/form.php:139
896
  #@ formidable
897
  msgid "Show a single radio or checkbox option by replacing \"1\" with the order of the option"
898
  msgstr ""
899
 
900
+ #: classes/views/frm-forms/form.php:140
901
  #@ formidable
902
  msgid "Hide the option labels"
903
  msgstr ""
904
 
905
+ #: classes/views/frm-forms/form.php:142
906
  #@ formidable
907
  msgid "Add class name if field is required"
908
  msgstr ""
909
 
910
+ #: classes/views/frm-forms/form.php:143
911
  #@ formidable
912
  msgid "Add class name if field has an error on form submit"
913
  msgstr ""
932
  msgid "Display form description"
933
  msgstr ""
934
 
935
+ #: classes/views/frm-forms/list.php:33
936
+ #: classes/views/frm-forms/list.php:143
937
+ #: pro/classes/helpers/FrmProFieldsHelper.php:844
938
+ #: pro/classes/helpers/FrmProFieldsHelper.php:858
939
+ #: pro/classes/views/displays/form.php:132
940
+ #: pro/classes/views/displays/form.php:143
941
+ #: pro/classes/views/displays/list.php:23
942
+ #: pro/classes/views/displays/list.php:88
943
  #@ formidable
944
  msgid "ID"
945
  msgstr ""
946
 
947
+ #: classes/views/frm-forms/list.php:44
948
+ #: classes/views/frm-forms/list.php:102
949
+ #: classes/views/frm-forms/list.php:122
950
+ #: classes/views/frm-forms/list.php:147
951
+ #: pro/classes/controllers/FrmProEntriesController.php:47
952
  #: pro/classes/views/frmpro-entries/list.php:3
953
+ #: pro/classes/views/frmpro-fields/dynamic-options.php:17
954
  #: pro/classes/views/shared/import_form.php:48
955
  #@ formidable
956
  msgid "Entries"
957
  msgstr ""
958
 
959
+ #: classes/views/frm-forms/list.php:45
960
+ #: classes/views/frm-forms/list.php:148
961
  #@ formidable
962
  msgid "Direct Link"
963
  msgstr ""
964
 
965
+ #: pro/classes/views/displays/list.php:48
966
+ #: pro/classes/views/displays/list.php:95
967
  #@ formidable
968
  msgid "ShortCode"
969
  msgstr ""
970
 
971
+ #: classes/views/frm-forms/list.php:53
972
  #@ formidable
973
  msgid "No Forms Found"
974
  msgstr ""
975
 
976
+ #: classes/views/frm-forms/list.php:66
977
+ #: classes/views/frm-forms/list.php:74
978
+ #: classes/views/frm-forms/list.php:87
979
+ #: classes/views/frm-forms/list.php:94
980
+ #: pro/classes/controllers/FrmProEntriesController.php:1058
981
+ #: pro/classes/helpers/FrmProAppHelper.php:109
982
+ #: pro/classes/helpers/FrmProFieldsHelper.php:992
983
+ #: pro/classes/views/displays/list.php:68
984
+ #: pro/classes/views/frmpro-entries/list.php:64
985
+ #: pro/classes/views/frmpro-entries/show.php:29
986
  #@ formidable
987
  msgid "Edit"
988
  msgstr ""
989
 
990
+ #: classes/views/frm-forms/list.php:78
991
+ #: classes/views/frm-forms/list.php:116
992
  #, php-format
993
  #@ formidable
994
  msgid "Are you sure you want to delete your %1$s Form?"
995
  msgstr ""
996
 
997
+ #: classes/views/frm-forms/list.php:78
998
+ #: classes/views/frm-forms/list.php:116
999
+ #: pro/classes/helpers/FrmProAppHelper.php:177
1000
+ #: pro/classes/views/displays/form.php:43
1001
+ #: pro/classes/views/displays/list.php:70
1002
+ #: pro/classes/views/frmpro-entries/edit.php:33
1003
+ #: pro/classes/views/frmpro-entries/list.php:73
1004
+ #: pro/classes/views/frmpro-entries/show.php:25
1005
  #@ formidable
1006
  msgid "Delete"
1007
  msgstr ""
1008
 
1009
+ #: classes/views/frm-forms/list.php:98
1010
  #@ formidable
1011
  msgid "New"
1012
  msgstr ""
1013
 
1014
+ #: classes/views/frm-forms/list.php:98
1015
+ #: pro/classes/views/displays/list.php:46
1016
+ #: pro/classes/views/displays/list.php:93
1017
+ #: pro/classes/views/frmpro-entries/show.php:43
1018
  #@ formidable
1019
  msgid "Entry"
1020
  msgstr ""
1021
 
1022
+ #: classes/views/frm-forms/list.php:98
1023
  #@ formidable
1024
  msgid "New Entry"
1025
  msgstr ""
1026
 
1027
+ #: classes/views/frm-forms/list.php:104
1028
  #: pro/classes/controllers/FrmProStatisticsController.php:13
1029
  #: pro/classes/controllers/FrmProStatisticsController.php:25
 
1030
  #@ formidable
1031
  msgid "Reports"
1032
  msgstr ""
1033
 
1034
  #: classes/views/frm-forms/add_field.php:6
1035
+ #: classes/views/frm-forms/list.php:108
1036
+ #: pro/classes/views/displays/list.php:69
1037
+ #: pro/classes/views/frmpro-entries/edit.php:21
1038
+ #: pro/classes/views/frmpro-entries/list.php:68
1039
+ #: pro/classes/views/frmpro-entries/show.php:18
1040
  #@ formidable
1041
  msgid "Duplicate"
1042
  msgstr ""
1043
 
1044
+ #: classes/views/frm-forms/list.php:109
1045
+ #: classes/views/frm-forms/new.php:13
1046
+ #: classes/views/frm-forms/new.php:25
1047
+ #: pro/classes/controllers/FrmProDisplaysController.php:93
1048
+ #: pro/classes/controllers/FrmProDisplaysController.php:102
1049
  #@ formidable
1050
  msgid "Create"
1051
  msgstr ""
1052
 
1053
+ #: classes/views/frm-forms/list.php:109
1054
+ #: classes/views/frm-forms/list.php:111
1055
  #@ formidable
1056
  msgid "Template"
1057
  msgstr ""
1058
 
1059
+ #: classes/views/frm-forms/list.php:109
1060
  #@ formidable
1061
  msgid "Create Template"
1062
  msgstr ""
1063
 
1064
+ #: classes/views/frm-forms/list.php:124
1065
  #@ formidable
1066
  msgid "View Form"
1067
  msgstr ""
1068
 
1069
+ #: classes/views/frm-forms/new-field-js.php:20
1070
+ #: classes/views/frm-forms/new-option-js.php:11
1071
  #@ formidable
1072
  msgid "(Blank)"
1073
  msgstr ""
1074
 
1075
+ #: classes/views/frm-settings/form.php:23
1076
+ #: classes/views/frm-settings/form.php:159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1077
  #@ formidable
1078
  msgid "Update Options"
1079
  msgstr ""
1080
 
1081
+ #: classes/views/frm-settings/form.php:28
1082
  #@ formidable
1083
  msgid "Preview Page"
1084
  msgstr ""
1085
 
1086
+ #: classes/views/frm-settings/form.php:59
1087
  #@ formidable
1088
  msgid "Include the jQuery CSS on ALL pages"
1089
  msgstr ""
1090
 
1091
+ #: classes/views/frm-settings/form.php:59
1092
  #@ formidable
1093
  msgid "The styling for the date field calendar. Some users may be using this css on pages other than just the ones that include a date field."
1094
  msgstr ""
1095
 
1096
+ #: classes/views/frm-settings/form.php:65
1097
  #@ formidable
1098
  msgid "User Permissions"
1099
  msgstr ""
1100
 
1101
+ #: classes/views/frm-settings/form.php:65
1102
  #@ formidable
1103
  msgid "Select users that are allowed access to Formidable. Without access to View Forms, users will be unable to see the Formidable menu."
1104
  msgstr ""
1105
 
1106
+ #: classes/views/frm-settings/form.php:112
1107
  #@ formidable
1108
  msgid "Default Messages"
1109
  msgstr ""
1110
 
1111
+ #: classes/views/frm-settings/form.php:112
1112
  #@ formidable
1113
  msgid "You can override the success message and submit button settings on individual forms."
1114
  msgstr ""
1115
 
1116
+ #: classes/views/frm-settings/form.php:122
1117
  #@ formidable
1118
  msgid "Success Message"
1119
  msgstr ""
1120
 
1121
+ #: classes/views/frm-settings/form.php:122
1122
  #@ formidable
1123
  msgid "The default message seen after a form is submitted."
1124
  msgstr ""
1125
 
1126
+ #: classes/views/frm-settings/form.php:138
 
 
 
 
 
1127
  #@ formidable
1128
  msgid "Login Message"
1129
  msgstr ""
1130
 
1131
+ #: classes/views/frm-settings/form.php:138
1132
  #@ formidable
1133
  msgid "The message seen when a user who is not logged-in views a form only logged-in users can submit."
1134
  msgstr ""
1135
 
1136
+ #: pro/classes/views/settings/formroller.php:347
1137
  #@ formidable
1138
  msgid "Submit Button"
1139
  msgstr ""
1140
 
1141
+ #: classes/views/frm-settings/form.php:157
1142
  #@ formidable
1143
  msgid "Are you sure you want to do this? Clicking OK will delete all forms, form data, and all other Formidable data. There is no Undo."
1144
  msgstr ""
1145
 
1146
+ #: classes/views/frm-settings/form.php:157
1147
  #@ formidable
1148
  msgid "Uninstall Formidable"
1149
  msgstr ""
1150
 
 
 
 
 
 
1151
  #: classes/views/frm-statistics/list.php:9
1152
  #@ formidable
1153
  msgid "Upgrade to Formidable Pro to get reports and statistics on your saved entries"
1154
  msgstr ""
1155
 
1156
+ #: classes/views/shared/item-table-nav.php:6
1157
  #, php-format
1158
  #@ formidable
1159
  msgid "Displaying %1$s&#8211;%2$s of %3$s"
1169
  msgid "Formidable Tag"
1170
  msgstr ""
1171
 
1172
+ #: pro/classes/controllers/FrmProDisplaysController.php:157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1173
  #@ formidable
1174
  msgid "There was a problem creating new Entry Display settings."
1175
  msgstr ""
1176
 
1177
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
 
 
 
 
 
1178
  #@ formidable
1179
  msgid "January"
1180
  msgstr ""
1181
 
1182
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1183
  #@ formidable
1184
  msgid "February"
1185
  msgstr ""
1186
 
1187
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1188
  #@ formidable
1189
  msgid "March"
1190
  msgstr ""
1191
 
1192
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1193
  #@ formidable
1194
  msgid "April"
1195
  msgstr ""
1196
 
1197
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1198
  #@ formidable
1199
  msgid "May"
1200
  msgstr ""
1201
 
1202
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1203
  #@ formidable
1204
  msgid "June"
1205
  msgstr ""
1206
 
1207
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1208
  #@ formidable
1209
  msgid "July"
1210
  msgstr ""
1211
 
1212
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1213
  #@ formidable
1214
  msgid "August"
1215
  msgstr ""
1216
 
1217
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1218
  #@ formidable
1219
  msgid "September"
1220
  msgstr ""
1221
 
1222
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1223
  #@ formidable
1224
  msgid "October"
1225
  msgstr ""
1226
 
1227
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1228
  #@ formidable
1229
  msgid "November"
1230
  msgstr ""
1231
 
1232
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1233
  #@ formidable
1234
  msgid "December"
1235
  msgstr ""
1236
 
1237
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1238
  #@ formidable
1239
  msgid "Sunday"
1240
  msgstr ""
1241
 
1242
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1243
  #@ formidable
1244
  msgid "Monday"
1245
  msgstr ""
1246
 
1247
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1248
  #@ formidable
1249
  msgid "Tuesday"
1250
  msgstr ""
1251
 
1252
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1253
  #@ formidable
1254
  msgid "Wednesday"
1255
  msgstr ""
1256
 
1257
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1258
  #@ formidable
1259
  msgid "Thursday"
1260
  msgstr ""
1261
 
1262
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1263
  #@ formidable
1264
  msgid "Friday"
1265
  msgstr ""
1266
 
1267
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1268
  #@ formidable
1269
  msgid "Saturday"
1270
  msgstr ""
1271
 
1272
+ #: pro/classes/controllers/FrmProDisplaysController.php:442
1273
  #@ formidable
1274
  msgid "That is not a valid custom display ID"
1275
  msgstr ""
1276
 
1277
+ #: pro/classes/controllers/FrmProEntriesController.php:852
1278
+ #: pro/classes/helpers/FrmProDisplaysHelper.php:43
1279
+ #: pro/classes/views/frmpro-entries/list.php:31
1280
  #@ formidable
1281
  msgid "No Entries Found"
1282
  msgstr ""
1283
 
1284
+ #: pro/classes/controllers/FrmProEntriesController.php:189
 
 
 
 
 
 
 
 
 
 
1285
  #@ formidable
1286
  msgid "Entry was Successfully Created"
1287
  msgstr ""
1288
 
1289
+ #: pro/classes/controllers/FrmProEntriesController.php:213
1290
  #@ formidable
1291
  msgid "Entry was Successfully Updated"
1292
  msgstr ""
1293
 
1294
+ #: pro/classes/controllers/FrmProEntriesController.php:213
1295
  #@ formidable
1296
  msgid "Back to Entries"
1297
  msgstr ""
1298
 
1299
+ #: pro/classes/controllers/FrmProEntriesController.php:320
1300
  #@ formidable
1301
  msgid "Entry was Successfully Duplicated"
1302
  msgstr ""
1303
 
1304
+ #: pro/classes/controllers/FrmProEntriesController.php:322
1305
  #@ formidable
1306
  msgid "There was a problem duplicating that entry"
1307
  msgstr ""
1308
 
1309
+ #: pro/classes/controllers/FrmProEntriesController.php:340
 
1310
  #@ formidable
1311
  msgid "Entry was Successfully Destroyed"
1312
  msgstr ""
1313
 
1314
+ #: pro/classes/controllers/FrmProEntriesController.php:355
1315
  #@ formidable
1316
  msgid "No entries were specified"
1317
  msgstr ""
1321
  msgid "Duplicate Field"
1322
  msgstr ""
1323
 
1324
+ #: pro/classes/controllers/FrmProFieldsController.php:218
1325
  #@ formidable
1326
  msgid "English/Western"
1327
  msgstr ""
1328
 
1329
+ #: pro/classes/controllers/FrmProFieldsController.php:218
1330
  #@ formidable
1331
  msgid "Afrikaans"
1332
  msgstr ""
1333
 
1334
+ #: pro/classes/controllers/FrmProFieldsController.php:219
1335
  #@ formidable
1336
  msgid "Albanian"
1337
  msgstr ""
1338
 
1339
+ #: pro/classes/controllers/FrmProFieldsController.php:219
1340
  #@ formidable
1341
  msgid "Arabic"
1342
  msgstr ""
1343
 
1344
+ #: pro/classes/controllers/FrmProFieldsController.php:220
1345
  #@ formidable
1346
  msgid "Armenian"
1347
  msgstr ""
1348
 
1349
+ #: pro/classes/controllers/FrmProFieldsController.php:220
1350
  #@ formidable
1351
  msgid "Azerbaijani"
1352
  msgstr ""
1353
 
1354
+ #: pro/classes/controllers/FrmProFieldsController.php:221
1355
  #@ formidable
1356
  msgid "Basque"
1357
  msgstr ""
1358
 
1359
+ #: pro/classes/controllers/FrmProFieldsController.php:221
1360
  #@ formidable
1361
  msgid "Bosnian"
1362
  msgstr ""
1363
 
1364
+ #: pro/classes/controllers/FrmProFieldsController.php:222
1365
  #@ formidable
1366
  msgid "Bulgarian"
1367
  msgstr ""
1368
 
1369
+ #: pro/classes/controllers/FrmProFieldsController.php:222
1370
  #@ formidable
1371
  msgid "Catalan"
1372
  msgstr ""
1373
 
1374
+ #: pro/classes/controllers/FrmProFieldsController.php:223
1375
  #@ formidable
1376
  msgid "Chinese Hong Kong"
1377
  msgstr ""
1378
 
1379
+ #: pro/classes/controllers/FrmProFieldsController.php:223
1380
  #@ formidable
1381
  msgid "Chinese Simplified"
1382
  msgstr ""
1383
 
1384
+ #: pro/classes/controllers/FrmProFieldsController.php:224
1385
  #@ formidable
1386
  msgid "Chinese Traditional"
1387
  msgstr ""
1388
 
1389
+ #: pro/classes/controllers/FrmProFieldsController.php:224
1390
  #@ formidable
1391
  msgid "Croatian"
1392
  msgstr ""
1393
 
1394
+ #: pro/classes/controllers/FrmProFieldsController.php:225
1395
  #@ formidable
1396
  msgid "Czech"
1397
  msgstr ""
1398
 
1399
+ #: pro/classes/controllers/FrmProFieldsController.php:225
1400
  #@ formidable
1401
  msgid "Danish"
1402
  msgstr ""
1403
 
1404
+ #: classes/views/frm-settings/form.php:104
1405
+ #: pro/classes/controllers/FrmProFieldsController.php:226
1406
  #@ formidable
1407
  msgid "Dutch"
1408
  msgstr ""
1409
 
1410
+ #: pro/classes/controllers/FrmProFieldsController.php:226
1411
  #@ formidable
1412
  msgid "English/UK"
1413
  msgstr ""
1414
 
1415
+ #: pro/classes/controllers/FrmProFieldsController.php:227
1416
  #@ formidable
1417
  msgid "Esperanto"
1418
  msgstr ""
1419
 
1420
+ #: pro/classes/controllers/FrmProFieldsController.php:227
1421
  #@ formidable
1422
  msgid "Estonian"
1423
  msgstr ""
1424
 
1425
+ #: pro/classes/controllers/FrmProFieldsController.php:228
1426
  #@ formidable
1427
  msgid "Faroese"
1428
  msgstr ""
1429
 
1430
+ #: pro/classes/controllers/FrmProFieldsController.php:228
1431
  #@ formidable
1432
  msgid "Farsi/Persian"
1433
  msgstr ""
1434
 
1435
+ #: pro/classes/controllers/FrmProFieldsController.php:229
1436
  #@ formidable
1437
  msgid "Finnish"
1438
  msgstr ""
1439
 
1440
+ #: classes/views/frm-settings/form.php:104
1441
+ #: pro/classes/controllers/FrmProFieldsController.php:229
1442
  #@ formidable
1443
  msgid "French"
1444
  msgstr ""
1445
 
1446
+ #: pro/classes/controllers/FrmProFieldsController.php:230
1447
  #@ formidable
1448
  msgid "French/Swiss"
1449
  msgstr ""
1450
 
1451
+ #: classes/views/frm-settings/form.php:104
1452
+ #: pro/classes/controllers/FrmProFieldsController.php:230
1453
  #@ formidable
1454
  msgid "German"
1455
  msgstr ""
1456
 
1457
+ #: pro/classes/controllers/FrmProFieldsController.php:231
1458
  #@ formidable
1459
  msgid "Greek"
1460
  msgstr ""
1461
 
1462
+ #: pro/classes/controllers/FrmProFieldsController.php:231
1463
  #@ formidable
1464
  msgid "Hebrew"
1465
  msgstr ""
1466
 
1467
+ #: pro/classes/controllers/FrmProFieldsController.php:232
1468
  #@ formidable
1469
  msgid "Hungarian"
1470
  msgstr ""
1471
 
1472
+ #: pro/classes/controllers/FrmProFieldsController.php:232
1473
  #@ formidable
1474
  msgid "Icelandic"
1475
  msgstr ""
1476
 
1477
+ #: pro/classes/controllers/FrmProFieldsController.php:233
1478
  #@ formidable
1479
  msgid "Italian"
1480
  msgstr ""
1481
 
1482
+ #: pro/classes/controllers/FrmProFieldsController.php:233
1483
  #@ formidable
1484
  msgid "Japanese"
1485
  msgstr ""
1486
 
1487
+ #: pro/classes/controllers/FrmProFieldsController.php:234
1488
  #@ formidable
1489
  msgid "Korean"
1490
  msgstr ""
1491
 
1492
+ #: pro/classes/controllers/FrmProFieldsController.php:234
1493
  #@ formidable
1494
  msgid "Latvian"
1495
  msgstr ""
1496
 
1497
+ #: pro/classes/controllers/FrmProFieldsController.php:235
1498
  #@ formidable
1499
  msgid "Lithuanian"
1500
  msgstr ""
1501
 
1502
+ #: pro/classes/controllers/FrmProFieldsController.php:235
1503
  #@ formidable
1504
  msgid "Malaysian"
1505
  msgstr ""
1506
 
1507
+ #: pro/classes/controllers/FrmProFieldsController.php:236
1508
  #@ formidable
1509
  msgid "Norwegian"
1510
  msgstr ""
1511
 
1512
+ #: pro/classes/controllers/FrmProFieldsController.php:236
1513
  #@ formidable
1514
  msgid "Polish"
1515
  msgstr ""
1516
 
1517
+ #: pro/classes/controllers/FrmProFieldsController.php:237
1518
  #@ formidable
1519
  msgid "Portuguese/Brazilian"
1520
  msgstr ""
1521
 
1522
+ #: pro/classes/controllers/FrmProFieldsController.php:237
1523
  #@ formidable
1524
  msgid "Romanian"
1525
  msgstr ""
1526
 
1527
+ #: classes/views/frm-settings/form.php:104
1528
+ #: pro/classes/controllers/FrmProFieldsController.php:238
1529
  #@ formidable
1530
  msgid "Russian"
1531
  msgstr ""
1532
 
1533
+ #: pro/classes/controllers/FrmProFieldsController.php:238
1534
+ #: pro/classes/controllers/FrmProFieldsController.php:239
1535
  #@ formidable
1536
  msgid "Serbian"
1537
  msgstr ""
1538
 
1539
+ #: pro/classes/controllers/FrmProFieldsController.php:239
1540
  #@ formidable
1541
  msgid "Slovak"
1542
  msgstr ""
1543
 
1544
+ #: pro/classes/controllers/FrmProFieldsController.php:240
1545
  #@ formidable
1546
  msgid "Slovenian"
1547
  msgstr ""
1548
 
1549
+ #: classes/views/frm-settings/form.php:104
1550
+ #: pro/classes/controllers/FrmProFieldsController.php:240
1551
  #@ formidable
1552
  msgid "Spanish"
1553
  msgstr ""
1554
 
1555
+ #: pro/classes/controllers/FrmProFieldsController.php:241
1556
  #@ formidable
1557
  msgid "Swedish"
1558
  msgstr ""
1559
 
1560
+ #: pro/classes/controllers/FrmProFieldsController.php:241
1561
  #@ formidable
1562
  msgid "Tamil"
1563
  msgstr ""
1564
 
1565
+ #: pro/classes/controllers/FrmProFieldsController.php:242
1566
  #@ formidable
1567
  msgid "Thai"
1568
  msgstr ""
1569
 
1570
+ #: classes/views/frm-settings/form.php:104
1571
+ #: pro/classes/controllers/FrmProFieldsController.php:242
1572
  #@ formidable
1573
  msgid "Turkish"
1574
  msgstr ""
1575
 
1576
+ #: pro/classes/controllers/FrmProFieldsController.php:243
1577
  #@ formidable
1578
  msgid "Ukranian"
1579
  msgstr ""
1580
 
1581
+ #: pro/classes/controllers/FrmProFieldsController.php:243
1582
  #@ formidable
1583
  msgid "Vietnamese"
1584
  msgstr ""
1585
 
1586
+ #: pro/classes/controllers/FrmProFormsController.php:124
1587
  #@ formidable
1588
  msgid "Current Date"
1589
  msgstr ""
1590
 
1591
+ #: pro/classes/controllers/FrmProFormsController.php:125
1592
  #@ formidable
1593
  msgid "Current Time"
1594
  msgstr ""
1595
 
1596
+ #: pro/classes/controllers/FrmProFormsController.php:126
1597
  #@ formidable
1598
  msgid "User Email"
1599
  msgstr ""
1600
 
1601
+ #: pro/classes/controllers/FrmProFormsController.php:127
1602
  #@ formidable
1603
  msgid "User Login"
1604
  msgstr ""
1605
 
1606
+ #: pro/classes/controllers/FrmProFormsController.php:128
1607
  #@ formidable
1608
  msgid "User Display Name"
1609
  msgstr ""
1610
 
1611
+ #: pro/classes/controllers/FrmProFormsController.php:129
1612
  #@ formidable
1613
  msgid "User First Name"
1614
  msgstr ""
1615
 
1616
+ #: pro/classes/controllers/FrmProFormsController.php:130
1617
  #@ formidable
1618
  msgid "User Last Name"
1619
  msgstr ""
1620
 
1621
+ #: pro/classes/controllers/FrmProFormsController.php:131
1622
  #@ formidable
1623
  msgid "User Meta"
1624
  msgstr ""
1625
 
1626
+ #: pro/classes/controllers/FrmProFormsController.php:132
1627
+ #: pro/classes/helpers/FrmProFieldsHelper.php:832
1628
+ #: pro/classes/views/frmpro-entries/import.php:93
1629
  #@ formidable
1630
  msgid "Post ID"
1631
  msgstr ""
1632
 
1633
+ #: pro/classes/controllers/FrmProFormsController.php:135
1634
  #@ formidable
1635
  msgid "Client IP Address"
1636
  msgstr ""
1637
 
1638
+ #: pro/classes/controllers/FrmProFormsController.php:136
1639
  #@ formidable
1640
  msgid "Auto Increment"
1641
  msgstr ""
1642
 
1643
+ #: pro/classes/controllers/FrmProFormsController.php:137
1644
  #@ formidable
1645
  msgid "GET/POST variable"
1646
  msgstr ""
1647
 
1648
+ #: classes/views/frm-forms/list.php:111
1649
+ #: pro/classes/controllers/FrmProFormsController.php:164
1650
  #@ formidable
1651
  msgid "Export Template"
1652
  msgstr ""
1653
 
1654
+ #: pro/classes/controllers/FrmProStatisticsController.php:234
1655
  #@ formidable
1656
  msgid "Completed"
1657
  msgstr ""
1658
 
1659
+ #: pro/classes/controllers/FrmProStatisticsController.php:234
1660
  #@ formidable
1661
  msgid "Not Completed"
1662
  msgstr ""
1663
 
1664
+ #: pro/classes/helpers/FrmProAppHelper.php:176
1665
  #@ formidable
1666
  msgid "Bulk Actions"
1667
  msgstr ""
1668
 
1669
+ #: pro/classes/helpers/FrmProAppHelper.php:180
1670
  #@ formidable
1671
  msgid "Apply"
1672
  msgstr ""
1673
 
1674
+ #: pro/classes/helpers/FrmProAppHelper.php:204
1675
  #@ formidable
1676
  msgid "All Fields"
1677
  msgstr ""
1678
 
1679
+ #: pro/classes/helpers/FrmProAppHelper.php:211
1680
  #@ formidable
1681
  msgid "Search"
1682
  msgstr ""
1683
 
1684
+ #: pro/classes/helpers/FrmProAppHelper.php:213
1685
  #@ formidable
1686
  msgid "Reset"
1687
  msgstr ""
1688
 
1689
+ #: pro/classes/helpers/FrmProFieldsHelper.php:369
1690
  #@ formidable
1691
  msgid "Draft"
1692
  msgstr ""
1693
 
1694
+ #: pro/classes/helpers/FrmProFieldsHelper.php:370
1695
  #@ formidable
1696
  msgid "Pending Review"
1697
  msgstr ""
1698
 
1699
+ #: pro/classes/helpers/FrmProFieldsHelper.php:372
1700
  #@ formidable
1701
  msgid "Published"
1702
  msgstr ""
1703
 
1704
+ #: pro/classes/helpers/FrmProFieldsHelper.php:373
1705
  #@ formidable
1706
  msgid "Scheduled"
1707
  msgstr ""
1708
 
1709
+ #: pro/classes/helpers/FrmProFieldsHelper.php:600
1710
  #@ formidable
1711
  msgid "Edit Uploaded File"
1712
  msgstr ""
1713
 
1714
+ #: pro/classes/helpers/FrmProFieldsHelper.php:828
1715
  #@ formidable
1716
  msgid "Select a value to insert into the box below"
1717
  msgstr ""
1718
 
1719
+ #: pro/classes/helpers/FrmProFieldsHelper.php:830
1720
  #@ formidable
1721
  msgid "Entry ID"
1722
  msgstr ""
1723
 
1724
+ #: pro/classes/helpers/FrmProFieldsHelper.php:833
1725
  #@ formidable
1726
  msgid "Entry Creation Date"
1727
  msgstr ""
1728
 
1729
+ #: pro/classes/helpers/FrmProFieldsHelper.php:835
1730
  #@ formidable
1731
  msgid "Form Fields"
1732
  msgstr ""
1733
 
1734
+ #: pro/classes/helpers/FrmProFieldsHelper.php:847
1735
  #@ formidable
1736
  msgid "Thumbnail"
1737
  msgstr ""
1738
 
1739
+ #: pro/classes/helpers/FrmProFieldsHelper.php:848
1740
  #@ formidable
1741
  msgid "Medium"
1742
  msgstr ""
1743
 
1744
+ #: pro/classes/helpers/FrmProFieldsHelper.php:849
1745
  #@ formidable
1746
  msgid "Large"
1747
  msgstr ""
1748
 
1749
+ #: pro/classes/helpers/FrmProFieldsHelper.php:850
1750
  #@ formidable
1751
  msgid "Full Size"
1752
  msgstr ""
1753
 
1754
+ #: pro/classes/helpers/FrmProFieldsHelper.php:870
1755
  #@ formidable
1756
  msgid "Helpers"
1757
  msgstr ""
1758
 
1759
+ #: pro/classes/helpers/FrmProFieldsHelper.php:871
1760
  #@ formidable
1761
  msgid "Admin link to edit the entry"
1762
  msgstr ""
1763
 
1764
+ #: pro/classes/helpers/FrmProFieldsHelper.php:873
1765
  #@ formidable
1766
  msgid "Link to view single page if showing dynamic entries"
1767
  msgstr ""
1768
 
1769
+ #: pro/classes/helpers/FrmProFieldsHelper.php:877
1770
  #@ formidable
1771
  msgid "Add a rotating 'even' or 'odd' class"
1772
  msgstr ""
1773
 
1774
+ #: pro/classes/helpers/FrmProFieldsHelper.php:881
1775
  #@ formidable
1776
  msgid "Site URL"
1777
  msgstr ""
1778
 
1779
+ #: pro/classes/models/FrmProDisplay.php:179
1780
  #@ formidable
1781
  msgid "Limit must be a number"
1782
  msgstr ""
1783
 
1784
+ #: pro/classes/models/FrmProEntryMeta.php:128
1785
+ #: pro/classes/models/FrmProEntryMeta.php:148
1786
  #@ formidable
1787
  msgid "must be unique"
1788
  msgstr ""
1789
 
1790
+ #: pro/classes/models/FrmProField.php:43
 
 
 
 
 
1791
  #@ formidable
1792
  msgid "Phone"
1793
  msgstr ""
1794
 
1795
+ #: pro/classes/models/FrmProField.php:49
1796
+ #: pro/classes/models/FrmProForm.php:100
1797
  #@ formidable
1798
  msgid "User ID"
1799
  msgstr ""
1800
 
1801
+ #: pro/classes/models/FrmProField.php:64
1802
  #@ formidable
1803
  msgid "Heading"
1804
  msgstr ""
1805
 
1806
+ #: pro/classes/models/FrmProField.php:70
1807
+ #: pro/classes/views/displays/list.php:47
1808
+ #: pro/classes/views/displays/list.php:94
1809
  #@ formidable
1810
  msgid "Page"
1811
  msgstr ""
1812
 
1813
+ #: pro/classes/models/FrmProForm.php:107
1814
  #@ formidable
1815
  msgid "Please insert a message for your auto responder."
1816
  msgstr ""
1817
 
1818
+ #: pro/classes/models/FrmProForm.php:109
1819
  #@ formidable
1820
  msgid "That is not a valid reply-to email address for your auto responder."
1821
  msgstr ""
1822
 
1823
+ #: pro/classes/models/FrmProSettings.php:104
1824
  #@ formidable
1825
  msgid "You have already submitted that form"
1826
  msgstr ""
1827
 
1828
+ #: pro/classes/views/displays/edit.php:11
 
 
 
 
 
1829
  #: pro/classes/views/displays/new.php:7
1830
  #@ formidable
1831
  msgid "Get Help with This Page"
1832
  msgstr ""
1833
 
1834
+ #: pro/classes/views/displays/form.php:32
1835
  #@ formidable
1836
  msgid "Save to get ID"
1837
  msgstr ""
1838
 
1839
+ #: pro/classes/views/settings/formroller.php:326
1840
  #@ formidable
1841
  msgid "Calendar"
1842
  msgstr ""
1843
 
1844
+ #: pro/classes/views/displays/form.php:118
1845
  #@ formidable
1846
  msgid "Date Field"
1847
  msgstr ""
1848
 
1849
+ #: pro/classes/views/displays/form.php:120
1850
+ #: pro/classes/views/displays/form.php:210
1851
+ #: pro/classes/views/displays/where_row.php:6
1852
  #@ formidable
1853
  msgid "Entry creation date"
1854
  msgstr ""
1855
 
1856
+ #: pro/classes/views/displays/form.php:98
1857
  #@ formidable
1858
  msgid "Use Entries from Form"
1859
  msgstr ""
1860
 
1861
+ #: pro/classes/views/displays/form.php:102
1862
  #@ formidable
1863
  msgid "Select Entry"
1864
  msgstr ""
1865
 
1866
+ #: pro/classes/views/displays/form.php:102
1867
  #@ formidable
1868
  msgid "The first one depending on the Order specified below"
1869
  msgstr ""
1870
 
1871
+ #: pro/classes/views/displays/form.php:159
1872
  #@ formidable
1873
  msgid "Before Content"
1874
  msgstr ""
1875
 
1876
+ #: pro/classes/views/displays/form.php:159
1877
  #@ formidable
1878
  msgid "This content will not be repeated. This would be a good place to put any HTML table tags."
1879
  msgstr ""
1880
 
1881
+ #: pro/classes/views/displays/form.php:154
1882
+ #: pro/classes/views/displays/form.php:166
1883
+ #: pro/classes/views/frmpro-fields/options-form.php:97
1884
+ #: pro/classes/views/frmpro-fields/options-form.php:176
1885
  #@ formidable
1886
  msgid "Content"
1887
  msgstr ""
1888
 
1889
+ #: pro/classes/views/displays/form.php:166
1890
  #@ formidable
1891
  msgid "The HTML for your page. If 'All Entries' is selected above, this content will be repeated for each entry. The field ID and Key work synonymously, although there are times one choice may be better. If you are panning to copy your custom display settings to other blogs, use the Key since they will be copied and the ids may differ from blog to blog."
1892
  msgstr ""
1893
 
1894
+ #: pro/classes/views/displays/form.php:178
1895
  #@ formidable
1896
  msgid "After Content"
1897
  msgstr ""
1898
 
1899
+ #: pro/classes/views/displays/form.php:178
1900
  #@ formidable
1901
  msgid "This content will not be repeated. This would be a good place to close any HTML tags from the Before Content field."
1902
  msgstr ""
1903
 
1904
+ #: pro/classes/views/displays/form.php:185
1905
  #@ formidable
1906
  msgid "Dynamic Content"
1907
  msgstr ""
1908
 
1909
+ #: pro/classes/views/displays/form.php:185
1910
  #, php-format
1911
  #@ formidable
1912
  msgid "The HTML for the entry on the dynamic page. This content will NOT be repeated, and will only show when the %1$s is clicked."
1927
  msgid "If you would like the content to be inserted automatically, you must then select the page in which to insert it."
1928
  msgstr ""
1929
 
1930
+ #: pro/classes/views/displays/form.php:127
1931
  #@ formidable
1932
  msgid "Detail Link"
1933
  msgstr ""
1934
 
1935
+ #: pro/classes/views/displays/form.php:127
1936
  #, php-format
1937
  #@ formidable
1938
  msgid "Example: If parameter name is 'contact', the url would be like %1$s/selected-page?contact=2. If this entry is linked to a post, the post permalink will be used instead."
1939
  msgstr ""
1940
 
1941
+ #: pro/classes/views/displays/form.php:135
1942
  #, php-format
1943
  #@ formidable
1944
  msgid "Select the value that will be added onto the page URL. This will create a pretty URL like %1$s/selected-page/entry-key"
1945
  msgstr ""
1946
 
1947
+ #: pro/classes/views/displays/form.php:137
1948
  #@ formidable
1949
  msgid "Parameter Name"
1950
  msgstr ""
1951
 
1952
+ #: pro/classes/views/displays/form.php:140
1953
  #@ formidable
1954
  msgid "Parameter Value"
1955
  msgstr ""
1956
 
1957
+ #: pro/classes/views/displays/form.php:209
1958
  #@ formidable
1959
  msgid "Random"
1960
  msgstr ""
1961
 
1962
+ #: pro/classes/views/displays/form.php:216
1963
  #@ formidable
1964
  msgid "Ascending"
1965
  msgstr ""
1966
 
1967
+ #: pro/classes/views/displays/form.php:217
1968
  #@ formidable
1969
  msgid "Descending"
1970
  msgstr ""
1971
 
1972
+ #: pro/classes/views/displays/form.php:224
1973
  #@ formidable
1974
  msgid "Narrow down which entries will be used."
1975
  msgstr ""
1976
 
1977
+ #: pro/classes/views/displays/form.php:244
1978
  #@ formidable
1979
  msgid "If you don’t want all your entries displayed, you can insert the number limit here. Leave blank if you’d like all entries shown."
1980
  msgstr ""
1981
 
1982
+ #: pro/classes/views/displays/form.php:253
1983
  #@ formidable
1984
  msgid "The number of entries to show per page. Leave blank to not use pagination."
1985
  msgstr ""
1986
 
1987
+ #: classes/widgets/FrmShowForm.php:46
1988
+ #: pro/classes/views/displays/list.php:45
1989
+ #: pro/classes/views/displays/list.php:92
 
 
 
 
1990
  #: pro/classes/widgets/FrmPollResults.php:40
 
1991
  #@ formidable
1992
  msgid "Form"
1993
  msgstr ""
1994
 
1995
+ #: pro/classes/views/displays/list.php:54
1996
  #@ formidable
1997
  msgid "No Records Found"
1998
  msgstr ""
1999
 
2000
+ #: pro/classes/views/displays/list.php:70
2001
  #, php-format
2002
  #@ formidable
2003
  msgid "Are you sure you want to delete your %1$s display data?"
2058
  msgid "Date options: 'NOW' or a date in yyyy-mm-dd format."
2059
  msgstr ""
2060
 
2061
+ #: pro/classes/views/displays/where_row.php:9
2062
  #@ formidable
2063
  msgid "is"
2064
  msgstr ""
2065
 
2066
+ #: pro/classes/views/displays/where_row.php:11
2067
  #@ formidable
2068
  msgid "equal to"
2069
  msgstr ""
2070
 
2071
+ #: pro/classes/views/displays/where_row.php:12
2072
  #@ formidable
2073
  msgid "NOT equal to"
2074
  msgstr ""
2075
 
2076
+ #: pro/classes/views/displays/where_row.php:13
2077
  #@ formidable
2078
  msgid "greater than"
2079
  msgstr ""
2080
 
2081
+ #: pro/classes/views/displays/where_row.php:14
2082
  #@ formidable
2083
  msgid "less than"
2084
  msgstr ""
2085
 
2086
+ #: pro/classes/views/displays/where_row.php:15
2087
  #@ formidable
2088
  msgid "like"
2089
  msgstr ""
2093
  msgid "Edit Entry"
2094
  msgstr ""
2095
 
2096
+ #: pro/classes/controllers/FrmProEntriesController.php:1139
2097
+ #: pro/classes/views/frmpro-entries/list.php:73
2098
+ #: pro/classes/views/frmpro-entries/show.php:25
2099
  #@ formidable
2100
  msgid "Are you sure you want to delete that entry?"
2101
  msgstr ""
2102
 
2103
+ #: pro/classes/views/frmpro-entries/list.php:97
2104
  #@ formidable
2105
  msgid "Download CSV for"
2106
  msgstr ""
2107
 
 
 
 
 
 
2108
  #: pro/classes/views/frmpro-entries/new-selection.php:8
2109
  #@ formidable
2110
  msgid "Select Form for New Entry"
2111
  msgstr ""
2112
 
 
 
 
 
 
 
2113
  #: pro/classes/views/frmpro-entries/show.php:3
2114
  #@ formidable
2115
  msgid "View Entry"
2116
  msgstr ""
2117
 
 
 
 
 
 
 
2118
  #: pro/classes/views/frmpro-fields/dynamic-options.php:18
2119
  #@ formidable
2120
  msgid "Limit selection choices to those created by the user filling out this form"
2135
  msgid "Just show it"
2136
  msgstr ""
2137
 
2138
+ #: pro/classes/views/frmpro-fields/options-form.php:25
2139
  #@ formidable
2140
  msgid "Calendar Localization"
2141
  msgstr ""
2142
 
2143
+ #: pro/classes/views/frmpro-fields/options-form.php:35
2144
  #@ formidable
2145
  msgid "Start Year"
2146
  msgstr ""
2147
 
2148
+ #: pro/classes/views/frmpro-fields/options-form.php:38
2149
  #@ formidable
2150
  msgid "End Year"
2151
  msgstr ""
2152
 
2153
+ #: pro/classes/views/frmpro-fields/options-form.php:43
2154
  #@ formidable
2155
  msgid "Clock Settings"
2156
  msgstr ""
2157
 
2158
+ #: pro/classes/views/frmpro-fields/options-form.php:48
2159
  #@ formidable
2160
  msgid "hour clock"
2161
  msgstr ""
2162
 
2163
+ #: pro/classes/views/frmpro-fields/options-form.php:51
2164
  #@ formidable
2165
  msgid "minute step"
2166
  msgstr ""
2167
 
2168
+ #: pro/classes/views/frmpro-fields/options-form.php:66
2169
  #@ formidable
2170
  msgid "automatic width"
2171
  msgstr ""
2172
 
2173
+ #: pro/classes/views/frmpro-fields/options-form.php:70
2174
  #@ formidable
2175
  msgid "Email Attachment"
2176
  msgstr ""
2177
 
2178
+ #: pro/classes/views/frmpro-fields/options-form.php:71
2179
  #@ formidable
2180
  msgid "attach this file to the email notification"
2181
  msgstr ""
2182
 
2183
+ #: pro/classes/views/frmpro-fields/options-form.php:74
2184
  #@ formidable
2185
  msgid "Number Range"
2186
  msgstr ""
2187
 
2188
+ #: pro/classes/views/frmpro-fields/options-form.php:74
2189
  #@ formidable
2190
  msgid "Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field."
2191
  msgstr ""
2192
 
2193
+ #: pro/classes/views/frmpro-fields/options-form.php:75
2194
  #@ formidable
2195
  msgid "minimum"
2196
  msgstr ""
2197
 
2198
+ #: pro/classes/views/frmpro-fields/options-form.php:76
2199
  #@ formidable
2200
  msgid "maximum"
2201
  msgstr ""
2202
 
2203
+ #: pro/classes/views/frmpro-fields/options-form.php:77
2204
  #@ formidable
2205
  msgid "step"
2206
  msgstr ""
2207
 
2208
+ #: pro/classes/views/frmpro-fields/options-form.php:80
2209
  #@ formidable
2210
  msgid "Range"
2211
  msgstr ""
2212
 
2213
+ #: pro/classes/views/frmpro-fields/options-form.php:87
2214
  #@ formidable
2215
  msgid "to"
2216
  msgstr ""
2217
 
2218
+ #: pro/classes/views/frmpro-fields/options-form.php:107
2219
+ #: pro/classes/views/frmpro-fields/options-form.php:115
 
2220
  #@ formidable
2221
  msgid "Field Type"
2222
  msgstr ""
2223
 
2224
+ #: pro/classes/views/frmpro-fields/options-form.php:145
2225
  #@ formidable
2226
  msgid "Hide this field unless the value of"
2227
  msgstr ""
2228
 
2229
+ #: pro/classes/views/displays/where_row.php:5
2230
+ #: pro/classes/views/frmpro-fields/options-form.php:147
2231
+ #: pro/classes/views/frmpro-forms/_comment_meta_row.php:8
2232
+ #: pro/classes/views/frmpro-forms/_custom_field_row.php:8
2233
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:15
2234
+ #: pro/classes/views/frmpro-forms/comment_options.php:25
2235
+ #: pro/classes/views/frmpro-forms/post_options.php:40
2236
  #@ formidable
2237
  msgid "Select Field"
2238
  msgstr ""
2239
 
2240
+ #: pro/classes/views/frmpro-fields/options-form.php:153
2241
  #@ formidable
2242
  msgid "is equal to"
2243
  msgstr ""
2244
 
2245
+ #: pro/classes/views/frmpro-fields/options-form.php:169
2246
  #@ formidable
2247
  msgid "Post field"
2248
  msgstr ""
2249
 
2250
+ #: pro/classes/views/frmpro-fields/options-form.php:169
2251
  #@ formidable
2252
  msgid "Create a post from each form submission by selecting which part of the post this field will create. 'Custom field' is the only post field type that should be used multiple times."
2253
  msgstr ""
2254
 
2255
+ #: pro/classes/views/frmpro-fields/options-form.php:219
2256
  #@ formidable
2257
  msgid "The field key can be used as an alternative to the field ID in many cases."
2258
  msgstr ""
2262
  msgid "These buttons are for illustrative purposes only. They will be functional in your form."
2263
  msgstr ""
2264
 
 
 
 
 
 
 
 
 
 
 
2265
  #: pro/classes/views/frmpro-forms/add_form_options.php:1
2266
  #@ formidable
2267
  msgid "Use Content from Page"
2277
  msgid "Submit this Form with AJAX"
2278
  msgstr ""
2279
 
2280
+ #: pro/classes/views/frmpro-forms/add_form_options.php:28
2281
  #@ formidable
2282
  msgid "Only"
2283
  msgstr ""
2284
 
2285
+ #: pro/classes/views/frmpro-forms/add_form_options.php:36
2286
  #@ formidable
2287
  msgid "Can See and Submit this Form"
2288
  msgstr ""
2289
 
2290
+ #: pro/classes/views/frmpro-forms/add_form_options.php:38
2291
  #@ formidable
2292
  msgid "Allow"
2293
  msgstr ""
2294
 
2295
+ #: pro/classes/views/frmpro-forms/add_form_options.php:46
2296
  #@ formidable
2297
  msgid "to Edit Their Own Previous Responses"
2298
  msgstr ""
2299
 
2300
+ #: pro/classes/views/frmpro-forms/add_form_options.php:49
2301
  #@ formidable
2302
  msgid "Also Allow"
2303
  msgstr ""
2304
 
2305
+ #: pro/classes/views/frmpro-forms/add_form_options.php:57
2306
  #@ formidable
2307
  msgid "to Edit Responses Submitted by Anyone"
2308
  msgstr ""
2309
 
2310
+ #: pro/classes/views/frmpro-forms/add_form_options.php:61
2311
  #@ formidable
2312
  msgid "Update Submit Button Text"
2313
  msgstr ""
2314
 
2315
+ #: pro/classes/views/frmpro-forms/add_form_options.php:66
2316
  #@ formidable
2317
  msgid "Update Confirmation Message"
2318
  msgstr ""
2319
 
2320
+ #: pro/classes/views/frmpro-forms/add_form_options.php:70
2321
  #@ formidable
2322
  msgid "Allow Only One Entry for Each"
2323
  msgstr ""
2324
 
2325
+ #: pro/classes/views/frmpro-forms/add_form_options.php:73
2326
  #@ formidable
2327
  msgid "Logged-in User"
2328
  msgstr ""
2329
 
2330
+ #: pro/classes/views/frmpro-forms/add_form_options.php:75
2331
  #@ formidable
2332
  msgid "Saved Cookie"
2333
  msgstr ""
2334
 
2335
+ #: pro/classes/views/frmpro-forms/add_form_options.php:92
2336
  #@ formidable
2337
  msgid "Copy this form to other blogs when Formidable Pro is activated"
2338
  msgstr ""
2347
  msgid "A variable from the URL or value posted from previous page."
2348
  msgstr ""
2349
 
 
 
 
 
 
2350
  #: pro/classes/views/frmpro-forms/notifications.php:3
2351
  #@ formidable
2352
  msgid "and/or"
2357
  msgid "Select a user id, hidden, or email field to send a notification."
2358
  msgstr ""
2359
 
2360
+ #: pro/classes/views/frmpro-forms/notifications.php:29
2361
  #@ formidable
2362
  msgid "Usually the name and email of the person filling out the form. Select from Text, Email, User ID, or hidden fields for the name. Select from Email, User ID, and hidden fields for the email. Defaults to your site name and admin email found on the WordPress General Settings page."
2363
  msgstr ""
2364
 
2365
+ #: pro/classes/views/frmpro-forms/notifications.php:72
2366
+ #: pro/classes/views/frmpro-forms/notifications.php:130
2367
  #@ formidable
2368
  msgid "Email Format"
2369
  msgstr ""
2370
 
2371
+ #: pro/classes/views/frmpro-forms/notifications.php:73
2372
+ #: pro/classes/views/frmpro-forms/notifications.php:131
2373
  #@ formidable
2374
  msgid "Send Plain Text"
2375
  msgstr ""
2376
 
2377
+ #: pro/classes/views/frmpro-forms/notifications.php:90
 
 
 
 
 
2378
  #@ formidable
2379
  msgid "Append IP Address, Browser, and Referring URL to message"
2380
  msgstr ""
2381
 
2382
+ #: pro/classes/views/frmpro-forms/notifications.php:94
2383
  #@ formidable
2384
  msgid "Auto Responder"
2385
  msgstr ""
2386
 
2387
+ #: pro/classes/views/frmpro-forms/notifications.php:95
2388
  #@ formidable
2389
  msgid "Send an automatic response to users submitting the form"
2390
  msgstr ""
2391
 
2392
+ #: pro/classes/views/frmpro-forms/notifications.php:99
2393
  #@ formidable
2394
  msgid "Email to"
2395
  msgstr ""
2396
 
2397
+ #: pro/classes/views/frmpro-forms/notifications.php:99
2398
  #@ formidable
2399
  msgid "Select a user id, hidden, or email field to send the autoresponse."
2400
  msgstr ""
2401
 
2402
+ #: pro/classes/views/frmpro-forms/notifications.php:122
2403
  #@ formidable
2404
  msgid "Reply to"
2405
  msgstr ""
2429
  msgid "Keys"
2430
  msgstr ""
2431
 
2432
+ #: pro/classes/views/settings/form.php:26
2433
  #@ formidable
2434
+ msgid "Path to Extra Templates"
 
 
 
 
 
 
 
 
 
 
2435
  msgstr ""
2436
 
2437
  #: pro/classes/views/settings/form.php:26
2455
  msgid "Change the format of the date used in the calendar."
2456
  msgstr ""
2457
 
2458
+ #: pro/classes/views/settings/form.php:69
2459
  #@ formidable
2460
  msgid "Pretty Permalinks"
2461
  msgstr ""
2462
 
2463
+ #: pro/classes/views/settings/form.php:72
2464
  #@ formidable
2465
  msgid "Use pretty permalinks for entry detail links"
2466
  msgstr ""
2467
 
2468
  #: pro/classes/views/settings/formroller.php:22
2469
+ #: pro/classes/views/settings/formroller.php:200
2470
+ #: pro/classes/views/settings/formroller.php:232
2471
+ #: pro/classes/views/settings/formroller.php:256
2472
+ #: pro/classes/views/settings/formroller.php:402
2473
+ #: pro/classes/views/settings/formroller.php:440
2474
+ #: pro/classes/views/settings/formroller.php:483
2475
  #@ formidable
2476
  msgid "Border"
2477
  msgstr ""
2479
  #: pro/classes/views/settings/formroller.php:27
2480
  #: pro/classes/views/settings/formroller.php:50
2481
  #: pro/classes/views/settings/formroller.php:100
2482
+ #: pro/classes/views/settings/formroller.php:305
2483
  #@ formidable
2484
  msgid "Color"
2485
  msgstr ""
2486
 
2487
  #: pro/classes/views/settings/formroller.php:32
2488
+ #: pro/classes/views/settings/formroller.php:170
2489
+ #: pro/classes/views/settings/formroller.php:419
2490
  #@ formidable
2491
  msgid "Padding"
2492
  msgstr ""
2493
 
2494
  #: pro/classes/views/settings/formroller.php:111
2495
+ #: pro/classes/views/settings/formroller.php:208
2496
+ #: pro/classes/views/settings/formroller.php:264
2497
  #@ formidable
2498
  msgid "Style"
2499
  msgstr ""
2500
 
2501
+ #: pro/classes/views/settings/formroller.php:210
2502
+ #: pro/classes/views/settings/formroller.php:266
2503
  #@ formidable
2504
  msgid "solid"
2505
  msgstr ""
2506
 
2507
+ #: pro/classes/views/settings/formroller.php:211
2508
+ #: pro/classes/views/settings/formroller.php:267
2509
  #@ formidable
2510
  msgid "dotted"
2511
  msgstr ""
2512
 
2513
+ #: pro/classes/views/settings/formroller.php:212
2514
+ #: pro/classes/views/settings/formroller.php:268
2515
  #@ formidable
2516
  msgid "dashed"
2517
  msgstr ""
2518
 
2519
+ #: pro/classes/views/settings/formroller.php:213
2520
+ #: pro/classes/views/settings/formroller.php:269
2521
  #@ formidable
2522
  msgid "double"
2523
  msgstr ""
2524
 
2525
+ #: pro/classes/views/settings/formroller.php:204
2526
+ #: pro/classes/views/settings/formroller.php:260
2527
+ #: pro/classes/views/settings/formroller.php:406
2528
  #@ formidable
2529
  msgid "Thickness"
2530
  msgstr ""
2531
 
2532
+ #: pro/classes/views/settings/formroller.php:351
2533
  #@ formidable
2534
  msgid "Disable submit button styling"
2535
  msgstr ""
2536
 
2537
+ #: pro/classes/views/settings/formroller.php:353
2538
  #@ formidable
2539
  msgid "Note: If disabled, you may not see the change take effect until you make 2 more styling changes or click \"Update Options\"."
2540
  msgstr ""
2541
 
2542
+ #: pro/classes/views/settings/formroller.php:525
2543
  #@ formidable
2544
  msgid "Templates Updated"
2545
  msgstr ""
2554
  msgid "Formidable Entries List"
2555
  msgstr ""
2556
 
2557
+ #: classes/widgets/FrmShowForm.php:43
2558
+ #: pro/classes/views/frmpro-fields/options-form.php:178
2559
  #: pro/classes/widgets/FrmListEntries.php:133
2560
  #: pro/classes/widgets/FrmPollResults.php:34
 
2561
  #@ formidable
2562
  msgid "Title"
2563
  msgstr ""
2622
  msgid "Formidable Poll & Results"
2623
  msgstr ""
2624
 
2625
+ #: classes/widgets/FrmShowForm.php:51
2626
  #: pro/classes/widgets/FrmPollResults.php:38
 
2627
  #@ formidable
2628
  msgid "Show Description"
2629
  msgstr ""
2630
 
2631
+ #: classes/widgets/FrmShowForm.php:6
2632
  #@ formidable
2633
  msgid "Display a Formidable Form"
2634
  msgstr ""
2635
 
2636
+ #: classes/widgets/FrmShowForm.php:7
2637
  #@ formidable
2638
  msgid "Formidable Form"
2639
  msgstr ""
2640
 
2641
+ #: classes/widgets/FrmShowForm.php:54
2642
  #@ formidable
2643
  msgid "Fit Select Boxes into SideBar"
2644
  msgstr ""
2645
 
2646
+ #: pro/classes/helpers/FrmProEntriesHelper.php:79
 
 
 
 
 
 
 
 
 
 
2647
  #@ formidable
2648
  msgid "Entries from:"
2649
  msgstr ""
2650
 
2651
+ #: classes/helpers/FrmFieldsHelper.php:265
2652
+ #: classes/helpers/FrmFieldsHelper.php:271
2653
  #@ formidable
2654
  msgid "not"
2655
  msgstr ""
2659
  msgid "Select a form to insert"
2660
  msgstr ""
2661
 
 
 
 
 
 
2662
  #: classes/views/frm-forms/insert_form_popup.php:58
2663
  #@ formidable
2664
  msgid "Filter shortcodes within the custom display content"
2674
  msgid "Insert a search box"
2675
  msgstr ""
2676
 
2677
+ #: classes/views/frm-forms/list.php:111
2678
  #: pro/classes/views/shared/import_form.php:37
2679
  #@ formidable
2680
  msgid "Export"
2681
  msgstr ""
2682
 
2683
+ #: pro/classes/views/frmpro-forms/notifications.php:29
2684
  #@ formidable
2685
  msgid "From/Reply to"
2686
  msgstr ""
2687
 
2688
+ #: classes/views/frm-settings/form.php:16
2689
  #: pro/classes/views/settings/formroller.php:9
2690
  #@ formidable
2691
  msgid "General"
2724
 
2725
  #: pro/classes/views/settings/formroller.php:46
2726
  #: pro/classes/views/settings/formroller.php:96
2727
+ #: pro/classes/views/settings/formroller.php:301
2728
  #@ formidable
2729
  msgid "Family"
2730
  msgstr ""
2731
 
2732
  #: pro/classes/views/settings/formroller.php:54
2733
  #: pro/classes/views/settings/formroller.php:104
2734
+ #: pro/classes/views/settings/formroller.php:309
2735
+ #: pro/classes/views/settings/formroller.php:356
2736
  #@ formidable
2737
  msgid "Weight"
2738
  msgstr ""
2740
  #: pro/classes/views/settings/formroller.php:61
2741
  #: pro/classes/views/settings/formroller.php:118
2742
  #: pro/classes/views/settings/formroller.php:155
2743
+ #: pro/classes/views/settings/formroller.php:316
2744
+ #: pro/classes/views/settings/formroller.php:369
2745
+ #: pro/classes/views/settings/formroller.php:462
2746
+ #: pro/classes/views/settings/formroller.php:491
2747
  #@ formidable
2748
  msgid "Size"
2749
  msgstr ""
2755
 
2756
  #: pro/classes/views/settings/formroller.php:83
2757
  #: pro/classes/views/settings/formroller.php:160
2758
+ #: pro/classes/views/settings/formroller.php:374
2759
  #@ formidable
2760
  msgid "Width"
2761
  msgstr ""
2762
 
2763
  #: pro/classes/views/settings/formroller.php:106
2764
  #: pro/classes/views/settings/formroller.php:113
2765
+ #: pro/classes/views/settings/formroller.php:311
2766
+ #: pro/classes/views/settings/formroller.php:358
2767
  #@ formidable
2768
  msgid "normal"
2769
  msgstr ""
2770
 
2771
  #: pro/classes/views/settings/formroller.php:107
2772
+ #: pro/classes/views/settings/formroller.php:312
2773
+ #: pro/classes/views/settings/formroller.php:359
2774
  #@ formidable
2775
  msgid "bold"
2776
  msgstr ""
2786
  msgstr ""
2787
 
2788
  #: pro/classes/views/settings/formroller.php:140
2789
+ #: pro/classes/views/settings/formroller.php:364
2790
  #@ formidable
2791
  msgid "Corners"
2792
  msgstr ""
2801
  msgid "Field Settings"
2802
  msgstr ""
2803
 
2804
+ #: pro/classes/views/settings/formroller.php:186
 
 
 
 
 
2805
  #@ formidable
2806
  msgid "Field Colors"
2807
  msgstr ""
2808
 
2809
+ #: pro/classes/views/settings/formroller.php:191
2810
+ #: pro/classes/views/settings/formroller.php:228
2811
+ #: pro/classes/views/settings/formroller.php:247
2812
  #@ formidable
2813
  msgid "BG color"
2814
  msgstr ""
2815
 
2816
+ #: pro/classes/views/settings/formroller.php:195
2817
+ #: pro/classes/views/settings/formroller.php:251
2818
+ #: pro/classes/views/settings/formroller.php:392
2819
+ #: pro/classes/views/settings/formroller.php:445
2820
+ #: pro/classes/views/settings/formroller.php:487
2821
  #@ formidable
2822
  msgid "Text"
2823
  msgstr ""
2824
 
2825
+ #: pro/classes/views/settings/formroller.php:223
2826
  #@ formidable
2827
  msgid "Field Colors: active state"
2828
  msgstr ""
2829
 
2830
+ #: pro/classes/views/settings/formroller.php:242
2831
  #@ formidable
2832
  msgid "Field Colors: error state"
2833
  msgstr ""
2834
 
2835
+ #: pro/classes/views/settings/formroller.php:278
2836
  #@ formidable
2837
  msgid "Radio Buttons & Check Boxes"
2838
  msgstr ""
2839
 
2840
+ #: pro/classes/views/settings/formroller.php:283
2841
  #@ formidable
2842
  msgid "Radio"
2843
  msgstr ""
2844
 
2845
+ #: pro/classes/views/settings/formroller.php:292
2846
  #@ formidable
2847
  msgid "Check Box"
2848
  msgstr ""
2849
 
2850
+ #: pro/classes/views/settings/formroller.php:330
2851
  #@ formidable
2852
  msgid "Theme"
2853
  msgstr ""
2854
 
2855
+ #: pro/classes/views/settings/formroller.php:379
2856
  #@ formidable
2857
  msgid "Height"
2858
  msgstr ""
2859
 
2860
+ #: pro/classes/views/settings/formroller.php:384
2861
+ #: pro/classes/views/settings/formroller.php:388
2862
+ #: pro/classes/views/settings/formroller.php:435
2863
+ #: pro/classes/views/settings/formroller.php:478
2864
  #@ formidable
2865
  msgid "BG Color"
2866
  msgstr ""
2867
 
2868
+ #: pro/classes/views/settings/formroller.php:397
2869
  #@ formidable
2870
  msgid "BG Image"
2871
  msgstr ""
2872
 
2873
+ #: pro/classes/views/settings/formroller.php:410
2874
  #@ formidable
2875
  msgid "Shadow"
2876
  msgstr ""
2877
 
2878
+ #: pro/classes/views/settings/formroller.php:415
2879
  #@ formidable
2880
  msgid "Margin"
2881
  msgstr ""
2882
 
2883
+ #: pro/classes/views/settings/formroller.php:430
2884
  #@ formidable
2885
  msgid "Error"
2886
  msgstr ""
2887
 
2888
+ #: pro/classes/views/settings/formroller.php:450
2889
  #@ formidable
2890
  msgid "Icon"
2891
  msgstr ""
2892
 
2893
+ #: pro/classes/views/settings/formroller.php:473
2894
  #@ formidable
2895
  msgid "Success"
2896
  msgstr ""
2897
 
2898
+ #: classes/views/frm-forms/edit.php:17
2899
+ #: classes/views/frm-forms/edit.php:31
2900
+ #: classes/views/frm-forms/form.php:101
2901
  #@ formidable
2902
  msgid "Customize Form HTML"
2903
  msgstr ""
2904
 
2905
+ #: classes/views/frm-forms/edit.php:17
2906
+ #: classes/views/frm-forms/edit.php:31
2907
  #@ formidable
2908
  msgid "Advanced Users: Customize your form HTML here"
2909
  msgstr ""
2910
 
2911
+ #: pro/classes/controllers/FrmProFormsController.php:133
2912
+ #: pro/classes/views/frmpro-forms/comment_options.php:15
2913
+ #: pro/classes/views/frmpro-forms/post_options.php:30
2914
  #@ formidable
2915
  msgid "Post Title"
2916
  msgstr ""
2917
 
2918
+ #: pro/classes/views/frmpro-fields/options-form.php:120
2919
  #@ formidable
2920
  msgid "Unique"
2921
  msgstr ""
2922
 
2923
+ #: pro/classes/views/frmpro-fields/options-form.php:122
2924
  #@ formidable
2925
  msgid "Read Only"
2926
  msgstr ""
2927
 
2928
+ #: classes/views/frm-settings/form.php:75
2929
  #@ formidable
2930
  msgid "reCAPTCHA"
2931
  msgstr ""
2932
 
2933
+ #: classes/views/frm-settings/form.php:75
2934
  #@ formidable
2935
  msgid "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking spam on your blog. reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a human. This verifies that they are not a spambot."
2936
  msgstr ""
2937
 
2938
+ #: classes/views/frm-settings/form.php:82
2939
  #@ formidable
2940
  msgid "Public Key"
2941
  msgstr ""
2942
 
2943
+ #: classes/views/frm-settings/form.php:86
2944
  #@ formidable
2945
  msgid "Private Key"
2946
  msgstr ""
2947
 
2948
+ #: classes/views/frm-settings/form.php:95
2949
  #@ formidable
2950
  msgid "reCAPTCHA Theme"
2951
  msgstr ""
2952
 
2953
+ #: classes/views/frm-settings/form.php:97
2954
  #@ formidable
2955
  msgid "Red"
2956
  msgstr ""
2957
 
2958
+ #: classes/views/frm-settings/form.php:97
2959
  #@ formidable
2960
  msgid "White"
2961
  msgstr ""
2962
 
2963
+ #: classes/views/frm-settings/form.php:97
2964
  #@ formidable
2965
  msgid "Black Glass"
2966
  msgstr ""
2967
 
2968
+ #: classes/views/frm-settings/form.php:97
2969
  #@ formidable
2970
  msgid "Clean"
2971
  msgstr ""
2972
 
2973
+ #: classes/views/frm-settings/form.php:102
2974
+ #@ formidable
2975
  msgid "reCAPTCHA Language"
2976
  msgstr ""
2977
 
2978
+ #: classes/views/frm-settings/form.php:104
2979
  #@ formidable
2980
  msgid "English"
2981
  msgstr ""
2982
 
2983
+ #: classes/views/frm-settings/form.php:104
2984
  #@ formidable
2985
  msgid "Portuguese"
2986
  msgstr ""
2990
  msgid "Hidden User ID"
2991
  msgstr ""
2992
 
2993
+ #: classes/models/FrmSettings.php:78
2994
  #@ formidable
2995
  msgid "The reCAPTCHA was not entered correctly"
2996
  msgstr ""
2997
 
2998
+ #: classes/views/frm-forms/add_field.php:84
2999
  #, php-format
3000
  #@ formidable
3001
  msgid "Hint: Change colors in the %1$sFormidable settings"
3002
  msgstr ""
3003
 
3004
+ #: classes/views/frm-forms/form.php:129
3005
  #@ formidable
3006
  msgid "Delete Entry Link"
3007
  msgstr ""
3008
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3009
  #: classes/helpers/FrmFieldsHelper.php:12
3010
  #@ formidable
3011
  msgid "reCAPTCHA (SPAM Control)"
3017
  msgstr ""
3018
 
3019
  #: classes/helpers/FrmFieldsHelper.php:37
3020
+ #: pro/classes/models/FrmProField.php:61
3021
  #@ formidable
3022
  msgid "HTML"
3023
  msgstr ""
3024
 
3025
+ #: classes/views/frm-forms/add_field.php:135
3026
  #@ formidable
3027
  msgid "Required Field"
3028
  msgstr ""
3029
 
3030
+ #: classes/views/frm-forms/add_field.php:136
3031
  #@ formidable
3032
  msgid "Required"
3033
  msgstr ""
3034
 
3035
+ #: classes/views/frm-forms/list.php:46
3036
+ #: classes/views/frm-forms/list.php:149
 
 
 
 
 
3037
  #@ formidable
3038
  msgid "ShortCodes"
3039
  msgstr ""
3040
 
3041
+ #: classes/views/frm-settings/form.php:146
3042
  #@ formidable
3043
  msgid "Default Submit Button"
3044
  msgstr ""
3045
 
3046
+ #: pro/classes/controllers/FrmProEntriesController.php:1313
3047
  #@ formidable
3048
  msgid "No one! You do not have permission"
3049
  msgstr ""
3050
 
3051
+ #: pro/classes/helpers/FrmProAppHelper.php:178
3052
  #@ formidable
3053
  msgid "Export to XML"
3054
  msgstr ""
3055
 
3056
+ #: pro/classes/helpers/FrmProEntriesHelper.php:61
3057
  #@ formidable
3058
  msgid "Resend Email Notification"
3059
  msgstr ""
3060
 
3061
+ #: pro/classes/helpers/FrmProEntriesHelper.php:62
3062
  #@ formidable
3063
  msgid "Resend Autoresponse"
3064
  msgstr ""
3065
 
3066
+ #: pro/classes/helpers/FrmProEntriesHelper.php:69
3067
  #@ formidable
3068
  msgid "Email Resent to"
3069
  msgstr ""
3070
 
3071
+ #: pro/classes/models/FrmProDisplay.php:169
3072
+ #: pro/classes/views/displays/form.php:84
3073
  #@ formidable
3074
  msgid "This is not displayed anywhere, but is just for your reference. (optional)"
3075
  msgstr ""
3076
 
3077
+ #: pro/classes/models/FrmProDisplay.php:173
3078
  #@ formidable
3079
  msgid "Content cannot be blank"
3080
  msgstr ""
3081
 
3082
+ #: pro/classes/models/FrmProDisplay.php:176
3083
  #@ formidable
3084
  msgid "Page cannot be blank if you want the content inserted automatically"
3085
  msgstr ""
3086
 
3087
+ #: pro/classes/models/FrmProDisplay.php:183
3088
  #@ formidable
3089
  msgid "Dynamic Content cannot be blank"
3090
  msgstr ""
3091
 
3092
+ #: pro/classes/models/FrmProDisplay.php:187
3093
  #@ formidable
3094
  msgid "Parameter Name cannot be blank if content is dynamic"
3095
  msgstr ""
3096
 
3097
+ #: pro/classes/models/FrmProDisplay.php:190
3098
  #@ formidable
3099
  msgid "Parameter Value cannot be blank if content is dynamic"
3100
  msgstr ""
3101
 
3102
+ #: pro/classes/models/FrmProDisplay.php:193
3103
  #@ formidable
3104
  msgid "Detail Link cannot be blank if content is dynamic"
3105
  msgstr ""
3106
 
 
 
 
 
 
3107
  #: pro/classes/views/displays/form.php:4
3108
  #@ formidable
3109
  msgid "Shortcode Options"
3129
  msgid "on page"
3130
  msgstr ""
3131
 
3132
+ #: pro/classes/views/displays/form.php:31
3133
  #@ formidable
3134
  msgid "Insert on a page, post, or text widget"
3135
  msgstr ""
3136
 
3137
+ #: pro/classes/views/displays/form.php:35
3138
  #@ formidable
3139
  msgid "Insert in a template"
3140
  msgstr ""
3141
 
3142
+ #: pro/classes/views/displays/form.php:43
3143
  #, php-format
3144
  #@ formidable
3145
  msgid "Are you sure you want to delete your %1$s display?"
3146
  msgstr ""
3147
 
3148
+ #: pro/classes/views/displays/form.php:63
3149
  #@ formidable
3150
  msgid "Custom Display Info"
3151
  msgstr ""
3152
 
3153
+ #: pro/classes/views/displays/form.php:75
3154
  #@ formidable
3155
  msgid "Display Key"
3156
  msgstr ""
3157
 
3158
+ #: pro/classes/views/displays/form.php:94
3159
  #@ formidable
3160
  msgid "Form and Display Type"
3161
  msgstr ""
3162
 
3163
+ #: pro/classes/views/displays/form.php:108
3164
  #@ formidable
3165
  msgid "Display Format"
3166
  msgstr ""
3167
 
3168
+ #: pro/classes/views/displays/form.php:111
3169
  #@ formidable
3170
  msgid "All Entries &mdash; list all entries in the specified form"
3171
  msgstr ""
3172
 
3173
+ #: pro/classes/views/displays/form.php:112
3174
  #@ formidable
3175
  msgid "Single Entry &mdash; display one entry"
3176
  msgstr ""
3177
 
3178
+ #: pro/classes/views/displays/form.php:113
3179
  #@ formidable
3180
  msgid "Both (Dynamic) &mdash; list the entries that will link to a single entry page"
3181
  msgstr ""
3182
 
3183
+ #: pro/classes/views/displays/form.php:114
3184
  #@ formidable
3185
  msgid "Calendar &mdash; insert entries into a calendar"
3186
  msgstr ""
3187
 
3188
+ #: pro/classes/views/displays/form.php:159
3189
+ #: pro/classes/views/displays/form.php:178
3190
+ #: pro/classes/views/frmpro-forms/comment_options.php:23
3191
+ #: pro/classes/views/frmpro-forms/post_options.php:38
3192
  #@ formidable
3193
  msgid "optional"
3194
  msgstr ""
3195
 
3196
+ #: pro/classes/views/displays/form.php:200
3197
  #@ formidable
3198
  msgid "Advanced"
3199
  msgstr ""
3200
 
3201
+ #: pro/classes/views/displays/form.php:205
3202
  #@ formidable
3203
  msgid "Order"
3204
  msgstr ""
3205
 
3206
+ #: pro/classes/views/displays/form.php:223
3207
  #@ formidable
3208
  msgid "Where"
3209
  msgstr ""
3210
 
3211
+ #: pro/classes/views/displays/form.php:243
3212
  #@ formidable
3213
  msgid "Limit"
3214
  msgstr ""
3215
 
3216
+ #: pro/classes/views/displays/form.php:252
3217
  #@ formidable
3218
  msgid "Page Size"
3219
  msgstr ""
3220
 
 
 
 
 
 
3221
  #: pro/classes/views/displays/tags.php:2
3222
  #@ formidable
3223
  msgid "Image Size"
3248
  msgid "Other Options"
3249
  msgstr ""
3250
 
3251
+ #: pro/classes/views/frmpro-fields/options-form.php:124
 
 
 
 
 
 
 
 
 
 
3252
  #@ formidable
3253
  msgid "Admin Only"
3254
  msgstr ""
3255
 
3256
+ #: pro/classes/views/frmpro-fields/options-form.php:132
3257
  #@ formidable
3258
  msgid "Calculations"
3259
  msgstr ""
3260
 
3261
+ #: pro/classes/views/frmpro-fields/options-form.php:134
3262
  #@ formidable
3263
  msgid "Calculate the default value for this field"
3264
  msgstr ""
3273
  msgid "You can edit this content in the field options."
3274
  msgstr ""
3275
 
3276
+ #: pro/classes/views/frmpro-statistics/show.php:13
3277
  #@ formidable
3278
  msgid "Go to Report"
3279
  msgstr ""
3323
  msgid "The format of that path is incorrect. Please try again."
3324
  msgstr ""
3325
 
3326
+ #: pro/classes/views/settings/form.php:96
 
 
 
 
 
 
 
 
 
 
 
 
3327
  #@ formidable
3328
  msgid "Text field"
3329
  msgstr ""
3330
 
3331
+ #: pro/classes/views/settings/form.php:97
3332
+ #: pro/classes/views/settings/form.php:103
3333
  #@ formidable
3334
  msgid "This is sample text"
3335
  msgstr ""
3336
 
3337
+ #: pro/classes/views/settings/form.php:98
3338
  #@ formidable
3339
  msgid "A field with a description"
3340
  msgstr ""
3341
 
3342
+ #: pro/classes/views/settings/form.php:102
3343
  #@ formidable
3344
  msgid "Text field with error"
3345
  msgstr ""
3346
 
3347
+ #: pro/classes/views/settings/form.php:108
3348
  #@ formidable
3349
  msgid "Text field in active state"
3350
  msgstr ""
3351
 
3352
+ #: pro/classes/views/settings/form.php:109
3353
  #@ formidable
3354
  msgid "The active state will be seen when the field is clicked"
3355
  msgstr ""
3356
 
3357
+ #: pro/classes/views/settings/form.php:118
3358
  #@ formidable
3359
  msgid "Drop-down Select"
3360
  msgstr ""
3361
 
3362
+ #: pro/classes/views/settings/form.php:121
3363
  #@ formidable
3364
  msgid "An Option"
3365
  msgstr ""
3366
 
3367
+ #: pro/classes/views/settings/form.php:126
3368
  #@ formidable
3369
  msgid "Radio Buttons"
3370
  msgstr ""
3371
 
3372
+ #: classes/helpers/FrmFieldsHelper.php:62
3373
+ #: classes/helpers/FrmFieldsHelper.php:64
3374
+ #: pro/classes/views/settings/form.php:127
3375
+ #: pro/classes/views/settings/form.php:133
3376
  #@ formidable
3377
  msgid "Option 1"
3378
  msgstr ""
3379
 
3380
+ #: classes/helpers/FrmFieldsHelper.php:62
3381
+ #: pro/classes/views/settings/form.php:128
3382
+ #: pro/classes/views/settings/form.php:134
3383
  #@ formidable
3384
  msgid "Option 2"
3385
  msgstr ""
3386
 
3387
+ #: pro/classes/views/settings/form.php:132
3388
  #@ formidable
3389
  msgid "Check Boxes"
3390
  msgstr ""
3391
 
3392
+ #: pro/classes/views/settings/form.php:138
3393
  #@ formidable
3394
  msgid "Text Area"
3395
  msgstr ""
3396
 
3397
+ #: pro/classes/views/settings/form.php:140
3398
  #@ formidable
3399
  msgid "Another field with a description"
3400
  msgstr ""
3401
 
3402
+ #: pro/classes/views/settings/form.php:144
3403
  #@ formidable
3404
  msgid "Rich Text Area"
3405
  msgstr ""
3409
  msgid "Import/Export"
3410
  msgstr ""
3411
 
3412
+ #: pro/classes/controllers/FrmProEntriesController.php:285
3413
+ #: pro/classes/views/frmpro-entries/list.php:5
3414
  #: pro/classes/views/shared/import_form.php:13
3415
  #@ formidable
3416
  msgid "Import"
3451
  msgid "Include the following data types in your export file"
3452
  msgstr ""
3453
 
 
 
 
 
 
3454
  #: pro/classes/views/shared/import_form.php:54
3455
  #@ formidable
3456
  msgid "Select forms (optional)"
3457
  msgstr ""
3458
 
 
 
 
 
 
3459
  #: pro/classes/views/shared/import_form.php:64
3460
  #@ formidable
3461
  msgid "Export Selection"
3462
  msgstr ""
3463
 
3464
+ #: classes/views/frm-settings/form.php:43
3465
  #@ formidable
3466
  msgid "Stylesheets"
3467
  msgstr ""
3468
 
3469
+ #: classes/views/frm-settings/form.php:46
3470
  #@ formidable
3471
  msgid "Load Formidable styling"
3472
  msgstr ""
3473
 
3474
+ #: classes/views/frm-settings/form.php:48
3475
  #@ formidable
3476
  msgid "on every page of your site"
3477
  msgstr ""
3478
 
3479
+ #: classes/views/frm-settings/form.php:49
3480
  #@ formidable
3481
  msgid "only on applicable pages"
3482
  msgstr ""
3483
 
3484
+ #: classes/views/frm-settings/form.php:50
3485
  #@ formidable
3486
  msgid "Don't use Formidable styling on any page"
3487
  msgstr ""
3488
 
3489
+ #: classes/views/frm-settings/form.php:130
3490
  #@ formidable
3491
  msgid "Failed or Duplicate Entry Message"
3492
  msgstr ""
3493
 
3494
+ #: classes/controllers/FrmAppController.php:106
3495
+ #@ formidable
3496
+ msgid "Your Formidable database needs to be updated.<br/>Please deactivate and reactivate the plugin to fix this or"
3497
+ msgstr ""
3498
+
3499
+ #: classes/controllers/FrmAppController.php:106
3500
+ #@ formidable
3501
+ msgid "Update Now"
3502
+ msgstr ""
3503
+
3504
+ #: classes/models/FrmSettings.php:107
3505
+ #@ formidable
3506
+ msgid "We're sorry. It looks like you've already submitted that."
3507
+ msgstr ""
3508
+
3509
+ #: classes/views/frm-forms/add_field.php:61
3510
+ #@ formidable
3511
+ msgid "Please add options from the WordPress \"Categories\" page"
3512
+ msgstr ""
3513
+
3514
+ #: classes/views/frm-forms/add_field.php:127
3515
+ #@ formidable
3516
+ msgid "None"
3517
+ msgstr ""
3518
+
3519
+ #: classes/views/frm-forms/footer.php:25
3520
+ #: classes/views/frm-forms/new-field-js.php:31
3521
+ #@ formidable
3522
+ msgid "Click here to add optional description or instructions"
3523
+ msgstr ""
3524
+
3525
+ #: pro/classes/helpers/FrmProFieldsHelper.php:316
3526
+ #@ formidable
3527
+ msgid "No Categories"
3528
+ msgstr ""
3529
+
3530
+ #: pro/classes/views/frmpro-entries/loading.php:4
3531
+ #@ formidable
3532
+ msgid "Uploading Files. Please Wait."
3533
+ msgstr ""
3534
+
3535
+ #: pro/classes/views/frmpro-fields/dynamic-options.php:2
3536
+ #@ formidable
3537
+ msgid "Import Data from"
3538
+ msgstr ""
3539
+
3540
+ #: pro/classes/views/frmpro-fields/options-form.php:54
3541
+ #@ formidable
3542
+ msgid "start time"
3543
+ msgstr ""
3544
+
3545
+ #: pro/classes/views/frmpro-fields/options-form.php:57
3546
+ #@ formidable
3547
+ msgid "end time"
3548
+ msgstr ""
3549
+
3550
+ #: pro/classes/views/frmpro-fields/options-form.php:201
3551
+ #@ formidable
3552
+ msgid "Exclude categories"
3553
+ msgstr ""
3554
+
3555
+ #: pro/classes/views/frmpro-forms/add_form_options.php:16
3556
+ #: pro/classes/views/frmpro-forms/post_options.php:15
3557
+ #@ formidable
3558
+ msgid "Post Type"
3559
+ msgstr ""
3560
+
3561
+ #: classes/widgets/FrmShowForm.php:59
3562
+ #@ formidable
3563
+ msgid "If your text fields are too big for your sidebar insert a size here."
3564
+ msgstr ""
3565
+
3566
+ #: classes/helpers/FrmAppHelper.php:224
3567
+ #: classes/helpers/FrmFieldsHelper.php:54
3568
+ #: classes/models/FrmEntry.php:262
3569
+ #: pro/classes/views/settings/form.php:104
3570
+ #@ formidable
3571
+ msgid "This field cannot be blank"
3572
+ msgstr ""
3573
+
3574
+ #: classes/helpers/FrmAppHelper.php:229
3575
+ #: pro/classes/models/FrmProEntryMeta.php:219
3576
+ #@ formidable
3577
+ msgid "is invalid"
3578
+ msgstr ""
3579
+
3580
+ #: classes/helpers/FrmFieldsHelper.php:54
3581
+ #: pro/classes/models/FrmProEntryMeta.php:219
3582
+ #@ formidable
3583
+ msgid "This field is invalid"
3584
+ msgstr ""
3585
+
3586
+ #: classes/models/FrmSettings.php:103
3587
+ #@ formidable
3588
+ msgid "There was a problem with your submission. Errors are marked below."
3589
+ msgstr ""
3590
+
3591
+ #: classes/templates/contact.php:45
3592
+ #@ formidable
3593
+ msgid "Please enter a valid website"
3594
+ msgstr ""
3595
+
3596
+ #: classes/views/frm-settings/form.php:114
3597
+ #@ formidable
3598
+ msgid "Incorrect Field"
3599
+ msgstr ""
3600
+
3601
+ #: classes/views/frm-settings/form.php:114
3602
+ #@ formidable
3603
+ msgid "The message seen when a field response is either incorrect or missing."
3604
+ msgstr ""
3605
+
3606
+ #: pro/classes/models/FrmProSettings.php:188
3607
+ #@ formidable
3608
+ msgid "Your submission was successfully saved."
3609
+ msgstr ""
3610
+
3611
+ #: classes/views/frm-settings/form.php:17
3612
+ #@ formidable
3613
+ msgid "Form Styling"
3614
+ msgstr ""
3615
+
3616
+ #: classes/controllers/FrmFormsController.php:22
3617
+ #: classes/views/frm-forms/new-selection.php:3
3618
+ #: classes/views/frm-forms/new-selection.php:10
3619
+ #: classes/views/frm-forms/new.php:3
3620
+ #@ formidable
3621
+ msgid "Add New Form"
3622
+ msgstr ""
3623
+
3624
+ #: classes/helpers/FrmAppHelper.php:45
3625
+ #@ formidable
3626
+ msgid "Add/Edit Forms and Templates"
3627
+ msgstr ""
3628
+
3629
+ #: classes/helpers/FrmAppHelper.php:51
3630
+ #@ formidable
3631
+ msgid "Add Entries from Admin Area"
3632
+ msgstr ""
3633
+
3634
+ #: classes/helpers/FrmAppHelper.php:55
3635
+ #@ formidable
3636
+ msgid "Add/Edit Custom Displays"
3637
+ msgstr ""
3638
+
3639
+ #: classes/views/frm-entries/list.php:3
3640
+ #@ formidable
3641
+ msgid "Pro Form Entries"
3642
+ msgstr ""
3643
+
3644
+ #: classes/views/frm-forms/list.php:3
3645
+ #@ formidable
3646
+ msgid "Form Templates"
3647
+ msgstr ""
3648
+
3649
+ #: classes/views/frm-forms/list.php:5
3650
+ #: pro/classes/views/displays/edit.php:5
3651
+ #: pro/classes/views/displays/list.php:5
3652
+ #: pro/classes/views/frmpro-entries/list.php:4
3653
+ #@ formidable
3654
+ msgid "Add New"
3655
+ msgstr ""
3656
+
3657
+ #: classes/views/frm-settings/form.php:3
3658
+ #@ formidable
3659
+ msgid "Form Settings"
3660
+ msgstr ""
3661
+
3662
+ #: classes/views/frm-statistics/list.php:3
3663
+ #@ formidable
3664
+ msgid "Pro Form Statistics"
3665
+ msgstr ""
3666
+
3667
+ #: pro/classes/views/frmpro-entries/new-selection.php:3
3668
+ #@ formidable
3669
+ msgid "Add New Entry"
3670
+ msgstr ""
3671
+
3672
+ #: pro/classes/views/frmpro-entries/new.php:3
3673
+ #, php-format
3674
+ #@ formidable
3675
+ msgid "Add New %1$s Entry"
3676
+ msgstr ""
3677
+
3678
+ #: pro/classes/views/frmpro-entries/show.php:13
3679
+ #@ formidable
3680
+ msgid "Entry Actions"
3681
+ msgstr ""
3682
+
3683
+ #: pro/classes/views/frmpro-entries/import.php:94
3684
+ #: pro/classes/views/frmpro-entries/show.php:72
3685
+ #@ formidable
3686
+ msgid "Created at"
3687
+ msgstr ""
3688
+
3689
+ #: pro/classes/views/frmpro-entries/show.php:75
3690
+ #: pro/classes/views/frmpro-entries/show.php:83
3691
+ #@ formidable
3692
+ msgid "by"
3693
+ msgstr ""
3694
+
3695
+ #: pro/classes/views/frmpro-entries/show.php:81
3696
+ #@ formidable
3697
+ msgid "Last Updated"
3698
+ msgstr ""
3699
+
3700
+ #: pro/classes/views/frmpro-statistics/show.php:3
3701
+ #@ formidable
3702
+ msgid "Form Reports"
3703
+ msgstr ""
3704
+
3705
+ #: classes/views/frm-forms/insert_form_popup.php:47
3706
+ #@ formidable
3707
+ msgid "Select custom display to insert"
3708
+ msgstr ""
3709
+
3710
+ #: pro/classes/controllers/FrmProDisplaysController.php:31
3711
+ #: pro/classes/views/displays/list.php:3
3712
+ #: pro/classes/views/shared/import_form.php:49
3713
+ #@ formidable
3714
+ msgid "Custom Displays"
3715
+ msgstr ""
3716
+
3717
+ #: pro/classes/controllers/FrmProDisplaysController.php:107
3718
+ #@ formidable
3719
+ msgid "Custom Display was Successfully Created"
3720
+ msgstr ""
3721
+
3722
+ #: pro/classes/controllers/FrmProDisplaysController.php:109
3723
+ #@ formidable
3724
+ msgid "Oops! There was a problem saving your Custom Display. Please try deactivating and reactivating Formidable to correct the problem."
3725
+ msgstr ""
3726
+
3727
+ #: pro/classes/controllers/FrmProDisplaysController.php:143
3728
+ #@ formidable
3729
+ msgid "Custom Display was Successfully Updated"
3730
+ msgstr ""
3731
+
3732
+ #: pro/classes/controllers/FrmProDisplaysController.php:153
3733
+ #@ formidable
3734
+ msgid "Custom Display was Successfully Copied"
3735
+ msgstr ""
3736
+
3737
+ #: pro/classes/controllers/FrmProDisplaysController.php:165
3738
+ #@ formidable
3739
+ msgid "Custom Display was Successfully Deleted"
3740
+ msgstr ""
3741
+
3742
+ #: pro/classes/views/displays/edit.php:3
3743
+ #@ formidable
3744
+ msgid "Edit Custom Display"
3745
+ msgstr ""
3746
+
3747
+ #: pro/classes/views/displays/new.php:3
3748
+ #@ formidable
3749
+ msgid "Add New Custom Display"
3750
+ msgstr ""
3751
+
3752
+ #: pro/classes/views/settings/form.php:21
3753
+ #@ formidable
3754
+ msgid "Hide field and entry keys to prevent them from being edited. Uncheck this box to edit the saved keys for use in your template."
3755
+ msgstr ""
3756
+
3757
+ #: pro/classes/views/shared/import_form.php:56
3758
+ #@ formidable
3759
+ msgid "If you would like to include ONLY specific forms and the entries and custom displays related to those forms, select those forms here"
3760
+ msgstr ""
3761
+
3762
+ #: classes/views/frm-forms/add_field.php:142
3763
+ #@ formidable
3764
+ msgid "Error message for blank required field"
3765
+ msgstr ""
3766
+
3767
+ #: classes/views/frm-forms/add_field.php:147
3768
+ #@ formidable
3769
+ msgid "Error message for invalid submission"
3770
+ msgstr ""
3771
+
3772
+ #: classes/views/frm-forms/add_field_links.php:4
3773
+ #@ formidable
3774
+ msgid "Insert into a post, page or text widget"
3775
+ msgstr ""
3776
+
3777
+ #: pro/classes/controllers/FrmProDisplaysController.php:179
3778
+ #@ formidable
3779
+ msgid "No displays were specified"
3780
+ msgstr ""
3781
+
3782
+ #: pro/classes/controllers/FrmProEntriesController.php:1215
3783
+ #@ formidable
3784
+ msgid "There was a error deleting that entry"
3785
+ msgstr ""
3786
+
3787
+ #: pro/classes/controllers/FrmProFormsController.php:134
3788
+ #@ formidable
3789
+ msgid "Post Meta"
3790
+ msgstr ""
3791
+
3792
+ #: pro/classes/helpers/FrmProAppHelper.php:98
3793
+ #@ formidable
3794
+ msgid "at"
3795
+ msgstr ""
3796
+
3797
+ #: pro/classes/helpers/FrmProEntriesHelper.php:89
3798
+ #@ formidable
3799
+ msgid "Add New Entry to this form"
3800
+ msgstr ""
3801
+
3802
+ #: pro/classes/helpers/FrmProFieldsHelper.php:879
3803
+ #@ formidable
3804
+ msgid "Default Email Message"
3805
+ msgstr ""
3806
+
3807
+ #: pro/classes/views/displays/form.php:261
3808
+ #@ formidable
3809
+ msgid "Message if nothing to display"
3810
+ msgstr ""
3811
+
3812
+ #: pro/classes/views/displays/form.php:273
3813
+ #@ formidable
3814
+ msgid "Copy these display settings to other blogs when Formidable Pro is activated. <br/>Note: Use only field keys in the content box(es) above."
3815
+ msgstr ""
3816
+
3817
+ #: pro/classes/views/displays/tags.php:43
3818
+ #@ formidable
3819
+ msgid "Automatically turn URLs and emails into links."
3820
+ msgstr ""
3821
+
3822
+ #: pro/classes/views/frmpro-entries/show.php:117
3823
+ #@ formidable
3824
+ msgid "Comments/Notes"
3825
+ msgstr ""
3826
+
3827
+ #: pro/classes/views/frmpro-entries/show.php:133
3828
+ #@ formidable
3829
+ msgid "Add Note/Comment"
3830
+ msgstr ""
3831
+
3832
+ #: pro/classes/views/frmpro-entries/show.php:144
3833
+ #@ formidable
3834
+ msgid "Comment/Note"
3835
+ msgstr ""
3836
+
3837
+ #: pro/classes/views/frmpro-entries/show.php:151
3838
+ #@ formidable
3839
+ msgid "Send Emails to"
3840
+ msgstr ""
3841
+
3842
+ #: pro/classes/views/frmpro-fields/options-form.php:174
3843
+ #@ formidable
3844
+ msgid "Taxonomy"
3845
+ msgstr ""
3846
+
3847
+ #: pro/classes/views/frmpro-fields/options-form.php:177
3848
+ #: pro/classes/views/frmpro-forms/comment_options.php:17
3849
+ #: pro/classes/views/frmpro-forms/post_options.php:32
3850
+ #@ formidable
3851
+ msgid "Excerpt"
3852
+ msgstr ""
3853
+
3854
+ #: pro/classes/views/frmpro-fields/options-form.php:179
3855
+ #: pro/classes/views/frmpro-forms/post_options.php:33
3856
+ #@ formidable
3857
+ msgid "Slug"
3858
+ msgstr ""
3859
+
3860
+ #: pro/classes/views/frmpro-fields/options-form.php:180
3861
+ #@ formidable
3862
+ msgid "Custom Field"
3863
+ msgstr ""
3864
+
3865
+ #: pro/classes/views/frmpro-fields/options-form.php:182
3866
+ #: pro/classes/views/frmpro-forms/comment_options.php:19
3867
+ #: pro/classes/views/frmpro-forms/post_options.php:34
3868
+ #@ formidable
3869
+ msgid "Post Date"
3870
+ msgstr ""
3871
+
3872
+ #: pro/classes/views/frmpro-fields/options-form.php:184
3873
+ #: pro/classes/views/frmpro-forms/comment_options.php:20
3874
+ #: pro/classes/views/frmpro-forms/post_options.php:35
3875
+ #@ formidable
3876
+ msgid "Post Status"
3877
+ msgstr ""
3878
+
3879
+ #: pro/classes/views/frmpro-forms/_comment_meta_row.php:4
3880
+ #@ formidable
3881
+ msgid "Add Comment Meta"
3882
+ msgstr ""
3883
+
3884
+ #: pro/classes/views/frmpro-forms/_comment_meta_row.php:6
3885
+ #: pro/classes/views/frmpro-forms/_custom_field_row.php:6
3886
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:13
3887
+ #@ formidable
3888
+ msgid "from"
3889
+ msgstr ""
3890
+
3891
+ #: pro/classes/views/frmpro-forms/_custom_field_row.php:4
3892
+ #@ formidable
3893
+ msgid "Add Custom Field"
3894
+ msgstr ""
3895
+
3896
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:4
3897
+ #@ formidable
3898
+ msgid "Add Taxonomy"
3899
+ msgstr ""
3900
+
3901
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:31
3902
+ #@ formidable
3903
+ msgid "Exclude options"
3904
+ msgstr ""
3905
+
3906
+ #: pro/classes/views/frmpro-forms/add_form_options.php:30
3907
+ #: pro/classes/views/frmpro-forms/add_form_options.php:40
3908
+ #: pro/classes/views/frmpro-forms/add_form_options.php:51
3909
+ #@ formidable
3910
+ msgid "Logged-in Users"
3911
+ msgstr ""
3912
+
3913
+ #: pro/classes/views/frmpro-forms/comment_options.php:4
3914
+ #@ formidable
3915
+ msgid "Comment Creation Options"
3916
+ msgstr ""
3917
+
3918
+ #: pro/classes/views/frmpro-forms/comment_options.php:10
3919
+ #@ formidable
3920
+ msgid "Create a Comment"
3921
+ msgstr ""
3922
+
3923
+ #: pro/classes/views/frmpro-forms/comment_options.php:11
3924
+ #@ formidable
3925
+ msgid "Create WordPress comments with this form"
3926
+ msgstr ""
3927
+
3928
+ #: pro/classes/views/frmpro-forms/comment_options.php:16
3929
+ #: pro/classes/views/frmpro-forms/post_options.php:31
3930
+ #@ formidable
3931
+ msgid "Post Content"
3932
+ msgstr ""
3933
+
3934
+ #: pro/classes/views/frmpro-forms/comment_options.php:18
3935
+ #@ formidable
3936
+ msgid "Author Email"
3937
+ msgstr ""
3938
+
3939
+ #: pro/classes/views/frmpro-forms/comment_options.php:61
3940
+ #@ formidable
3941
+ msgid "Comment Meta"
3942
+ msgstr ""
3943
+
3944
+ #: pro/classes/views/frmpro-forms/post_options.php:4
3945
+ #@ formidable
3946
+ msgid "Post Creation Options"
3947
+ msgstr ""
3948
+
3949
+ #: pro/classes/views/frmpro-forms/post_options.php:10
3950
+ #@ formidable
3951
+ msgid "Create a Post"
3952
+ msgstr ""
3953
+
3954
+ #: pro/classes/views/frmpro-forms/post_options.php:11
3955
+ #@ formidable
3956
+ msgid "Create a WordPress post with this form"
3957
+ msgstr ""
3958
+
3959
+ #: pro/classes/views/frmpro-forms/post_options.php:76
3960
+ #@ formidable
3961
+ msgid "Post Taxonomies"
3962
+ msgstr ""
3963
+
3964
+ #: pro/classes/views/frmpro-forms/post_options.php:89
3965
+ #@ formidable
3966
+ msgid "Custom Fields"
3967
+ msgstr ""
3968
+
3969
+ #: pro/classes/views/displays/where_row.php:16
3970
+ #@ formidable
3971
+ msgid "NOT like"
3972
+ msgstr ""
3973
+
3974
+ #: pro/classes/views/frmpro-entries/edit.php:15
3975
+ #: pro/classes/views/frmpro-entries/new.php:15
3976
+ #@ formidable
3977
+ msgid "Publish"
3978
+ msgstr ""
3979
+
3980
+ #: pro/classes/views/frmpro-entries/edit.php:33
3981
+ #@ formidable
3982
+ msgid "Are you sure you want to delete this entry?"
3983
+ msgstr ""
3984
+
3985
+ #: pro/classes/views/frmpro-forms/instructions.php:18
3986
+ #@ formidable
3987
+ msgid "Replace 'whatever' with the parameter name. In url.com?product=form, the variable is 'product'. You would use [get param=product] in your field."
3988
+ msgstr ""
3989
+
3990
+ #: pro/classes/views/settings/formroller.php:175
3991
+ #@ formidable
3992
+ msgid "Bottom Margin"
3993
+ msgstr ""
3994
+
3995
+ #: classes/controllers/FrmFieldsController.php:196
3996
+ #@ formidable
3997
+ msgid "Countries"
3998
+ msgstr ""
3999
+
4000
+ #: classes/controllers/FrmFieldsController.php:199
4001
+ #@ formidable
4002
+ msgid "U.S. States"
4003
+ msgstr ""
4004
+
4005
+ #: classes/controllers/FrmFieldsController.php:200
4006
+ #@ formidable
4007
+ msgid "U.S. State Abbreviations"
4008
+ msgstr ""
4009
+
4010
+ #: classes/controllers/FrmFieldsController.php:202
4011
+ #@ formidable
4012
+ msgid "Age"
4013
+ msgstr ""
4014
+
4015
+ #: classes/controllers/FrmFieldsController.php:203
4016
+ #@ formidable
4017
+ msgid "Under 18"
4018
+ msgstr ""
4019
+
4020
+ #: classes/controllers/FrmFieldsController.php:203
4021
+ #@ formidable
4022
+ msgid "18-24"
4023
+ msgstr ""
4024
+
4025
+ #: classes/controllers/FrmFieldsController.php:203
4026
+ #@ formidable
4027
+ msgid "25-34"
4028
+ msgstr ""
4029
+
4030
+ #: classes/controllers/FrmFieldsController.php:204
4031
+ #@ formidable
4032
+ msgid "35-44"
4033
+ msgstr ""
4034
+
4035
+ #: classes/controllers/FrmFieldsController.php:204
4036
+ #@ formidable
4037
+ msgid "45-54"
4038
+ msgstr ""
4039
+
4040
+ #: classes/controllers/FrmFieldsController.php:204
4041
+ #@ formidable
4042
+ msgid "55-64"
4043
+ msgstr ""
4044
+
4045
+ #: classes/controllers/FrmFieldsController.php:205
4046
+ #@ formidable
4047
+ msgid "65 or Above"
4048
+ msgstr ""
4049
+
4050
+ #: classes/controllers/FrmFieldsController.php:205
4051
+ #@ formidable
4052
+ msgid "Prefer Not to Answer"
4053
+ msgstr ""
4054
+
4055
+ #: classes/controllers/FrmFieldsController.php:208
4056
+ #@ formidable
4057
+ msgid "Satisfaction"
4058
+ msgstr ""
4059
+
4060
+ #: classes/controllers/FrmFieldsController.php:209
4061
+ #@ formidable
4062
+ msgid "Very Satisfied"
4063
+ msgstr ""
4064
+
4065
+ #: classes/controllers/FrmFieldsController.php:209
4066
+ #@ formidable
4067
+ msgid "Satisfied"
4068
+ msgstr ""
4069
+
4070
+ #: classes/controllers/FrmFieldsController.php:209
4071
+ #: classes/controllers/FrmFieldsController.php:214
4072
+ #: classes/controllers/FrmFieldsController.php:219
4073
+ #@ formidable
4074
+ msgid "Neutral"
4075
+ msgstr ""
4076
+
4077
+ #: classes/controllers/FrmFieldsController.php:210
4078
+ #@ formidable
4079
+ msgid "Unsatisfied"
4080
+ msgstr ""
4081
+
4082
+ #: classes/controllers/FrmFieldsController.php:210
4083
+ #@ formidable
4084
+ msgid "Very Unsatisfied"
4085
+ msgstr ""
4086
+
4087
+ #: classes/controllers/FrmFieldsController.php:210
4088
+ #: classes/controllers/FrmFieldsController.php:215
4089
+ #: classes/controllers/FrmFieldsController.php:220
4090
+ #@ formidable
4091
+ msgid "N/A"
4092
+ msgstr ""
4093
+
4094
+ #: classes/controllers/FrmFieldsController.php:213
4095
+ #@ formidable
4096
+ msgid "Importance"
4097
+ msgstr ""
4098
+
4099
+ #: classes/controllers/FrmFieldsController.php:214
4100
+ #@ formidable
4101
+ msgid "Very Important"
4102
+ msgstr ""
4103
+
4104
+ #: classes/controllers/FrmFieldsController.php:214
4105
+ #@ formidable
4106
+ msgid "Important"
4107
+ msgstr ""
4108
+
4109
+ #: classes/controllers/FrmFieldsController.php:215
4110
+ #@ formidable
4111
+ msgid "Somewhat Important"
4112
+ msgstr ""
4113
+
4114
+ #: classes/controllers/FrmFieldsController.php:215
4115
+ #@ formidable
4116
+ msgid "Not at all Important"
4117
+ msgstr ""
4118
+
4119
+ #: classes/controllers/FrmFieldsController.php:218
4120
+ #@ formidable
4121
+ msgid "Agreement"
4122
+ msgstr ""
4123
+
4124
+ #: classes/controllers/FrmFieldsController.php:219
4125
+ #@ formidable
4126
+ msgid "Strongly Agree"
4127
+ msgstr ""
4128
+
4129
+ #: classes/controllers/FrmFieldsController.php:219
4130
+ #@ formidable
4131
+ msgid "Agree"
4132
+ msgstr ""
4133
+
4134
+ #: classes/controllers/FrmFieldsController.php:220
4135
+ #@ formidable
4136
+ msgid "Disagree"
4137
+ msgstr ""
4138
+
4139
+ #: classes/controllers/FrmFieldsController.php:220
4140
+ #@ formidable
4141
+ msgid "Strongly Disagree"
4142
+ msgstr ""
4143
+
4144
+ #: classes/helpers/FrmAppHelper.php:311
4145
+ #@ formidable
4146
+ msgid "Afghanistan"
4147
+ msgstr ""
4148
+
4149
+ #: classes/helpers/FrmAppHelper.php:311
4150
+ #@ formidable
4151
+ msgid "Albania"
4152
+ msgstr ""
4153
+
4154
+ #: classes/helpers/FrmAppHelper.php:311
4155
+ #@ formidable
4156
+ msgid "Algeria"
4157
+ msgstr ""
4158
+
4159
+ #: classes/helpers/FrmAppHelper.php:312
4160
+ #@ formidable
4161
+ msgid "American Samoa"
4162
+ msgstr ""
4163
+
4164
+ #: classes/helpers/FrmAppHelper.php:312
4165
+ #@ formidable
4166
+ msgid "Andorra"
4167
+ msgstr ""
4168
+
4169
+ #: classes/helpers/FrmAppHelper.php:312
4170
+ #@ formidable
4171
+ msgid "Angola"
4172
+ msgstr ""
4173
+
4174
+ #: classes/helpers/FrmAppHelper.php:313
4175
+ #@ formidable
4176
+ msgid "Anguilla"
4177
+ msgstr ""
4178
+
4179
+ #: classes/helpers/FrmAppHelper.php:313
4180
+ #@ formidable
4181
+ msgid "Antarctica"
4182
+ msgstr ""
4183
+
4184
+ #: classes/helpers/FrmAppHelper.php:313
4185
+ #@ formidable
4186
+ msgid "Antigua and Barbuda"
4187
+ msgstr ""
4188
+
4189
+ #: classes/helpers/FrmAppHelper.php:314
4190
+ #@ formidable
4191
+ msgid "Argentina"
4192
+ msgstr ""
4193
+
4194
+ #: classes/helpers/FrmAppHelper.php:314
4195
+ #@ formidable
4196
+ msgid "Armenia"
4197
+ msgstr ""
4198
+
4199
+ #: classes/helpers/FrmAppHelper.php:314
4200
+ #@ formidable
4201
+ msgid "Aruba"
4202
+ msgstr ""
4203
+
4204
+ #: classes/helpers/FrmAppHelper.php:315
4205
+ #@ formidable
4206
+ msgid "Australia"
4207
+ msgstr ""
4208
+
4209
+ #: classes/helpers/FrmAppHelper.php:315
4210
+ #@ formidable
4211
+ msgid "Austria"
4212
+ msgstr ""
4213
+
4214
+ #: classes/helpers/FrmAppHelper.php:315
4215
+ #@ formidable
4216
+ msgid "Azerbaijan"
4217
+ msgstr ""
4218
+
4219
+ #: classes/helpers/FrmAppHelper.php:316
4220
+ #@ formidable
4221
+ msgid "Bahamas"
4222
+ msgstr ""
4223
+
4224
+ #: classes/helpers/FrmAppHelper.php:316
4225
+ #@ formidable
4226
+ msgid "Bahrain"
4227
+ msgstr ""
4228
+
4229
+ #: classes/helpers/FrmAppHelper.php:316
4230
+ #@ formidable
4231
+ msgid "Bangladesh"
4232
+ msgstr ""
4233
+
4234
+ #: classes/helpers/FrmAppHelper.php:317
4235
+ #@ formidable
4236
+ msgid "Barbados"
4237
+ msgstr ""
4238
+
4239
+ #: classes/helpers/FrmAppHelper.php:317
4240
+ #@ formidable
4241
+ msgid "Belarus"
4242
+ msgstr ""
4243
+
4244
+ #: classes/helpers/FrmAppHelper.php:317
4245
+ #@ formidable
4246
+ msgid "Belgium"
4247
+ msgstr ""
4248
+
4249
+ #: classes/helpers/FrmAppHelper.php:318
4250
+ #@ formidable
4251
+ msgid "Belize"
4252
+ msgstr ""
4253
+
4254
+ #: classes/helpers/FrmAppHelper.php:318
4255
+ #@ formidable
4256
+ msgid "Benin"
4257
+ msgstr ""
4258
+
4259
+ #: classes/helpers/FrmAppHelper.php:318
4260
+ #@ formidable
4261
+ msgid "Bermuda"
4262
+ msgstr ""
4263
+
4264
+ #: classes/helpers/FrmAppHelper.php:319
4265
+ #@ formidable
4266
+ msgid "Bhutan"
4267
+ msgstr ""
4268
+
4269
+ #: classes/helpers/FrmAppHelper.php:319
4270
+ #@ formidable
4271
+ msgid "Bolivia"
4272
+ msgstr ""
4273
+
4274
+ #: classes/helpers/FrmAppHelper.php:319
4275
+ #@ formidable
4276
+ msgid "Bosnia and Herzegovina"
4277
+ msgstr ""
4278
+
4279
+ #: classes/helpers/FrmAppHelper.php:320
4280
+ #@ formidable
4281
+ msgid "Botswana"
4282
+ msgstr ""
4283
+
4284
+ #: classes/helpers/FrmAppHelper.php:320
4285
+ #@ formidable
4286
+ msgid "Brazil"
4287
+ msgstr ""
4288
+
4289
+ #: classes/helpers/FrmAppHelper.php:320
4290
+ #@ formidable
4291
+ msgid "Brunei"
4292
+ msgstr ""
4293
+
4294
+ #: classes/helpers/FrmAppHelper.php:321
4295
+ #@ formidable
4296
+ msgid "Bulgaria"
4297
+ msgstr ""
4298
+
4299
+ #: classes/helpers/FrmAppHelper.php:321
4300
+ #@ formidable
4301
+ msgid "Burkina Faso"
4302
+ msgstr ""
4303
+
4304
+ #: classes/helpers/FrmAppHelper.php:321
4305
+ #@ formidable
4306
+ msgid "Burundi"
4307
+ msgstr ""
4308
+
4309
+ #: classes/helpers/FrmAppHelper.php:322
4310
+ #@ formidable
4311
+ msgid "Cambodia"
4312
+ msgstr ""
4313
+
4314
+ #: classes/helpers/FrmAppHelper.php:322
4315
+ #@ formidable
4316
+ msgid "Cameroon"
4317
+ msgstr ""
4318
+
4319
+ #: classes/helpers/FrmAppHelper.php:322
4320
+ #@ formidable
4321
+ msgid "Canada"
4322
+ msgstr ""
4323
+
4324
+ #: classes/helpers/FrmAppHelper.php:323
4325
+ #@ formidable
4326
+ msgid "Cape Verde"
4327
+ msgstr ""
4328
+
4329
+ #: classes/helpers/FrmAppHelper.php:323
4330
+ #@ formidable
4331
+ msgid "Cayman Islands"
4332
+ msgstr ""
4333
+
4334
+ #: classes/helpers/FrmAppHelper.php:323
4335
+ #@ formidable
4336
+ msgid "Central African Republic"
4337
+ msgstr ""
4338
+
4339
+ #: classes/helpers/FrmAppHelper.php:324
4340
+ #@ formidable
4341
+ msgid "Chad"
4342
+ msgstr ""
4343
+
4344
+ #: classes/helpers/FrmAppHelper.php:324
4345
+ #@ formidable
4346
+ msgid "Chile"
4347
+ msgstr ""
4348
+
4349
+ #: classes/helpers/FrmAppHelper.php:324
4350
+ #@ formidable
4351
+ msgid "China"
4352
+ msgstr ""
4353
+
4354
+ #: classes/helpers/FrmAppHelper.php:325
4355
+ #@ formidable
4356
+ msgid "Colombia"
4357
+ msgstr ""
4358
+
4359
+ #: classes/helpers/FrmAppHelper.php:325
4360
+ #@ formidable
4361
+ msgid "Comoros"
4362
+ msgstr ""
4363
+
4364
+ #: classes/helpers/FrmAppHelper.php:325
4365
+ #@ formidable
4366
+ msgid "Congo"
4367
+ msgstr ""
4368
+
4369
+ #: classes/helpers/FrmAppHelper.php:326
4370
+ #@ formidable
4371
+ msgid "Costa Rica"
4372
+ msgstr ""
4373
+
4374
+ #: classes/helpers/FrmAppHelper.php:326
4375
+ #@ formidable
4376
+ msgid "C&ocirc;te d'Ivoire"
4377
+ msgstr ""
4378
+
4379
+ #: classes/helpers/FrmAppHelper.php:326
4380
+ #@ formidable
4381
+ msgid "Croatia"
4382
+ msgstr ""
4383
+
4384
+ #: classes/helpers/FrmAppHelper.php:327
4385
+ #@ formidable
4386
+ msgid "Cuba"
4387
+ msgstr ""
4388
+
4389
+ #: classes/helpers/FrmAppHelper.php:327
4390
+ #@ formidable
4391
+ msgid "Cyprus"
4392
+ msgstr ""
4393
+
4394
+ #: classes/helpers/FrmAppHelper.php:327
4395
+ #@ formidable
4396
+ msgid "Czech Republic"
4397
+ msgstr ""
4398
+
4399
+ #: classes/helpers/FrmAppHelper.php:328
4400
+ #@ formidable
4401
+ msgid "Denmark"
4402
+ msgstr ""
4403
+
4404
+ #: classes/helpers/FrmAppHelper.php:328
4405
+ #@ formidable
4406
+ msgid "Djibouti"
4407
+ msgstr ""
4408
+
4409
+ #: classes/helpers/FrmAppHelper.php:328
4410
+ #@ formidable
4411
+ msgid "Dominica"
4412
+ msgstr ""
4413
+
4414
+ #: classes/helpers/FrmAppHelper.php:329
4415
+ #@ formidable
4416
+ msgid "Dominican Republic"
4417
+ msgstr ""
4418
+
4419
+ #: classes/helpers/FrmAppHelper.php:329
4420
+ #@ formidable
4421
+ msgid "East Timor"
4422
+ msgstr ""
4423
+
4424
+ #: classes/helpers/FrmAppHelper.php:329
4425
+ #@ formidable
4426
+ msgid "Ecuador"
4427
+ msgstr ""
4428
+
4429
+ #: classes/helpers/FrmAppHelper.php:330
4430
+ #@ formidable
4431
+ msgid "Egypt"
4432
+ msgstr ""
4433
+
4434
+ #: classes/helpers/FrmAppHelper.php:330
4435
+ #@ formidable
4436
+ msgid "El Salvador"
4437
+ msgstr ""
4438
+
4439
+ #: classes/helpers/FrmAppHelper.php:330
4440
+ #@ formidable
4441
+ msgid "Equatorial Guinea"
4442
+ msgstr ""
4443
+
4444
+ #: classes/helpers/FrmAppHelper.php:331
4445
+ #@ formidable
4446
+ msgid "Eritrea"
4447
+ msgstr ""
4448
+
4449
+ #: classes/helpers/FrmAppHelper.php:331
4450
+ #@ formidable
4451
+ msgid "Estonia"
4452
+ msgstr ""
4453
+
4454
+ #: classes/helpers/FrmAppHelper.php:331
4455
+ #@ formidable
4456
+ msgid "Ethiopia"
4457
+ msgstr ""
4458
+
4459
+ #: classes/helpers/FrmAppHelper.php:332
4460
+ #@ formidable
4461
+ msgid "Fiji"
4462
+ msgstr ""
4463
+
4464
+ #: classes/helpers/FrmAppHelper.php:332
4465
+ #@ formidable
4466
+ msgid "Finland"
4467
+ msgstr ""
4468
+
4469
+ #: classes/helpers/FrmAppHelper.php:332
4470
+ #@ formidable
4471
+ msgid "France"
4472
+ msgstr ""
4473
+
4474
+ #: classes/helpers/FrmAppHelper.php:333
4475
+ #@ formidable
4476
+ msgid "French Guiana"
4477
+ msgstr ""
4478
+
4479
+ #: classes/helpers/FrmAppHelper.php:333
4480
+ #@ formidable
4481
+ msgid "French Polynesia"
4482
+ msgstr ""
4483
+
4484
+ #: classes/helpers/FrmAppHelper.php:333
4485
+ #@ formidable
4486
+ msgid "Gabon"
4487
+ msgstr ""
4488
+
4489
+ #: classes/helpers/FrmAppHelper.php:334
4490
+ #@ formidable
4491
+ msgid "Gambia"
4492
+ msgstr ""
4493
+
4494
+ #: classes/helpers/FrmAppHelper.php:334
4495
+ #@ formidable
4496
+ msgid "Georgia"
4497
+ msgstr ""
4498
+
4499
+ #: classes/helpers/FrmAppHelper.php:334
4500
+ #@ formidable
4501
+ msgid "Germany"
4502
+ msgstr ""
4503
+
4504
+ #: classes/helpers/FrmAppHelper.php:335
4505
+ #@ formidable
4506
+ msgid "Ghana"
4507
+ msgstr ""
4508
+
4509
+ #: classes/helpers/FrmAppHelper.php:335
4510
+ #@ formidable
4511
+ msgid "Gibraltar"
4512
+ msgstr ""
4513
+
4514
+ #: classes/helpers/FrmAppHelper.php:335
4515
+ #@ formidable
4516
+ msgid "Greece"
4517
+ msgstr ""
4518
+
4519
+ #: classes/helpers/FrmAppHelper.php:336
4520
+ #@ formidable
4521
+ msgid "Greenland"
4522
+ msgstr ""
4523
+
4524
+ #: classes/helpers/FrmAppHelper.php:336
4525
+ #@ formidable
4526
+ msgid "Grenada"
4527
+ msgstr ""
4528
+
4529
+ #: classes/helpers/FrmAppHelper.php:336
4530
+ #@ formidable
4531
+ msgid "Guam"
4532
+ msgstr ""
4533
+
4534
+ #: classes/helpers/FrmAppHelper.php:337
4535
+ #@ formidable
4536
+ msgid "Guatemala"
4537
+ msgstr ""
4538
+
4539
+ #: classes/helpers/FrmAppHelper.php:337
4540
+ #@ formidable
4541
+ msgid "Guinea"
4542
+ msgstr ""
4543
+
4544
+ #: classes/helpers/FrmAppHelper.php:337
4545
+ #@ formidable
4546
+ msgid "Guinea-Bissau"
4547
+ msgstr ""
4548
+
4549
+ #: classes/helpers/FrmAppHelper.php:338
4550
+ #@ formidable
4551
+ msgid "Guyana"
4552
+ msgstr ""
4553
+
4554
+ #: classes/helpers/FrmAppHelper.php:338
4555
+ #@ formidable
4556
+ msgid "Haiti"
4557
+ msgstr ""
4558
+
4559
+ #: classes/helpers/FrmAppHelper.php:338
4560
+ #@ formidable
4561
+ msgid "Honduras"
4562
+ msgstr ""
4563
+
4564
+ #: classes/helpers/FrmAppHelper.php:339
4565
+ #@ formidable
4566
+ msgid "Hong Kong"
4567
+ msgstr ""
4568
+
4569
+ #: classes/helpers/FrmAppHelper.php:339
4570
+ #@ formidable
4571
+ msgid "Hungary"
4572
+ msgstr ""
4573
+
4574
+ #: classes/helpers/FrmAppHelper.php:339
4575
+ #@ formidable
4576
+ msgid "Iceland"
4577
+ msgstr ""
4578
+
4579
+ #: classes/helpers/FrmAppHelper.php:340
4580
+ #@ formidable
4581
+ msgid "India"
4582
+ msgstr ""
4583
+
4584
+ #: classes/helpers/FrmAppHelper.php:340
4585
+ #@ formidable
4586
+ msgid "Indonesia"
4587
+ msgstr ""
4588
+
4589
+ #: classes/helpers/FrmAppHelper.php:340
4590
+ #@ formidable
4591
+ msgid "Iran"
4592
+ msgstr ""
4593
+
4594
+ #: classes/helpers/FrmAppHelper.php:341
4595
+ #@ formidable
4596
+ msgid "Iraq"
4597
+ msgstr ""
4598
+
4599
+ #: classes/helpers/FrmAppHelper.php:341
4600
+ #@ formidable
4601
+ msgid "Ireland"
4602
+ msgstr ""
4603
+
4604
+ #: classes/helpers/FrmAppHelper.php:341
4605
+ #@ formidable
4606
+ msgid "Israel"
4607
+ msgstr ""
4608
+
4609
+ #: classes/helpers/FrmAppHelper.php:342
4610
+ #@ formidable
4611
+ msgid "Italy"
4612
+ msgstr ""
4613
+
4614
+ #: classes/helpers/FrmAppHelper.php:342
4615
+ #@ formidable
4616
+ msgid "Jamaica"
4617
+ msgstr ""
4618
+
4619
+ #: classes/helpers/FrmAppHelper.php:342
4620
+ #@ formidable
4621
+ msgid "Japan"
4622
+ msgstr ""
4623
+
4624
+ #: classes/helpers/FrmAppHelper.php:343
4625
+ #@ formidable
4626
+ msgid "Jordan"
4627
+ msgstr ""
4628
+
4629
+ #: classes/helpers/FrmAppHelper.php:343
4630
+ #@ formidable
4631
+ msgid "Kazakhstan"
4632
+ msgstr ""
4633
+
4634
+ #: classes/helpers/FrmAppHelper.php:343
4635
+ #@ formidable
4636
+ msgid "Kenya"
4637
+ msgstr ""
4638
+
4639
+ #: classes/helpers/FrmAppHelper.php:344
4640
+ #@ formidable
4641
+ msgid "Kiribati"
4642
+ msgstr ""
4643
+
4644
+ #: classes/helpers/FrmAppHelper.php:344
4645
+ #@ formidable
4646
+ msgid "North Korea"
4647
+ msgstr ""
4648
+
4649
+ #: classes/helpers/FrmAppHelper.php:344
4650
+ #@ formidable
4651
+ msgid "South Korea"
4652
+ msgstr ""
4653
+
4654
+ #: classes/helpers/FrmAppHelper.php:345
4655
+ #@ formidable
4656
+ msgid "Kuwait"
4657
+ msgstr ""
4658
+
4659
+ #: classes/helpers/FrmAppHelper.php:345
4660
+ #@ formidable
4661
+ msgid "Kyrgyzstan"
4662
+ msgstr ""
4663
+
4664
+ #: classes/helpers/FrmAppHelper.php:345
4665
+ #@ formidable
4666
+ msgid "Laos"
4667
+ msgstr ""
4668
+
4669
+ #: classes/helpers/FrmAppHelper.php:346
4670
+ #@ formidable
4671
+ msgid "Latvia"
4672
+ msgstr ""
4673
+
4674
+ #: classes/helpers/FrmAppHelper.php:346
4675
+ #@ formidable
4676
+ msgid "Lebanon"
4677
+ msgstr ""
4678
+
4679
+ #: classes/helpers/FrmAppHelper.php:346
4680
+ #@ formidable
4681
+ msgid "Lesotho"
4682
+ msgstr ""
4683
+
4684
+ #: classes/helpers/FrmAppHelper.php:347
4685
+ #@ formidable
4686
+ msgid "Liberia"
4687
+ msgstr ""
4688
+
4689
+ #: classes/helpers/FrmAppHelper.php:347
4690
+ #@ formidable
4691
+ msgid "Libya"
4692
+ msgstr ""
4693
+
4694
+ #: classes/helpers/FrmAppHelper.php:347
4695
+ #@ formidable
4696
+ msgid "Liechtenstein"
4697
+ msgstr ""
4698
+
4699
+ #: classes/helpers/FrmAppHelper.php:348
4700
+ #@ formidable
4701
+ msgid "Lithuania"
4702
+ msgstr ""
4703
+
4704
+ #: classes/helpers/FrmAppHelper.php:348
4705
+ #@ formidable
4706
+ msgid "Luxembourg"
4707
+ msgstr ""
4708
+
4709
+ #: classes/helpers/FrmAppHelper.php:348
4710
+ #@ formidable
4711
+ msgid "Macedonia"
4712
+ msgstr ""
4713
+
4714
+ #: classes/helpers/FrmAppHelper.php:349
4715
+ #@ formidable
4716
+ msgid "Madagascar"
4717
+ msgstr ""
4718
+
4719
+ #: classes/helpers/FrmAppHelper.php:349
4720
+ #@ formidable
4721
+ msgid "Malawi"
4722
+ msgstr ""
4723
+
4724
+ #: classes/helpers/FrmAppHelper.php:349
4725
+ #@ formidable
4726
+ msgid "Malaysia"
4727
+ msgstr ""
4728
+
4729
+ #: classes/helpers/FrmAppHelper.php:350
4730
+ #@ formidable
4731
+ msgid "Maldives"
4732
+ msgstr ""
4733
+
4734
+ #: classes/helpers/FrmAppHelper.php:350
4735
+ #@ formidable
4736
+ msgid "Mali"
4737
+ msgstr ""
4738
+
4739
+ #: classes/helpers/FrmAppHelper.php:350
4740
+ #@ formidable
4741
+ msgid "Malta"
4742
+ msgstr ""
4743
+
4744
+ #: classes/helpers/FrmAppHelper.php:351
4745
+ #@ formidable
4746
+ msgid "Marshall Islands"
4747
+ msgstr ""
4748
+
4749
+ #: classes/helpers/FrmAppHelper.php:351
4750
+ #@ formidable
4751
+ msgid "Mauritania"
4752
+ msgstr ""
4753
+
4754
+ #: classes/helpers/FrmAppHelper.php:351
4755
+ #@ formidable
4756
+ msgid "Mauritius"
4757
+ msgstr ""
4758
+
4759
+ #: classes/helpers/FrmAppHelper.php:352
4760
+ #@ formidable
4761
+ msgid "Mexico"
4762
+ msgstr ""
4763
+
4764
+ #: classes/helpers/FrmAppHelper.php:352
4765
+ #@ formidable
4766
+ msgid "Micronesia"
4767
+ msgstr ""
4768
+
4769
+ #: classes/helpers/FrmAppHelper.php:352
4770
+ #@ formidable
4771
+ msgid "Moldova"
4772
+ msgstr ""
4773
+
4774
+ #: classes/helpers/FrmAppHelper.php:353
4775
+ #@ formidable
4776
+ msgid "Monaco"
4777
+ msgstr ""
4778
+
4779
+ #: classes/helpers/FrmAppHelper.php:353
4780
+ #@ formidable
4781
+ msgid "Mongolia"
4782
+ msgstr ""
4783
+
4784
+ #: classes/helpers/FrmAppHelper.php:353
4785
+ #@ formidable
4786
+ msgid "Montenegro"
4787
+ msgstr ""
4788
+
4789
+ #: classes/helpers/FrmAppHelper.php:354
4790
+ #@ formidable
4791
+ msgid "Montserrat"
4792
+ msgstr ""
4793
+
4794
+ #: classes/helpers/FrmAppHelper.php:354
4795
+ #@ formidable
4796
+ msgid "Morocco"
4797
+ msgstr ""
4798
+
4799
+ #: classes/helpers/FrmAppHelper.php:354
4800
+ #@ formidable
4801
+ msgid "Mozambique"
4802
+ msgstr ""
4803
+
4804
+ #: classes/helpers/FrmAppHelper.php:355
4805
+ #@ formidable
4806
+ msgid "Myanmar"
4807
+ msgstr ""
4808
+
4809
+ #: classes/helpers/FrmAppHelper.php:355
4810
+ #@ formidable
4811
+ msgid "Namibia"
4812
+ msgstr ""
4813
+
4814
+ #: classes/helpers/FrmAppHelper.php:355
4815
+ #@ formidable
4816
+ msgid "Nauru"
4817
+ msgstr ""
4818
+
4819
+ #: classes/helpers/FrmAppHelper.php:356
4820
+ #@ formidable
4821
+ msgid "Nepal"
4822
+ msgstr ""
4823
+
4824
+ #: classes/helpers/FrmAppHelper.php:356
4825
+ #@ formidable
4826
+ msgid "Netherlands"
4827
+ msgstr ""
4828
+
4829
+ #: classes/helpers/FrmAppHelper.php:356
4830
+ #@ formidable
4831
+ msgid "New Zealand"
4832
+ msgstr ""
4833
+
4834
+ #: classes/helpers/FrmAppHelper.php:357
4835
+ #@ formidable
4836
+ msgid "Nicaragua"
4837
+ msgstr ""
4838
+
4839
+ #: classes/helpers/FrmAppHelper.php:357
4840
+ #@ formidable
4841
+ msgid "Niger"
4842
+ msgstr ""
4843
+
4844
+ #: classes/helpers/FrmAppHelper.php:357
4845
+ #@ formidable
4846
+ msgid "Nigeria"
4847
+ msgstr ""
4848
+
4849
+ #: classes/helpers/FrmAppHelper.php:358
4850
+ #@ formidable
4851
+ msgid "Norway"
4852
+ msgstr ""
4853
+
4854
+ #: classes/helpers/FrmAppHelper.php:358
4855
+ #@ formidable
4856
+ msgid "Northern Mariana Islands"
4857
+ msgstr ""
4858
+
4859
+ #: classes/helpers/FrmAppHelper.php:358
4860
+ #@ formidable
4861
+ msgid "Oman"
4862
+ msgstr ""
4863
+
4864
+ #: classes/helpers/FrmAppHelper.php:359
4865
+ #@ formidable
4866
+ msgid "Pakistan"
4867
+ msgstr ""
4868
+
4869
+ #: classes/helpers/FrmAppHelper.php:359
4870
+ #@ formidable
4871
+ msgid "Palau"
4872
+ msgstr ""
4873
+
4874
+ #: classes/helpers/FrmAppHelper.php:359
4875
+ #@ formidable
4876
+ msgid "Palestine"
4877
+ msgstr ""
4878
+
4879
+ #: classes/helpers/FrmAppHelper.php:360
4880
+ #@ formidable
4881
+ msgid "Panama"
4882
+ msgstr ""
4883
+
4884
+ #: classes/helpers/FrmAppHelper.php:360
4885
+ #@ formidable
4886
+ msgid "Papua New Guinea"
4887
+ msgstr ""
4888
+
4889
+ #: classes/helpers/FrmAppHelper.php:360
4890
+ #@ formidable
4891
+ msgid "Paraguay"
4892
+ msgstr ""
4893
+
4894
+ #: classes/helpers/FrmAppHelper.php:361
4895
+ #@ formidable
4896
+ msgid "Peru"
4897
+ msgstr ""
4898
+
4899
+ #: classes/helpers/FrmAppHelper.php:361
4900
+ #@ formidable
4901
+ msgid "Philippines"
4902
+ msgstr ""
4903
+
4904
+ #: classes/helpers/FrmAppHelper.php:361
4905
+ #@ formidable
4906
+ msgid "Poland"
4907
+ msgstr ""
4908
+
4909
+ #: classes/helpers/FrmAppHelper.php:362
4910
+ #@ formidable
4911
+ msgid "Portugal"
4912
+ msgstr ""
4913
+
4914
+ #: classes/helpers/FrmAppHelper.php:362
4915
+ #@ formidable
4916
+ msgid "Puerto Rico"
4917
+ msgstr ""
4918
+
4919
+ #: classes/helpers/FrmAppHelper.php:362
4920
+ #@ formidable
4921
+ msgid "Qatar"
4922
+ msgstr ""
4923
+
4924
+ #: classes/helpers/FrmAppHelper.php:363
4925
+ #@ formidable
4926
+ msgid "Romania"
4927
+ msgstr ""
4928
+
4929
+ #: classes/helpers/FrmAppHelper.php:363
4930
+ #@ formidable
4931
+ msgid "Russia"
4932
+ msgstr ""
4933
+
4934
+ #: classes/helpers/FrmAppHelper.php:363
4935
+ #@ formidable
4936
+ msgid "Rwanda"
4937
+ msgstr ""
4938
+
4939
+ #: classes/helpers/FrmAppHelper.php:364
4940
+ #@ formidable
4941
+ msgid "Saint Kitts and Nevis"
4942
+ msgstr ""
4943
+
4944
+ #: classes/helpers/FrmAppHelper.php:364
4945
+ #@ formidable
4946
+ msgid "Saint Lucia"
4947
+ msgstr ""
4948
+
4949
+ #: classes/helpers/FrmAppHelper.php:365
4950
+ #@ formidable
4951
+ msgid "Saint Vincent and the Grenadines"
4952
+ msgstr ""
4953
+
4954
+ #: classes/helpers/FrmAppHelper.php:365
4955
+ #@ formidable
4956
+ msgid "Samoa"
4957
+ msgstr ""
4958
+
4959
+ #: classes/helpers/FrmAppHelper.php:366
4960
+ #@ formidable
4961
+ msgid "San Marino"
4962
+ msgstr ""
4963
+
4964
+ #: classes/helpers/FrmAppHelper.php:366
4965
+ #@ formidable
4966
+ msgid "Sao Tome and Principe"
4967
+ msgstr ""
4968
+
4969
+ #: classes/helpers/FrmAppHelper.php:366
4970
+ #@ formidable
4971
+ msgid "Saudi Arabia"
4972
+ msgstr ""
4973
+
4974
+ #: classes/helpers/FrmAppHelper.php:367
4975
+ #@ formidable
4976
+ msgid "Senegal"
4977
+ msgstr ""
4978
+
4979
+ #: classes/helpers/FrmAppHelper.php:367
4980
+ #@ formidable
4981
+ msgid "Serbia and Montenegro"
4982
+ msgstr ""
4983
+
4984
+ #: classes/helpers/FrmAppHelper.php:367
4985
+ #@ formidable
4986
+ msgid "Seychelles"
4987
+ msgstr ""
4988
+
4989
+ #: classes/helpers/FrmAppHelper.php:368
4990
+ #@ formidable
4991
+ msgid "Sierra Leone"
4992
+ msgstr ""
4993
+
4994
+ #: classes/helpers/FrmAppHelper.php:368
4995
+ #@ formidable
4996
+ msgid "Singapore"
4997
+ msgstr ""
4998
+
4999
+ #: classes/helpers/FrmAppHelper.php:368
5000
+ #@ formidable
5001
+ msgid "Slovakia"
5002
+ msgstr ""
5003
+
5004
+ #: classes/helpers/FrmAppHelper.php:369
5005
+ #@ formidable
5006
+ msgid "Slovenia"
5007
+ msgstr ""
5008
+
5009
+ #: classes/helpers/FrmAppHelper.php:369
5010
+ #@ formidable
5011
+ msgid "Solomon Islands"
5012
+ msgstr ""
5013
+
5014
+ #: classes/helpers/FrmAppHelper.php:369
5015
+ #@ formidable
5016
+ msgid "Somalia"
5017
+ msgstr ""
5018
+
5019
+ #: classes/helpers/FrmAppHelper.php:370
5020
+ #@ formidable
5021
+ msgid "South Africa"
5022
+ msgstr ""
5023
+
5024
+ #: classes/helpers/FrmAppHelper.php:370
5025
+ #@ formidable
5026
+ msgid "Spain"
5027
+ msgstr ""
5028
+
5029
+ #: classes/helpers/FrmAppHelper.php:370
5030
+ #@ formidable
5031
+ msgid "Sri Lanka"
5032
+ msgstr ""
5033
+
5034
+ #: classes/helpers/FrmAppHelper.php:371
5035
+ #@ formidable
5036
+ msgid "Sudan"
5037
+ msgstr ""
5038
+
5039
+ #: classes/helpers/FrmAppHelper.php:371
5040
+ #@ formidable
5041
+ msgid "Suriname"
5042
+ msgstr ""
5043
+
5044
+ #: classes/helpers/FrmAppHelper.php:371
5045
+ #@ formidable
5046
+ msgid "Swaziland"
5047
+ msgstr ""
5048
+
5049
+ #: classes/helpers/FrmAppHelper.php:372
5050
+ #@ formidable
5051
+ msgid "Sweden"
5052
+ msgstr ""
5053
+
5054
+ #: classes/helpers/FrmAppHelper.php:372
5055
+ #@ formidable
5056
+ msgid "Switzerland"
5057
+ msgstr ""
5058
+
5059
+ #: classes/helpers/FrmAppHelper.php:372
5060
+ #@ formidable
5061
+ msgid "Syria"
5062
+ msgstr ""
5063
+
5064
+ #: classes/helpers/FrmAppHelper.php:373
5065
+ #@ formidable
5066
+ msgid "Taiwan"
5067
+ msgstr ""
5068
+
5069
+ #: classes/helpers/FrmAppHelper.php:373
5070
+ #@ formidable
5071
+ msgid "Tajikistan"
5072
+ msgstr ""
5073
+
5074
+ #: classes/helpers/FrmAppHelper.php:373
5075
+ #@ formidable
5076
+ msgid "Tanzania"
5077
+ msgstr ""
5078
+
5079
+ #: classes/helpers/FrmAppHelper.php:374
5080
+ #@ formidable
5081
+ msgid "Thailand"
5082
+ msgstr ""
5083
+
5084
+ #: classes/helpers/FrmAppHelper.php:374
5085
+ #@ formidable
5086
+ msgid "Togo"
5087
+ msgstr ""
5088
+
5089
+ #: classes/helpers/FrmAppHelper.php:374
5090
+ #@ formidable
5091
+ msgid "Tonga"
5092
+ msgstr ""
5093
+
5094
+ #: classes/helpers/FrmAppHelper.php:375
5095
+ #@ formidable
5096
+ msgid "Trinidad and Tobago"
5097
+ msgstr ""
5098
+
5099
+ #: classes/helpers/FrmAppHelper.php:375
5100
+ #@ formidable
5101
+ msgid "Tunisia"
5102
+ msgstr ""
5103
+
5104
+ #: classes/helpers/FrmAppHelper.php:375
5105
+ #@ formidable
5106
+ msgid "Turkey"
5107
+ msgstr ""
5108
+
5109
+ #: classes/helpers/FrmAppHelper.php:376
5110
+ #@ formidable
5111
+ msgid "Turkmenistan"
5112
+ msgstr ""
5113
+
5114
+ #: classes/helpers/FrmAppHelper.php:376
5115
+ #@ formidable
5116
+ msgid "Tuvalu"
5117
+ msgstr ""
5118
+
5119
+ #: classes/helpers/FrmAppHelper.php:376
5120
+ #@ formidable
5121
+ msgid "Uganda"
5122
+ msgstr ""
5123
+
5124
+ #: classes/helpers/FrmAppHelper.php:377
5125
+ #@ formidable
5126
+ msgid "Ukraine"
5127
+ msgstr ""
5128
+
5129
+ #: classes/helpers/FrmAppHelper.php:377
5130
+ #@ formidable
5131
+ msgid "United Arab Emirates"
5132
+ msgstr ""
5133
+
5134
+ #: classes/helpers/FrmAppHelper.php:377
5135
+ #@ formidable
5136
+ msgid "United Kingdom"
5137
+ msgstr ""
5138
+
5139
+ #: classes/helpers/FrmAppHelper.php:378
5140
+ #@ formidable
5141
+ msgid "United States"
5142
+ msgstr ""
5143
+
5144
+ #: classes/helpers/FrmAppHelper.php:378
5145
+ #@ formidable
5146
+ msgid "Uruguay"
5147
+ msgstr ""
5148
+
5149
+ #: classes/helpers/FrmAppHelper.php:378
5150
+ #@ formidable
5151
+ msgid "Uzbekistan"
5152
+ msgstr ""
5153
+
5154
+ #: classes/helpers/FrmAppHelper.php:379
5155
+ #@ formidable
5156
+ msgid "Vanuatu"
5157
+ msgstr ""
5158
+
5159
+ #: classes/helpers/FrmAppHelper.php:379
5160
+ #@ formidable
5161
+ msgid "Vatican City"
5162
+ msgstr ""
5163
+
5164
+ #: classes/helpers/FrmAppHelper.php:379
5165
+ #@ formidable
5166
+ msgid "Venezuela"
5167
+ msgstr ""
5168
+
5169
+ #: classes/helpers/FrmAppHelper.php:380
5170
+ #@ formidable
5171
+ msgid "Vietnam"
5172
+ msgstr ""
5173
+
5174
+ #: classes/helpers/FrmAppHelper.php:380
5175
+ #@ formidable
5176
+ msgid "Virgin Islands, British"
5177
+ msgstr ""
5178
+
5179
+ #: classes/helpers/FrmAppHelper.php:381
5180
+ #@ formidable
5181
+ msgid "Virgin Islands, U.S."
5182
+ msgstr ""
5183
+
5184
+ #: classes/helpers/FrmAppHelper.php:381
5185
+ #@ formidable
5186
+ msgid "Yemen"
5187
+ msgstr ""
5188
+
5189
+ #: classes/helpers/FrmAppHelper.php:381
5190
+ #@ formidable
5191
+ msgid "Zambia"
5192
+ msgstr ""
5193
+
5194
+ #: classes/helpers/FrmAppHelper.php:382
5195
+ #@ formidable
5196
+ msgid "Zimbabwe"
5197
+ msgstr ""
5198
+
5199
+ #: classes/views/frm-fields/import_choices.php:56
5200
+ #@ formidable
5201
+ msgid "Edit or add field options (one per line)"
5202
+ msgstr ""
5203
+
5204
+ #: classes/views/frm-fields/import_choices.php:69
5205
+ #@ formidable
5206
+ msgid "Update Field Choices"
5207
+ msgstr ""
5208
+
5209
+ #: classes/views/frm-forms/add_field.php:40
5210
+ #: classes/views/frm-forms/add_field.php:73
5211
+ #@ formidable
5212
+ msgid "Bulk Edit Field Choices"
5213
+ msgstr ""
5214
+
5215
+ #: classes/views/frm-settings/form.php:54
5216
+ #@ formidable
5217
+ msgid "Use HTML5 in forms"
5218
+ msgstr ""
5219
+
5220
+ #: classes/views/frm-settings/form.php:130
5221
+ #@ formidable
5222
+ msgid "The message seen when a form is submitted and passes validation, but something goes wrong."
5223
+ msgstr ""
5224
+
5225
+ #: pro/classes/controllers/FrmProEntriesController.php:285
5226
+ #@ formidable
5227
+ msgid "Step Two"
5228
+ msgstr ""
5229
+
5230
+ #: pro/classes/helpers/FrmProEntryMetaHelper.php:198
5231
+ #: pro/classes/helpers/FrmProEntryMetaHelper.php:224
5232
+ #, php-format
5233
+ #@ formidable
5234
+ msgid "View all posts filed under %s"
5235
+ msgstr ""
5236
+
5237
+ #: pro/classes/views/frmpro-entries/import.php:3
5238
+ #@ formidable
5239
+ msgid "Import Entries"
5240
+ msgstr ""
5241
+
5242
+ #: pro/classes/views/frmpro-entries/import.php:11
5243
+ #, php-format
5244
+ #@ formidable
5245
+ msgid "The next 250 of the remaining %1$s entries are importing."
5246
+ msgstr ""
5247
+
5248
+ #: pro/classes/views/frmpro-entries/import.php:11
5249
+ #@ formidable
5250
+ msgid "Import Now"
5251
+ msgstr ""
5252
+
5253
+ #: pro/classes/views/frmpro-entries/import.php:41
5254
+ #@ formidable
5255
+ msgid "Step"
5256
+ msgstr ""
5257
+
5258
+ #: pro/classes/views/frmpro-entries/import.php:48
5259
+ #@ formidable
5260
+ msgid "Select CSV"
5261
+ msgstr ""
5262
+
5263
+ #: pro/classes/views/frmpro-entries/import.php:55
5264
+ #@ formidable
5265
+ msgid "CSV Delimiter"
5266
+ msgstr ""
5267
+
5268
+ #: pro/classes/views/frmpro-entries/import.php:62
5269
+ #@ formidable
5270
+ msgid "Import Into Form"
5271
+ msgstr ""
5272
+
5273
+ #: pro/classes/views/frmpro-entries/import.php:75
5274
+ #@ formidable
5275
+ msgid "CSV header"
5276
+ msgstr ""
5277
+
5278
+ #: pro/classes/views/frmpro-entries/import.php:76
5279
+ #@ formidable
5280
+ msgid "Sample data"
5281
+ msgstr ""
5282
+
5283
+ #: pro/classes/views/frmpro-entries/import.php:77
5284
+ #@ formidable
5285
+ msgid "Corresponding Field"
5286
+ msgstr ""
5287
+
5288
+ #: pro/classes/views/frmpro-entries/import.php:95
5289
+ #@ formidable
5290
+ msgid "Created by"
5291
+ msgstr ""
5292
+
5293
+ #: pro/classes/views/frmpro-entries/import.php:96
5294
+ #@ formidable
5295
+ msgid "Updated at"
5296
+ msgstr ""
5297
+
5298
+ #: pro/classes/views/frmpro-entries/import.php:97
5299
+ #@ formidable
5300
+ msgid "Updated by"
5301
+ msgstr ""
5302
+
5303
+ #: pro/classes/views/settings/formroller.php:166
5304
+ #@ formidable
5305
+ msgid "Automatic Width for drop-down fields"
5306
+ msgstr ""
5307
+
5308
+ #: classes/views/frm-settings/form.php:35
5309
+ #@ formidable
5310
+ msgid "Tracking"
5311
+ msgstr ""
5312
+
5313
+ #: classes/views/frm-settings/form.php:37
5314
+ #@ formidable
5315
+ msgid "Track referrer information and pages visited"
5316
+ msgstr ""
5317
+
5318
+ #: pro/classes/controllers/FrmProStatisticsController.php:241
5319
+ #@ formidable
5320
+ msgid "Deleted User"
5321
+ msgstr ""
5322
+
5323
+ #: pro/classes/views/displays/form.php:25
5324
+ #@ formidable
5325
+ msgid "Insert position"
5326
+ msgstr ""
5327
+
5328
+ #: pro/classes/views/displays/form.php:25
5329
+ #@ formidable
5330
+ msgid "If the custom display doesn't show automatically when it should, insert a higher number here."
5331
+ msgstr ""
5332
+
5333
+ #: pro/classes/views/settings/form.php:55
5334
+ #@ formidable
5335
+ msgid "CSV Export Format"
5336
+ msgstr ""
5337
+
5338
+ #: pro/classes/views/settings/form.php:55
5339
+ #@ formidable
5340
+ msgid "If your CSV special characters are not working correctly, try a different option."
5341
+ msgstr ""
5342
+
5343
+ #: pro/classes/views/settings/form.php:61
5344
+ #@ formidable
5345
+ msgid "Macintosh"
5346
+ msgstr ""
5347
+
languages/formidable-nl_NL.mo ADDED
Binary file
languages/formidable-nl_NL.po ADDED
@@ -0,0 +1,5348 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-12-20\n"
6
+ "PO-Revision-Date: 2011-07-20 00:55+0100\n"
7
+ "Last-Translator: Eric Horstman <erichorstman@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: \n"
14
+ "X-Poedit-Country: \n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: m:/xampp/htdocs/wp/wp-content/plugins/formidable/languages/formidable-en_US.po\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: classes/controllers/FrmAppController.php:62
23
+ #: classes/controllers/FrmFormsController.php:21
24
+ #: classes/views/frm-forms/list.php:3
25
+ #: pro/classes/views/shared/import_form.php:47
26
+ #@ formidable
27
+ msgid "Forms"
28
+ msgstr "Formulieren"
29
+
30
+ #: classes/controllers/FrmAppController.php:63
31
+ #: classes/controllers/FrmFormsController.php:23
32
+ #@ formidable
33
+ msgid "Templates"
34
+ msgstr "Templates"
35
+
36
+ #: classes/controllers/FrmAppController.php:70
37
+ #: classes/controllers/FrmSettingsController.php:14
38
+ #@ formidable
39
+ msgid "Settings"
40
+ msgstr "Instellingen"
41
+
42
+ #: classes/controllers/FrmAppController.php:85
43
+ #: classes/controllers/FrmAppController.php:123
44
+ #, php-format
45
+ #@ formidable
46
+ msgid "Your Formidable Pro installation isn't quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Formidable Pro%2$s"
47
+ msgstr "Uw Formidable Pro installatie is nog niet compleet.<br/>%1$sUpgrade automatisch om Formidable Pro te kunnen gebruiken%2$s"
48
+
49
+ #: classes/controllers/FrmAppController.php:213
50
+ #@ formidable
51
+ msgid "Formidable was successfully uninstalled."
52
+ msgstr "Formidable is met succes gedeïnstalleerd"
53
+
54
+ #: classes/controllers/FrmEntriesController.php:15
55
+ #@ formidable
56
+ msgid "Pro Entries"
57
+ msgstr "Pro bijdragen"
58
+
59
+ #: classes/controllers/FrmEntriesController.php:30
60
+ #@ formidable
61
+ msgid "Please select a valid form"
62
+ msgstr "Selecteer een geldig formulier"
63
+
64
+ #: classes/controllers/FrmFormsController.php:78
65
+ #@ formidable
66
+ msgid "Form was Successfully Created"
67
+ msgstr "Het formulier is met succes aangemaakt"
68
+
69
+ #: classes/controllers/FrmFormsController.php:113
70
+ #@ formidable
71
+ msgid "Form was Successfully Updated"
72
+ msgstr "Het formulier is met succes ge-update"
73
+
74
+ #: classes/controllers/FrmFormsController.php:123
75
+ #@ formidable
76
+ msgid "Form template was Successfully Created"
77
+ msgstr "Het formulier sjabloon is aangemaakt"
78
+
79
+ #: classes/controllers/FrmFormsController.php:123
80
+ #@ formidable
81
+ msgid "Form was Successfully Copied"
82
+ msgstr "Het formulier is met succes gekopieerd"
83
+
84
+ #: classes/controllers/FrmFormsController.php:127
85
+ #@ formidable
86
+ msgid "There was a problem creating new template."
87
+ msgstr "Er is een probleem opgetreden tijdens het aanmaken van een nieuwe sjabloon"
88
+
89
+ #: classes/controllers/FrmFormsController.php:169
90
+ #@ formidable
91
+ msgid "Form was Successfully Deleted"
92
+ msgstr "Het formulier is met succces verwijderd"
93
+
94
+ #: classes/controllers/FrmFormsController.php:190
95
+ #@ formidable
96
+ msgid "Add Formidable Form"
97
+ msgstr "Formidable formulier toevoegen"
98
+
99
+ #: classes/controllers/FrmFormsController.php:308
100
+ #@ formidable
101
+ msgid "That template cannot be edited"
102
+ msgstr "Dit sjabloon kan niet veranderd worden"
103
+
104
+ #: classes/controllers/FrmSettingsController.php:44
105
+ #@ formidable
106
+ msgid "Settings Saved"
107
+ msgstr "Instellingen opgeslagen"
108
+
109
+ #: classes/helpers/FrmAppHelper.php:44
110
+ #@ formidable
111
+ msgid "View Forms and Templates"
112
+ msgstr "Bekijk "
113
+
114
+ #: classes/helpers/FrmAppHelper.php:46
115
+ #@ formidable
116
+ msgid "Delete Forms and Templates"
117
+ msgstr "Verwijder formulieren en sjablonen"
118
+
119
+ #: classes/helpers/FrmAppHelper.php:47
120
+ #@ formidable
121
+ msgid "Access this Settings Page"
122
+ msgstr ""
123
+
124
+ #: classes/helpers/FrmAppHelper.php:50
125
+ #@ formidable
126
+ msgid "View Entries from Admin Area"
127
+ msgstr "Bekijk inzendingen vanuit de Admin omgeving"
128
+
129
+ #: classes/helpers/FrmAppHelper.php:52
130
+ #@ formidable
131
+ msgid "Edit Entries from Admin Area"
132
+ msgstr "Bewerk inzendingen vanuit de admin omgeving"
133
+
134
+ #: classes/helpers/FrmAppHelper.php:53
135
+ #@ formidable
136
+ msgid "Delete Entries from Admin Area"
137
+ msgstr "Verwijder inzendingen vanuit de Admin omgeving"
138
+
139
+ #: classes/helpers/FrmAppHelper.php:54
140
+ #@ formidable
141
+ msgid "View Reports"
142
+ msgstr "Bekijk de rapporten"
143
+
144
+ #: classes/helpers/FrmFieldsHelper.php:7
145
+ #@ formidable
146
+ msgid "Text Input (One Line)"
147
+ msgstr "Tekstregel"
148
+
149
+ #: classes/helpers/FrmFieldsHelper.php:8
150
+ #@ formidable
151
+ msgid "Paragraph Input (Multiple Lines)"
152
+ msgstr "Tekstveld"
153
+
154
+ #: classes/helpers/FrmFieldsHelper.php:9
155
+ #@ formidable
156
+ msgid "Multiple Selection (Check Boxes)"
157
+ msgstr "Meerkeuze"
158
+
159
+ #: classes/helpers/FrmFieldsHelper.php:10
160
+ #@ formidable
161
+ msgid "Select One (Radio)"
162
+ msgstr "Selectievakjes"
163
+
164
+ #: classes/helpers/FrmFieldsHelper.php:11
165
+ #@ formidable
166
+ msgid "Drop-Down (Select)"
167
+ msgstr "Drop Down"
168
+
169
+ #: classes/helpers/FrmFieldsHelper.php:21
170
+ #@ formidable
171
+ msgid "Section Heading"
172
+ msgstr ""
173
+
174
+ #: classes/helpers/FrmFieldsHelper.php:22
175
+ #@ formidable
176
+ msgid "Page Break"
177
+ msgstr ""
178
+
179
+ #: classes/helpers/FrmFieldsHelper.php:23
180
+ #: pro/classes/views/settings/form.php:113
181
+ #@ formidable
182
+ msgid "File Upload"
183
+ msgstr "Bestandsupload"
184
+
185
+ #: classes/helpers/FrmFieldsHelper.php:25
186
+ #@ formidable
187
+ msgid "Number"
188
+ msgstr "Nummer"
189
+
190
+ #: classes/helpers/FrmFieldsHelper.php:26
191
+ #@ formidable
192
+ msgid "Phone Number"
193
+ msgstr "Telefoonnummer"
194
+
195
+ #: classes/helpers/FrmFieldsHelper.php:27
196
+ #: pro/classes/views/frmpro-forms/notifications.php:125
197
+ #@ formidable
198
+ msgid "Email Address"
199
+ msgstr "E-mailadres"
200
+
201
+ #: classes/helpers/FrmFieldsHelper.php:28
202
+ #: pro/classes/models/FrmProField.php:34
203
+ #@ formidable
204
+ msgid "Date"
205
+ msgstr "Datum"
206
+
207
+ #: classes/helpers/FrmFieldsHelper.php:29
208
+ #: pro/classes/models/FrmProField.php:39
209
+ #@ formidable
210
+ msgid "Time"
211
+ msgstr "Tijd"
212
+
213
+ #: classes/helpers/FrmFieldsHelper.php:30
214
+ #@ formidable
215
+ msgid "Website/URL"
216
+ msgstr "Website"
217
+
218
+ #: classes/helpers/FrmFieldsHelper.php:31
219
+ #@ formidable
220
+ msgid "Image URL"
221
+ msgstr "URL -plaatje"
222
+
223
+ #: classes/helpers/FrmFieldsHelper.php:32
224
+ #@ formidable
225
+ msgid "Scale"
226
+ msgstr "Schaal"
227
+
228
+ #: classes/helpers/FrmFieldsHelper.php:34
229
+ #@ formidable
230
+ msgid "Data from Entries"
231
+ msgstr "Data uit inzendingen"
232
+
233
+ #: classes/helpers/FrmFieldsHelper.php:35
234
+ #@ formidable
235
+ msgid "Hidden Field"
236
+ msgstr "Verborgen veld"
237
+
238
+ #: classes/helpers/FrmFieldsHelper.php:38
239
+ #@ formidable
240
+ msgid "Tags"
241
+ msgstr "Tags"
242
+
243
+ #: classes/helpers/FrmFieldsHelper.php:54
244
+ #@ formidable
245
+ msgid "Untitled"
246
+ msgstr "naamloos"
247
+
248
+ #: classes/helpers/FrmFieldsHelper.php:265
249
+ #, php-format
250
+ #@ formidable
251
+ msgid "Set this field to %1$sclear on click"
252
+ msgstr ""
253
+
254
+ #: classes/helpers/FrmFieldsHelper.php:271
255
+ #, php-format
256
+ #@ formidable
257
+ msgid "This default value should %1$sbe considered blank"
258
+ msgstr ""
259
+
260
+ #: classes/helpers/FrmFormsHelper.php:16
261
+ #: classes/views/frm-forms/default-templates.php:24
262
+ #: classes/views/frm-forms/list.php:73
263
+ #@ formidable
264
+ msgid "Create Form from Template"
265
+ msgstr "Maak een formulier via een sjabloon"
266
+
267
+ #: classes/helpers/FrmFormsHelper.php:46
268
+ #@ formidable
269
+ msgid "Untitled Form"
270
+ msgstr "Naamloos formulier"
271
+
272
+ #: classes/models/FrmEntry.php:297
273
+ #@ formidable
274
+ msgid "Your entry appears to be spam!"
275
+ msgstr "Uw inzending lijkt Spam te zijn"
276
+
277
+ #: classes/models/FrmNotification.php:25
278
+ #, php-format
279
+ #@ formidable
280
+ msgid "%1$s form has been submitted on %2$s."
281
+ msgstr "%1$s het formulier is verzonden op %2$s."
282
+
283
+ #: classes/models/FrmNotification.php:44
284
+ #: pro/classes/models/FrmProNotification.php:180
285
+ #: pro/classes/views/displays/tags.php:21
286
+ #: pro/classes/views/frmpro-entries/show.php:93
287
+ #@ formidable
288
+ msgid "User Information"
289
+ msgstr "Gebruikers informatie"
290
+
291
+ #: classes/models/FrmNotification.php:45
292
+ #: pro/classes/models/FrmProNotification.php:181
293
+ #: pro/classes/models/FrmProNotification.php:185
294
+ #: pro/classes/views/frmpro-entries/import.php:98
295
+ #: pro/classes/views/frmpro-entries/show.php:98
296
+ #: pro/classes/views/frmpro-forms/add_form_options.php:74
297
+ #@ formidable
298
+ msgid "IP Address"
299
+ msgstr "IP Adres"
300
+
301
+ #: classes/models/FrmNotification.php:46
302
+ #: pro/classes/models/FrmProNotification.php:182
303
+ #: pro/classes/models/FrmProNotification.php:187
304
+ #: pro/classes/views/frmpro-entries/show.php:102
305
+ #@ formidable
306
+ msgid "User-Agent (Browser/OS)"
307
+ msgstr ""
308
+
309
+ #: classes/models/FrmNotification.php:47
310
+ #: pro/classes/models/FrmProNotification.php:183
311
+ #: pro/classes/models/FrmProNotification.php:189
312
+ #: pro/classes/views/frmpro-entries/show.php:106
313
+ #@ formidable
314
+ msgid "Referrer"
315
+ msgstr ""
316
+
317
+ #: classes/models/FrmNotification.php:50
318
+ #: pro/classes/models/FrmProNotification.php:203
319
+ #: pro/classes/models/FrmProNotification.php:316
320
+ #, php-format
321
+ #@ formidable
322
+ msgid "%1$s Form submitted on %2$s"
323
+ msgstr ""
324
+
325
+ #: classes/models/FrmSettings.php:99
326
+ #@ formidable
327
+ msgid "Your responses were successfully submitted. Thank you!"
328
+ msgstr ""
329
+
330
+ #: classes/models/FrmSettings.php:111
331
+ #: pro/classes/views/frmpro-entries/show.php:159
332
+ #@ formidable
333
+ msgid "Submit"
334
+ msgstr "Verzenden"
335
+
336
+ #: classes/models/FrmSettings.php:114
337
+ #@ formidable
338
+ msgid "You do not have permission to view this form."
339
+ msgstr "U heeft niet voldoende rechten om dit formulier te bekijken"
340
+
341
+ #: classes/models/FrmSettings.php:118
342
+ #@ formidable
343
+ msgid "You do not have permission to do that"
344
+ msgstr "U heeft niet voldoende rechten om dit te doen"
345
+
346
+ #: classes/models/FrmUpdate.php:134
347
+ #@ formidable
348
+ msgid "Pro Account Information"
349
+ msgstr "Informatie over het PRO account"
350
+
351
+ #: classes/models/FrmUpdate.php:143
352
+ #, php-format
353
+ #@ formidable
354
+ msgid "Your Username & Password was accepted<br/>Now you can %1$sUpgrade Automatically!%2$s"
355
+ msgstr "Uw gebruikersnaam & wachtwoord zijn geaccepteerd<br/>U kunt nu %1$sautomatisch updaten!%2$s"
356
+
357
+ #: classes/models/FrmUpdate.php:151
358
+ #@ formidable
359
+ msgid "ERROR"
360
+ msgstr "ERROR"
361
+
362
+ #: classes/models/FrmUpdate.php:171
363
+ #@ formidable
364
+ msgid "Ready to take your forms to the next level?<br/>Formidable Pro will help you style forms, manage data, and get reports."
365
+ msgstr ""
366
+
367
+ #: classes/models/FrmUpdate.php:173
368
+ #@ formidable
369
+ msgid "Learn More"
370
+ msgstr "Leer meer"
371
+
372
+ #: classes/models/FrmUpdate.php:202
373
+ #@ formidable
374
+ msgid "WordPress MU"
375
+ msgstr ""
376
+
377
+ #: classes/models/FrmUpdate.php:205
378
+ #@ formidable
379
+ msgid "Use this username and password to enable Formidable Pro site-wide"
380
+ msgstr "Gebruik deze gebruikersnaam en dit paswoord om Formibdable Pro op de hele website te kunnen gebruiken"
381
+
382
+ #: classes/models/FrmUpdate.php:210
383
+ #@ formidable
384
+ msgid "Save"
385
+ msgstr "Bewaar"
386
+
387
+ #: classes/templates/contact.php:3
388
+ #@ formidable
389
+ msgid "Contact Us"
390
+ msgstr "Neem contact met ons op"
391
+
392
+ #: classes/templates/contact.php:4
393
+ #@ formidable
394
+ msgid "We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly."
395
+ msgstr "We stellen het op prijs iets van u te horen. Vul het onderstaande formulier in en wij nemen zo spoedig mogelijk contact met u op."
396
+
397
+ #: classes/views/frm-forms/default-templates.php:7
398
+ #: classes/views/frm-forms/default-templates.php:41
399
+ #: classes/views/frm-forms/list.php:26
400
+ #: classes/views/frm-forms/list.php:36
401
+ #: classes/views/frm-forms/list.php:140
402
+ #: classes/views/frm-forms/list.php:144
403
+ #: pro/classes/views/displays/form.php:67
404
+ #: pro/classes/views/displays/list.php:29
405
+ #: pro/classes/views/displays/list.php:89
406
+ #: pro/classes/views/frmpro-fields/options-form.php:189
407
+ #: pro/classes/views/frmpro-forms/notifications.php:30
408
+ #: pro/classes/views/frmpro-forms/notifications.php:123
409
+ #@ formidable
410
+ msgid "Name"
411
+ msgstr "Naam"
412
+
413
+ #: pro/classes/models/FrmProDisplay.php:167
414
+ #@ formidable
415
+ msgid "Name cannot be blank"
416
+ msgstr "Verplicht veld"
417
+
418
+ #: classes/templates/contact.php:37
419
+ #: pro/classes/models/FrmProField.php:58
420
+ #: pro/classes/views/frmpro-forms/notifications.php:50
421
+ #: pro/classes/views/frmpro-forms/notifications.php:125
422
+ #@ formidable
423
+ msgid "Email"
424
+ msgstr "E-mail"
425
+
426
+ #: classes/templates/contact.php:39
427
+ #@ formidable
428
+ msgid "Please enter a valid email address"
429
+ msgstr "Gebruik a.u.b. een goed email adres"
430
+
431
+ #: classes/templates/contact.php:44
432
+ #: pro/classes/models/FrmProField.php:53
433
+ #@ formidable
434
+ msgid "Website"
435
+ msgstr "Website"
436
+
437
+ #: classes/templates/contact.php:50
438
+ #: pro/classes/views/frmpro-forms/notifications.php:77
439
+ #: pro/classes/views/frmpro-forms/notifications.php:135
440
+ #@ formidable
441
+ msgid "Subject"
442
+ msgstr "Onderwerp"
443
+
444
+ #: classes/templates/contact.php:56
445
+ #: pro/classes/views/frmpro-forms/notifications.php:83
446
+ #: pro/classes/views/frmpro-forms/notifications.php:141
447
+ #@ formidable
448
+ msgid "Message"
449
+ msgstr "Bericht"
450
+
451
+ #: classes/templates/contact.php:62
452
+ #@ formidable
453
+ msgid "Captcha"
454
+ msgstr "captcha"
455
+
456
+ #: classes/views/frm-entries/form.php:38
457
+ #: pro/classes/helpers/FrmProFieldsHelper.php:831
458
+ #: pro/classes/views/frmpro-entries/import.php:99
459
+ #@ formidable
460
+ msgid "Entry Key"
461
+ msgstr ""
462
+
463
+ #: classes/views/frm-entries/list.php:9
464
+ #, php-format
465
+ #@ formidable
466
+ msgid "Upgrade to %1$sFormidable Pro%2$s to view, search, export, and bulk delete your saved entries."
467
+ msgstr ""
468
+
469
+ #: classes/views/frm-forms/add_field.php:36
470
+ #: classes/views/frm-forms/add_field.php:69
471
+ #@ formidable
472
+ msgid "Add an Option"
473
+ msgstr "Voeg een optie toe"
474
+
475
+ #: classes/views/frm-forms/add_field.php:108
476
+ #: classes/views/frm-forms/add_field_links.php:25
477
+ #: classes/views/frm-forms/add_field_links.php:46
478
+ #: classes/views/frm-forms/add_field_links.php:67
479
+ #: classes/views/frm-forms/form.php:25
480
+ #: classes/views/frm-forms/form.php:81
481
+ #: pro/classes/views/frmpro-forms/comment_options.php:3
482
+ #: pro/classes/views/frmpro-forms/post_options.php:3
483
+ #@ formidable
484
+ msgid "Collapse"
485
+ msgstr "Uitvouwen"
486
+
487
+ #: classes/views/frm-forms/add_field.php:109
488
+ #@ formidable
489
+ msgid "Field Options"
490
+ msgstr "Veld opties"
491
+
492
+ #: classes/views/frm-forms/add_field.php:115
493
+ #: classes/widgets/FrmShowForm.php:56
494
+ #: pro/classes/views/frmpro-fields/options-form.php:65
495
+ #@ formidable
496
+ msgid "Field Size"
497
+ msgstr "Veldformaat"
498
+
499
+ #: classes/views/frm-forms/add_field.php:116
500
+ #@ formidable
501
+ msgid "columns wide"
502
+ msgstr "kolombreedte"
503
+
504
+ #: classes/views/frm-forms/add_field.php:116
505
+ #: classes/widgets/FrmShowForm.php:58
506
+ #@ formidable
507
+ msgid "characters wide"
508
+ msgstr ""
509
+
510
+ #: classes/views/frm-forms/add_field.php:118
511
+ #@ formidable
512
+ msgid "rows high"
513
+ msgstr ""
514
+
515
+ #: classes/views/frm-forms/add_field.php:118
516
+ #@ formidable
517
+ msgid "characters maximum"
518
+ msgstr ""
519
+
520
+ #: classes/views/frm-forms/add_field.php:122
521
+ #: classes/views/frm-forms/form.php:136
522
+ #@ formidable
523
+ msgid "Label Position"
524
+ msgstr ""
525
+
526
+ #: classes/views/frm-forms/add_field.php:124
527
+ #@ formidable
528
+ msgid "Top"
529
+ msgstr "Boven"
530
+
531
+ #: classes/views/frm-forms/add_field.php:125
532
+ #@ formidable
533
+ msgid "Left"
534
+ msgstr "Links"
535
+
536
+ #: classes/views/frm-forms/add_field.php:126
537
+ #@ formidable
538
+ msgid "Right"
539
+ msgstr "Rechts"
540
+
541
+ #: classes/views/frm-forms/add_field.php:128
542
+ #@ formidable
543
+ msgid "Hidden"
544
+ msgstr "Verborgen"
545
+
546
+ #: classes/views/frm-forms/add_field.php:137
547
+ #@ formidable
548
+ msgid "Indicate required field with"
549
+ msgstr ""
550
+
551
+ #: classes/views/frm-forms/add_field_links.php:9
552
+ #@ formidable
553
+ msgid "Preview Form"
554
+ msgstr "Vooraf bekijken"
555
+
556
+ #: classes/views/frm-forms/add_field_links.php:12
557
+ #@ formidable
558
+ msgid "Preview in Current Theme"
559
+ msgstr "Bekijken in huidige thema"
560
+
561
+ #: classes/views/frm-forms/add_field_links.php:18
562
+ #@ formidable
563
+ msgid "Click on or drag a field into your form"
564
+ msgstr ""
565
+
566
+ #: classes/views/frm-forms/add_field_links.php:26
567
+ #@ formidable
568
+ msgid "Basic Fields"
569
+ msgstr "Standaard velden"
570
+
571
+ #: classes/views/frm-forms/add_field_links.php:47
572
+ #@ formidable
573
+ msgid "Pro Fields"
574
+ msgstr "Pro velden"
575
+
576
+ #: classes/views/frm-forms/add_field_links.php:68
577
+ #: classes/views/frm-forms/form.php:124
578
+ #: classes/views/frm-forms/list.php:42
579
+ #: classes/views/frm-forms/list.php:146
580
+ #: pro/classes/helpers/FrmProFieldsHelper.php:845
581
+ #: pro/classes/helpers/FrmProFieldsHelper.php:859
582
+ #: pro/classes/views/displays/form.php:133
583
+ #: pro/classes/views/displays/form.php:144
584
+ #: pro/classes/views/displays/list.php:41
585
+ #: pro/classes/views/displays/list.php:91
586
+ #@ formidable
587
+ msgid "Key"
588
+ msgstr ""
589
+
590
+ #: classes/views/frm-forms/add_field_links.php:75
591
+ #@ formidable
592
+ msgid "required field"
593
+ msgstr "Verplicht veld"
594
+
595
+ #: classes/views/frm-forms/add_field_links.php:77
596
+ #@ formidable
597
+ msgid "not required"
598
+ msgstr "niet verplicht"
599
+
600
+ #: classes/views/frm-forms/add_field_links.php:79
601
+ #@ formidable
602
+ msgid "clear default text on click"
603
+ msgstr "verwijder de standaardtekst door te klikken"
604
+
605
+ #: classes/views/frm-forms/add_field_links.php:81
606
+ #@ formidable
607
+ msgid "do not clear default text on click"
608
+ msgstr "standaard tekst niet met een klik te verwijderen"
609
+
610
+ #: classes/views/frm-forms/add_field_links.php:83
611
+ #@ formidable
612
+ msgid "default value will NOT pass validation"
613
+ msgstr ""
614
+
615
+ #: classes/views/frm-forms/add_field_links.php:85
616
+ #@ formidable
617
+ msgid "default value will pass validation"
618
+ msgstr ""
619
+
620
+ #: classes/views/frm-forms/add_field_links.php:87
621
+ #@ formidable
622
+ msgid "delete field and all inputed data"
623
+ msgstr "verwijder het veld en alle data die in dit veld is ingevuld"
624
+
625
+ #: classes/views/frm-forms/add_field_links.php:89
626
+ #@ formidable
627
+ msgid "duplicate field"
628
+ msgstr "veld dupliceren"
629
+
630
+ #: classes/views/frm-forms/add_field_links.php:91
631
+ #@ formidable
632
+ msgid "move field"
633
+ msgstr "veld verplaatsen"
634
+
635
+ #: classes/views/frm-forms/add_field_links.php:100
636
+ #@ formidable
637
+ msgid "Enter or select default values into fields on this form."
638
+ msgstr ""
639
+
640
+ #: classes/views/frm-forms/default-templates.php:3
641
+ #@ formidable
642
+ msgid "Default Templates"
643
+ msgstr "Voorkeurs sjablonen"
644
+
645
+ #: classes/views/frm-forms/default-templates.php:8
646
+ #: classes/views/frm-forms/default-templates.php:42
647
+ #: classes/views/frm-forms/list.php:29
648
+ #: classes/views/frm-forms/list.php:39
649
+ #: classes/views/frm-forms/list.php:141
650
+ #: classes/views/frm-forms/list.php:145
651
+ #: pro/classes/views/displays/form.php:83
652
+ #: pro/classes/views/displays/list.php:35
653
+ #: pro/classes/views/displays/list.php:90
654
+ #@ formidable
655
+ msgid "Description"
656
+ msgstr "Omschrijving"
657
+
658
+ #: classes/views/frm-forms/default-templates.php:12
659
+ #@ formidable
660
+ msgid "No Templates Found"
661
+ msgstr "Geen sjablonen gevonden"
662
+
663
+ #: classes/views/frm-forms/default-templates.php:21
664
+ #@ formidable
665
+ msgid "Preview"
666
+ msgstr "Vooraf bekijken"
667
+
668
+ #: classes/views/frm-forms/default-templates.php:24
669
+ #: classes/views/frm-forms/list.php:73
670
+ #: classes/views/frm-forms/list.php:108
671
+ #: pro/classes/views/displays/form.php:270
672
+ #: pro/classes/views/displays/list.php:69
673
+ #@ formidable
674
+ msgid "Copy"
675
+ msgstr "Kopiëren"
676
+
677
+ #: classes/views/frm-forms/default-templates.php:30
678
+ #: pro/classes/views/frmpro-entries/edit.php:20
679
+ #: pro/classes/views/frmpro-entries/list.php:61
680
+ #@ formidable
681
+ msgid "View"
682
+ msgstr "bekijken"
683
+
684
+ #: classes/views/frm-forms/default-templates.php:47
685
+ #@ formidable
686
+ msgid "Custom Templates"
687
+ msgstr "Aangepaste sjablonen"
688
+
689
+ #: classes/views/frm-forms/edit.php:3
690
+ #: pro/classes/helpers/FrmProEntriesHelper.php:85
691
+ #@ formidable
692
+ msgid "Edit Form"
693
+ msgstr "Formulier bewerken"
694
+
695
+ #: classes/views/frm-forms/edit.php:19
696
+ #: classes/views/frm-forms/edit.php:32
697
+ #: pro/classes/controllers/FrmProDisplaysController.php:408
698
+ #: pro/classes/models/FrmProSettings.php:189
699
+ #@ formidable
700
+ msgid "Update"
701
+ msgstr "Update"
702
+
703
+ #: classes/views/frm-forms/add_field.php:39
704
+ #: classes/views/frm-forms/add_field.php:72
705
+ #: classes/views/frm-forms/edit.php:20
706
+ #: classes/views/frm-forms/edit.php:33
707
+ #: classes/views/frm-forms/new-selection.php:9
708
+ #: classes/views/frm-forms/new.php:14
709
+ #: classes/views/frm-forms/new.php:26
710
+ #: pro/classes/views/displays/form.php:292
711
+ #: pro/classes/views/frmpro-entries/edit.php:55
712
+ #: pro/classes/views/frmpro-entries/new.php:39
713
+ #@ formidable
714
+ msgid "or"
715
+ msgstr "of"
716
+
717
+ #: classes/views/frm-fields/import_choices.php:70
718
+ #: classes/views/frm-forms/edit.php:21
719
+ #: classes/views/frm-forms/edit.php:34
720
+ #: classes/views/frm-forms/new.php:15
721
+ #: classes/views/frm-forms/new.php:27
722
+ #: pro/classes/controllers/FrmProEntriesController.php:1058
723
+ #: pro/classes/views/displays/form.php:45
724
+ #: pro/classes/views/displays/form.php:293
725
+ #: pro/classes/views/frmpro-entries/edit.php:56
726
+ #: pro/classes/views/frmpro-entries/new.php:21
727
+ #: pro/classes/views/frmpro-entries/new.php:40
728
+ #@ formidable
729
+ msgid "Cancel"
730
+ msgstr "Schrappen"
731
+
732
+ #: classes/views/frm-forms/footer.php:11
733
+ #@ formidable
734
+ msgid "(Click here to add form description or instructions)"
735
+ msgstr "(Klik hier om een beschrijving van het formulier of een instructie toe te voegen )"
736
+
737
+ #: classes/controllers/FrmAppController.php:109
738
+ #: classes/views/frm-forms/footer.php:35
739
+ #: pro/classes/helpers/FrmProEntriesHelper.php:67
740
+ #: pro/classes/views/frmpro-entries/import.php:16
741
+ #: pro/classes/views/settings/formroller.php:523
742
+ #@ formidable
743
+ msgid "Loading..."
744
+ msgstr "Aan het laden...."
745
+
746
+ #: classes/views/frm-forms/footer.php:52
747
+ #@ formidable
748
+ msgid "Are you sure you want to delete this field and all data associated with it?"
749
+ msgstr "Weet je zeker dat je dit veld en alle bijbehorende data wilt verwijderen?"
750
+
751
+ #: classes/views/frm-forms/form.php:26
752
+ #@ formidable
753
+ msgid "Advanced Form Options"
754
+ msgstr "Geavanceerde formulieropties"
755
+
756
+ #: classes/views/frm-forms/form.php:32
757
+ #@ formidable
758
+ msgid "Form ShortCodes"
759
+ msgstr ""
760
+
761
+ #: classes/views/frm-forms/form.php:32
762
+ #@ formidable
763
+ msgid "Key and id are generally synonymous. For more information on using this shortcode, click now."
764
+ msgstr ""
765
+
766
+ #: classes/views/frm-forms/form.php:37
767
+ #: classes/views/frm-forms/form.php:128
768
+ #@ formidable
769
+ msgid "Form Key"
770
+ msgstr ""
771
+
772
+ #: classes/views/frm-forms/form.php:41
773
+ #@ formidable
774
+ msgid "Styling"
775
+ msgstr ""
776
+
777
+ #: classes/views/frm-forms/form.php:43
778
+ #@ formidable
779
+ msgid "Use Formidable styling for this form"
780
+ msgstr ""
781
+
782
+ #: classes/views/frm-forms/form.php:46
783
+ #@ formidable
784
+ msgid "Submit Button Text"
785
+ msgstr "Tekst verzendknop"
786
+
787
+ #: classes/views/frm-forms/form.php:50
788
+ #@ formidable
789
+ msgid "Action After Form Submission"
790
+ msgstr "Actie na verzenden formulier"
791
+
792
+ #: classes/views/frm-forms/form.php:52
793
+ #@ formidable
794
+ msgid "To use the second two options, you must upgrade to Formidable Pro."
795
+ msgstr "Om de tweede twee opties te kunnen gebruiken moet je opwaarderen naar Formidable Pro"
796
+
797
+ #: classes/views/frm-forms/form.php:56
798
+ #@ formidable
799
+ msgid "Display a Message"
800
+ msgstr "Laat een bericht zien"
801
+
802
+ #: classes/views/frm-forms/form.php:57
803
+ #@ formidable
804
+ msgid "Display content from another page"
805
+ msgstr "Laat de inhoud van een andere pagina zien"
806
+
807
+ #: classes/views/frm-forms/form.php:58
808
+ #@ formidable
809
+ msgid "Redirect"
810
+ msgstr "Doorverwijzing"
811
+
812
+ #: classes/views/frm-forms/form.php:62
813
+ #@ formidable
814
+ msgid "Confirmation Message"
815
+ msgstr "bevestigings bericht"
816
+
817
+ #: classes/views/frm-forms/form.php:65
818
+ #@ formidable
819
+ msgid "Show the form with the success message."
820
+ msgstr "Laat het formulier zien met het bevestigingsbericht"
821
+
822
+ #: classes/views/frm-forms/form.php:72
823
+ #@ formidable
824
+ msgid "Use Akismet to check entries for spam"
825
+ msgstr "Gebruik Askimet om inzendingen op Spam te controleren"
826
+
827
+ #: classes/views/frm-forms/form.php:82
828
+ #@ formidable
829
+ msgid "Form Notification Options"
830
+ msgstr "Notificatie opties voor dit formulier"
831
+
832
+ #: classes/views/frm-forms/form.php:88
833
+ #@ formidable
834
+ msgid "Email Form Responses to"
835
+ msgstr "Email een inzending naar"
836
+
837
+ #: classes/views/frm-forms/form.php:88
838
+ #@ formidable
839
+ msgid "To send to multiple addresses, separate each address with a comma"
840
+ msgstr "Als je naar meer mailadressen wilt verzenden, gebruik dan een komma tussen mailadressen"
841
+
842
+ #: classes/views/frm-forms/form.php:103
843
+ #@ formidable
844
+ msgid "Before Fields"
845
+ msgstr "Voor de velden"
846
+
847
+ #: classes/views/frm-forms/form.php:119
848
+ #@ formidable
849
+ msgid "After Fields"
850
+ msgstr "Na de velden"
851
+
852
+ #: classes/views/frm-forms/form.php:126
853
+ #@ formidable
854
+ msgid "Form Name"
855
+ msgstr "Naam Formulier "
856
+
857
+ #: classes/views/frm-forms/form.php:127
858
+ #@ formidable
859
+ msgid "Form Description"
860
+ msgstr "Beschrijving Formulier"
861
+
862
+ #: classes/views/frm-forms/form.php:132
863
+ #@ formidable
864
+ msgid "Field Id"
865
+ msgstr "Veld Id"
866
+
867
+ #: classes/views/frm-forms/form.php:133
868
+ #: pro/classes/views/displays/tags.php:14
869
+ #: pro/classes/views/frmpro-fields/options-form.php:219
870
+ #@ formidable
871
+ msgid "Field Key"
872
+ msgstr "Veld Sleutel"
873
+
874
+ #: classes/views/frm-forms/form.php:134
875
+ #@ formidable
876
+ msgid "Field Name"
877
+ msgstr "Veldnaam"
878
+
879
+ #: classes/views/frm-forms/form.php:135
880
+ #: pro/classes/views/settings/formroller.php:92
881
+ #@ formidable
882
+ msgid "Field Description"
883
+ msgstr "Veldbeschrijving"
884
+
885
+ #: classes/views/frm-forms/form.php:137
886
+ #@ formidable
887
+ msgid "Required label"
888
+ msgstr "Benodigd label"
889
+
890
+ #: classes/views/frm-forms/form.php:138
891
+ #@ formidable
892
+ msgid "Input Field"
893
+ msgstr "Invoer veld"
894
+
895
+ #: classes/views/frm-forms/form.php:139
896
+ #@ formidable
897
+ msgid "Show a single radio or checkbox option by replacing \"1\" with the order of the option"
898
+ msgstr ""
899
+
900
+ #: classes/views/frm-forms/form.php:140
901
+ #@ formidable
902
+ msgid "Hide the option labels"
903
+ msgstr ""
904
+
905
+ #: classes/views/frm-forms/form.php:142
906
+ #@ formidable
907
+ msgid "Add class name if field is required"
908
+ msgstr ""
909
+
910
+ #: classes/views/frm-forms/form.php:143
911
+ #@ formidable
912
+ msgid "Add class name if field has an error on form submit"
913
+ msgstr ""
914
+
915
+ #: classes/views/frm-forms/insert_form_popup.php:4
916
+ #@ formidable
917
+ msgid "Please select a form"
918
+ msgstr "Selecteer een formulier"
919
+
920
+ #: classes/views/frm-forms/insert_form_popup.php:13
921
+ #@ formidable
922
+ msgid "Please select a custom display"
923
+ msgstr "Selecteer een aangepast "
924
+
925
+ #: classes/views/frm-forms/insert_form_popup.php:39
926
+ #@ formidable
927
+ msgid "Display form title"
928
+ msgstr "Laat de titel van het formulier zien"
929
+
930
+ #: classes/views/frm-forms/insert_form_popup.php:40
931
+ #@ formidable
932
+ msgid "Display form description"
933
+ msgstr "laat de omschrijving van het formulier zien"
934
+
935
+ #: classes/views/frm-forms/list.php:33
936
+ #: classes/views/frm-forms/list.php:143
937
+ #: pro/classes/helpers/FrmProFieldsHelper.php:844
938
+ #: pro/classes/helpers/FrmProFieldsHelper.php:858
939
+ #: pro/classes/views/displays/form.php:132
940
+ #: pro/classes/views/displays/form.php:143
941
+ #: pro/classes/views/displays/list.php:23
942
+ #: pro/classes/views/displays/list.php:88
943
+ #@ formidable
944
+ msgid "ID"
945
+ msgstr ""
946
+
947
+ #: classes/views/frm-forms/list.php:44
948
+ #: classes/views/frm-forms/list.php:102
949
+ #: classes/views/frm-forms/list.php:122
950
+ #: classes/views/frm-forms/list.php:147
951
+ #: pro/classes/controllers/FrmProEntriesController.php:47
952
+ #: pro/classes/views/frmpro-entries/list.php:3
953
+ #: pro/classes/views/frmpro-fields/dynamic-options.php:17
954
+ #: pro/classes/views/shared/import_form.php:48
955
+ #@ formidable
956
+ msgid "Entries"
957
+ msgstr "Inzendingen"
958
+
959
+ #: classes/views/frm-forms/list.php:45
960
+ #: classes/views/frm-forms/list.php:148
961
+ #@ formidable
962
+ msgid "Direct Link"
963
+ msgstr ""
964
+
965
+ #: pro/classes/views/displays/list.php:48
966
+ #: pro/classes/views/displays/list.php:95
967
+ #@ formidable
968
+ msgid "ShortCode"
969
+ msgstr ""
970
+
971
+ #: classes/views/frm-forms/list.php:53
972
+ #@ formidable
973
+ msgid "No Forms Found"
974
+ msgstr "Geen formulieren gevonden"
975
+
976
+ #: classes/views/frm-forms/list.php:66
977
+ #: classes/views/frm-forms/list.php:74
978
+ #: classes/views/frm-forms/list.php:87
979
+ #: classes/views/frm-forms/list.php:94
980
+ #: pro/classes/controllers/FrmProEntriesController.php:1058
981
+ #: pro/classes/helpers/FrmProAppHelper.php:109
982
+ #: pro/classes/helpers/FrmProFieldsHelper.php:992
983
+ #: pro/classes/views/displays/list.php:68
984
+ #: pro/classes/views/frmpro-entries/list.php:64
985
+ #: pro/classes/views/frmpro-entries/show.php:29
986
+ #@ formidable
987
+ msgid "Edit"
988
+ msgstr "Bewerken"
989
+
990
+ #: classes/views/frm-forms/list.php:78
991
+ #: classes/views/frm-forms/list.php:116
992
+ #, php-format
993
+ #@ formidable
994
+ msgid "Are you sure you want to delete your %1$s Form?"
995
+ msgstr "Weet je zeker dat je je %1$s formulier wilt verwijderen?"
996
+
997
+ #: classes/views/frm-forms/list.php:78
998
+ #: classes/views/frm-forms/list.php:116
999
+ #: pro/classes/helpers/FrmProAppHelper.php:177
1000
+ #: pro/classes/views/displays/form.php:43
1001
+ #: pro/classes/views/displays/list.php:70
1002
+ #: pro/classes/views/frmpro-entries/edit.php:33
1003
+ #: pro/classes/views/frmpro-entries/list.php:73
1004
+ #: pro/classes/views/frmpro-entries/show.php:25
1005
+ #@ formidable
1006
+ msgid "Delete"
1007
+ msgstr "Verwijderen"
1008
+
1009
+ #: classes/views/frm-forms/list.php:98
1010
+ #@ formidable
1011
+ msgid "New"
1012
+ msgstr "Nieuw"
1013
+
1014
+ #: classes/views/frm-forms/list.php:98
1015
+ #: pro/classes/views/displays/list.php:46
1016
+ #: pro/classes/views/displays/list.php:93
1017
+ #: pro/classes/views/frmpro-entries/show.php:43
1018
+ #@ formidable
1019
+ msgid "Entry"
1020
+ msgstr "Inzending"
1021
+
1022
+ #: classes/views/frm-forms/list.php:98
1023
+ #@ formidable
1024
+ msgid "New Entry"
1025
+ msgstr "Nieuwe inzending"
1026
+
1027
+ #: classes/views/frm-forms/list.php:104
1028
+ #: pro/classes/controllers/FrmProStatisticsController.php:13
1029
+ #: pro/classes/controllers/FrmProStatisticsController.php:25
1030
+ #@ formidable
1031
+ msgid "Reports"
1032
+ msgstr "Rapporten"
1033
+
1034
+ #: classes/views/frm-forms/add_field.php:6
1035
+ #: classes/views/frm-forms/list.php:108
1036
+ #: pro/classes/views/displays/list.php:69
1037
+ #: pro/classes/views/frmpro-entries/edit.php:21
1038
+ #: pro/classes/views/frmpro-entries/list.php:68
1039
+ #: pro/classes/views/frmpro-entries/show.php:18
1040
+ #@ formidable
1041
+ msgid "Duplicate"
1042
+ msgstr "kopieer"
1043
+
1044
+ #: classes/views/frm-forms/list.php:109
1045
+ #: classes/views/frm-forms/new.php:13
1046
+ #: classes/views/frm-forms/new.php:25
1047
+ #: pro/classes/controllers/FrmProDisplaysController.php:93
1048
+ #: pro/classes/controllers/FrmProDisplaysController.php:102
1049
+ #@ formidable
1050
+ msgid "Create"
1051
+ msgstr "aanmaken"
1052
+
1053
+ #: classes/views/frm-forms/list.php:109
1054
+ #: classes/views/frm-forms/list.php:111
1055
+ #@ formidable
1056
+ msgid "Template"
1057
+ msgstr "Sjabloon"
1058
+
1059
+ #: classes/views/frm-forms/list.php:109
1060
+ #@ formidable
1061
+ msgid "Create Template"
1062
+ msgstr "Sjabloon aanmaken"
1063
+
1064
+ #: classes/views/frm-forms/list.php:124
1065
+ #@ formidable
1066
+ msgid "View Form"
1067
+ msgstr "Bekijk het formulier"
1068
+
1069
+ #: classes/views/frm-forms/new-field-js.php:20
1070
+ #: classes/views/frm-forms/new-option-js.php:11
1071
+ #@ formidable
1072
+ msgid "(Blank)"
1073
+ msgstr ""
1074
+
1075
+ #: classes/views/frm-settings/form.php:23
1076
+ #: classes/views/frm-settings/form.php:159
1077
+ #@ formidable
1078
+ msgid "Update Options"
1079
+ msgstr "Update opties"
1080
+
1081
+ #: classes/views/frm-settings/form.php:28
1082
+ #@ formidable
1083
+ msgid "Preview Page"
1084
+ msgstr "Pagina vooraf bekijken"
1085
+
1086
+ #: classes/views/frm-settings/form.php:59
1087
+ #@ formidable
1088
+ msgid "Include the jQuery CSS on ALL pages"
1089
+ msgstr ""
1090
+
1091
+ #: classes/views/frm-settings/form.php:59
1092
+ #@ formidable
1093
+ msgid "The styling for the date field calendar. Some users may be using this css on pages other than just the ones that include a date field."
1094
+ msgstr ""
1095
+
1096
+ #: classes/views/frm-settings/form.php:65
1097
+ #@ formidable
1098
+ msgid "User Permissions"
1099
+ msgstr ""
1100
+
1101
+ #: classes/views/frm-settings/form.php:65
1102
+ #@ formidable
1103
+ msgid "Select users that are allowed access to Formidable. Without access to View Forms, users will be unable to see the Formidable menu."
1104
+ msgstr ""
1105
+
1106
+ #: classes/views/frm-settings/form.php:112
1107
+ #@ formidable
1108
+ msgid "Default Messages"
1109
+ msgstr ""
1110
+
1111
+ #: classes/views/frm-settings/form.php:112
1112
+ #@ formidable
1113
+ msgid "You can override the success message and submit button settings on individual forms."
1114
+ msgstr ""
1115
+
1116
+ #: classes/views/frm-settings/form.php:122
1117
+ #@ formidable
1118
+ msgid "Success Message"
1119
+ msgstr ""
1120
+
1121
+ #: classes/views/frm-settings/form.php:122
1122
+ #@ formidable
1123
+ msgid "The default message seen after a form is submitted."
1124
+ msgstr "Hat standaard bericht dat getoond wordt nadat een formulier is ingevuld"
1125
+
1126
+ #: classes/views/frm-settings/form.php:138
1127
+ #@ formidable
1128
+ msgid "Login Message"
1129
+ msgstr "Login bericht"
1130
+
1131
+ #: classes/views/frm-settings/form.php:138
1132
+ #@ formidable
1133
+ msgid "The message seen when a user who is not logged-in views a form only logged-in users can submit."
1134
+ msgstr ""
1135
+
1136
+ #: pro/classes/views/settings/formroller.php:347
1137
+ #@ formidable
1138
+ msgid "Submit Button"
1139
+ msgstr "Verzendknop"
1140
+
1141
+ #: classes/views/frm-settings/form.php:157
1142
+ #@ formidable
1143
+ msgid "Are you sure you want to do this? Clicking OK will delete all forms, form data, and all other Formidable data. There is no Undo."
1144
+ msgstr "Weet je zeker dat je dit wilt doen? Als je op OK klikt verwijder je alle formulieren, de ingevulde data en alle andere Formidable data. Je kunt dit niet ongedaan maken!"
1145
+
1146
+ #: classes/views/frm-settings/form.php:157
1147
+ #@ formidable
1148
+ msgid "Uninstall Formidable"
1149
+ msgstr "Formidable deïnstalleren"
1150
+
1151
+ #: classes/views/frm-statistics/list.php:9
1152
+ #@ formidable
1153
+ msgid "Upgrade to Formidable Pro to get reports and statistics on your saved entries"
1154
+ msgstr ""
1155
+
1156
+ #: classes/views/shared/item-table-nav.php:6
1157
+ #, php-format
1158
+ #@ formidable
1159
+ msgid "Displaying %1$s&#8211;%2$s of %3$s"
1160
+ msgstr ""
1161
+
1162
+ #: pro/classes/controllers/FrmProAppController.php:26
1163
+ #@ formidable
1164
+ msgid "Formidable Tags"
1165
+ msgstr ""
1166
+
1167
+ #: pro/classes/controllers/FrmProAppController.php:27
1168
+ #@ formidable
1169
+ msgid "Formidable Tag"
1170
+ msgstr ""
1171
+
1172
+ #: pro/classes/controllers/FrmProDisplaysController.php:157
1173
+ #@ formidable
1174
+ msgid "There was a problem creating new Entry Display settings."
1175
+ msgstr ""
1176
+
1177
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1178
+ #@ formidable
1179
+ msgid "January"
1180
+ msgstr "Januari"
1181
+
1182
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1183
+ #@ formidable
1184
+ msgid "February"
1185
+ msgstr "Februari"
1186
+
1187
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1188
+ #@ formidable
1189
+ msgid "March"
1190
+ msgstr "Maart"
1191
+
1192
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1193
+ #@ formidable
1194
+ msgid "April"
1195
+ msgstr "April"
1196
+
1197
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1198
+ #@ formidable
1199
+ msgid "May"
1200
+ msgstr "Mei"
1201
+
1202
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1203
+ #@ formidable
1204
+ msgid "June"
1205
+ msgstr "Juni"
1206
+
1207
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1208
+ #@ formidable
1209
+ msgid "July"
1210
+ msgstr "Juli"
1211
+
1212
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1213
+ #@ formidable
1214
+ msgid "August"
1215
+ msgstr "Augutus"
1216
+
1217
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1218
+ #@ formidable
1219
+ msgid "September"
1220
+ msgstr "September"
1221
+
1222
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1223
+ #@ formidable
1224
+ msgid "October"
1225
+ msgstr "Oktober"
1226
+
1227
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1228
+ #@ formidable
1229
+ msgid "November"
1230
+ msgstr "November"
1231
+
1232
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1233
+ #@ formidable
1234
+ msgid "December"
1235
+ msgstr "December"
1236
+
1237
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1238
+ #@ formidable
1239
+ msgid "Sunday"
1240
+ msgstr "Zondag"
1241
+
1242
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1243
+ #@ formidable
1244
+ msgid "Monday"
1245
+ msgstr "Maandag"
1246
+
1247
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1248
+ #@ formidable
1249
+ msgid "Tuesday"
1250
+ msgstr "Dinsdag"
1251
+
1252
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1253
+ #@ formidable
1254
+ msgid "Wednesday"
1255
+ msgstr "Woensdag"
1256
+
1257
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1258
+ #@ formidable
1259
+ msgid "Thursday"
1260
+ msgstr "Donderdag"
1261
+
1262
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1263
+ #@ formidable
1264
+ msgid "Friday"
1265
+ msgstr "Vrijdag"
1266
+
1267
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1268
+ #@ formidable
1269
+ msgid "Saturday"
1270
+ msgstr "Zaterdag"
1271
+
1272
+ #: pro/classes/controllers/FrmProDisplaysController.php:442
1273
+ #@ formidable
1274
+ msgid "That is not a valid custom display ID"
1275
+ msgstr ""
1276
+
1277
+ #: pro/classes/controllers/FrmProEntriesController.php:852
1278
+ #: pro/classes/helpers/FrmProDisplaysHelper.php:43
1279
+ #: pro/classes/views/frmpro-entries/list.php:31
1280
+ #@ formidable
1281
+ msgid "No Entries Found"
1282
+ msgstr "Geen bijdragen gevonden"
1283
+
1284
+ #: pro/classes/controllers/FrmProEntriesController.php:189
1285
+ #@ formidable
1286
+ msgid "Entry was Successfully Created"
1287
+ msgstr "Bijdrage aanmaken gelukt"
1288
+
1289
+ #: pro/classes/controllers/FrmProEntriesController.php:213
1290
+ #@ formidable
1291
+ msgid "Entry was Successfully Updated"
1292
+ msgstr "Bijdrage updaten is gelukt"
1293
+
1294
+ #: pro/classes/controllers/FrmProEntriesController.php:213
1295
+ #@ formidable
1296
+ msgid "Back to Entries"
1297
+ msgstr "Terug naar de bijdragen"
1298
+
1299
+ #: pro/classes/controllers/FrmProEntriesController.php:320
1300
+ #@ formidable
1301
+ msgid "Entry was Successfully Duplicated"
1302
+ msgstr "De bijdrage is met succes gekopieerd"
1303
+
1304
+ #: pro/classes/controllers/FrmProEntriesController.php:322
1305
+ #@ formidable
1306
+ msgid "There was a problem duplicating that entry"
1307
+ msgstr "Er is een probllem opgetreden bij het kopieëren van de inzending"
1308
+
1309
+ #: pro/classes/controllers/FrmProEntriesController.php:340
1310
+ #@ formidable
1311
+ msgid "Entry was Successfully Destroyed"
1312
+ msgstr "De bijdrage is met succes vernietigd"
1313
+
1314
+ #: pro/classes/controllers/FrmProEntriesController.php:355
1315
+ #@ formidable
1316
+ msgid "No entries were specified"
1317
+ msgstr "geen bijdragen gespecificeerd"
1318
+
1319
+ #: classes/views/frm-forms/add_field.php:6
1320
+ #@ formidable
1321
+ msgid "Duplicate Field"
1322
+ msgstr "kopieer veld"
1323
+
1324
+ #: pro/classes/controllers/FrmProFieldsController.php:218
1325
+ #@ formidable
1326
+ msgid "English/Western"
1327
+ msgstr ""
1328
+
1329
+ #: pro/classes/controllers/FrmProFieldsController.php:218
1330
+ #@ formidable
1331
+ msgid "Afrikaans"
1332
+ msgstr "Afrikaans"
1333
+
1334
+ #: pro/classes/controllers/FrmProFieldsController.php:219
1335
+ #@ formidable
1336
+ msgid "Albanian"
1337
+ msgstr "Albanees"
1338
+
1339
+ #: pro/classes/controllers/FrmProFieldsController.php:219
1340
+ #@ formidable
1341
+ msgid "Arabic"
1342
+ msgstr "Arabisch"
1343
+
1344
+ #: pro/classes/controllers/FrmProFieldsController.php:220
1345
+ #@ formidable
1346
+ msgid "Armenian"
1347
+ msgstr "Armeens"
1348
+
1349
+ #: pro/classes/controllers/FrmProFieldsController.php:220
1350
+ #@ formidable
1351
+ msgid "Azerbaijani"
1352
+ msgstr "Azerbeidzjaanse"
1353
+
1354
+ #: pro/classes/controllers/FrmProFieldsController.php:221
1355
+ #@ formidable
1356
+ msgid "Basque"
1357
+ msgstr "Basque"
1358
+
1359
+ #: pro/classes/controllers/FrmProFieldsController.php:221
1360
+ #@ formidable
1361
+ msgid "Bosnian"
1362
+ msgstr "Bosnisch"
1363
+
1364
+ #: pro/classes/controllers/FrmProFieldsController.php:222
1365
+ #@ formidable
1366
+ msgid "Bulgarian"
1367
+ msgstr "Bulgaarse"
1368
+
1369
+ #: pro/classes/controllers/FrmProFieldsController.php:222
1370
+ #@ formidable
1371
+ msgid "Catalan"
1372
+ msgstr "Catalan"
1373
+
1374
+ #: pro/classes/controllers/FrmProFieldsController.php:223
1375
+ #@ formidable
1376
+ msgid "Chinese Hong Kong"
1377
+ msgstr "Chinees Hong Kong"
1378
+
1379
+ #: pro/classes/controllers/FrmProFieldsController.php:223
1380
+ #@ formidable
1381
+ msgid "Chinese Simplified"
1382
+ msgstr ""
1383
+
1384
+ #: pro/classes/controllers/FrmProFieldsController.php:224
1385
+ #@ formidable
1386
+ msgid "Chinese Traditional"
1387
+ msgstr ""
1388
+
1389
+ #: pro/classes/controllers/FrmProFieldsController.php:224
1390
+ #@ formidable
1391
+ msgid "Croatian"
1392
+ msgstr "Kroatisch"
1393
+
1394
+ #: pro/classes/controllers/FrmProFieldsController.php:225
1395
+ #@ formidable
1396
+ msgid "Czech"
1397
+ msgstr "Tsjechisch"
1398
+
1399
+ #: pro/classes/controllers/FrmProFieldsController.php:225
1400
+ #@ formidable
1401
+ msgid "Danish"
1402
+ msgstr "Deens"
1403
+
1404
+ #: classes/views/frm-settings/form.php:104
1405
+ #: pro/classes/controllers/FrmProFieldsController.php:226
1406
+ #@ formidable
1407
+ msgid "Dutch"
1408
+ msgstr "Nederlands"
1409
+
1410
+ #: pro/classes/controllers/FrmProFieldsController.php:226
1411
+ #@ formidable
1412
+ msgid "English/UK"
1413
+ msgstr "Engels / UK"
1414
+
1415
+ #: pro/classes/controllers/FrmProFieldsController.php:227
1416
+ #@ formidable
1417
+ msgid "Esperanto"
1418
+ msgstr "Esperanto"
1419
+
1420
+ #: pro/classes/controllers/FrmProFieldsController.php:227
1421
+ #@ formidable
1422
+ msgid "Estonian"
1423
+ msgstr "Estlands"
1424
+
1425
+ #: pro/classes/controllers/FrmProFieldsController.php:228
1426
+ #@ formidable
1427
+ msgid "Faroese"
1428
+ msgstr "Faeröer"
1429
+
1430
+ #: pro/classes/controllers/FrmProFieldsController.php:228
1431
+ #@ formidable
1432
+ msgid "Farsi/Persian"
1433
+ msgstr "Perzisch"
1434
+
1435
+ #: pro/classes/controllers/FrmProFieldsController.php:229
1436
+ #@ formidable
1437
+ msgid "Finnish"
1438
+ msgstr "Fins"
1439
+
1440
+ #: classes/views/frm-settings/form.php:104
1441
+ #: pro/classes/controllers/FrmProFieldsController.php:229
1442
+ #@ formidable
1443
+ msgid "French"
1444
+ msgstr "Frans"
1445
+
1446
+ #: pro/classes/controllers/FrmProFieldsController.php:230
1447
+ #@ formidable
1448
+ msgid "French/Swiss"
1449
+ msgstr "Frans / Zwitserse"
1450
+
1451
+ #: classes/views/frm-settings/form.php:104
1452
+ #: pro/classes/controllers/FrmProFieldsController.php:230
1453
+ #@ formidable
1454
+ msgid "German"
1455
+ msgstr "Duits"
1456
+
1457
+ #: pro/classes/controllers/FrmProFieldsController.php:231
1458
+ #@ formidable
1459
+ msgid "Greek"
1460
+ msgstr "Grieks"
1461
+
1462
+ #: pro/classes/controllers/FrmProFieldsController.php:231
1463
+ #@ formidable
1464
+ msgid "Hebrew"
1465
+ msgstr "Hebreeuws"
1466
+
1467
+ #: pro/classes/controllers/FrmProFieldsController.php:232
1468
+ #@ formidable
1469
+ msgid "Hungarian"
1470
+ msgstr "Hongaars"
1471
+
1472
+ #: pro/classes/controllers/FrmProFieldsController.php:232
1473
+ #@ formidable
1474
+ msgid "Icelandic"
1475
+ msgstr "IJslands"
1476
+
1477
+ #: pro/classes/controllers/FrmProFieldsController.php:233
1478
+ #@ formidable
1479
+ msgid "Italian"
1480
+ msgstr "Italiaans"
1481
+
1482
+ #: pro/classes/controllers/FrmProFieldsController.php:233
1483
+ #@ formidable
1484
+ msgid "Japanese"
1485
+ msgstr "Japans"
1486
+
1487
+ #: pro/classes/controllers/FrmProFieldsController.php:234
1488
+ #@ formidable
1489
+ msgid "Korean"
1490
+ msgstr "Koreaans"
1491
+
1492
+ #: pro/classes/controllers/FrmProFieldsController.php:234
1493
+ #@ formidable
1494
+ msgid "Latvian"
1495
+ msgstr "Lets"
1496
+
1497
+ #: pro/classes/controllers/FrmProFieldsController.php:235
1498
+ #@ formidable
1499
+ msgid "Lithuanian"
1500
+ msgstr "Litouws"
1501
+
1502
+ #: pro/classes/controllers/FrmProFieldsController.php:235
1503
+ #@ formidable
1504
+ msgid "Malaysian"
1505
+ msgstr "Maleisisch"
1506
+
1507
+ #: pro/classes/controllers/FrmProFieldsController.php:236
1508
+ #@ formidable
1509
+ msgid "Norwegian"
1510
+ msgstr "Noors"
1511
+
1512
+ #: pro/classes/controllers/FrmProFieldsController.php:236
1513
+ #@ formidable
1514
+ msgid "Polish"
1515
+ msgstr "Pools"
1516
+
1517
+ #: pro/classes/controllers/FrmProFieldsController.php:237
1518
+ #@ formidable
1519
+ msgid "Portuguese/Brazilian"
1520
+ msgstr "Portugees / Braziliaans"
1521
+
1522
+ #: pro/classes/controllers/FrmProFieldsController.php:237
1523
+ #@ formidable
1524
+ msgid "Romanian"
1525
+ msgstr "Roemeense"
1526
+
1527
+ #: classes/views/frm-settings/form.php:104
1528
+ #: pro/classes/controllers/FrmProFieldsController.php:238
1529
+ #@ formidable
1530
+ msgid "Russian"
1531
+ msgstr "Russisch"
1532
+
1533
+ #: pro/classes/controllers/FrmProFieldsController.php:238
1534
+ #: pro/classes/controllers/FrmProFieldsController.php:239
1535
+ #@ formidable
1536
+ msgid "Serbian"
1537
+ msgstr "Servisch"
1538
+
1539
+ #: pro/classes/controllers/FrmProFieldsController.php:239
1540
+ #@ formidable
1541
+ msgid "Slovak"
1542
+ msgstr "Slowaaks"
1543
+
1544
+ #: pro/classes/controllers/FrmProFieldsController.php:240
1545
+ #@ formidable
1546
+ msgid "Slovenian"
1547
+ msgstr "Sloveens"
1548
+
1549
+ #: classes/views/frm-settings/form.php:104
1550
+ #: pro/classes/controllers/FrmProFieldsController.php:240
1551
+ #@ formidable
1552
+ msgid "Spanish"
1553
+ msgstr "Spaans"
1554
+
1555
+ #: pro/classes/controllers/FrmProFieldsController.php:241
1556
+ #@ formidable
1557
+ msgid "Swedish"
1558
+ msgstr "Zweeds"
1559
+
1560
+ #: pro/classes/controllers/FrmProFieldsController.php:241
1561
+ #@ formidable
1562
+ msgid "Tamil"
1563
+ msgstr "Tamil"
1564
+
1565
+ #: pro/classes/controllers/FrmProFieldsController.php:242
1566
+ #@ formidable
1567
+ msgid "Thai"
1568
+ msgstr "Thai"
1569
+
1570
+ #: classes/views/frm-settings/form.php:104
1571
+ #: pro/classes/controllers/FrmProFieldsController.php:242
1572
+ #@ formidable
1573
+ msgid "Turkish"
1574
+ msgstr "Turks"
1575
+
1576
+ #: pro/classes/controllers/FrmProFieldsController.php:243
1577
+ #@ formidable
1578
+ msgid "Ukranian"
1579
+ msgstr "Oekraïens"
1580
+
1581
+ #: pro/classes/controllers/FrmProFieldsController.php:243
1582
+ #@ formidable
1583
+ msgid "Vietnamese"
1584
+ msgstr ""
1585
+
1586
+ #: pro/classes/controllers/FrmProFormsController.php:124
1587
+ #@ formidable
1588
+ msgid "Current Date"
1589
+ msgstr "Huidige datum"
1590
+
1591
+ #: pro/classes/controllers/FrmProFormsController.php:125
1592
+ #@ formidable
1593
+ msgid "Current Time"
1594
+ msgstr "huidige tijd"
1595
+
1596
+ #: pro/classes/controllers/FrmProFormsController.php:126
1597
+ #@ formidable
1598
+ msgid "User Email"
1599
+ msgstr "Gebruikers email"
1600
+
1601
+ #: pro/classes/controllers/FrmProFormsController.php:127
1602
+ #@ formidable
1603
+ msgid "User Login"
1604
+ msgstr "Gebruikers login"
1605
+
1606
+ #: pro/classes/controllers/FrmProFormsController.php:128
1607
+ #@ formidable
1608
+ msgid "User Display Name"
1609
+ msgstr "Gebruikers display naam"
1610
+
1611
+ #: pro/classes/controllers/FrmProFormsController.php:129
1612
+ #@ formidable
1613
+ msgid "User First Name"
1614
+ msgstr "Gebruiker voornaam"
1615
+
1616
+ #: pro/classes/controllers/FrmProFormsController.php:130
1617
+ #@ formidable
1618
+ msgid "User Last Name"
1619
+ msgstr "Gebruiker achternaam"
1620
+
1621
+ #: pro/classes/controllers/FrmProFormsController.php:131
1622
+ #@ formidable
1623
+ msgid "User Meta"
1624
+ msgstr ""
1625
+
1626
+ #: pro/classes/controllers/FrmProFormsController.php:132
1627
+ #: pro/classes/helpers/FrmProFieldsHelper.php:832
1628
+ #: pro/classes/views/frmpro-entries/import.php:93
1629
+ #@ formidable
1630
+ msgid "Post ID"
1631
+ msgstr "Bericht ID"
1632
+
1633
+ #: pro/classes/controllers/FrmProFormsController.php:135
1634
+ #@ formidable
1635
+ msgid "Client IP Address"
1636
+ msgstr ""
1637
+
1638
+ #: pro/classes/controllers/FrmProFormsController.php:136
1639
+ #@ formidable
1640
+ msgid "Auto Increment"
1641
+ msgstr ""
1642
+
1643
+ #: pro/classes/controllers/FrmProFormsController.php:137
1644
+ #@ formidable
1645
+ msgid "GET/POST variable"
1646
+ msgstr ""
1647
+
1648
+ #: classes/views/frm-forms/list.php:111
1649
+ #: pro/classes/controllers/FrmProFormsController.php:164
1650
+ #@ formidable
1651
+ msgid "Export Template"
1652
+ msgstr "Exporteer sjabloon"
1653
+
1654
+ #: pro/classes/controllers/FrmProStatisticsController.php:234
1655
+ #@ formidable
1656
+ msgid "Completed"
1657
+ msgstr "Afgemaakt"
1658
+
1659
+ #: pro/classes/controllers/FrmProStatisticsController.php:234
1660
+ #@ formidable
1661
+ msgid "Not Completed"
1662
+ msgstr "Nog niet afgemaakt"
1663
+
1664
+ #: pro/classes/helpers/FrmProAppHelper.php:176
1665
+ #@ formidable
1666
+ msgid "Bulk Actions"
1667
+ msgstr "Bulk Acties"
1668
+
1669
+ #: pro/classes/helpers/FrmProAppHelper.php:180
1670
+ #@ formidable
1671
+ msgid "Apply"
1672
+ msgstr ""
1673
+
1674
+ #: pro/classes/helpers/FrmProAppHelper.php:204
1675
+ #@ formidable
1676
+ msgid "All Fields"
1677
+ msgstr ""
1678
+
1679
+ #: pro/classes/helpers/FrmProAppHelper.php:211
1680
+ #@ formidable
1681
+ msgid "Search"
1682
+ msgstr "Zoeken"
1683
+
1684
+ #: pro/classes/helpers/FrmProAppHelper.php:213
1685
+ #@ formidable
1686
+ msgid "Reset"
1687
+ msgstr ""
1688
+
1689
+ #: pro/classes/helpers/FrmProFieldsHelper.php:369
1690
+ #@ formidable
1691
+ msgid "Draft"
1692
+ msgstr "Klad"
1693
+
1694
+ #: pro/classes/helpers/FrmProFieldsHelper.php:370
1695
+ #@ formidable
1696
+ msgid "Pending Review"
1697
+ msgstr ""
1698
+
1699
+ #: pro/classes/helpers/FrmProFieldsHelper.php:372
1700
+ #@ formidable
1701
+ msgid "Published"
1702
+ msgstr "Geplubiceerd"
1703
+
1704
+ #: pro/classes/helpers/FrmProFieldsHelper.php:373
1705
+ #@ formidable
1706
+ msgid "Scheduled"
1707
+ msgstr ""
1708
+
1709
+ #: pro/classes/helpers/FrmProFieldsHelper.php:600
1710
+ #@ formidable
1711
+ msgid "Edit Uploaded File"
1712
+ msgstr ""
1713
+
1714
+ #: pro/classes/helpers/FrmProFieldsHelper.php:828
1715
+ #@ formidable
1716
+ msgid "Select a value to insert into the box below"
1717
+ msgstr ""
1718
+
1719
+ #: pro/classes/helpers/FrmProFieldsHelper.php:830
1720
+ #@ formidable
1721
+ msgid "Entry ID"
1722
+ msgstr ""
1723
+
1724
+ #: pro/classes/helpers/FrmProFieldsHelper.php:833
1725
+ #@ formidable
1726
+ msgid "Entry Creation Date"
1727
+ msgstr ""
1728
+
1729
+ #: pro/classes/helpers/FrmProFieldsHelper.php:835
1730
+ #@ formidable
1731
+ msgid "Form Fields"
1732
+ msgstr "Formulier velden"
1733
+
1734
+ #: pro/classes/helpers/FrmProFieldsHelper.php:847
1735
+ #@ formidable
1736
+ msgid "Thumbnail"
1737
+ msgstr ""
1738
+
1739
+ #: pro/classes/helpers/FrmProFieldsHelper.php:848
1740
+ #@ formidable
1741
+ msgid "Medium"
1742
+ msgstr ""
1743
+
1744
+ #: pro/classes/helpers/FrmProFieldsHelper.php:849
1745
+ #@ formidable
1746
+ msgid "Large"
1747
+ msgstr ""
1748
+
1749
+ #: pro/classes/helpers/FrmProFieldsHelper.php:850
1750
+ #@ formidable
1751
+ msgid "Full Size"
1752
+ msgstr ""
1753
+
1754
+ #: pro/classes/helpers/FrmProFieldsHelper.php:870
1755
+ #@ formidable
1756
+ msgid "Helpers"
1757
+ msgstr ""
1758
+
1759
+ #: pro/classes/helpers/FrmProFieldsHelper.php:871
1760
+ #@ formidable
1761
+ msgid "Admin link to edit the entry"
1762
+ msgstr ""
1763
+
1764
+ #: pro/classes/helpers/FrmProFieldsHelper.php:873
1765
+ #@ formidable
1766
+ msgid "Link to view single page if showing dynamic entries"
1767
+ msgstr ""
1768
+
1769
+ #: pro/classes/helpers/FrmProFieldsHelper.php:877
1770
+ #@ formidable
1771
+ msgid "Add a rotating 'even' or 'odd' class"
1772
+ msgstr ""
1773
+
1774
+ #: pro/classes/helpers/FrmProFieldsHelper.php:881
1775
+ #@ formidable
1776
+ msgid "Site URL"
1777
+ msgstr ""
1778
+
1779
+ #: pro/classes/models/FrmProDisplay.php:179
1780
+ #@ formidable
1781
+ msgid "Limit must be a number"
1782
+ msgstr ""
1783
+
1784
+ #: pro/classes/models/FrmProEntryMeta.php:128
1785
+ #: pro/classes/models/FrmProEntryMeta.php:148
1786
+ #@ formidable
1787
+ msgid "must be unique"
1788
+ msgstr ""
1789
+
1790
+ #: pro/classes/models/FrmProField.php:43
1791
+ #@ formidable
1792
+ msgid "Phone"
1793
+ msgstr "Telefoon"
1794
+
1795
+ #: pro/classes/models/FrmProField.php:49
1796
+ #: pro/classes/models/FrmProForm.php:100
1797
+ #@ formidable
1798
+ msgid "User ID"
1799
+ msgstr ""
1800
+
1801
+ #: pro/classes/models/FrmProField.php:64
1802
+ #@ formidable
1803
+ msgid "Heading"
1804
+ msgstr ""
1805
+
1806
+ #: pro/classes/models/FrmProField.php:70
1807
+ #: pro/classes/views/displays/list.php:47
1808
+ #: pro/classes/views/displays/list.php:94
1809
+ #@ formidable
1810
+ msgid "Page"
1811
+ msgstr "Pagina"
1812
+
1813
+ #: pro/classes/models/FrmProForm.php:107
1814
+ #@ formidable
1815
+ msgid "Please insert a message for your auto responder."
1816
+ msgstr ""
1817
+
1818
+ #: pro/classes/models/FrmProForm.php:109
1819
+ #@ formidable
1820
+ msgid "That is not a valid reply-to email address for your auto responder."
1821
+ msgstr ""
1822
+
1823
+ #: pro/classes/models/FrmProSettings.php:104
1824
+ #@ formidable
1825
+ msgid "You have already submitted that form"
1826
+ msgstr ""
1827
+
1828
+ #: pro/classes/views/displays/edit.php:11
1829
+ #: pro/classes/views/displays/new.php:7
1830
+ #@ formidable
1831
+ msgid "Get Help with This Page"
1832
+ msgstr ""
1833
+
1834
+ #: pro/classes/views/displays/form.php:32
1835
+ #@ formidable
1836
+ msgid "Save to get ID"
1837
+ msgstr ""
1838
+
1839
+ #: pro/classes/views/settings/formroller.php:326
1840
+ #@ formidable
1841
+ msgid "Calendar"
1842
+ msgstr "Kalender"
1843
+
1844
+ #: pro/classes/views/displays/form.php:118
1845
+ #@ formidable
1846
+ msgid "Date Field"
1847
+ msgstr "Datum veld"
1848
+
1849
+ #: pro/classes/views/displays/form.php:120
1850
+ #: pro/classes/views/displays/form.php:210
1851
+ #: pro/classes/views/displays/where_row.php:6
1852
+ #@ formidable
1853
+ msgid "Entry creation date"
1854
+ msgstr "Datum aanmaken inzending"
1855
+
1856
+ #: pro/classes/views/displays/form.php:98
1857
+ #@ formidable
1858
+ msgid "Use Entries from Form"
1859
+ msgstr "gebruik ingevulde gegevens van formulier"
1860
+
1861
+ #: pro/classes/views/displays/form.php:102
1862
+ #@ formidable
1863
+ msgid "Select Entry"
1864
+ msgstr "Selecteer een inzending"
1865
+
1866
+ #: pro/classes/views/displays/form.php:102
1867
+ #@ formidable
1868
+ msgid "The first one depending on the Order specified below"
1869
+ msgstr ""
1870
+
1871
+ #: pro/classes/views/displays/form.php:159
1872
+ #@ formidable
1873
+ msgid "Before Content"
1874
+ msgstr "Voor de content"
1875
+
1876
+ #: pro/classes/views/displays/form.php:159
1877
+ #@ formidable
1878
+ msgid "This content will not be repeated. This would be a good place to put any HTML table tags."
1879
+ msgstr ""
1880
+
1881
+ #: pro/classes/views/displays/form.php:154
1882
+ #: pro/classes/views/displays/form.php:166
1883
+ #: pro/classes/views/frmpro-fields/options-form.php:97
1884
+ #: pro/classes/views/frmpro-fields/options-form.php:176
1885
+ #@ formidable
1886
+ msgid "Content"
1887
+ msgstr ""
1888
+
1889
+ #: pro/classes/views/displays/form.php:166
1890
+ #@ formidable
1891
+ msgid "The HTML for your page. If 'All Entries' is selected above, this content will be repeated for each entry. The field ID and Key work synonymously, although there are times one choice may be better. If you are panning to copy your custom display settings to other blogs, use the Key since they will be copied and the ids may differ from blog to blog."
1892
+ msgstr ""
1893
+
1894
+ #: pro/classes/views/displays/form.php:178
1895
+ #@ formidable
1896
+ msgid "After Content"
1897
+ msgstr "Na de content"
1898
+
1899
+ #: pro/classes/views/displays/form.php:178
1900
+ #@ formidable
1901
+ msgid "This content will not be repeated. This would be a good place to close any HTML tags from the Before Content field."
1902
+ msgstr ""
1903
+
1904
+ #: pro/classes/views/displays/form.php:185
1905
+ #@ formidable
1906
+ msgid "Dynamic Content"
1907
+ msgstr "Dynamische Content"
1908
+
1909
+ #: pro/classes/views/displays/form.php:185
1910
+ #, php-format
1911
+ #@ formidable
1912
+ msgid "The HTML for the entry on the dynamic page. This content will NOT be repeated, and will only show when the %1$s is clicked."
1913
+ msgstr ""
1914
+
1915
+ #: pro/classes/views/displays/form.php:12
1916
+ #@ formidable
1917
+ msgid "After page content"
1918
+ msgstr ""
1919
+
1920
+ #: pro/classes/views/displays/form.php:13
1921
+ #@ formidable
1922
+ msgid "Before page content"
1923
+ msgstr ""
1924
+
1925
+ #: pro/classes/views/displays/form.php:20
1926
+ #@ formidable
1927
+ msgid "If you would like the content to be inserted automatically, you must then select the page in which to insert it."
1928
+ msgstr ""
1929
+
1930
+ #: pro/classes/views/displays/form.php:127
1931
+ #@ formidable
1932
+ msgid "Detail Link"
1933
+ msgstr ""
1934
+
1935
+ #: pro/classes/views/displays/form.php:127
1936
+ #, php-format
1937
+ #@ formidable
1938
+ msgid "Example: If parameter name is 'contact', the url would be like %1$s/selected-page?contact=2. If this entry is linked to a post, the post permalink will be used instead."
1939
+ msgstr ""
1940
+
1941
+ #: pro/classes/views/displays/form.php:135
1942
+ #, php-format
1943
+ #@ formidable
1944
+ msgid "Select the value that will be added onto the page URL. This will create a pretty URL like %1$s/selected-page/entry-key"
1945
+ msgstr ""
1946
+
1947
+ #: pro/classes/views/displays/form.php:137
1948
+ #@ formidable
1949
+ msgid "Parameter Name"
1950
+ msgstr ""
1951
+
1952
+ #: pro/classes/views/displays/form.php:140
1953
+ #@ formidable
1954
+ msgid "Parameter Value"
1955
+ msgstr ""
1956
+
1957
+ #: pro/classes/views/displays/form.php:209
1958
+ #@ formidable
1959
+ msgid "Random"
1960
+ msgstr ""
1961
+
1962
+ #: pro/classes/views/displays/form.php:216
1963
+ #@ formidable
1964
+ msgid "Ascending"
1965
+ msgstr ""
1966
+
1967
+ #: pro/classes/views/displays/form.php:217
1968
+ #@ formidable
1969
+ msgid "Descending"
1970
+ msgstr ""
1971
+
1972
+ #: pro/classes/views/displays/form.php:224
1973
+ #@ formidable
1974
+ msgid "Narrow down which entries will be used."
1975
+ msgstr ""
1976
+
1977
+ #: pro/classes/views/displays/form.php:244
1978
+ #@ formidable
1979
+ msgid "If you don’t want all your entries displayed, you can insert the number limit here. Leave blank if you’d like all entries shown."
1980
+ msgstr ""
1981
+
1982
+ #: pro/classes/views/displays/form.php:253
1983
+ #@ formidable
1984
+ msgid "The number of entries to show per page. Leave blank to not use pagination."
1985
+ msgstr ""
1986
+
1987
+ #: classes/widgets/FrmShowForm.php:46
1988
+ #: pro/classes/views/displays/list.php:45
1989
+ #: pro/classes/views/displays/list.php:92
1990
+ #: pro/classes/widgets/FrmPollResults.php:40
1991
+ #@ formidable
1992
+ msgid "Form"
1993
+ msgstr "Formulier"
1994
+
1995
+ #: pro/classes/views/displays/list.php:54
1996
+ #@ formidable
1997
+ msgid "No Records Found"
1998
+ msgstr "geen gegevens gevonden"
1999
+
2000
+ #: pro/classes/views/displays/list.php:70
2001
+ #, php-format
2002
+ #@ formidable
2003
+ msgid "Are you sure you want to delete your %1$s display data?"
2004
+ msgstr ""
2005
+
2006
+ #: pro/classes/views/displays/tags.php:5
2007
+ #: pro/classes/views/displays/tags.php:14
2008
+ #: pro/classes/views/displays/tags.php:24
2009
+ #@ formidable
2010
+ msgid "Add"
2011
+ msgstr "toevoegen"
2012
+
2013
+ #: pro/classes/views/displays/tags.php:6
2014
+ #: pro/classes/views/displays/tags.php:15
2015
+ #: pro/classes/views/displays/tags.php:25
2016
+ #: pro/classes/views/settings/form.php:37
2017
+ #@ formidable
2018
+ msgid "Example"
2019
+ msgstr "Voorbeeld"
2020
+
2021
+ #: pro/classes/views/displays/tags.php:13
2022
+ #@ formidable
2023
+ msgid "Linked Entry id: id, Entry key: key, Linked entry created at: created_at, a field from the entry: use the id or key from the field in you other form."
2024
+ msgstr ""
2025
+
2026
+ #: pro/classes/views/displays/tags.php:14
2027
+ #@ formidable
2028
+ msgid "Field ID"
2029
+ msgstr ""
2030
+
2031
+ #: pro/classes/views/displays/tags.php:26
2032
+ #@ formidable
2033
+ msgid "Leave blank instead of defaulting to User Login"
2034
+ msgstr ""
2035
+
2036
+ #: pro/classes/views/displays/tags.php:39
2037
+ #@ formidable
2038
+ msgid "Replaces spaces with dashes and lowercases all. Use if adding an HTML class or ID"
2039
+ msgstr ""
2040
+
2041
+ #: pro/classes/views/displays/tags.php:40
2042
+ #@ formidable
2043
+ msgid "Replaces all HTML entities with a URL safe string."
2044
+ msgstr ""
2045
+
2046
+ #: pro/classes/views/displays/tags.php:41
2047
+ #@ formidable
2048
+ msgid "Truncate text with a link to view more. If using Both (dynamic), the link goes to the detail page. Otherwise, it will show in-place."
2049
+ msgstr ""
2050
+
2051
+ #: pro/classes/views/displays/tags.php:42
2052
+ #@ formidable
2053
+ msgid "Specify the more link text."
2054
+ msgstr ""
2055
+
2056
+ #: pro/classes/views/displays/where_options.php:19
2057
+ #@ formidable
2058
+ msgid "Date options: 'NOW' or a date in yyyy-mm-dd format."
2059
+ msgstr ""
2060
+
2061
+ #: pro/classes/views/displays/where_row.php:9
2062
+ #@ formidable
2063
+ msgid "is"
2064
+ msgstr ""
2065
+
2066
+ #: pro/classes/views/displays/where_row.php:11
2067
+ #@ formidable
2068
+ msgid "equal to"
2069
+ msgstr ""
2070
+
2071
+ #: pro/classes/views/displays/where_row.php:12
2072
+ #@ formidable
2073
+ msgid "NOT equal to"
2074
+ msgstr ""
2075
+
2076
+ #: pro/classes/views/displays/where_row.php:13
2077
+ #@ formidable
2078
+ msgid "greater than"
2079
+ msgstr ""
2080
+
2081
+ #: pro/classes/views/displays/where_row.php:14
2082
+ #@ formidable
2083
+ msgid "less than"
2084
+ msgstr ""
2085
+
2086
+ #: pro/classes/views/displays/where_row.php:15
2087
+ #@ formidable
2088
+ msgid "like"
2089
+ msgstr ""
2090
+
2091
+ #: pro/classes/views/frmpro-entries/edit.php:3
2092
+ #@ formidable
2093
+ msgid "Edit Entry"
2094
+ msgstr ""
2095
+
2096
+ #: pro/classes/controllers/FrmProEntriesController.php:1139
2097
+ #: pro/classes/views/frmpro-entries/list.php:73
2098
+ #: pro/classes/views/frmpro-entries/show.php:25
2099
+ #@ formidable
2100
+ msgid "Are you sure you want to delete that entry?"
2101
+ msgstr ""
2102
+
2103
+ #: pro/classes/views/frmpro-entries/list.php:97
2104
+ #@ formidable
2105
+ msgid "Download CSV for"
2106
+ msgstr ""
2107
+
2108
+ #: pro/classes/views/frmpro-entries/new-selection.php:8
2109
+ #@ formidable
2110
+ msgid "Select Form for New Entry"
2111
+ msgstr ""
2112
+
2113
+ #: pro/classes/views/frmpro-entries/show.php:3
2114
+ #@ formidable
2115
+ msgid "View Entry"
2116
+ msgstr ""
2117
+
2118
+ #: pro/classes/views/frmpro-fields/dynamic-options.php:18
2119
+ #@ formidable
2120
+ msgid "Limit selection choices to those created by the user filling out this form"
2121
+ msgstr ""
2122
+
2123
+ #: pro/classes/views/frmpro-fields/options-form.php:2
2124
+ #@ formidable
2125
+ msgid "Make this section collapsable"
2126
+ msgstr ""
2127
+
2128
+ #: pro/classes/views/frmpro-fields/options-form.php:14
2129
+ #@ formidable
2130
+ msgid "Display as"
2131
+ msgstr ""
2132
+
2133
+ #: pro/classes/views/frmpro-fields/options-form.php:16
2134
+ #@ formidable
2135
+ msgid "Just show it"
2136
+ msgstr ""
2137
+
2138
+ #: pro/classes/views/frmpro-fields/options-form.php:25
2139
+ #@ formidable
2140
+ msgid "Calendar Localization"
2141
+ msgstr ""
2142
+
2143
+ #: pro/classes/views/frmpro-fields/options-form.php:35
2144
+ #@ formidable
2145
+ msgid "Start Year"
2146
+ msgstr ""
2147
+
2148
+ #: pro/classes/views/frmpro-fields/options-form.php:38
2149
+ #@ formidable
2150
+ msgid "End Year"
2151
+ msgstr ""
2152
+
2153
+ #: pro/classes/views/frmpro-fields/options-form.php:43
2154
+ #@ formidable
2155
+ msgid "Clock Settings"
2156
+ msgstr ""
2157
+
2158
+ #: pro/classes/views/frmpro-fields/options-form.php:48
2159
+ #@ formidable
2160
+ msgid "hour clock"
2161
+ msgstr ""
2162
+
2163
+ #: pro/classes/views/frmpro-fields/options-form.php:51
2164
+ #@ formidable
2165
+ msgid "minute step"
2166
+ msgstr ""
2167
+
2168
+ #: pro/classes/views/frmpro-fields/options-form.php:66
2169
+ #@ formidable
2170
+ msgid "automatic width"
2171
+ msgstr ""
2172
+
2173
+ #: pro/classes/views/frmpro-fields/options-form.php:70
2174
+ #@ formidable
2175
+ msgid "Email Attachment"
2176
+ msgstr ""
2177
+
2178
+ #: pro/classes/views/frmpro-fields/options-form.php:71
2179
+ #@ formidable
2180
+ msgid "attach this file to the email notification"
2181
+ msgstr ""
2182
+
2183
+ #: pro/classes/views/frmpro-fields/options-form.php:74
2184
+ #@ formidable
2185
+ msgid "Number Range"
2186
+ msgstr ""
2187
+
2188
+ #: pro/classes/views/frmpro-fields/options-form.php:74
2189
+ #@ formidable
2190
+ msgid "Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field."
2191
+ msgstr ""
2192
+
2193
+ #: pro/classes/views/frmpro-fields/options-form.php:75
2194
+ #@ formidable
2195
+ msgid "minimum"
2196
+ msgstr ""
2197
+
2198
+ #: pro/classes/views/frmpro-fields/options-form.php:76
2199
+ #@ formidable
2200
+ msgid "maximum"
2201
+ msgstr ""
2202
+
2203
+ #: pro/classes/views/frmpro-fields/options-form.php:77
2204
+ #@ formidable
2205
+ msgid "step"
2206
+ msgstr ""
2207
+
2208
+ #: pro/classes/views/frmpro-fields/options-form.php:80
2209
+ #@ formidable
2210
+ msgid "Range"
2211
+ msgstr ""
2212
+
2213
+ #: pro/classes/views/frmpro-fields/options-form.php:87
2214
+ #@ formidable
2215
+ msgid "to"
2216
+ msgstr ""
2217
+
2218
+ #: pro/classes/views/frmpro-fields/options-form.php:107
2219
+ #: pro/classes/views/frmpro-fields/options-form.php:115
2220
+ #@ formidable
2221
+ msgid "Field Type"
2222
+ msgstr ""
2223
+
2224
+ #: pro/classes/views/frmpro-fields/options-form.php:145
2225
+ #@ formidable
2226
+ msgid "Hide this field unless the value of"
2227
+ msgstr ""
2228
+
2229
+ #: pro/classes/views/displays/where_row.php:5
2230
+ #: pro/classes/views/frmpro-fields/options-form.php:147
2231
+ #: pro/classes/views/frmpro-forms/_comment_meta_row.php:8
2232
+ #: pro/classes/views/frmpro-forms/_custom_field_row.php:8
2233
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:15
2234
+ #: pro/classes/views/frmpro-forms/comment_options.php:25
2235
+ #: pro/classes/views/frmpro-forms/post_options.php:40
2236
+ #@ formidable
2237
+ msgid "Select Field"
2238
+ msgstr ""
2239
+
2240
+ #: pro/classes/views/frmpro-fields/options-form.php:153
2241
+ #@ formidable
2242
+ msgid "is equal to"
2243
+ msgstr ""
2244
+
2245
+ #: pro/classes/views/frmpro-fields/options-form.php:169
2246
+ #@ formidable
2247
+ msgid "Post field"
2248
+ msgstr ""
2249
+
2250
+ #: pro/classes/views/frmpro-fields/options-form.php:169
2251
+ #@ formidable
2252
+ msgid "Create a post from each form submission by selecting which part of the post this field will create. 'Custom field' is the only post field type that should be used multiple times."
2253
+ msgstr ""
2254
+
2255
+ #: pro/classes/views/frmpro-fields/options-form.php:219
2256
+ #@ formidable
2257
+ msgid "The field key can be used as an alternative to the field ID in many cases."
2258
+ msgstr ""
2259
+
2260
+ #: pro/classes/views/frmpro-fields/show.php:21
2261
+ #@ formidable
2262
+ msgid "These buttons are for illustrative purposes only. They will be functional in your form."
2263
+ msgstr ""
2264
+
2265
+ #: pro/classes/views/frmpro-forms/add_form_options.php:1
2266
+ #@ formidable
2267
+ msgid "Use Content from Page"
2268
+ msgstr ""
2269
+
2270
+ #: pro/classes/views/frmpro-forms/add_form_options.php:7
2271
+ #@ formidable
2272
+ msgid "Redirect to"
2273
+ msgstr ""
2274
+
2275
+ #: pro/classes/views/frmpro-forms/add_form_options.php:12
2276
+ #@ formidable
2277
+ msgid "Submit this Form with AJAX"
2278
+ msgstr ""
2279
+
2280
+ #: pro/classes/views/frmpro-forms/add_form_options.php:28
2281
+ #@ formidable
2282
+ msgid "Only"
2283
+ msgstr "Alleen"
2284
+
2285
+ #: pro/classes/views/frmpro-forms/add_form_options.php:36
2286
+ #@ formidable
2287
+ msgid "Can See and Submit this Form"
2288
+ msgstr "kunnen dit formulier zien en verzenden"
2289
+
2290
+ #: pro/classes/views/frmpro-forms/add_form_options.php:38
2291
+ #@ formidable
2292
+ msgid "Allow"
2293
+ msgstr "Sta alleen"
2294
+
2295
+ #: pro/classes/views/frmpro-forms/add_form_options.php:46
2296
+ #@ formidable
2297
+ msgid "to Edit Their Own Previous Responses"
2298
+ msgstr "toe om hun eigen eerdere inzendingen te bewerken"
2299
+
2300
+ #: pro/classes/views/frmpro-forms/add_form_options.php:49
2301
+ #@ formidable
2302
+ msgid "Also Allow"
2303
+ msgstr "sta"
2304
+
2305
+ #: pro/classes/views/frmpro-forms/add_form_options.php:57
2306
+ #@ formidable
2307
+ msgid "to Edit Responses Submitted by Anyone"
2308
+ msgstr "ook toe inzendingen van anderen ( alle) te bewerken"
2309
+
2310
+ #: pro/classes/views/frmpro-forms/add_form_options.php:61
2311
+ #@ formidable
2312
+ msgid "Update Submit Button Text"
2313
+ msgstr "Update tekst verzendknop"
2314
+
2315
+ #: pro/classes/views/frmpro-forms/add_form_options.php:66
2316
+ #@ formidable
2317
+ msgid "Update Confirmation Message"
2318
+ msgstr "Update bevestigingsbericht"
2319
+
2320
+ #: pro/classes/views/frmpro-forms/add_form_options.php:70
2321
+ #@ formidable
2322
+ msgid "Allow Only One Entry for Each"
2323
+ msgstr "Sta slechts één entry toe voor elke"
2324
+
2325
+ #: pro/classes/views/frmpro-forms/add_form_options.php:73
2326
+ #@ formidable
2327
+ msgid "Logged-in User"
2328
+ msgstr "ingelogde gebruiker"
2329
+
2330
+ #: pro/classes/views/frmpro-forms/add_form_options.php:75
2331
+ #@ formidable
2332
+ msgid "Saved Cookie"
2333
+ msgstr ""
2334
+
2335
+ #: pro/classes/views/frmpro-forms/add_form_options.php:92
2336
+ #@ formidable
2337
+ msgid "Copy this form to other blogs when Formidable Pro is activated"
2338
+ msgstr ""
2339
+
2340
+ #: pro/classes/views/frmpro-forms/instructions.php:4
2341
+ #@ formidable
2342
+ msgid "Use dynamic default values by entering the shortcodes below as the default text."
2343
+ msgstr ""
2344
+
2345
+ #: pro/classes/views/frmpro-forms/instructions.php:14
2346
+ #@ formidable
2347
+ msgid "A variable from the URL or value posted from previous page."
2348
+ msgstr ""
2349
+
2350
+ #: pro/classes/views/frmpro-forms/notifications.php:3
2351
+ #@ formidable
2352
+ msgid "and/or"
2353
+ msgstr "en/of"
2354
+
2355
+ #: pro/classes/views/frmpro-forms/notifications.php:3
2356
+ #@ formidable
2357
+ msgid "Select a user id, hidden, or email field to send a notification."
2358
+ msgstr ""
2359
+
2360
+ #: pro/classes/views/frmpro-forms/notifications.php:29
2361
+ #@ formidable
2362
+ msgid "Usually the name and email of the person filling out the form. Select from Text, Email, User ID, or hidden fields for the name. Select from Email, User ID, and hidden fields for the email. Defaults to your site name and admin email found on the WordPress General Settings page."
2363
+ msgstr ""
2364
+
2365
+ #: pro/classes/views/frmpro-forms/notifications.php:72
2366
+ #: pro/classes/views/frmpro-forms/notifications.php:130
2367
+ #@ formidable
2368
+ msgid "Email Format"
2369
+ msgstr ""
2370
+
2371
+ #: pro/classes/views/frmpro-forms/notifications.php:73
2372
+ #: pro/classes/views/frmpro-forms/notifications.php:131
2373
+ #@ formidable
2374
+ msgid "Send Plain Text"
2375
+ msgstr ""
2376
+
2377
+ #: pro/classes/views/frmpro-forms/notifications.php:90
2378
+ #@ formidable
2379
+ msgid "Append IP Address, Browser, and Referring URL to message"
2380
+ msgstr ""
2381
+
2382
+ #: pro/classes/views/frmpro-forms/notifications.php:94
2383
+ #@ formidable
2384
+ msgid "Auto Responder"
2385
+ msgstr ""
2386
+
2387
+ #: pro/classes/views/frmpro-forms/notifications.php:95
2388
+ #@ formidable
2389
+ msgid "Send an automatic response to users submitting the form"
2390
+ msgstr ""
2391
+
2392
+ #: pro/classes/views/frmpro-forms/notifications.php:99
2393
+ #@ formidable
2394
+ msgid "Email to"
2395
+ msgstr ""
2396
+
2397
+ #: pro/classes/views/frmpro-forms/notifications.php:99
2398
+ #@ formidable
2399
+ msgid "Select a user id, hidden, or email field to send the autoresponse."
2400
+ msgstr ""
2401
+
2402
+ #: pro/classes/views/frmpro-forms/notifications.php:122
2403
+ #@ formidable
2404
+ msgid "Reply to"
2405
+ msgstr ""
2406
+
2407
+ #: pro/classes/views/settings/form.php:4
2408
+ #@ formidable
2409
+ msgid "Previously Submitted Message"
2410
+ msgstr ""
2411
+
2412
+ #: pro/classes/views/settings/form.php:4
2413
+ #@ formidable
2414
+ msgid "The message seen when a user attempts to submit a form for a second time if submissions are limited."
2415
+ msgstr ""
2416
+
2417
+ #: pro/classes/views/settings/form.php:13
2418
+ #@ formidable
2419
+ msgid "Include accordion javascript"
2420
+ msgstr ""
2421
+
2422
+ #: pro/classes/views/settings/form.php:13
2423
+ #@ formidable
2424
+ msgid "If you have manually created an accordion form, be sure to include the javascript for it."
2425
+ msgstr ""
2426
+
2427
+ #: pro/classes/views/settings/form.php:18
2428
+ #@ formidable
2429
+ msgid "Keys"
2430
+ msgstr ""
2431
+
2432
+ #: pro/classes/views/settings/form.php:26
2433
+ #@ formidable
2434
+ msgid "Path to Extra Templates"
2435
+ msgstr ""
2436
+
2437
+ #: pro/classes/views/settings/form.php:26
2438
+ #, php-format
2439
+ #@ formidable
2440
+ msgid "If you would like to use any extra templates that are not included in Formidable, define the absolute path here. For example, the absolute path to the Formidable template folder is %1$s."
2441
+ msgstr ""
2442
+
2443
+ #: pro/classes/views/settings/form.php:33
2444
+ #@ formidable
2445
+ msgid "Update Imported Templates Now"
2446
+ msgstr ""
2447
+
2448
+ #: pro/classes/views/settings/form.php:42
2449
+ #@ formidable
2450
+ msgid "Date Format"
2451
+ msgstr ""
2452
+
2453
+ #: pro/classes/views/settings/form.php:42
2454
+ #@ formidable
2455
+ msgid "Change the format of the date used in the calendar."
2456
+ msgstr ""
2457
+
2458
+ #: pro/classes/views/settings/form.php:69
2459
+ #@ formidable
2460
+ msgid "Pretty Permalinks"
2461
+ msgstr ""
2462
+
2463
+ #: pro/classes/views/settings/form.php:72
2464
+ #@ formidable
2465
+ msgid "Use pretty permalinks for entry detail links"
2466
+ msgstr ""
2467
+
2468
+ #: pro/classes/views/settings/formroller.php:22
2469
+ #: pro/classes/views/settings/formroller.php:200
2470
+ #: pro/classes/views/settings/formroller.php:232
2471
+ #: pro/classes/views/settings/formroller.php:256
2472
+ #: pro/classes/views/settings/formroller.php:402
2473
+ #: pro/classes/views/settings/formroller.php:440
2474
+ #: pro/classes/views/settings/formroller.php:483
2475
+ #@ formidable
2476
+ msgid "Border"
2477
+ msgstr ""
2478
+
2479
+ #: pro/classes/views/settings/formroller.php:27
2480
+ #: pro/classes/views/settings/formroller.php:50
2481
+ #: pro/classes/views/settings/formroller.php:100
2482
+ #: pro/classes/views/settings/formroller.php:305
2483
+ #@ formidable
2484
+ msgid "Color"
2485
+ msgstr ""
2486
+
2487
+ #: pro/classes/views/settings/formroller.php:32
2488
+ #: pro/classes/views/settings/formroller.php:170
2489
+ #: pro/classes/views/settings/formroller.php:419
2490
+ #@ formidable
2491
+ msgid "Padding"
2492
+ msgstr ""
2493
+
2494
+ #: pro/classes/views/settings/formroller.php:111
2495
+ #: pro/classes/views/settings/formroller.php:208
2496
+ #: pro/classes/views/settings/formroller.php:264
2497
+ #@ formidable
2498
+ msgid "Style"
2499
+ msgstr ""
2500
+
2501
+ #: pro/classes/views/settings/formroller.php:210
2502
+ #: pro/classes/views/settings/formroller.php:266
2503
+ #@ formidable
2504
+ msgid "solid"
2505
+ msgstr ""
2506
+
2507
+ #: pro/classes/views/settings/formroller.php:211
2508
+ #: pro/classes/views/settings/formroller.php:267
2509
+ #@ formidable
2510
+ msgid "dotted"
2511
+ msgstr ""
2512
+
2513
+ #: pro/classes/views/settings/formroller.php:212
2514
+ #: pro/classes/views/settings/formroller.php:268
2515
+ #@ formidable
2516
+ msgid "dashed"
2517
+ msgstr ""
2518
+
2519
+ #: pro/classes/views/settings/formroller.php:213
2520
+ #: pro/classes/views/settings/formroller.php:269
2521
+ #@ formidable
2522
+ msgid "double"
2523
+ msgstr ""
2524
+
2525
+ #: pro/classes/views/settings/formroller.php:204
2526
+ #: pro/classes/views/settings/formroller.php:260
2527
+ #: pro/classes/views/settings/formroller.php:406
2528
+ #@ formidable
2529
+ msgid "Thickness"
2530
+ msgstr ""
2531
+
2532
+ #: pro/classes/views/settings/formroller.php:351
2533
+ #@ formidable
2534
+ msgid "Disable submit button styling"
2535
+ msgstr ""
2536
+
2537
+ #: pro/classes/views/settings/formroller.php:353
2538
+ #@ formidable
2539
+ msgid "Note: If disabled, you may not see the change take effect until you make 2 more styling changes or click \"Update Options\"."
2540
+ msgstr ""
2541
+
2542
+ #: pro/classes/views/settings/formroller.php:525
2543
+ #@ formidable
2544
+ msgid "Templates Updated"
2545
+ msgstr ""
2546
+
2547
+ #: pro/classes/widgets/FrmListEntries.php:6
2548
+ #@ formidable
2549
+ msgid "Display a list of Formidable entries"
2550
+ msgstr ""
2551
+
2552
+ #: pro/classes/widgets/FrmListEntries.php:7
2553
+ #@ formidable
2554
+ msgid "Formidable Entries List"
2555
+ msgstr ""
2556
+
2557
+ #: classes/widgets/FrmShowForm.php:43
2558
+ #: pro/classes/views/frmpro-fields/options-form.php:178
2559
+ #: pro/classes/widgets/FrmListEntries.php:133
2560
+ #: pro/classes/widgets/FrmPollResults.php:34
2561
+ #@ formidable
2562
+ msgid "Title"
2563
+ msgstr ""
2564
+
2565
+ #: pro/classes/widgets/FrmListEntries.php:136
2566
+ #@ formidable
2567
+ msgid "Use Settings from Display"
2568
+ msgstr ""
2569
+
2570
+ #: pro/classes/widgets/FrmListEntries.php:144
2571
+ #@ formidable
2572
+ msgid "Only custom displays will show here if they are showing \"Both (Dynamic)\" data."
2573
+ msgstr ""
2574
+
2575
+ #: pro/classes/widgets/FrmListEntries.php:146
2576
+ #@ formidable
2577
+ msgid "Page if not specified in display settings"
2578
+ msgstr ""
2579
+
2580
+ #: pro/classes/widgets/FrmListEntries.php:155
2581
+ #@ formidable
2582
+ msgid "Title Field"
2583
+ msgstr ""
2584
+
2585
+ #: pro/classes/widgets/FrmListEntries.php:169
2586
+ #@ formidable
2587
+ msgid "List Entries by Category"
2588
+ msgstr ""
2589
+
2590
+ #: pro/classes/widgets/FrmListEntries.php:172
2591
+ #@ formidable
2592
+ msgid "Category Field"
2593
+ msgstr ""
2594
+
2595
+ #: pro/classes/widgets/FrmListEntries.php:187
2596
+ #@ formidable
2597
+ msgid "Show Entry Counts"
2598
+ msgstr ""
2599
+
2600
+ #: pro/classes/widgets/FrmListEntries.php:190
2601
+ #@ formidable
2602
+ msgid "Show Only Category Name"
2603
+ msgstr ""
2604
+
2605
+ #: pro/classes/widgets/FrmListEntries.php:193
2606
+ #@ formidable
2607
+ msgid "Show Entries Beneath Categories"
2608
+ msgstr ""
2609
+
2610
+ #: pro/classes/widgets/FrmListEntries.php:196
2611
+ #@ formidable
2612
+ msgid "Entry Limit (leave blank to list all)"
2613
+ msgstr ""
2614
+
2615
+ #: pro/classes/widgets/FrmPollResults.php:6
2616
+ #@ formidable
2617
+ msgid "Display a Formidable Form with the poll results after submission"
2618
+ msgstr ""
2619
+
2620
+ #: pro/classes/widgets/FrmPollResults.php:7
2621
+ #@ formidable
2622
+ msgid "Formidable Poll & Results"
2623
+ msgstr ""
2624
+
2625
+ #: classes/widgets/FrmShowForm.php:51
2626
+ #: pro/classes/widgets/FrmPollResults.php:38
2627
+ #@ formidable
2628
+ msgid "Show Description"
2629
+ msgstr ""
2630
+
2631
+ #: classes/widgets/FrmShowForm.php:6
2632
+ #@ formidable
2633
+ msgid "Display a Formidable Form"
2634
+ msgstr ""
2635
+
2636
+ #: classes/widgets/FrmShowForm.php:7
2637
+ #@ formidable
2638
+ msgid "Formidable Form"
2639
+ msgstr ""
2640
+
2641
+ #: classes/widgets/FrmShowForm.php:54
2642
+ #@ formidable
2643
+ msgid "Fit Select Boxes into SideBar"
2644
+ msgstr ""
2645
+
2646
+ #: pro/classes/helpers/FrmProEntriesHelper.php:79
2647
+ #@ formidable
2648
+ msgid "Entries from:"
2649
+ msgstr ""
2650
+
2651
+ #: classes/helpers/FrmFieldsHelper.php:265
2652
+ #: classes/helpers/FrmFieldsHelper.php:271
2653
+ #@ formidable
2654
+ msgid "not"
2655
+ msgstr ""
2656
+
2657
+ #: classes/views/frm-forms/insert_form_popup.php:35
2658
+ #@ formidable
2659
+ msgid "Select a form to insert"
2660
+ msgstr ""
2661
+
2662
+ #: classes/views/frm-forms/insert_form_popup.php:58
2663
+ #@ formidable
2664
+ msgid "Filter shortcodes within the custom display content"
2665
+ msgstr ""
2666
+
2667
+ #: classes/views/frm-forms/insert_form_popup.php:59
2668
+ #@ formidable
2669
+ msgid "Note: In some cases, this option can create an infinite loop"
2670
+ msgstr ""
2671
+
2672
+ #: classes/views/frm-forms/insert_form_popup.php:65
2673
+ #@ formidable
2674
+ msgid "Insert a search box"
2675
+ msgstr ""
2676
+
2677
+ #: classes/views/frm-forms/list.php:111
2678
+ #: pro/classes/views/shared/import_form.php:37
2679
+ #@ formidable
2680
+ msgid "Export"
2681
+ msgstr ""
2682
+
2683
+ #: pro/classes/views/frmpro-forms/notifications.php:29
2684
+ #@ formidable
2685
+ msgid "From/Reply to"
2686
+ msgstr ""
2687
+
2688
+ #: classes/views/frm-settings/form.php:16
2689
+ #: pro/classes/views/settings/formroller.php:9
2690
+ #@ formidable
2691
+ msgid "General"
2692
+ msgstr ""
2693
+
2694
+ #: pro/classes/views/settings/formroller.php:13
2695
+ #: pro/classes/views/settings/formroller.php:75
2696
+ #: pro/classes/views/settings/formroller.php:123
2697
+ #@ formidable
2698
+ msgid "Align"
2699
+ msgstr "Uitlijnen"
2700
+
2701
+ #: pro/classes/views/settings/formroller.php:15
2702
+ #: pro/classes/views/settings/formroller.php:77
2703
+ #: pro/classes/views/settings/formroller.php:125
2704
+ #@ formidable
2705
+ msgid "left"
2706
+ msgstr "Links"
2707
+
2708
+ #: pro/classes/views/settings/formroller.php:16
2709
+ #: pro/classes/views/settings/formroller.php:78
2710
+ #: pro/classes/views/settings/formroller.php:126
2711
+ #@ formidable
2712
+ msgid "right"
2713
+ msgstr "Rechts"
2714
+
2715
+ #: pro/classes/views/settings/formroller.php:17
2716
+ #@ formidable
2717
+ msgid "center"
2718
+ msgstr "Midden"
2719
+
2720
+ #: pro/classes/views/settings/formroller.php:42
2721
+ #@ formidable
2722
+ msgid "Label Settings"
2723
+ msgstr ""
2724
+
2725
+ #: pro/classes/views/settings/formroller.php:46
2726
+ #: pro/classes/views/settings/formroller.php:96
2727
+ #: pro/classes/views/settings/formroller.php:301
2728
+ #@ formidable
2729
+ msgid "Family"
2730
+ msgstr ""
2731
+
2732
+ #: pro/classes/views/settings/formroller.php:54
2733
+ #: pro/classes/views/settings/formroller.php:104
2734
+ #: pro/classes/views/settings/formroller.php:309
2735
+ #: pro/classes/views/settings/formroller.php:356
2736
+ #@ formidable
2737
+ msgid "Weight"
2738
+ msgstr ""
2739
+
2740
+ #: pro/classes/views/settings/formroller.php:61
2741
+ #: pro/classes/views/settings/formroller.php:118
2742
+ #: pro/classes/views/settings/formroller.php:155
2743
+ #: pro/classes/views/settings/formroller.php:316
2744
+ #: pro/classes/views/settings/formroller.php:369
2745
+ #: pro/classes/views/settings/formroller.php:462
2746
+ #: pro/classes/views/settings/formroller.php:491
2747
+ #@ formidable
2748
+ msgid "Size"
2749
+ msgstr ""
2750
+
2751
+ #: pro/classes/views/settings/formroller.php:66
2752
+ #@ formidable
2753
+ msgid "Position"
2754
+ msgstr ""
2755
+
2756
+ #: pro/classes/views/settings/formroller.php:83
2757
+ #: pro/classes/views/settings/formroller.php:160
2758
+ #: pro/classes/views/settings/formroller.php:374
2759
+ #@ formidable
2760
+ msgid "Width"
2761
+ msgstr ""
2762
+
2763
+ #: pro/classes/views/settings/formroller.php:106
2764
+ #: pro/classes/views/settings/formroller.php:113
2765
+ #: pro/classes/views/settings/formroller.php:311
2766
+ #: pro/classes/views/settings/formroller.php:358
2767
+ #@ formidable
2768
+ msgid "normal"
2769
+ msgstr "normaal"
2770
+
2771
+ #: pro/classes/views/settings/formroller.php:107
2772
+ #: pro/classes/views/settings/formroller.php:312
2773
+ #: pro/classes/views/settings/formroller.php:359
2774
+ #@ formidable
2775
+ msgid "bold"
2776
+ msgstr "dik"
2777
+
2778
+ #: pro/classes/views/settings/formroller.php:114
2779
+ #@ formidable
2780
+ msgid "italic"
2781
+ msgstr "schuin"
2782
+
2783
+ #: pro/classes/views/settings/formroller.php:136
2784
+ #@ formidable
2785
+ msgid "Corner Radius"
2786
+ msgstr ""
2787
+
2788
+ #: pro/classes/views/settings/formroller.php:140
2789
+ #: pro/classes/views/settings/formroller.php:364
2790
+ #@ formidable
2791
+ msgid "Corners"
2792
+ msgstr ""
2793
+
2794
+ #: pro/classes/views/settings/formroller.php:143
2795
+ #@ formidable
2796
+ msgid "Formidable uses CSS3 border-radius for corner rounding, which is not currently supported by Internet Explorer."
2797
+ msgstr ""
2798
+
2799
+ #: pro/classes/views/settings/formroller.php:150
2800
+ #@ formidable
2801
+ msgid "Field Settings"
2802
+ msgstr "veld instellingen"
2803
+
2804
+ #: pro/classes/views/settings/formroller.php:186
2805
+ #@ formidable
2806
+ msgid "Field Colors"
2807
+ msgstr "Veld kleuren"
2808
+
2809
+ #: pro/classes/views/settings/formroller.php:191
2810
+ #: pro/classes/views/settings/formroller.php:228
2811
+ #: pro/classes/views/settings/formroller.php:247
2812
+ #@ formidable
2813
+ msgid "BG color"
2814
+ msgstr "Achtergrondkleur"
2815
+
2816
+ #: pro/classes/views/settings/formroller.php:195
2817
+ #: pro/classes/views/settings/formroller.php:251
2818
+ #: pro/classes/views/settings/formroller.php:392
2819
+ #: pro/classes/views/settings/formroller.php:445
2820
+ #: pro/classes/views/settings/formroller.php:487
2821
+ #@ formidable
2822
+ msgid "Text"
2823
+ msgstr "Tekst"
2824
+
2825
+ #: pro/classes/views/settings/formroller.php:223
2826
+ #@ formidable
2827
+ msgid "Field Colors: active state"
2828
+ msgstr ""
2829
+
2830
+ #: pro/classes/views/settings/formroller.php:242
2831
+ #@ formidable
2832
+ msgid "Field Colors: error state"
2833
+ msgstr ""
2834
+
2835
+ #: pro/classes/views/settings/formroller.php:278
2836
+ #@ formidable
2837
+ msgid "Radio Buttons & Check Boxes"
2838
+ msgstr ""
2839
+
2840
+ #: pro/classes/views/settings/formroller.php:283
2841
+ #@ formidable
2842
+ msgid "Radio"
2843
+ msgstr ""
2844
+
2845
+ #: pro/classes/views/settings/formroller.php:292
2846
+ #@ formidable
2847
+ msgid "Check Box"
2848
+ msgstr ""
2849
+
2850
+ #: pro/classes/views/settings/formroller.php:330
2851
+ #@ formidable
2852
+ msgid "Theme"
2853
+ msgstr ""
2854
+
2855
+ #: pro/classes/views/settings/formroller.php:379
2856
+ #@ formidable
2857
+ msgid "Height"
2858
+ msgstr ""
2859
+
2860
+ #: pro/classes/views/settings/formroller.php:384
2861
+ #: pro/classes/views/settings/formroller.php:388
2862
+ #: pro/classes/views/settings/formroller.php:435
2863
+ #: pro/classes/views/settings/formroller.php:478
2864
+ #@ formidable
2865
+ msgid "BG Color"
2866
+ msgstr ""
2867
+
2868
+ #: pro/classes/views/settings/formroller.php:397
2869
+ #@ formidable
2870
+ msgid "BG Image"
2871
+ msgstr ""
2872
+
2873
+ #: pro/classes/views/settings/formroller.php:410
2874
+ #@ formidable
2875
+ msgid "Shadow"
2876
+ msgstr ""
2877
+
2878
+ #: pro/classes/views/settings/formroller.php:415
2879
+ #@ formidable
2880
+ msgid "Margin"
2881
+ msgstr ""
2882
+
2883
+ #: pro/classes/views/settings/formroller.php:430
2884
+ #@ formidable
2885
+ msgid "Error"
2886
+ msgstr ""
2887
+
2888
+ #: pro/classes/views/settings/formroller.php:450
2889
+ #@ formidable
2890
+ msgid "Icon"
2891
+ msgstr ""
2892
+
2893
+ #: pro/classes/views/settings/formroller.php:473
2894
+ #@ formidable
2895
+ msgid "Success"
2896
+ msgstr ""
2897
+
2898
+ #: classes/views/frm-forms/edit.php:17
2899
+ #: classes/views/frm-forms/edit.php:31
2900
+ #: classes/views/frm-forms/form.php:101
2901
+ #@ formidable
2902
+ msgid "Customize Form HTML"
2903
+ msgstr ""
2904
+
2905
+ #: classes/views/frm-forms/edit.php:17
2906
+ #: classes/views/frm-forms/edit.php:31
2907
+ #@ formidable
2908
+ msgid "Advanced Users: Customize your form HTML here"
2909
+ msgstr ""
2910
+
2911
+ #: pro/classes/controllers/FrmProFormsController.php:133
2912
+ #: pro/classes/views/frmpro-forms/comment_options.php:15
2913
+ #: pro/classes/views/frmpro-forms/post_options.php:30
2914
+ #@ formidable
2915
+ msgid "Post Title"
2916
+ msgstr ""
2917
+
2918
+ #: pro/classes/views/frmpro-fields/options-form.php:120
2919
+ #@ formidable
2920
+ msgid "Unique"
2921
+ msgstr ""
2922
+
2923
+ #: pro/classes/views/frmpro-fields/options-form.php:122
2924
+ #@ formidable
2925
+ msgid "Read Only"
2926
+ msgstr ""
2927
+
2928
+ #: classes/views/frm-settings/form.php:75
2929
+ #@ formidable
2930
+ msgid "reCAPTCHA"
2931
+ msgstr ""
2932
+
2933
+ #: classes/views/frm-settings/form.php:75
2934
+ #@ formidable
2935
+ msgid "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking spam on your blog. reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a human. This verifies that they are not a spambot."
2936
+ msgstr ""
2937
+
2938
+ #: classes/views/frm-settings/form.php:82
2939
+ #@ formidable
2940
+ msgid "Public Key"
2941
+ msgstr ""
2942
+
2943
+ #: classes/views/frm-settings/form.php:86
2944
+ #@ formidable
2945
+ msgid "Private Key"
2946
+ msgstr ""
2947
+
2948
+ #: classes/views/frm-settings/form.php:95
2949
+ #@ formidable
2950
+ msgid "reCAPTCHA Theme"
2951
+ msgstr ""
2952
+
2953
+ #: classes/views/frm-settings/form.php:97
2954
+ #@ formidable
2955
+ msgid "Red"
2956
+ msgstr "Rood"
2957
+
2958
+ #: classes/views/frm-settings/form.php:97
2959
+ #@ formidable
2960
+ msgid "White"
2961
+ msgstr "Wit"
2962
+
2963
+ #: classes/views/frm-settings/form.php:97
2964
+ #@ formidable
2965
+ msgid "Black Glass"
2966
+ msgstr ""
2967
+
2968
+ #: classes/views/frm-settings/form.php:97
2969
+ #@ formidable
2970
+ msgid "Clean"
2971
+ msgstr ""
2972
+
2973
+ #: classes/views/frm-settings/form.php:102
2974
+ #@ formidable
2975
+ msgid "reCAPTCHA Language"
2976
+ msgstr ""
2977
+
2978
+ #: classes/views/frm-settings/form.php:104
2979
+ #@ formidable
2980
+ msgid "English"
2981
+ msgstr "Engels"
2982
+
2983
+ #: classes/views/frm-settings/form.php:104
2984
+ #@ formidable
2985
+ msgid "Portuguese"
2986
+ msgstr ""
2987
+
2988
+ #: classes/helpers/FrmFieldsHelper.php:36
2989
+ #@ formidable
2990
+ msgid "Hidden User ID"
2991
+ msgstr "Verborgen gebruikers ID"
2992
+
2993
+ #: classes/models/FrmSettings.php:78
2994
+ #@ formidable
2995
+ msgid "The reCAPTCHA was not entered correctly"
2996
+ msgstr "De reCAPTCHA is niet goed ingevuld"
2997
+
2998
+ #: classes/views/frm-forms/add_field.php:84
2999
+ #, php-format
3000
+ #@ formidable
3001
+ msgid "Hint: Change colors in the %1$sFormidable settings"
3002
+ msgstr ""
3003
+
3004
+ #: classes/views/frm-forms/form.php:129
3005
+ #@ formidable
3006
+ msgid "Delete Entry Link"
3007
+ msgstr ""
3008
+
3009
+ #: classes/helpers/FrmFieldsHelper.php:12
3010
+ #@ formidable
3011
+ msgid "reCAPTCHA (SPAM Control)"
3012
+ msgstr ""
3013
+
3014
+ #: classes/helpers/FrmFieldsHelper.php:24
3015
+ #@ formidable
3016
+ msgid "Rich Text"
3017
+ msgstr ""
3018
+
3019
+ #: classes/helpers/FrmFieldsHelper.php:37
3020
+ #: pro/classes/models/FrmProField.php:61
3021
+ #@ formidable
3022
+ msgid "HTML"
3023
+ msgstr ""
3024
+
3025
+ #: classes/views/frm-forms/add_field.php:135
3026
+ #@ formidable
3027
+ msgid "Required Field"
3028
+ msgstr "Verplicht veld"
3029
+
3030
+ #: classes/views/frm-forms/add_field.php:136
3031
+ #@ formidable
3032
+ msgid "Required"
3033
+ msgstr "Verplicht"
3034
+
3035
+ #: classes/views/frm-forms/list.php:46
3036
+ #: classes/views/frm-forms/list.php:149
3037
+ #@ formidable
3038
+ msgid "ShortCodes"
3039
+ msgstr ""
3040
+
3041
+ #: classes/views/frm-settings/form.php:146
3042
+ #@ formidable
3043
+ msgid "Default Submit Button"
3044
+ msgstr "Standaard Verzendknop"
3045
+
3046
+ #: pro/classes/controllers/FrmProEntriesController.php:1313
3047
+ #@ formidable
3048
+ msgid "No one! You do not have permission"
3049
+ msgstr ""
3050
+
3051
+ #: pro/classes/helpers/FrmProAppHelper.php:178
3052
+ #@ formidable
3053
+ msgid "Export to XML"
3054
+ msgstr ""
3055
+
3056
+ #: pro/classes/helpers/FrmProEntriesHelper.php:61
3057
+ #@ formidable
3058
+ msgid "Resend Email Notification"
3059
+ msgstr ""
3060
+
3061
+ #: pro/classes/helpers/FrmProEntriesHelper.php:62
3062
+ #@ formidable
3063
+ msgid "Resend Autoresponse"
3064
+ msgstr ""
3065
+
3066
+ #: pro/classes/helpers/FrmProEntriesHelper.php:69
3067
+ #@ formidable
3068
+ msgid "Email Resent to"
3069
+ msgstr ""
3070
+
3071
+ #: pro/classes/models/FrmProDisplay.php:169
3072
+ #: pro/classes/views/displays/form.php:84
3073
+ #@ formidable
3074
+ msgid "This is not displayed anywhere, but is just for your reference. (optional)"
3075
+ msgstr ""
3076
+
3077
+ #: pro/classes/models/FrmProDisplay.php:173
3078
+ #@ formidable
3079
+ msgid "Content cannot be blank"
3080
+ msgstr "Verplicht veld"
3081
+
3082
+ #: pro/classes/models/FrmProDisplay.php:176
3083
+ #@ formidable
3084
+ msgid "Page cannot be blank if you want the content inserted automatically"
3085
+ msgstr ""
3086
+
3087
+ #: pro/classes/models/FrmProDisplay.php:183
3088
+ #@ formidable
3089
+ msgid "Dynamic Content cannot be blank"
3090
+ msgstr ""
3091
+
3092
+ #: pro/classes/models/FrmProDisplay.php:187
3093
+ #@ formidable
3094
+ msgid "Parameter Name cannot be blank if content is dynamic"
3095
+ msgstr ""
3096
+
3097
+ #: pro/classes/models/FrmProDisplay.php:190
3098
+ #@ formidable
3099
+ msgid "Parameter Value cannot be blank if content is dynamic"
3100
+ msgstr ""
3101
+
3102
+ #: pro/classes/models/FrmProDisplay.php:193
3103
+ #@ formidable
3104
+ msgid "Detail Link cannot be blank if content is dynamic"
3105
+ msgstr ""
3106
+
3107
+ #: pro/classes/views/displays/form.php:4
3108
+ #@ formidable
3109
+ msgid "Shortcode Options"
3110
+ msgstr ""
3111
+
3112
+ #: pro/classes/views/displays/form.php:10
3113
+ #@ formidable
3114
+ msgid "Insert display"
3115
+ msgstr ""
3116
+
3117
+ #: pro/classes/views/displays/form.php:14
3118
+ #@ formidable
3119
+ msgid "Replace page content"
3120
+ msgstr ""
3121
+
3122
+ #: pro/classes/views/displays/form.php:15
3123
+ #@ formidable
3124
+ msgid "Don't insert automatically"
3125
+ msgstr ""
3126
+
3127
+ #: pro/classes/views/displays/form.php:19
3128
+ #@ formidable
3129
+ msgid "on page"
3130
+ msgstr ""
3131
+
3132
+ #: pro/classes/views/displays/form.php:31
3133
+ #@ formidable
3134
+ msgid "Insert on a page, post, or text widget"
3135
+ msgstr ""
3136
+
3137
+ #: pro/classes/views/displays/form.php:35
3138
+ #@ formidable
3139
+ msgid "Insert in a template"
3140
+ msgstr ""
3141
+
3142
+ #: pro/classes/views/displays/form.php:43
3143
+ #, php-format
3144
+ #@ formidable
3145
+ msgid "Are you sure you want to delete your %1$s display?"
3146
+ msgstr ""
3147
+
3148
+ #: pro/classes/views/displays/form.php:63
3149
+ #@ formidable
3150
+ msgid "Custom Display Info"
3151
+ msgstr ""
3152
+
3153
+ #: pro/classes/views/displays/form.php:75
3154
+ #@ formidable
3155
+ msgid "Display Key"
3156
+ msgstr ""
3157
+
3158
+ #: pro/classes/views/displays/form.php:94
3159
+ #@ formidable
3160
+ msgid "Form and Display Type"
3161
+ msgstr ""
3162
+
3163
+ #: pro/classes/views/displays/form.php:108
3164
+ #@ formidable
3165
+ msgid "Display Format"
3166
+ msgstr ""
3167
+
3168
+ #: pro/classes/views/displays/form.php:111
3169
+ #@ formidable
3170
+ msgid "All Entries &mdash; list all entries in the specified form"
3171
+ msgstr ""
3172
+
3173
+ #: pro/classes/views/displays/form.php:112
3174
+ #@ formidable
3175
+ msgid "Single Entry &mdash; display one entry"
3176
+ msgstr ""
3177
+
3178
+ #: pro/classes/views/displays/form.php:113
3179
+ #@ formidable
3180
+ msgid "Both (Dynamic) &mdash; list the entries that will link to a single entry page"
3181
+ msgstr ""
3182
+
3183
+ #: pro/classes/views/displays/form.php:114
3184
+ #@ formidable
3185
+ msgid "Calendar &mdash; insert entries into a calendar"
3186
+ msgstr ""
3187
+
3188
+ #: pro/classes/views/displays/form.php:159
3189
+ #: pro/classes/views/displays/form.php:178
3190
+ #: pro/classes/views/frmpro-forms/comment_options.php:23
3191
+ #: pro/classes/views/frmpro-forms/post_options.php:38
3192
+ #@ formidable
3193
+ msgid "optional"
3194
+ msgstr "optioneel"
3195
+
3196
+ #: pro/classes/views/displays/form.php:200
3197
+ #@ formidable
3198
+ msgid "Advanced"
3199
+ msgstr ""
3200
+
3201
+ #: pro/classes/views/displays/form.php:205
3202
+ #@ formidable
3203
+ msgid "Order"
3204
+ msgstr ""
3205
+
3206
+ #: pro/classes/views/displays/form.php:223
3207
+ #@ formidable
3208
+ msgid "Where"
3209
+ msgstr ""
3210
+
3211
+ #: pro/classes/views/displays/form.php:243
3212
+ #@ formidable
3213
+ msgid "Limit"
3214
+ msgstr ""
3215
+
3216
+ #: pro/classes/views/displays/form.php:252
3217
+ #@ formidable
3218
+ msgid "Page Size"
3219
+ msgstr ""
3220
+
3221
+ #: pro/classes/views/displays/tags.php:2
3222
+ #@ formidable
3223
+ msgid "Image Size"
3224
+ msgstr ""
3225
+
3226
+ #: pro/classes/views/displays/tags.php:4
3227
+ #@ formidable
3228
+ msgid "Change the displayed size of your uploaded image"
3229
+ msgstr ""
3230
+
3231
+ #: pro/classes/views/displays/tags.php:11
3232
+ #@ formidable
3233
+ msgid "Data From Entries"
3234
+ msgstr ""
3235
+
3236
+ #: pro/classes/views/displays/tags.php:13
3237
+ #@ formidable
3238
+ msgid "Specify the data shown for a \"Data From Entries\" field"
3239
+ msgstr ""
3240
+
3241
+ #: pro/classes/views/displays/tags.php:23
3242
+ #@ formidable
3243
+ msgid "Use a field other than user Display Name if there is a User ID field in your form"
3244
+ msgstr ""
3245
+
3246
+ #: pro/classes/views/displays/tags.php:32
3247
+ #@ formidable
3248
+ msgid "Other Options"
3249
+ msgstr ""
3250
+
3251
+ #: pro/classes/views/frmpro-fields/options-form.php:124
3252
+ #@ formidable
3253
+ msgid "Admin Only"
3254
+ msgstr ""
3255
+
3256
+ #: pro/classes/views/frmpro-fields/options-form.php:132
3257
+ #@ formidable
3258
+ msgid "Calculations"
3259
+ msgstr ""
3260
+
3261
+ #: pro/classes/views/frmpro-fields/options-form.php:134
3262
+ #@ formidable
3263
+ msgid "Calculate the default value for this field"
3264
+ msgstr ""
3265
+
3266
+ #: pro/classes/views/frmpro-fields/show.php:27
3267
+ #@ formidable
3268
+ msgid "This is a placeholder for your custom HTML."
3269
+ msgstr ""
3270
+
3271
+ #: pro/classes/views/frmpro-fields/show.php:27
3272
+ #@ formidable
3273
+ msgid "You can edit this content in the field options."
3274
+ msgstr ""
3275
+
3276
+ #: pro/classes/views/frmpro-statistics/show.php:13
3277
+ #@ formidable
3278
+ msgid "Go to Report"
3279
+ msgstr ""
3280
+
3281
+ #: pro/classes/views/frmpro-statistics/show.php:24
3282
+ #@ formidable
3283
+ msgid "Response Count"
3284
+ msgstr ""
3285
+
3286
+ #: pro/classes/views/frmpro-statistics/show.php:26
3287
+ #@ formidable
3288
+ msgid "Total"
3289
+ msgstr ""
3290
+
3291
+ #: pro/classes/views/frmpro-statistics/show.php:27
3292
+ #@ formidable
3293
+ msgid "Average"
3294
+ msgstr ""
3295
+
3296
+ #: pro/classes/views/frmpro-statistics/show.php:28
3297
+ #@ formidable
3298
+ msgid "Median"
3299
+ msgstr ""
3300
+
3301
+ #: pro/classes/views/frmpro-statistics/show.php:33
3302
+ #@ formidable
3303
+ msgid "Percent of users submitted"
3304
+ msgstr ""
3305
+
3306
+ #: pro/classes/views/frmpro-statistics/show.php:35
3307
+ #@ formidable
3308
+ msgid "Users with no entry"
3309
+ msgstr ""
3310
+
3311
+ #: pro/classes/views/frmpro-statistics/show.php:36
3312
+ #@ formidable
3313
+ msgid "View Profile"
3314
+ msgstr ""
3315
+
3316
+ #: pro/classes/views/settings/form.php:10
3317
+ #@ formidable
3318
+ msgid "Include these scripts"
3319
+ msgstr ""
3320
+
3321
+ #: pro/classes/views/settings/form.php:31
3322
+ #@ formidable
3323
+ msgid "The format of that path is incorrect. Please try again."
3324
+ msgstr ""
3325
+
3326
+ #: pro/classes/views/settings/form.php:96
3327
+ #@ formidable
3328
+ msgid "Text field"
3329
+ msgstr "Tekst veld"
3330
+
3331
+ #: pro/classes/views/settings/form.php:97
3332
+ #: pro/classes/views/settings/form.php:103
3333
+ #@ formidable
3334
+ msgid "This is sample text"
3335
+ msgstr ""
3336
+
3337
+ #: pro/classes/views/settings/form.php:98
3338
+ #@ formidable
3339
+ msgid "A field with a description"
3340
+ msgstr ""
3341
+
3342
+ #: pro/classes/views/settings/form.php:102
3343
+ #@ formidable
3344
+ msgid "Text field with error"
3345
+ msgstr ""
3346
+
3347
+ #: pro/classes/views/settings/form.php:108
3348
+ #@ formidable
3349
+ msgid "Text field in active state"
3350
+ msgstr ""
3351
+
3352
+ #: pro/classes/views/settings/form.php:109
3353
+ #@ formidable
3354
+ msgid "The active state will be seen when the field is clicked"
3355
+ msgstr ""
3356
+
3357
+ #: pro/classes/views/settings/form.php:118
3358
+ #@ formidable
3359
+ msgid "Drop-down Select"
3360
+ msgstr ""
3361
+
3362
+ #: pro/classes/views/settings/form.php:121
3363
+ #@ formidable
3364
+ msgid "An Option"
3365
+ msgstr ""
3366
+
3367
+ #: pro/classes/views/settings/form.php:126
3368
+ #@ formidable
3369
+ msgid "Radio Buttons"
3370
+ msgstr ""
3371
+
3372
+ #: classes/helpers/FrmFieldsHelper.php:62
3373
+ #: classes/helpers/FrmFieldsHelper.php:64
3374
+ #: pro/classes/views/settings/form.php:127
3375
+ #: pro/classes/views/settings/form.php:133
3376
+ #@ formidable
3377
+ msgid "Option 1"
3378
+ msgstr "Optie 1"
3379
+
3380
+ #: classes/helpers/FrmFieldsHelper.php:62
3381
+ #: pro/classes/views/settings/form.php:128
3382
+ #: pro/classes/views/settings/form.php:134
3383
+ #@ formidable
3384
+ msgid "Option 2"
3385
+ msgstr "Optie 2"
3386
+
3387
+ #: pro/classes/views/settings/form.php:132
3388
+ #@ formidable
3389
+ msgid "Check Boxes"
3390
+ msgstr ""
3391
+
3392
+ #: pro/classes/views/settings/form.php:138
3393
+ #@ formidable
3394
+ msgid "Text Area"
3395
+ msgstr ""
3396
+
3397
+ #: pro/classes/views/settings/form.php:140
3398
+ #@ formidable
3399
+ msgid "Another field with a description"
3400
+ msgstr ""
3401
+
3402
+ #: pro/classes/views/settings/form.php:144
3403
+ #@ formidable
3404
+ msgid "Rich Text Area"
3405
+ msgstr ""
3406
+
3407
+ #: pro/classes/views/shared/import_form.php:3
3408
+ #@ formidable
3409
+ msgid "Import/Export"
3410
+ msgstr ""
3411
+
3412
+ #: pro/classes/controllers/FrmProEntriesController.php:285
3413
+ #: pro/classes/views/frmpro-entries/list.php:5
3414
+ #: pro/classes/views/shared/import_form.php:13
3415
+ #@ formidable
3416
+ msgid "Import"
3417
+ msgstr ""
3418
+
3419
+ #: pro/classes/views/shared/import_form.php:15
3420
+ #@ formidable
3421
+ msgid "Upload your Formidable XML file to import the forms, entries, and custom displays into this site."
3422
+ msgstr ""
3423
+
3424
+ #: pro/classes/views/shared/import_form.php:16
3425
+ #@ formidable
3426
+ msgid "Choose a Formidable XML file to upload, then click \"Upload file and import.\""
3427
+ msgstr ""
3428
+
3429
+ #: pro/classes/views/shared/import_form.php:23
3430
+ #@ formidable
3431
+ msgid "Choose a file from your computer"
3432
+ msgstr "Kies een bestand van je computer"
3433
+
3434
+ #: pro/classes/views/shared/import_form.php:23
3435
+ #@ formidable
3436
+ msgid "Maximum size: 32MB"
3437
+ msgstr ""
3438
+
3439
+ #: pro/classes/views/shared/import_form.php:27
3440
+ #@ formidable
3441
+ msgid "Upload file and import"
3442
+ msgstr ""
3443
+
3444
+ #: pro/classes/views/shared/import_form.php:44
3445
+ #@ formidable
3446
+ msgid "Data Types to Export"
3447
+ msgstr ""
3448
+
3449
+ #: pro/classes/views/shared/import_form.php:46
3450
+ #@ formidable
3451
+ msgid "Include the following data types in your export file"
3452
+ msgstr ""
3453
+
3454
+ #: pro/classes/views/shared/import_form.php:54
3455
+ #@ formidable
3456
+ msgid "Select forms (optional)"
3457
+ msgstr "Selecteer formulieren (optioneel)"
3458
+
3459
+ #: pro/classes/views/shared/import_form.php:64
3460
+ #@ formidable
3461
+ msgid "Export Selection"
3462
+ msgstr "Exporteer selectie"
3463
+
3464
+ #: classes/views/frm-settings/form.php:43
3465
+ #@ formidable
3466
+ msgid "Stylesheets"
3467
+ msgstr ""
3468
+
3469
+ #: classes/views/frm-settings/form.php:46
3470
+ #@ formidable
3471
+ msgid "Load Formidable styling"
3472
+ msgstr ""
3473
+
3474
+ #: classes/views/frm-settings/form.php:48
3475
+ #@ formidable
3476
+ msgid "on every page of your site"
3477
+ msgstr "op elke pagina van je site"
3478
+
3479
+ #: classes/views/frm-settings/form.php:49
3480
+ #@ formidable
3481
+ msgid "only on applicable pages"
3482
+ msgstr "alleen op van toepassing zijnde pagina's"
3483
+
3484
+ #: classes/views/frm-settings/form.php:50
3485
+ #@ formidable
3486
+ msgid "Don't use Formidable styling on any page"
3487
+ msgstr ""
3488
+
3489
+ #: classes/views/frm-settings/form.php:130
3490
+ #@ formidable
3491
+ msgid "Failed or Duplicate Entry Message"
3492
+ msgstr ""
3493
+
3494
+ #: classes/controllers/FrmAppController.php:106
3495
+ #@ formidable
3496
+ msgid "Your Formidable database needs to be updated.<br/>Please deactivate and reactivate the plugin to fix this or"
3497
+ msgstr ""
3498
+
3499
+ #: classes/controllers/FrmAppController.php:106
3500
+ #@ formidable
3501
+ msgid "Update Now"
3502
+ msgstr ""
3503
+
3504
+ #: classes/models/FrmSettings.php:107
3505
+ #@ formidable
3506
+ msgid "We're sorry. It looks like you've already submitted that."
3507
+ msgstr ""
3508
+
3509
+ #: classes/views/frm-forms/add_field.php:61
3510
+ #@ formidable
3511
+ msgid "Please add options from the WordPress \"Categories\" page"
3512
+ msgstr ""
3513
+
3514
+ #: classes/views/frm-forms/add_field.php:127
3515
+ #@ formidable
3516
+ msgid "None"
3517
+ msgstr ""
3518
+
3519
+ #: classes/views/frm-forms/footer.php:25
3520
+ #: classes/views/frm-forms/new-field-js.php:31
3521
+ #@ formidable
3522
+ msgid "Click here to add optional description or instructions"
3523
+ msgstr ""
3524
+
3525
+ #: pro/classes/helpers/FrmProFieldsHelper.php:316
3526
+ #@ formidable
3527
+ msgid "No Categories"
3528
+ msgstr ""
3529
+
3530
+ #: pro/classes/views/frmpro-entries/loading.php:4
3531
+ #@ formidable
3532
+ msgid "Uploading Files. Please Wait."
3533
+ msgstr ""
3534
+
3535
+ #: pro/classes/views/frmpro-fields/dynamic-options.php:2
3536
+ #@ formidable
3537
+ msgid "Import Data from"
3538
+ msgstr ""
3539
+
3540
+ #: pro/classes/views/frmpro-fields/options-form.php:54
3541
+ #@ formidable
3542
+ msgid "start time"
3543
+ msgstr ""
3544
+
3545
+ #: pro/classes/views/frmpro-fields/options-form.php:57
3546
+ #@ formidable
3547
+ msgid "end time"
3548
+ msgstr ""
3549
+
3550
+ #: pro/classes/views/frmpro-fields/options-form.php:201
3551
+ #@ formidable
3552
+ msgid "Exclude categories"
3553
+ msgstr ""
3554
+
3555
+ #: pro/classes/views/frmpro-forms/add_form_options.php:16
3556
+ #: pro/classes/views/frmpro-forms/post_options.php:15
3557
+ #@ formidable
3558
+ msgid "Post Type"
3559
+ msgstr ""
3560
+
3561
+ #: classes/widgets/FrmShowForm.php:59
3562
+ #@ formidable
3563
+ msgid "If your text fields are too big for your sidebar insert a size here."
3564
+ msgstr ""
3565
+
3566
+ #: classes/helpers/FrmAppHelper.php:224
3567
+ #: classes/helpers/FrmFieldsHelper.php:54
3568
+ #: classes/models/FrmEntry.php:262
3569
+ #: pro/classes/views/settings/form.php:104
3570
+ #@ formidable
3571
+ msgid "This field cannot be blank"
3572
+ msgstr ""
3573
+
3574
+ #: classes/helpers/FrmAppHelper.php:229
3575
+ #: pro/classes/models/FrmProEntryMeta.php:219
3576
+ #@ formidable
3577
+ msgid "is invalid"
3578
+ msgstr ""
3579
+
3580
+ #: classes/helpers/FrmFieldsHelper.php:54
3581
+ #: pro/classes/models/FrmProEntryMeta.php:219
3582
+ #@ formidable
3583
+ msgid "This field is invalid"
3584
+ msgstr ""
3585
+
3586
+ #: classes/models/FrmSettings.php:103
3587
+ #@ formidable
3588
+ msgid "There was a problem with your submission. Errors are marked below."
3589
+ msgstr ""
3590
+
3591
+ #: classes/templates/contact.php:45
3592
+ #@ formidable
3593
+ msgid "Please enter a valid website"
3594
+ msgstr ""
3595
+
3596
+ #: classes/views/frm-settings/form.php:114
3597
+ #@ formidable
3598
+ msgid "Incorrect Field"
3599
+ msgstr ""
3600
+
3601
+ #: classes/views/frm-settings/form.php:114
3602
+ #@ formidable
3603
+ msgid "The message seen when a field response is either incorrect or missing."
3604
+ msgstr ""
3605
+
3606
+ #: pro/classes/models/FrmProSettings.php:188
3607
+ #@ formidable
3608
+ msgid "Your submission was successfully saved."
3609
+ msgstr ""
3610
+
3611
+ #: classes/views/frm-settings/form.php:17
3612
+ #@ formidable
3613
+ msgid "Form Styling"
3614
+ msgstr ""
3615
+
3616
+ #: classes/controllers/FrmFormsController.php:22
3617
+ #: classes/views/frm-forms/new-selection.php:3
3618
+ #: classes/views/frm-forms/new-selection.php:10
3619
+ #: classes/views/frm-forms/new.php:3
3620
+ #@ formidable
3621
+ msgid "Add New Form"
3622
+ msgstr ""
3623
+
3624
+ #: classes/helpers/FrmAppHelper.php:45
3625
+ #@ formidable
3626
+ msgid "Add/Edit Forms and Templates"
3627
+ msgstr ""
3628
+
3629
+ #: classes/helpers/FrmAppHelper.php:51
3630
+ #@ formidable
3631
+ msgid "Add Entries from Admin Area"
3632
+ msgstr ""
3633
+
3634
+ #: classes/helpers/FrmAppHelper.php:55
3635
+ #@ formidable
3636
+ msgid "Add/Edit Custom Displays"
3637
+ msgstr ""
3638
+
3639
+ #: classes/views/frm-entries/list.php:3
3640
+ #@ formidable
3641
+ msgid "Pro Form Entries"
3642
+ msgstr ""
3643
+
3644
+ #: classes/views/frm-forms/list.php:3
3645
+ #@ formidable
3646
+ msgid "Form Templates"
3647
+ msgstr ""
3648
+
3649
+ #: classes/views/frm-forms/list.php:5
3650
+ #: pro/classes/views/displays/edit.php:5
3651
+ #: pro/classes/views/displays/list.php:5
3652
+ #: pro/classes/views/frmpro-entries/list.php:4
3653
+ #@ formidable
3654
+ msgid "Add New"
3655
+ msgstr ""
3656
+
3657
+ #: classes/views/frm-settings/form.php:3
3658
+ #@ formidable
3659
+ msgid "Form Settings"
3660
+ msgstr ""
3661
+
3662
+ #: classes/views/frm-statistics/list.php:3
3663
+ #@ formidable
3664
+ msgid "Pro Form Statistics"
3665
+ msgstr ""
3666
+
3667
+ #: pro/classes/views/frmpro-entries/new-selection.php:3
3668
+ #@ formidable
3669
+ msgid "Add New Entry"
3670
+ msgstr ""
3671
+
3672
+ #: pro/classes/views/frmpro-entries/new.php:3
3673
+ #, php-format
3674
+ #@ formidable
3675
+ msgid "Add New %1$s Entry"
3676
+ msgstr ""
3677
+
3678
+ #: pro/classes/views/frmpro-entries/show.php:13
3679
+ #@ formidable
3680
+ msgid "Entry Actions"
3681
+ msgstr ""
3682
+
3683
+ #: pro/classes/views/frmpro-entries/import.php:94
3684
+ #: pro/classes/views/frmpro-entries/show.php:72
3685
+ #@ formidable
3686
+ msgid "Created at"
3687
+ msgstr "Gemaakt op"
3688
+
3689
+ #: pro/classes/views/frmpro-entries/show.php:75
3690
+ #: pro/classes/views/frmpro-entries/show.php:83
3691
+ #@ formidable
3692
+ msgid "by"
3693
+ msgstr "door"
3694
+
3695
+ #: pro/classes/views/frmpro-entries/show.php:81
3696
+ #@ formidable
3697
+ msgid "Last Updated"
3698
+ msgstr "laatste keer geupdate op"
3699
+
3700
+ #: pro/classes/views/frmpro-statistics/show.php:3
3701
+ #@ formidable
3702
+ msgid "Form Reports"
3703
+ msgstr ""
3704
+
3705
+ #: classes/views/frm-forms/insert_form_popup.php:47
3706
+ #@ formidable
3707
+ msgid "Select custom display to insert"
3708
+ msgstr ""
3709
+
3710
+ #: pro/classes/controllers/FrmProDisplaysController.php:31
3711
+ #: pro/classes/views/displays/list.php:3
3712
+ #: pro/classes/views/shared/import_form.php:49
3713
+ #@ formidable
3714
+ msgid "Custom Displays"
3715
+ msgstr ""
3716
+
3717
+ #: pro/classes/controllers/FrmProDisplaysController.php:107
3718
+ #@ formidable
3719
+ msgid "Custom Display was Successfully Created"
3720
+ msgstr ""
3721
+
3722
+ #: pro/classes/controllers/FrmProDisplaysController.php:109
3723
+ #@ formidable
3724
+ msgid "Oops! There was a problem saving your Custom Display. Please try deactivating and reactivating Formidable to correct the problem."
3725
+ msgstr ""
3726
+
3727
+ #: pro/classes/controllers/FrmProDisplaysController.php:143
3728
+ #@ formidable
3729
+ msgid "Custom Display was Successfully Updated"
3730
+ msgstr ""
3731
+
3732
+ #: pro/classes/controllers/FrmProDisplaysController.php:153
3733
+ #@ formidable
3734
+ msgid "Custom Display was Successfully Copied"
3735
+ msgstr ""
3736
+
3737
+ #: pro/classes/controllers/FrmProDisplaysController.php:165
3738
+ #@ formidable
3739
+ msgid "Custom Display was Successfully Deleted"
3740
+ msgstr ""
3741
+
3742
+ #: pro/classes/views/displays/edit.php:3
3743
+ #@ formidable
3744
+ msgid "Edit Custom Display"
3745
+ msgstr ""
3746
+
3747
+ #: pro/classes/views/displays/new.php:3
3748
+ #@ formidable
3749
+ msgid "Add New Custom Display"
3750
+ msgstr ""
3751
+
3752
+ #: pro/classes/views/settings/form.php:21
3753
+ #@ formidable
3754
+ msgid "Hide field and entry keys to prevent them from being edited. Uncheck this box to edit the saved keys for use in your template."
3755
+ msgstr ""
3756
+
3757
+ #: pro/classes/views/shared/import_form.php:56
3758
+ #@ formidable
3759
+ msgid "If you would like to include ONLY specific forms and the entries and custom displays related to those forms, select those forms here"
3760
+ msgstr ""
3761
+
3762
+ #: classes/views/frm-forms/add_field.php:142
3763
+ #@ formidable
3764
+ msgid "Error message for blank required field"
3765
+ msgstr ""
3766
+
3767
+ #: classes/views/frm-forms/add_field.php:147
3768
+ #@ formidable
3769
+ msgid "Error message for invalid submission"
3770
+ msgstr ""
3771
+
3772
+ #: classes/views/frm-forms/add_field_links.php:4
3773
+ #@ formidable
3774
+ msgid "Insert into a post, page or text widget"
3775
+ msgstr ""
3776
+
3777
+ #: pro/classes/controllers/FrmProDisplaysController.php:179
3778
+ #@ formidable
3779
+ msgid "No displays were specified"
3780
+ msgstr ""
3781
+
3782
+ #: pro/classes/controllers/FrmProEntriesController.php:1215
3783
+ #@ formidable
3784
+ msgid "There was a error deleting that entry"
3785
+ msgstr ""
3786
+
3787
+ #: pro/classes/controllers/FrmProFormsController.php:134
3788
+ #@ formidable
3789
+ msgid "Post Meta"
3790
+ msgstr ""
3791
+
3792
+ #: pro/classes/helpers/FrmProAppHelper.php:98
3793
+ #@ formidable
3794
+ msgid "at"
3795
+ msgstr ""
3796
+
3797
+ #: pro/classes/helpers/FrmProEntriesHelper.php:89
3798
+ #@ formidable
3799
+ msgid "Add New Entry to this form"
3800
+ msgstr ""
3801
+
3802
+ #: pro/classes/helpers/FrmProFieldsHelper.php:879
3803
+ #@ formidable
3804
+ msgid "Default Email Message"
3805
+ msgstr ""
3806
+
3807
+ #: pro/classes/views/displays/form.php:261
3808
+ #@ formidable
3809
+ msgid "Message if nothing to display"
3810
+ msgstr ""
3811
+
3812
+ #: pro/classes/views/displays/form.php:273
3813
+ #@ formidable
3814
+ msgid "Copy these display settings to other blogs when Formidable Pro is activated. <br/>Note: Use only field keys in the content box(es) above."
3815
+ msgstr ""
3816
+
3817
+ #: pro/classes/views/displays/tags.php:43
3818
+ #@ formidable
3819
+ msgid "Automatically turn URLs and emails into links."
3820
+ msgstr "Zet URL's en emails automatisch om naar links"
3821
+
3822
+ #: pro/classes/views/frmpro-entries/show.php:117
3823
+ #@ formidable
3824
+ msgid "Comments/Notes"
3825
+ msgstr ""
3826
+
3827
+ #: pro/classes/views/frmpro-entries/show.php:133
3828
+ #@ formidable
3829
+ msgid "Add Note/Comment"
3830
+ msgstr ""
3831
+
3832
+ #: pro/classes/views/frmpro-entries/show.php:144
3833
+ #@ formidable
3834
+ msgid "Comment/Note"
3835
+ msgstr ""
3836
+
3837
+ #: pro/classes/views/frmpro-entries/show.php:151
3838
+ #@ formidable
3839
+ msgid "Send Emails to"
3840
+ msgstr ""
3841
+
3842
+ #: pro/classes/views/frmpro-fields/options-form.php:174
3843
+ #@ formidable
3844
+ msgid "Taxonomy"
3845
+ msgstr ""
3846
+
3847
+ #: pro/classes/views/frmpro-fields/options-form.php:177
3848
+ #: pro/classes/views/frmpro-forms/comment_options.php:17
3849
+ #: pro/classes/views/frmpro-forms/post_options.php:32
3850
+ #@ formidable
3851
+ msgid "Excerpt"
3852
+ msgstr ""
3853
+
3854
+ #: pro/classes/views/frmpro-fields/options-form.php:179
3855
+ #: pro/classes/views/frmpro-forms/post_options.php:33
3856
+ #@ formidable
3857
+ msgid "Slug"
3858
+ msgstr ""
3859
+
3860
+ #: pro/classes/views/frmpro-fields/options-form.php:180
3861
+ #@ formidable
3862
+ msgid "Custom Field"
3863
+ msgstr "Aangepast veld"
3864
+
3865
+ #: pro/classes/views/frmpro-fields/options-form.php:182
3866
+ #: pro/classes/views/frmpro-forms/comment_options.php:19
3867
+ #: pro/classes/views/frmpro-forms/post_options.php:34
3868
+ #@ formidable
3869
+ msgid "Post Date"
3870
+ msgstr "Post datum"
3871
+
3872
+ #: pro/classes/views/frmpro-fields/options-form.php:184
3873
+ #: pro/classes/views/frmpro-forms/comment_options.php:20
3874
+ #: pro/classes/views/frmpro-forms/post_options.php:35
3875
+ #@ formidable
3876
+ msgid "Post Status"
3877
+ msgstr ""
3878
+
3879
+ #: pro/classes/views/frmpro-forms/_comment_meta_row.php:4
3880
+ #@ formidable
3881
+ msgid "Add Comment Meta"
3882
+ msgstr ""
3883
+
3884
+ #: pro/classes/views/frmpro-forms/_comment_meta_row.php:6
3885
+ #: pro/classes/views/frmpro-forms/_custom_field_row.php:6
3886
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:13
3887
+ #@ formidable
3888
+ msgid "from"
3889
+ msgstr "van"
3890
+
3891
+ #: pro/classes/views/frmpro-forms/_custom_field_row.php:4
3892
+ #@ formidable
3893
+ msgid "Add Custom Field"
3894
+ msgstr "Aangepast veld toevoegen"
3895
+
3896
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:4
3897
+ #@ formidable
3898
+ msgid "Add Taxonomy"
3899
+ msgstr "Taxonomy toevoegen"
3900
+
3901
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:31
3902
+ #@ formidable
3903
+ msgid "Exclude options"
3904
+ msgstr "Opties uitsluiten"
3905
+
3906
+ #: pro/classes/views/frmpro-forms/add_form_options.php:30
3907
+ #: pro/classes/views/frmpro-forms/add_form_options.php:40
3908
+ #: pro/classes/views/frmpro-forms/add_form_options.php:51
3909
+ #@ formidable
3910
+ msgid "Logged-in Users"
3911
+ msgstr ""
3912
+
3913
+ #: pro/classes/views/frmpro-forms/comment_options.php:4
3914
+ #@ formidable
3915
+ msgid "Comment Creation Options"
3916
+ msgstr ""
3917
+
3918
+ #: pro/classes/views/frmpro-forms/comment_options.php:10
3919
+ #@ formidable
3920
+ msgid "Create a Comment"
3921
+ msgstr "Schrijf een opmerking/commentaar"
3922
+
3923
+ #: pro/classes/views/frmpro-forms/comment_options.php:11
3924
+ #@ formidable
3925
+ msgid "Create WordPress comments with this form"
3926
+ msgstr ""
3927
+
3928
+ #: pro/classes/views/frmpro-forms/comment_options.php:16
3929
+ #: pro/classes/views/frmpro-forms/post_options.php:31
3930
+ #@ formidable
3931
+ msgid "Post Content"
3932
+ msgstr ""
3933
+
3934
+ #: pro/classes/views/frmpro-forms/comment_options.php:18
3935
+ #@ formidable
3936
+ msgid "Author Email"
3937
+ msgstr ""
3938
+
3939
+ #: pro/classes/views/frmpro-forms/comment_options.php:61
3940
+ #@ formidable
3941
+ msgid "Comment Meta"
3942
+ msgstr ""
3943
+
3944
+ #: pro/classes/views/frmpro-forms/post_options.php:4
3945
+ #@ formidable
3946
+ msgid "Post Creation Options"
3947
+ msgstr ""
3948
+
3949
+ #: pro/classes/views/frmpro-forms/post_options.php:10
3950
+ #@ formidable
3951
+ msgid "Create a Post"
3952
+ msgstr "Maak een Post"
3953
+
3954
+ #: pro/classes/views/frmpro-forms/post_options.php:11
3955
+ #@ formidable
3956
+ msgid "Create a WordPress post with this form"
3957
+ msgstr "Maak een Wordpress post met dit formulier"
3958
+
3959
+ #: pro/classes/views/frmpro-forms/post_options.php:76
3960
+ #@ formidable
3961
+ msgid "Post Taxonomies"
3962
+ msgstr ""
3963
+
3964
+ #: pro/classes/views/frmpro-forms/post_options.php:89
3965
+ #@ formidable
3966
+ msgid "Custom Fields"
3967
+ msgstr "Aangeapste velden"
3968
+
3969
+ #: pro/classes/views/displays/where_row.php:16
3970
+ #@ formidable
3971
+ msgid "NOT like"
3972
+ msgstr ""
3973
+
3974
+ #: pro/classes/views/frmpro-entries/edit.php:15
3975
+ #: pro/classes/views/frmpro-entries/new.php:15
3976
+ #@ formidable
3977
+ msgid "Publish"
3978
+ msgstr "Publiceren"
3979
+
3980
+ #: pro/classes/views/frmpro-entries/edit.php:33
3981
+ #@ formidable
3982
+ msgid "Are you sure you want to delete this entry?"
3983
+ msgstr "Weet je zeker dat je deze inzending wilt verwijderen?"
3984
+
3985
+ #: pro/classes/views/frmpro-forms/instructions.php:18
3986
+ #@ formidable
3987
+ msgid "Replace 'whatever' with the parameter name. In url.com?product=form, the variable is 'product'. You would use [get param=product] in your field."
3988
+ msgstr ""
3989
+
3990
+ #: pro/classes/views/settings/formroller.php:175
3991
+ #@ formidable
3992
+ msgid "Bottom Margin"
3993
+ msgstr ""
3994
+
3995
+ #: classes/controllers/FrmFieldsController.php:196
3996
+ #@ formidable
3997
+ msgid "Countries"
3998
+ msgstr "Landen"
3999
+
4000
+ #: classes/controllers/FrmFieldsController.php:199
4001
+ #@ formidable
4002
+ msgid "U.S. States"
4003
+ msgstr ""
4004
+
4005
+ #: classes/controllers/FrmFieldsController.php:200
4006
+ #@ formidable
4007
+ msgid "U.S. State Abbreviations"
4008
+ msgstr ""
4009
+
4010
+ #: classes/controllers/FrmFieldsController.php:202
4011
+ #@ formidable
4012
+ msgid "Age"
4013
+ msgstr "leeftijd"
4014
+
4015
+ #: classes/controllers/FrmFieldsController.php:203
4016
+ #@ formidable
4017
+ msgid "Under 18"
4018
+ msgstr "onder de 18"
4019
+
4020
+ #: classes/controllers/FrmFieldsController.php:203
4021
+ #@ formidable
4022
+ msgid "18-24"
4023
+ msgstr ""
4024
+
4025
+ #: classes/controllers/FrmFieldsController.php:203
4026
+ #@ formidable
4027
+ msgid "25-34"
4028
+ msgstr ""
4029
+
4030
+ #: classes/controllers/FrmFieldsController.php:204
4031
+ #@ formidable
4032
+ msgid "35-44"
4033
+ msgstr ""
4034
+
4035
+ #: classes/controllers/FrmFieldsController.php:204
4036
+ #@ formidable
4037
+ msgid "45-54"
4038
+ msgstr ""
4039
+
4040
+ #: classes/controllers/FrmFieldsController.php:204
4041
+ #@ formidable
4042
+ msgid "55-64"
4043
+ msgstr ""
4044
+
4045
+ #: classes/controllers/FrmFieldsController.php:205
4046
+ #@ formidable
4047
+ msgid "65 or Above"
4048
+ msgstr "65 of ouder"
4049
+
4050
+ #: classes/controllers/FrmFieldsController.php:205
4051
+ #@ formidable
4052
+ msgid "Prefer Not to Answer"
4053
+ msgstr ""
4054
+
4055
+ #: classes/controllers/FrmFieldsController.php:208
4056
+ #@ formidable
4057
+ msgid "Satisfaction"
4058
+ msgstr ""
4059
+
4060
+ #: classes/controllers/FrmFieldsController.php:209
4061
+ #@ formidable
4062
+ msgid "Very Satisfied"
4063
+ msgstr ""
4064
+
4065
+ #: classes/controllers/FrmFieldsController.php:209
4066
+ #@ formidable
4067
+ msgid "Satisfied"
4068
+ msgstr ""
4069
+
4070
+ #: classes/controllers/FrmFieldsController.php:209
4071
+ #: classes/controllers/FrmFieldsController.php:214
4072
+ #: classes/controllers/FrmFieldsController.php:219
4073
+ #@ formidable
4074
+ msgid "Neutral"
4075
+ msgstr ""
4076
+
4077
+ #: classes/controllers/FrmFieldsController.php:210
4078
+ #, fuzzy
4079
+ #@ formidable
4080
+ msgid "Unsatisfied"
4081
+ msgstr "naamloos"
4082
+
4083
+ #: classes/controllers/FrmFieldsController.php:210
4084
+ #@ formidable
4085
+ msgid "Very Unsatisfied"
4086
+ msgstr ""
4087
+
4088
+ #: classes/controllers/FrmFieldsController.php:210
4089
+ #: classes/controllers/FrmFieldsController.php:215
4090
+ #: classes/controllers/FrmFieldsController.php:220
4091
+ #@ formidable
4092
+ msgid "N/A"
4093
+ msgstr ""
4094
+
4095
+ #: classes/controllers/FrmFieldsController.php:213
4096
+ #@ formidable
4097
+ msgid "Importance"
4098
+ msgstr ""
4099
+
4100
+ #: classes/controllers/FrmFieldsController.php:214
4101
+ #@ formidable
4102
+ msgid "Very Important"
4103
+ msgstr ""
4104
+
4105
+ #: classes/controllers/FrmFieldsController.php:214
4106
+ #@ formidable
4107
+ msgid "Important"
4108
+ msgstr ""
4109
+
4110
+ #: classes/controllers/FrmFieldsController.php:215
4111
+ #@ formidable
4112
+ msgid "Somewhat Important"
4113
+ msgstr ""
4114
+
4115
+ #: classes/controllers/FrmFieldsController.php:215
4116
+ #@ formidable
4117
+ msgid "Not at all Important"
4118
+ msgstr ""
4119
+
4120
+ #: classes/controllers/FrmFieldsController.php:218
4121
+ #@ formidable
4122
+ msgid "Agreement"
4123
+ msgstr ""
4124
+
4125
+ #: classes/controllers/FrmFieldsController.php:219
4126
+ #@ formidable
4127
+ msgid "Strongly Agree"
4128
+ msgstr ""
4129
+
4130
+ #: classes/controllers/FrmFieldsController.php:219
4131
+ #@ formidable
4132
+ msgid "Agree"
4133
+ msgstr ""
4134
+
4135
+ #: classes/controllers/FrmFieldsController.php:220
4136
+ #@ formidable
4137
+ msgid "Disagree"
4138
+ msgstr ""
4139
+
4140
+ #: classes/controllers/FrmFieldsController.php:220
4141
+ #@ formidable
4142
+ msgid "Strongly Disagree"
4143
+ msgstr ""
4144
+
4145
+ #: classes/helpers/FrmAppHelper.php:311
4146
+ #@ formidable
4147
+ msgid "Afghanistan"
4148
+ msgstr ""
4149
+
4150
+ #: classes/helpers/FrmAppHelper.php:311
4151
+ #@ formidable
4152
+ msgid "Albania"
4153
+ msgstr ""
4154
+
4155
+ #: classes/helpers/FrmAppHelper.php:311
4156
+ #@ formidable
4157
+ msgid "Algeria"
4158
+ msgstr ""
4159
+
4160
+ #: classes/helpers/FrmAppHelper.php:312
4161
+ #@ formidable
4162
+ msgid "American Samoa"
4163
+ msgstr ""
4164
+
4165
+ #: classes/helpers/FrmAppHelper.php:312
4166
+ #@ formidable
4167
+ msgid "Andorra"
4168
+ msgstr ""
4169
+
4170
+ #: classes/helpers/FrmAppHelper.php:312
4171
+ #@ formidable
4172
+ msgid "Angola"
4173
+ msgstr ""
4174
+
4175
+ #: classes/helpers/FrmAppHelper.php:313
4176
+ #@ formidable
4177
+ msgid "Anguilla"
4178
+ msgstr ""
4179
+
4180
+ #: classes/helpers/FrmAppHelper.php:313
4181
+ #@ formidable
4182
+ msgid "Antarctica"
4183
+ msgstr ""
4184
+
4185
+ #: classes/helpers/FrmAppHelper.php:313
4186
+ #@ formidable
4187
+ msgid "Antigua and Barbuda"
4188
+ msgstr ""
4189
+
4190
+ #: classes/helpers/FrmAppHelper.php:314
4191
+ #@ formidable
4192
+ msgid "Argentina"
4193
+ msgstr ""
4194
+
4195
+ #: classes/helpers/FrmAppHelper.php:314
4196
+ #@ formidable
4197
+ msgid "Armenia"
4198
+ msgstr ""
4199
+
4200
+ #: classes/helpers/FrmAppHelper.php:314
4201
+ #@ formidable
4202
+ msgid "Aruba"
4203
+ msgstr ""
4204
+
4205
+ #: classes/helpers/FrmAppHelper.php:315
4206
+ #@ formidable
4207
+ msgid "Australia"
4208
+ msgstr ""
4209
+
4210
+ #: classes/helpers/FrmAppHelper.php:315
4211
+ #@ formidable
4212
+ msgid "Austria"
4213
+ msgstr "Oostenrijk"
4214
+
4215
+ #: classes/helpers/FrmAppHelper.php:315
4216
+ #@ formidable
4217
+ msgid "Azerbaijan"
4218
+ msgstr ""
4219
+
4220
+ #: classes/helpers/FrmAppHelper.php:316
4221
+ #@ formidable
4222
+ msgid "Bahamas"
4223
+ msgstr ""
4224
+
4225
+ #: classes/helpers/FrmAppHelper.php:316
4226
+ #@ formidable
4227
+ msgid "Bahrain"
4228
+ msgstr ""
4229
+
4230
+ #: classes/helpers/FrmAppHelper.php:316
4231
+ #@ formidable
4232
+ msgid "Bangladesh"
4233
+ msgstr ""
4234
+
4235
+ #: classes/helpers/FrmAppHelper.php:317
4236
+ #@ formidable
4237
+ msgid "Barbados"
4238
+ msgstr ""
4239
+
4240
+ #: classes/helpers/FrmAppHelper.php:317
4241
+ #@ formidable
4242
+ msgid "Belarus"
4243
+ msgstr ""
4244
+
4245
+ #: classes/helpers/FrmAppHelper.php:317
4246
+ #@ formidable
4247
+ msgid "Belgium"
4248
+ msgstr ""
4249
+
4250
+ #: classes/helpers/FrmAppHelper.php:318
4251
+ #@ formidable
4252
+ msgid "Belize"
4253
+ msgstr ""
4254
+
4255
+ #: classes/helpers/FrmAppHelper.php:318
4256
+ #@ formidable
4257
+ msgid "Benin"
4258
+ msgstr ""
4259
+
4260
+ #: classes/helpers/FrmAppHelper.php:318
4261
+ #@ formidable
4262
+ msgid "Bermuda"
4263
+ msgstr ""
4264
+
4265
+ #: classes/helpers/FrmAppHelper.php:319
4266
+ #@ formidable
4267
+ msgid "Bhutan"
4268
+ msgstr ""
4269
+
4270
+ #: classes/helpers/FrmAppHelper.php:319
4271
+ #@ formidable
4272
+ msgid "Bolivia"
4273
+ msgstr ""
4274
+
4275
+ #: classes/helpers/FrmAppHelper.php:319
4276
+ #@ formidable
4277
+ msgid "Bosnia and Herzegovina"
4278
+ msgstr ""
4279
+
4280
+ #: classes/helpers/FrmAppHelper.php:320
4281
+ #@ formidable
4282
+ msgid "Botswana"
4283
+ msgstr ""
4284
+
4285
+ #: classes/helpers/FrmAppHelper.php:320
4286
+ #@ formidable
4287
+ msgid "Brazil"
4288
+ msgstr ""
4289
+
4290
+ #: classes/helpers/FrmAppHelper.php:320
4291
+ #@ formidable
4292
+ msgid "Brunei"
4293
+ msgstr ""
4294
+
4295
+ #: classes/helpers/FrmAppHelper.php:321
4296
+ #@ formidable
4297
+ msgid "Bulgaria"
4298
+ msgstr ""
4299
+
4300
+ #: classes/helpers/FrmAppHelper.php:321
4301
+ #@ formidable
4302
+ msgid "Burkina Faso"
4303
+ msgstr ""
4304
+
4305
+ #: classes/helpers/FrmAppHelper.php:321
4306
+ #@ formidable
4307
+ msgid "Burundi"
4308
+ msgstr ""
4309
+
4310
+ #: classes/helpers/FrmAppHelper.php:322
4311
+ #@ formidable
4312
+ msgid "Cambodia"
4313
+ msgstr ""
4314
+
4315
+ #: classes/helpers/FrmAppHelper.php:322
4316
+ #@ formidable
4317
+ msgid "Cameroon"
4318
+ msgstr ""
4319
+
4320
+ #: classes/helpers/FrmAppHelper.php:322
4321
+ #@ formidable
4322
+ msgid "Canada"
4323
+ msgstr "Canada"
4324
+
4325
+ #: classes/helpers/FrmAppHelper.php:323
4326
+ #@ formidable
4327
+ msgid "Cape Verde"
4328
+ msgstr ""
4329
+
4330
+ #: classes/helpers/FrmAppHelper.php:323
4331
+ #@ formidable
4332
+ msgid "Cayman Islands"
4333
+ msgstr ""
4334
+
4335
+ #: classes/helpers/FrmAppHelper.php:323
4336
+ #@ formidable
4337
+ msgid "Central African Republic"
4338
+ msgstr ""
4339
+
4340
+ #: classes/helpers/FrmAppHelper.php:324
4341
+ #@ formidable
4342
+ msgid "Chad"
4343
+ msgstr ""
4344
+
4345
+ #: classes/helpers/FrmAppHelper.php:324
4346
+ #@ formidable
4347
+ msgid "Chile"
4348
+ msgstr ""
4349
+
4350
+ #: classes/helpers/FrmAppHelper.php:324
4351
+ #@ formidable
4352
+ msgid "China"
4353
+ msgstr ""
4354
+
4355
+ #: classes/helpers/FrmAppHelper.php:325
4356
+ #@ formidable
4357
+ msgid "Colombia"
4358
+ msgstr ""
4359
+
4360
+ #: classes/helpers/FrmAppHelper.php:325
4361
+ #@ formidable
4362
+ msgid "Comoros"
4363
+ msgstr ""
4364
+
4365
+ #: classes/helpers/FrmAppHelper.php:325
4366
+ #@ formidable
4367
+ msgid "Congo"
4368
+ msgstr ""
4369
+
4370
+ #: classes/helpers/FrmAppHelper.php:326
4371
+ #@ formidable
4372
+ msgid "Costa Rica"
4373
+ msgstr ""
4374
+
4375
+ #: classes/helpers/FrmAppHelper.php:326
4376
+ #@ formidable
4377
+ msgid "C&ocirc;te d'Ivoire"
4378
+ msgstr ""
4379
+
4380
+ #: classes/helpers/FrmAppHelper.php:326
4381
+ #@ formidable
4382
+ msgid "Croatia"
4383
+ msgstr "Kroatië"
4384
+
4385
+ #: classes/helpers/FrmAppHelper.php:327
4386
+ #@ formidable
4387
+ msgid "Cuba"
4388
+ msgstr ""
4389
+
4390
+ #: classes/helpers/FrmAppHelper.php:327
4391
+ #@ formidable
4392
+ msgid "Cyprus"
4393
+ msgstr ""
4394
+
4395
+ #: classes/helpers/FrmAppHelper.php:327
4396
+ #@ formidable
4397
+ msgid "Czech Republic"
4398
+ msgstr ""
4399
+
4400
+ #: classes/helpers/FrmAppHelper.php:328
4401
+ #@ formidable
4402
+ msgid "Denmark"
4403
+ msgstr ""
4404
+
4405
+ #: classes/helpers/FrmAppHelper.php:328
4406
+ #@ formidable
4407
+ msgid "Djibouti"
4408
+ msgstr ""
4409
+
4410
+ #: classes/helpers/FrmAppHelper.php:328
4411
+ #@ formidable
4412
+ msgid "Dominica"
4413
+ msgstr ""
4414
+
4415
+ #: classes/helpers/FrmAppHelper.php:329
4416
+ #@ formidable
4417
+ msgid "Dominican Republic"
4418
+ msgstr ""
4419
+
4420
+ #: classes/helpers/FrmAppHelper.php:329
4421
+ #@ formidable
4422
+ msgid "East Timor"
4423
+ msgstr ""
4424
+
4425
+ #: classes/helpers/FrmAppHelper.php:329
4426
+ #@ formidable
4427
+ msgid "Ecuador"
4428
+ msgstr ""
4429
+
4430
+ #: classes/helpers/FrmAppHelper.php:330
4431
+ #@ formidable
4432
+ msgid "Egypt"
4433
+ msgstr ""
4434
+
4435
+ #: classes/helpers/FrmAppHelper.php:330
4436
+ #@ formidable
4437
+ msgid "El Salvador"
4438
+ msgstr ""
4439
+
4440
+ #: classes/helpers/FrmAppHelper.php:330
4441
+ #@ formidable
4442
+ msgid "Equatorial Guinea"
4443
+ msgstr ""
4444
+
4445
+ #: classes/helpers/FrmAppHelper.php:331
4446
+ #@ formidable
4447
+ msgid "Eritrea"
4448
+ msgstr ""
4449
+
4450
+ #: classes/helpers/FrmAppHelper.php:331
4451
+ #@ formidable
4452
+ msgid "Estonia"
4453
+ msgstr ""
4454
+
4455
+ #: classes/helpers/FrmAppHelper.php:331
4456
+ #@ formidable
4457
+ msgid "Ethiopia"
4458
+ msgstr ""
4459
+
4460
+ #: classes/helpers/FrmAppHelper.php:332
4461
+ #@ formidable
4462
+ msgid "Fiji"
4463
+ msgstr ""
4464
+
4465
+ #: classes/helpers/FrmAppHelper.php:332
4466
+ #@ formidable
4467
+ msgid "Finland"
4468
+ msgstr ""
4469
+
4470
+ #: classes/helpers/FrmAppHelper.php:332
4471
+ #@ formidable
4472
+ msgid "France"
4473
+ msgstr "Frankrijk"
4474
+
4475
+ #: classes/helpers/FrmAppHelper.php:333
4476
+ #@ formidable
4477
+ msgid "French Guiana"
4478
+ msgstr ""
4479
+
4480
+ #: classes/helpers/FrmAppHelper.php:333
4481
+ #@ formidable
4482
+ msgid "French Polynesia"
4483
+ msgstr ""
4484
+
4485
+ #: classes/helpers/FrmAppHelper.php:333
4486
+ #@ formidable
4487
+ msgid "Gabon"
4488
+ msgstr ""
4489
+
4490
+ #: classes/helpers/FrmAppHelper.php:334
4491
+ #@ formidable
4492
+ msgid "Gambia"
4493
+ msgstr ""
4494
+
4495
+ #: classes/helpers/FrmAppHelper.php:334
4496
+ #@ formidable
4497
+ msgid "Georgia"
4498
+ msgstr ""
4499
+
4500
+ #: classes/helpers/FrmAppHelper.php:334
4501
+ #@ formidable
4502
+ msgid "Germany"
4503
+ msgstr ""
4504
+
4505
+ #: classes/helpers/FrmAppHelper.php:335
4506
+ #@ formidable
4507
+ msgid "Ghana"
4508
+ msgstr ""
4509
+
4510
+ #: classes/helpers/FrmAppHelper.php:335
4511
+ #@ formidable
4512
+ msgid "Gibraltar"
4513
+ msgstr ""
4514
+
4515
+ #: classes/helpers/FrmAppHelper.php:335
4516
+ #@ formidable
4517
+ msgid "Greece"
4518
+ msgstr ""
4519
+
4520
+ #: classes/helpers/FrmAppHelper.php:336
4521
+ #@ formidable
4522
+ msgid "Greenland"
4523
+ msgstr ""
4524
+
4525
+ #: classes/helpers/FrmAppHelper.php:336
4526
+ #@ formidable
4527
+ msgid "Grenada"
4528
+ msgstr ""
4529
+
4530
+ #: classes/helpers/FrmAppHelper.php:336
4531
+ #@ formidable
4532
+ msgid "Guam"
4533
+ msgstr ""
4534
+
4535
+ #: classes/helpers/FrmAppHelper.php:337
4536
+ #@ formidable
4537
+ msgid "Guatemala"
4538
+ msgstr ""
4539
+
4540
+ #: classes/helpers/FrmAppHelper.php:337
4541
+ #@ formidable
4542
+ msgid "Guinea"
4543
+ msgstr ""
4544
+
4545
+ #: classes/helpers/FrmAppHelper.php:337
4546
+ #@ formidable
4547
+ msgid "Guinea-Bissau"
4548
+ msgstr ""
4549
+
4550
+ #: classes/helpers/FrmAppHelper.php:338
4551
+ #@ formidable
4552
+ msgid "Guyana"
4553
+ msgstr ""
4554
+
4555
+ #: classes/helpers/FrmAppHelper.php:338
4556
+ #@ formidable
4557
+ msgid "Haiti"
4558
+ msgstr ""
4559
+
4560
+ #: classes/helpers/FrmAppHelper.php:338
4561
+ #@ formidable
4562
+ msgid "Honduras"
4563
+ msgstr ""
4564
+
4565
+ #: classes/helpers/FrmAppHelper.php:339
4566
+ #@ formidable
4567
+ msgid "Hong Kong"
4568
+ msgstr ""
4569
+
4570
+ #: classes/helpers/FrmAppHelper.php:339
4571
+ #@ formidable
4572
+ msgid "Hungary"
4573
+ msgstr ""
4574
+
4575
+ #: classes/helpers/FrmAppHelper.php:339
4576
+ #@ formidable
4577
+ msgid "Iceland"
4578
+ msgstr ""
4579
+
4580
+ #: classes/helpers/FrmAppHelper.php:340
4581
+ #@ formidable
4582
+ msgid "India"
4583
+ msgstr ""
4584
+
4585
+ #: classes/helpers/FrmAppHelper.php:340
4586
+ #@ formidable
4587
+ msgid "Indonesia"
4588
+ msgstr ""
4589
+
4590
+ #: classes/helpers/FrmAppHelper.php:340
4591
+ #@ formidable
4592
+ msgid "Iran"
4593
+ msgstr ""
4594
+
4595
+ #: classes/helpers/FrmAppHelper.php:341
4596
+ #@ formidable
4597
+ msgid "Iraq"
4598
+ msgstr ""
4599
+
4600
+ #: classes/helpers/FrmAppHelper.php:341
4601
+ #@ formidable
4602
+ msgid "Ireland"
4603
+ msgstr ""
4604
+
4605
+ #: classes/helpers/FrmAppHelper.php:341
4606
+ #@ formidable
4607
+ msgid "Israel"
4608
+ msgstr ""
4609
+
4610
+ #: classes/helpers/FrmAppHelper.php:342
4611
+ #@ formidable
4612
+ msgid "Italy"
4613
+ msgstr ""
4614
+
4615
+ #: classes/helpers/FrmAppHelper.php:342
4616
+ #@ formidable
4617
+ msgid "Jamaica"
4618
+ msgstr ""
4619
+
4620
+ #: classes/helpers/FrmAppHelper.php:342
4621
+ #@ formidable
4622
+ msgid "Japan"
4623
+ msgstr ""
4624
+
4625
+ #: classes/helpers/FrmAppHelper.php:343
4626
+ #@ formidable
4627
+ msgid "Jordan"
4628
+ msgstr ""
4629
+
4630
+ #: classes/helpers/FrmAppHelper.php:343
4631
+ #@ formidable
4632
+ msgid "Kazakhstan"
4633
+ msgstr ""
4634
+
4635
+ #: classes/helpers/FrmAppHelper.php:343
4636
+ #@ formidable
4637
+ msgid "Kenya"
4638
+ msgstr ""
4639
+
4640
+ #: classes/helpers/FrmAppHelper.php:344
4641
+ #@ formidable
4642
+ msgid "Kiribati"
4643
+ msgstr ""
4644
+
4645
+ #: classes/helpers/FrmAppHelper.php:344
4646
+ #@ formidable
4647
+ msgid "North Korea"
4648
+ msgstr ""
4649
+
4650
+ #: classes/helpers/FrmAppHelper.php:344
4651
+ #@ formidable
4652
+ msgid "South Korea"
4653
+ msgstr ""
4654
+
4655
+ #: classes/helpers/FrmAppHelper.php:345
4656
+ #@ formidable
4657
+ msgid "Kuwait"
4658
+ msgstr ""
4659
+
4660
+ #: classes/helpers/FrmAppHelper.php:345
4661
+ #@ formidable
4662
+ msgid "Kyrgyzstan"
4663
+ msgstr ""
4664
+
4665
+ #: classes/helpers/FrmAppHelper.php:345
4666
+ #@ formidable
4667
+ msgid "Laos"
4668
+ msgstr ""
4669
+
4670
+ #: classes/helpers/FrmAppHelper.php:346
4671
+ #@ formidable
4672
+ msgid "Latvia"
4673
+ msgstr ""
4674
+
4675
+ #: classes/helpers/FrmAppHelper.php:346
4676
+ #@ formidable
4677
+ msgid "Lebanon"
4678
+ msgstr ""
4679
+
4680
+ #: classes/helpers/FrmAppHelper.php:346
4681
+ #@ formidable
4682
+ msgid "Lesotho"
4683
+ msgstr ""
4684
+
4685
+ #: classes/helpers/FrmAppHelper.php:347
4686
+ #@ formidable
4687
+ msgid "Liberia"
4688
+ msgstr ""
4689
+
4690
+ #: classes/helpers/FrmAppHelper.php:347
4691
+ #@ formidable
4692
+ msgid "Libya"
4693
+ msgstr ""
4694
+
4695
+ #: classes/helpers/FrmAppHelper.php:347
4696
+ #@ formidable
4697
+ msgid "Liechtenstein"
4698
+ msgstr ""
4699
+
4700
+ #: classes/helpers/FrmAppHelper.php:348
4701
+ #@ formidable
4702
+ msgid "Lithuania"
4703
+ msgstr ""
4704
+
4705
+ #: classes/helpers/FrmAppHelper.php:348
4706
+ #@ formidable
4707
+ msgid "Luxembourg"
4708
+ msgstr ""
4709
+
4710
+ #: classes/helpers/FrmAppHelper.php:348
4711
+ #@ formidable
4712
+ msgid "Macedonia"
4713
+ msgstr ""
4714
+
4715
+ #: classes/helpers/FrmAppHelper.php:349
4716
+ #@ formidable
4717
+ msgid "Madagascar"
4718
+ msgstr ""
4719
+
4720
+ #: classes/helpers/FrmAppHelper.php:349
4721
+ #@ formidable
4722
+ msgid "Malawi"
4723
+ msgstr ""
4724
+
4725
+ #: classes/helpers/FrmAppHelper.php:349
4726
+ #@ formidable
4727
+ msgid "Malaysia"
4728
+ msgstr ""
4729
+
4730
+ #: classes/helpers/FrmAppHelper.php:350
4731
+ #@ formidable
4732
+ msgid "Maldives"
4733
+ msgstr ""
4734
+
4735
+ #: classes/helpers/FrmAppHelper.php:350
4736
+ #@ formidable
4737
+ msgid "Mali"
4738
+ msgstr ""
4739
+
4740
+ #: classes/helpers/FrmAppHelper.php:350
4741
+ #@ formidable
4742
+ msgid "Malta"
4743
+ msgstr ""
4744
+
4745
+ #: classes/helpers/FrmAppHelper.php:351
4746
+ #@ formidable
4747
+ msgid "Marshall Islands"
4748
+ msgstr ""
4749
+
4750
+ #: classes/helpers/FrmAppHelper.php:351
4751
+ #@ formidable
4752
+ msgid "Mauritania"
4753
+ msgstr ""
4754
+
4755
+ #: classes/helpers/FrmAppHelper.php:351
4756
+ #@ formidable
4757
+ msgid "Mauritius"
4758
+ msgstr ""
4759
+
4760
+ #: classes/helpers/FrmAppHelper.php:352
4761
+ #@ formidable
4762
+ msgid "Mexico"
4763
+ msgstr ""
4764
+
4765
+ #: classes/helpers/FrmAppHelper.php:352
4766
+ #@ formidable
4767
+ msgid "Micronesia"
4768
+ msgstr ""
4769
+
4770
+ #: classes/helpers/FrmAppHelper.php:352
4771
+ #@ formidable
4772
+ msgid "Moldova"
4773
+ msgstr ""
4774
+
4775
+ #: classes/helpers/FrmAppHelper.php:353
4776
+ #@ formidable
4777
+ msgid "Monaco"
4778
+ msgstr "Monaco"
4779
+
4780
+ #: classes/helpers/FrmAppHelper.php:353
4781
+ #@ formidable
4782
+ msgid "Mongolia"
4783
+ msgstr ""
4784
+
4785
+ #: classes/helpers/FrmAppHelper.php:353
4786
+ #@ formidable
4787
+ msgid "Montenegro"
4788
+ msgstr ""
4789
+
4790
+ #: classes/helpers/FrmAppHelper.php:354
4791
+ #@ formidable
4792
+ msgid "Montserrat"
4793
+ msgstr ""
4794
+
4795
+ #: classes/helpers/FrmAppHelper.php:354
4796
+ #@ formidable
4797
+ msgid "Morocco"
4798
+ msgstr ""
4799
+
4800
+ #: classes/helpers/FrmAppHelper.php:354
4801
+ #@ formidable
4802
+ msgid "Mozambique"
4803
+ msgstr ""
4804
+
4805
+ #: classes/helpers/FrmAppHelper.php:355
4806
+ #@ formidable
4807
+ msgid "Myanmar"
4808
+ msgstr ""
4809
+
4810
+ #: classes/helpers/FrmAppHelper.php:355
4811
+ #@ formidable
4812
+ msgid "Namibia"
4813
+ msgstr ""
4814
+
4815
+ #: classes/helpers/FrmAppHelper.php:355
4816
+ #@ formidable
4817
+ msgid "Nauru"
4818
+ msgstr ""
4819
+
4820
+ #: classes/helpers/FrmAppHelper.php:356
4821
+ #@ formidable
4822
+ msgid "Nepal"
4823
+ msgstr ""
4824
+
4825
+ #: classes/helpers/FrmAppHelper.php:356
4826
+ #@ formidable
4827
+ msgid "Netherlands"
4828
+ msgstr ""
4829
+
4830
+ #: classes/helpers/FrmAppHelper.php:356
4831
+ #@ formidable
4832
+ msgid "New Zealand"
4833
+ msgstr ""
4834
+
4835
+ #: classes/helpers/FrmAppHelper.php:357
4836
+ #@ formidable
4837
+ msgid "Nicaragua"
4838
+ msgstr ""
4839
+
4840
+ #: classes/helpers/FrmAppHelper.php:357
4841
+ #@ formidable
4842
+ msgid "Niger"
4843
+ msgstr ""
4844
+
4845
+ #: classes/helpers/FrmAppHelper.php:357
4846
+ #@ formidable
4847
+ msgid "Nigeria"
4848
+ msgstr ""
4849
+
4850
+ #: classes/helpers/FrmAppHelper.php:358
4851
+ #@ formidable
4852
+ msgid "Norway"
4853
+ msgstr ""
4854
+
4855
+ #: classes/helpers/FrmAppHelper.php:358
4856
+ #@ formidable
4857
+ msgid "Northern Mariana Islands"
4858
+ msgstr ""
4859
+
4860
+ #: classes/helpers/FrmAppHelper.php:358
4861
+ #@ formidable
4862
+ msgid "Oman"
4863
+ msgstr ""
4864
+
4865
+ #: classes/helpers/FrmAppHelper.php:359
4866
+ #@ formidable
4867
+ msgid "Pakistan"
4868
+ msgstr ""
4869
+
4870
+ #: classes/helpers/FrmAppHelper.php:359
4871
+ #@ formidable
4872
+ msgid "Palau"
4873
+ msgstr ""
4874
+
4875
+ #: classes/helpers/FrmAppHelper.php:359
4876
+ #@ formidable
4877
+ msgid "Palestine"
4878
+ msgstr ""
4879
+
4880
+ #: classes/helpers/FrmAppHelper.php:360
4881
+ #@ formidable
4882
+ msgid "Panama"
4883
+ msgstr ""
4884
+
4885
+ #: classes/helpers/FrmAppHelper.php:360
4886
+ #@ formidable
4887
+ msgid "Papua New Guinea"
4888
+ msgstr ""
4889
+
4890
+ #: classes/helpers/FrmAppHelper.php:360
4891
+ #@ formidable
4892
+ msgid "Paraguay"
4893
+ msgstr ""
4894
+
4895
+ #: classes/helpers/FrmAppHelper.php:361
4896
+ #@ formidable
4897
+ msgid "Peru"
4898
+ msgstr ""
4899
+
4900
+ #: classes/helpers/FrmAppHelper.php:361
4901
+ #@ formidable
4902
+ msgid "Philippines"
4903
+ msgstr ""
4904
+
4905
+ #: classes/helpers/FrmAppHelper.php:361
4906
+ #@ formidable
4907
+ msgid "Poland"
4908
+ msgstr ""
4909
+
4910
+ #: classes/helpers/FrmAppHelper.php:362
4911
+ #@ formidable
4912
+ msgid "Portugal"
4913
+ msgstr ""
4914
+
4915
+ #: classes/helpers/FrmAppHelper.php:362
4916
+ #@ formidable
4917
+ msgid "Puerto Rico"
4918
+ msgstr ""
4919
+
4920
+ #: classes/helpers/FrmAppHelper.php:362
4921
+ #@ formidable
4922
+ msgid "Qatar"
4923
+ msgstr ""
4924
+
4925
+ #: classes/helpers/FrmAppHelper.php:363
4926
+ #@ formidable
4927
+ msgid "Romania"
4928
+ msgstr ""
4929
+
4930
+ #: classes/helpers/FrmAppHelper.php:363
4931
+ #@ formidable
4932
+ msgid "Russia"
4933
+ msgstr ""
4934
+
4935
+ #: classes/helpers/FrmAppHelper.php:363
4936
+ #@ formidable
4937
+ msgid "Rwanda"
4938
+ msgstr ""
4939
+
4940
+ #: classes/helpers/FrmAppHelper.php:364
4941
+ #@ formidable
4942
+ msgid "Saint Kitts and Nevis"
4943
+ msgstr ""
4944
+
4945
+ #: classes/helpers/FrmAppHelper.php:364
4946
+ #@ formidable
4947
+ msgid "Saint Lucia"
4948
+ msgstr ""
4949
+
4950
+ #: classes/helpers/FrmAppHelper.php:365
4951
+ #@ formidable
4952
+ msgid "Saint Vincent and the Grenadines"
4953
+ msgstr ""
4954
+
4955
+ #: classes/helpers/FrmAppHelper.php:365
4956
+ #@ formidable
4957
+ msgid "Samoa"
4958
+ msgstr ""
4959
+
4960
+ #: classes/helpers/FrmAppHelper.php:366
4961
+ #@ formidable
4962
+ msgid "San Marino"
4963
+ msgstr ""
4964
+
4965
+ #: classes/helpers/FrmAppHelper.php:366
4966
+ #@ formidable
4967
+ msgid "Sao Tome and Principe"
4968
+ msgstr ""
4969
+
4970
+ #: classes/helpers/FrmAppHelper.php:366
4971
+ #@ formidable
4972
+ msgid "Saudi Arabia"
4973
+ msgstr ""
4974
+
4975
+ #: classes/helpers/FrmAppHelper.php:367
4976
+ #@ formidable
4977
+ msgid "Senegal"
4978
+ msgstr ""
4979
+
4980
+ #: classes/helpers/FrmAppHelper.php:367
4981
+ #@ formidable
4982
+ msgid "Serbia and Montenegro"
4983
+ msgstr ""
4984
+
4985
+ #: classes/helpers/FrmAppHelper.php:367
4986
+ #@ formidable
4987
+ msgid "Seychelles"
4988
+ msgstr ""
4989
+
4990
+ #: classes/helpers/FrmAppHelper.php:368
4991
+ #@ formidable
4992
+ msgid "Sierra Leone"
4993
+ msgstr ""
4994
+
4995
+ #: classes/helpers/FrmAppHelper.php:368
4996
+ #@ formidable
4997
+ msgid "Singapore"
4998
+ msgstr ""
4999
+
5000
+ #: classes/helpers/FrmAppHelper.php:368
5001
+ #@ formidable
5002
+ msgid "Slovakia"
5003
+ msgstr ""
5004
+
5005
+ #: classes/helpers/FrmAppHelper.php:369
5006
+ #@ formidable
5007
+ msgid "Slovenia"
5008
+ msgstr ""
5009
+
5010
+ #: classes/helpers/FrmAppHelper.php:369
5011
+ #@ formidable
5012
+ msgid "Solomon Islands"
5013
+ msgstr ""
5014
+
5015
+ #: classes/helpers/FrmAppHelper.php:369
5016
+ #@ formidable
5017
+ msgid "Somalia"
5018
+ msgstr ""
5019
+
5020
+ #: classes/helpers/FrmAppHelper.php:370
5021
+ #@ formidable
5022
+ msgid "South Africa"
5023
+ msgstr ""
5024
+
5025
+ #: classes/helpers/FrmAppHelper.php:370
5026
+ #@ formidable
5027
+ msgid "Spain"
5028
+ msgstr ""
5029
+
5030
+ #: classes/helpers/FrmAppHelper.php:370
5031
+ #@ formidable
5032
+ msgid "Sri Lanka"
5033
+ msgstr ""
5034
+
5035
+ #: classes/helpers/FrmAppHelper.php:371
5036
+ #@ formidable
5037
+ msgid "Sudan"
5038
+ msgstr "Soedan"
5039
+
5040
+ #: classes/helpers/FrmAppHelper.php:371
5041
+ #@ formidable
5042
+ msgid "Suriname"
5043
+ msgstr ""
5044
+
5045
+ #: classes/helpers/FrmAppHelper.php:371
5046
+ #@ formidable
5047
+ msgid "Swaziland"
5048
+ msgstr ""
5049
+
5050
+ #: classes/helpers/FrmAppHelper.php:372
5051
+ #@ formidable
5052
+ msgid "Sweden"
5053
+ msgstr ""
5054
+
5055
+ #: classes/helpers/FrmAppHelper.php:372
5056
+ #@ formidable
5057
+ msgid "Switzerland"
5058
+ msgstr ""
5059
+
5060
+ #: classes/helpers/FrmAppHelper.php:372
5061
+ #@ formidable
5062
+ msgid "Syria"
5063
+ msgstr ""
5064
+
5065
+ #: classes/helpers/FrmAppHelper.php:373
5066
+ #@ formidable
5067
+ msgid "Taiwan"
5068
+ msgstr ""
5069
+
5070
+ #: classes/helpers/FrmAppHelper.php:373
5071
+ #@ formidable
5072
+ msgid "Tajikistan"
5073
+ msgstr ""
5074
+
5075
+ #: classes/helpers/FrmAppHelper.php:373
5076
+ #@ formidable
5077
+ msgid "Tanzania"
5078
+ msgstr ""
5079
+
5080
+ #: classes/helpers/FrmAppHelper.php:374
5081
+ #@ formidable
5082
+ msgid "Thailand"
5083
+ msgstr ""
5084
+
5085
+ #: classes/helpers/FrmAppHelper.php:374
5086
+ #@ formidable
5087
+ msgid "Togo"
5088
+ msgstr ""
5089
+
5090
+ #: classes/helpers/FrmAppHelper.php:374
5091
+ #@ formidable
5092
+ msgid "Tonga"
5093
+ msgstr ""
5094
+
5095
+ #: classes/helpers/FrmAppHelper.php:375
5096
+ #@ formidable
5097
+ msgid "Trinidad and Tobago"
5098
+ msgstr ""
5099
+
5100
+ #: classes/helpers/FrmAppHelper.php:375
5101
+ #@ formidable
5102
+ msgid "Tunisia"
5103
+ msgstr ""
5104
+
5105
+ #: classes/helpers/FrmAppHelper.php:375
5106
+ #@ formidable
5107
+ msgid "Turkey"
5108
+ msgstr "Turkije"
5109
+
5110
+ #: classes/helpers/FrmAppHelper.php:376
5111
+ #@ formidable
5112
+ msgid "Turkmenistan"
5113
+ msgstr ""
5114
+
5115
+ #: classes/helpers/FrmAppHelper.php:376
5116
+ #@ formidable
5117
+ msgid "Tuvalu"
5118
+ msgstr ""
5119
+
5120
+ #: classes/helpers/FrmAppHelper.php:376
5121
+ #@ formidable
5122
+ msgid "Uganda"
5123
+ msgstr ""
5124
+
5125
+ #: classes/helpers/FrmAppHelper.php:377
5126
+ #@ formidable
5127
+ msgid "Ukraine"
5128
+ msgstr ""
5129
+
5130
+ #: classes/helpers/FrmAppHelper.php:377
5131
+ #@ formidable
5132
+ msgid "United Arab Emirates"
5133
+ msgstr ""
5134
+
5135
+ #: classes/helpers/FrmAppHelper.php:377
5136
+ #@ formidable
5137
+ msgid "United Kingdom"
5138
+ msgstr "Engeland"
5139
+
5140
+ #: classes/helpers/FrmAppHelper.php:378
5141
+ #@ formidable
5142
+ msgid "United States"
5143
+ msgstr ""
5144
+
5145
+ #: classes/helpers/FrmAppHelper.php:378
5146
+ #@ formidable
5147
+ msgid "Uruguay"
5148
+ msgstr ""
5149
+
5150
+ #: classes/helpers/FrmAppHelper.php:378
5151
+ #@ formidable
5152
+ msgid "Uzbekistan"
5153
+ msgstr ""
5154
+
5155
+ #: classes/helpers/FrmAppHelper.php:379
5156
+ #@ formidable
5157
+ msgid "Vanuatu"
5158
+ msgstr ""
5159
+
5160
+ #: classes/helpers/FrmAppHelper.php:379
5161
+ #@ formidable
5162
+ msgid "Vatican City"
5163
+ msgstr ""
5164
+
5165
+ #: classes/helpers/FrmAppHelper.php:379
5166
+ #@ formidable
5167
+ msgid "Venezuela"
5168
+ msgstr ""
5169
+
5170
+ #: classes/helpers/FrmAppHelper.php:380
5171
+ #@ formidable
5172
+ msgid "Vietnam"
5173
+ msgstr ""
5174
+
5175
+ #: classes/helpers/FrmAppHelper.php:380
5176
+ #@ formidable
5177
+ msgid "Virgin Islands, British"
5178
+ msgstr ""
5179
+
5180
+ #: classes/helpers/FrmAppHelper.php:381
5181
+ #@ formidable
5182
+ msgid "Virgin Islands, U.S."
5183
+ msgstr ""
5184
+
5185
+ #: classes/helpers/FrmAppHelper.php:381
5186
+ #@ formidable
5187
+ msgid "Yemen"
5188
+ msgstr ""
5189
+
5190
+ #: classes/helpers/FrmAppHelper.php:381
5191
+ #@ formidable
5192
+ msgid "Zambia"
5193
+ msgstr ""
5194
+
5195
+ #: classes/helpers/FrmAppHelper.php:382
5196
+ #@ formidable
5197
+ msgid "Zimbabwe"
5198
+ msgstr ""
5199
+
5200
+ #: classes/views/frm-fields/import_choices.php:56
5201
+ #@ formidable
5202
+ msgid "Edit or add field options (one per line)"
5203
+ msgstr ""
5204
+
5205
+ #: classes/views/frm-fields/import_choices.php:69
5206
+ #@ formidable
5207
+ msgid "Update Field Choices"
5208
+ msgstr "Update veld keuzes"
5209
+
5210
+ #: classes/views/frm-forms/add_field.php:40
5211
+ #: classes/views/frm-forms/add_field.php:73
5212
+ #@ formidable
5213
+ msgid "Bulk Edit Field Choices"
5214
+ msgstr ""
5215
+
5216
+ #: classes/views/frm-settings/form.php:54
5217
+ #@ formidable
5218
+ msgid "Use HTML5 in forms"
5219
+ msgstr "Gebruik HTML5 in formulieren"
5220
+
5221
+ #: classes/views/frm-settings/form.php:130
5222
+ #@ formidable
5223
+ msgid "The message seen when a form is submitted and passes validation, but something goes wrong."
5224
+ msgstr ""
5225
+
5226
+ #: pro/classes/controllers/FrmProEntriesController.php:285
5227
+ #@ formidable
5228
+ msgid "Step Two"
5229
+ msgstr "Stap 2"
5230
+
5231
+ #: pro/classes/helpers/FrmProEntryMetaHelper.php:198
5232
+ #: pro/classes/helpers/FrmProEntryMetaHelper.php:224
5233
+ #, php-format
5234
+ #@ formidable
5235
+ msgid "View all posts filed under %s"
5236
+ msgstr "Bekijk alle berichten onder %s"
5237
+
5238
+ #: pro/classes/views/frmpro-entries/import.php:3
5239
+ #@ formidable
5240
+ msgid "Import Entries"
5241
+ msgstr "importeer de inzendingen"
5242
+
5243
+ #: pro/classes/views/frmpro-entries/import.php:11
5244
+ #, php-format
5245
+ #@ formidable
5246
+ msgid "The next 250 of the remaining %1$s entries are importing."
5247
+ msgstr ""
5248
+
5249
+ #: pro/classes/views/frmpro-entries/import.php:11
5250
+ #@ formidable
5251
+ msgid "Import Now"
5252
+ msgstr "Nu importeren"
5253
+
5254
+ #: pro/classes/views/frmpro-entries/import.php:41
5255
+ #@ formidable
5256
+ msgid "Step"
5257
+ msgstr ""
5258
+
5259
+ #: pro/classes/views/frmpro-entries/import.php:48
5260
+ #@ formidable
5261
+ msgid "Select CSV"
5262
+ msgstr ""
5263
+
5264
+ #: pro/classes/views/frmpro-entries/import.php:55
5265
+ #@ formidable
5266
+ msgid "CSV Delimiter"
5267
+ msgstr ""
5268
+
5269
+ #: pro/classes/views/frmpro-entries/import.php:62
5270
+ #@ formidable
5271
+ msgid "Import Into Form"
5272
+ msgstr "Importeer in het formulier"
5273
+
5274
+ #: pro/classes/views/frmpro-entries/import.php:75
5275
+ #@ formidable
5276
+ msgid "CSV header"
5277
+ msgstr ""
5278
+
5279
+ #: pro/classes/views/frmpro-entries/import.php:76
5280
+ #@ formidable
5281
+ msgid "Sample data"
5282
+ msgstr ""
5283
+
5284
+ #: pro/classes/views/frmpro-entries/import.php:77
5285
+ #@ formidable
5286
+ msgid "Corresponding Field"
5287
+ msgstr "Overeenkomend veld"
5288
+
5289
+ #: pro/classes/views/frmpro-entries/import.php:95
5290
+ #@ formidable
5291
+ msgid "Created by"
5292
+ msgstr "aangemaakt door"
5293
+
5294
+ #: pro/classes/views/frmpro-entries/import.php:96
5295
+ #@ formidable
5296
+ msgid "Updated at"
5297
+ msgstr "ge-update op"
5298
+
5299
+ #: pro/classes/views/frmpro-entries/import.php:97
5300
+ #@ formidable
5301
+ msgid "Updated by"
5302
+ msgstr "Update door"
5303
+
5304
+ #: pro/classes/views/settings/formroller.php:166
5305
+ #@ formidable
5306
+ msgid "Automatic Width for drop-down fields"
5307
+ msgstr "Automatische breedte voor drop-down velden"
5308
+
5309
+ #: classes/views/frm-settings/form.php:35
5310
+ #@ formidable
5311
+ msgid "Tracking"
5312
+ msgstr ""
5313
+
5314
+ #: classes/views/frm-settings/form.php:37
5315
+ #@ formidable
5316
+ msgid "Track referrer information and pages visited"
5317
+ msgstr ""
5318
+
5319
+ #: pro/classes/controllers/FrmProStatisticsController.php:241
5320
+ #@ formidable
5321
+ msgid "Deleted User"
5322
+ msgstr ""
5323
+
5324
+ #: pro/classes/views/displays/form.php:25
5325
+ #@ formidable
5326
+ msgid "Insert position"
5327
+ msgstr ""
5328
+
5329
+ #: pro/classes/views/displays/form.php:25
5330
+ #@ formidable
5331
+ msgid "If the custom display doesn't show automatically when it should, insert a higher number here."
5332
+ msgstr ""
5333
+
5334
+ #: pro/classes/views/settings/form.php:55
5335
+ #@ formidable
5336
+ msgid "CSV Export Format"
5337
+ msgstr ""
5338
+
5339
+ #: pro/classes/views/settings/form.php:55
5340
+ #@ formidable
5341
+ msgid "If your CSV special characters are not working correctly, try a different option."
5342
+ msgstr ""
5343
+
5344
+ #: pro/classes/views/settings/form.php:61
5345
+ #@ formidable
5346
+ msgid "Macintosh"
5347
+ msgstr ""
5348
+
languages/formidable-pt_BR.mo CHANGED
Binary file
languages/formidable-pt_BR.po CHANGED
@@ -19,7 +19,7 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: classes/controllers/FrmAppController.php:57
23
  #: classes/controllers/FrmFormsController.php:21
24
  #: classes/views/frm-forms/list.php:3
25
  #: pro/classes/views/shared/import_form.php:47
@@ -27,45 +27,31 @@ msgstr ""
27
  msgid "Forms"
28
  msgstr "Formulários"
29
 
30
- #: classes/controllers/FrmAppController.php:60
31
- #: classes/controllers/FrmFormsController.php:22
32
- #@ formidable
33
- msgid "Create a Form"
34
- msgstr "Criar um formulário"
35
-
36
  #: classes/controllers/FrmAppController.php:63
37
  #: classes/controllers/FrmFormsController.php:23
38
- #: classes/views/frm-forms/list.php:3
39
  #@ formidable
40
  msgid "Templates"
41
  msgstr "Modelos"
42
 
43
- #: classes/controllers/FrmAppController.php:69
44
  #: classes/controllers/FrmSettingsController.php:14
45
- #: classes/views/frm-settings/form.php:3
46
  #@ formidable
47
  msgid "Settings"
48
  msgstr "Configurações"
49
 
50
- #: classes/controllers/FrmAppController.php:84
51
- #: classes/controllers/FrmAppController.php:114
52
  #, php-format
53
  #@ formidable
54
  msgid "Your Formidable Pro installation isn't quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Formidable Pro%2$s"
55
  msgstr "Sua instalação Formidable Pro não está completa ainda.<br/> %1$sUpgrade automático para ativar Formidable Pro%2$s"
56
 
57
- #: classes/controllers/FrmAppController.php:105
58
- #@ formidable
59
- msgid "Your Formidable database needs to be updated.<br/>Please deactivate and reactivate the plugin to fix this."
60
- msgstr "Seu banco de dados Formidable precisa ser atualizado.<br/> Por favor, desativar e reativar o plugin para corrigir isso."
61
-
62
- #: classes/controllers/FrmAppController.php:194
63
  #@ formidable
64
  msgid "Formidable was successfully uninstalled."
65
  msgstr "Formidable foi desinstalado com êxito."
66
 
67
  #: classes/controllers/FrmEntriesController.php:15
68
- #: classes/views/frm-entries/list.php:3
69
  #@ formidable
70
  msgid "Pro Entries"
71
  msgstr "Entradas Pro"
@@ -75,42 +61,42 @@ msgstr "Entradas Pro"
75
  msgid "Please select a valid form"
76
  msgstr "Por favor selecione um formulário válido"
77
 
78
- #: classes/controllers/FrmFormsController.php:76
79
  #@ formidable
80
  msgid "Form was Successfully Created"
81
  msgstr "Formulário foi criado com sucesso"
82
 
83
- #: classes/controllers/FrmFormsController.php:111
84
  #@ formidable
85
  msgid "Form was Successfully Updated"
86
  msgstr "Formulário foi atualizado com sucesso"
87
 
88
- #: classes/controllers/FrmFormsController.php:121
89
  #@ formidable
90
  msgid "Form template was Successfully Created"
91
  msgstr "modelo de formulário foi criado com sucesso"
92
 
93
- #: classes/controllers/FrmFormsController.php:121
94
  #@ formidable
95
  msgid "Form was Successfully Copied"
96
  msgstr "Formulário foi copiado com sucesso"
97
 
98
- #: classes/controllers/FrmFormsController.php:125
99
  #@ formidable
100
  msgid "There was a problem creating new template."
101
  msgstr "Houve um problema ao criar novo modelo."
102
 
103
- #: classes/controllers/FrmFormsController.php:170
104
  #@ formidable
105
  msgid "Form was Successfully Deleted"
106
  msgstr "Formulário foi excluído com êxito"
107
 
108
- #: classes/controllers/FrmFormsController.php:191
109
  #@ formidable
110
  msgid "Add Formidable Form"
111
  msgstr "Adicionar formulário Formidable"
112
 
113
- #: classes/controllers/FrmFormsController.php:314
114
  #@ formidable
115
  msgid "That template cannot be edited"
116
  msgstr "Esse modelo não pode ser editado"
@@ -125,11 +111,6 @@ msgstr "Configurações salvas"
125
  msgid "View Forms and Templates"
126
  msgstr "Exibir formulários e modelos"
127
 
128
- #: classes/helpers/FrmAppHelper.php:45
129
- #@ formidable
130
- msgid "Create/Edit Forms and Templates"
131
- msgstr "Criar / Editar Formulários e Modelos"
132
-
133
  #: classes/helpers/FrmAppHelper.php:46
134
  #@ formidable
135
  msgid "Delete Forms and Templates"
@@ -145,11 +126,6 @@ msgstr "Acessar a página de Configurações"
145
  msgid "View Entries from Admin Area"
146
  msgstr "Ver entradas da Área de Admin"
147
 
148
- #: classes/helpers/FrmAppHelper.php:51
149
- #@ formidable
150
- msgid "Create Entries from Admin Area"
151
- msgstr "Criar entradas da Área de Admin"
152
-
153
  #: classes/helpers/FrmAppHelper.php:52
154
  #@ formidable
155
  msgid "Edit Entries from Admin Area"
@@ -165,17 +141,6 @@ msgstr "Apagar entradas da área de Administração"
165
  msgid "View Reports"
166
  msgstr "Ver relatórios"
167
 
168
- #: classes/helpers/FrmAppHelper.php:55
169
- #@ formidable
170
- msgid "Create/Edit Custom Displays"
171
- msgstr "Criar / Editar apresentações personalizadas"
172
-
173
- #: classes/helpers/FrmAppHelper.php:169
174
- #: pro/classes/models/FrmProEntryMeta.php:129
175
- #@ formidable
176
- msgid "is an invalid format"
177
- msgstr "é um formato inválido"
178
-
179
  #: classes/helpers/FrmFieldsHelper.php:7
180
  #@ formidable
181
  msgid "Text Input (One Line)"
@@ -212,7 +177,7 @@ msgid "Page Break"
212
  msgstr "Quebra de Página"
213
 
214
  #: classes/helpers/FrmFieldsHelper.php:23
215
- #: pro/classes/views/settings/form.php:103
216
  #@ formidable
217
  msgid "File Upload"
218
  msgstr "Upload de Arquivos"
@@ -228,19 +193,19 @@ msgid "Phone Number"
228
  msgstr "Telefone"
229
 
230
  #: classes/helpers/FrmFieldsHelper.php:27
231
- #: pro/classes/views/frmpro-forms/notifications.php:127
232
  #@ formidable
233
  msgid "Email Address"
234
  msgstr "E-mail"
235
 
236
  #: classes/helpers/FrmFieldsHelper.php:28
237
- #: pro/classes/models/FrmProField.php:24
238
  #@ formidable
239
  msgid "Date"
240
  msgstr "Data"
241
 
242
  #: classes/helpers/FrmFieldsHelper.php:29
243
- #: pro/classes/models/FrmProField.php:29
244
  #@ formidable
245
  msgid "Time"
246
  msgstr "Hora"
@@ -275,48 +240,36 @@ msgstr "Campo oculto"
275
  msgid "Tags"
276
  msgstr "Tags"
277
 
278
- #: classes/helpers/FrmFieldsHelper.php:55
279
  #@ formidable
280
  msgid "Untitled"
281
  msgstr "Sem título"
282
 
283
- #: classes/helpers/FrmFieldsHelper.php:55
284
- #: pro/classes/models/FrmProEntryMeta.php:129
285
- #@ formidable
286
- msgid "Untitled is an invalid format"
287
- msgstr "Untitled é um formato inválido"
288
-
289
- #: classes/helpers/FrmFieldsHelper.php:220
290
  #, php-format
291
  #@ formidable
292
  msgid "Set this field to %1$sclear on click"
293
  msgstr "Defina este campo para %1$sclear ao clicar nele"
294
 
295
- #: classes/helpers/FrmFieldsHelper.php:226
296
  #, php-format
297
  #@ formidable
298
  msgid "This default value should %1$sbe considered blank"
299
  msgstr "Este valor padrão dever ser %1$sbe considerado em branco"
300
 
301
  #: classes/helpers/FrmFormsHelper.php:16
302
- #: classes/views/frm-forms/default-templates.php:22
303
- #: classes/views/frm-forms/list.php:67
304
  #@ formidable
305
  msgid "Create Form from Template"
306
  msgstr "Criar um formulário a partir do modelo"
307
 
308
- #: classes/helpers/FrmFormsHelper.php:48
309
  #@ formidable
310
  msgid "Untitled Form"
311
  msgstr "Formulário sem título"
312
 
313
- #: classes/helpers/FrmFieldsHelper.php:55
314
- #: classes/models/FrmEntry.php:228
315
- #@ formidable
316
- msgid "Untitled cannot be blank"
317
- msgstr "Sem título não pode estar em branco"
318
-
319
- #: classes/models/FrmEntry.php:260
320
  #@ formidable
321
  msgid "Your entry appears to be spam!"
322
  msgstr "Sua entrada parece ser spam!"
@@ -327,117 +280,106 @@ msgstr "Sua entrada parece ser spam!"
327
  msgid "%1$s form has been submitted on %2$s."
328
  msgstr "Formulário %1$sbe foi enviado em %2$s."
329
 
330
- #: classes/models/FrmNotification.php:39
331
- #: pro/classes/models/FrmProNotification.php:139
332
  #: pro/classes/views/displays/tags.php:21
333
- #: pro/classes/views/frmpro-entries/show.php:35
334
  #@ formidable
335
  msgid "User Information"
336
  msgstr "Informações do Usuário"
337
 
338
- #: classes/models/FrmNotification.php:40
339
- #: pro/classes/models/FrmProNotification.php:140
340
- #: pro/classes/models/FrmProNotification.php:144
341
- #: pro/classes/views/frmpro-entries/show.php:38
342
- #: pro/classes/views/frmpro-forms/add_form_options.php:60
 
343
  #@ formidable
344
  msgid "IP Address"
345
  msgstr "Endereço IP"
346
 
347
- #: classes/models/FrmNotification.php:41
348
- #: pro/classes/models/FrmProNotification.php:141
349
- #: pro/classes/models/FrmProNotification.php:146
350
- #: pro/classes/views/frmpro-entries/show.php:43
351
  #@ formidable
352
  msgid "User-Agent (Browser/OS)"
353
  msgstr "User-agent (Browser / OS)"
354
 
355
- #: classes/models/FrmNotification.php:42
356
- #: pro/classes/models/FrmProNotification.php:142
357
- #: pro/classes/models/FrmProNotification.php:148
358
- #: pro/classes/views/frmpro-entries/show.php:47
359
  #@ formidable
360
  msgid "Referrer"
361
  msgstr "Referrer"
362
 
363
- #: classes/models/FrmNotification.php:45
364
- #: pro/classes/models/FrmProNotification.php:160
365
- #: pro/classes/models/FrmProNotification.php:248
366
  #, php-format
367
  #@ formidable
368
  msgid "%1$s Form submitted on %2$s"
369
  msgstr "Formulário %1$s enviado em %2$s"
370
 
371
- #: classes/models/FrmSettings.php:90
372
- #: classes/models/FrmSettings.php:141
373
  #@ formidable
374
  msgid "Your responses were successfully submitted. Thank you!"
375
  msgstr "Suas respostas foram enviados com sucesso. Obrigado!"
376
 
377
- #: classes/models/FrmSettings.php:94
378
- #: classes/models/FrmSettings.php:142
379
- #@ formidable
380
- msgid "We're sorry. There was an error processing your responses."
381
- msgstr "Lamentamos. Houve um erro de processamento de suas respostas."
382
-
383
- #: classes/models/FrmSettings.php:98
384
- #: classes/models/FrmSettings.php:143
385
  #@ formidable
386
  msgid "Submit"
387
  msgstr "Enviar"
388
 
389
- #: classes/models/FrmSettings.php:101
390
  #@ formidable
391
  msgid "You do not have permission to view this form."
392
  msgstr "Você não tem permissão para visualizar este formulário."
393
 
394
- #: classes/models/FrmSettings.php:105
395
  #@ formidable
396
  msgid "You do not have permission to do that"
397
  msgstr "Você não tem permissão de fazer isso"
398
 
399
- #: classes/models/FrmSettings.php:144
400
- #@ formidable
401
- msgid "You must log in"
402
- msgstr "Você deve logar"
403
-
404
- #: classes/models/FrmUpdate.php:132
405
  #@ formidable
406
  msgid "Pro Account Information"
407
  msgstr "Informações sobre a conta Pro"
408
 
409
- #: classes/models/FrmUpdate.php:141
410
  #, php-format
411
  #@ formidable
412
  msgid "Your Username & Password was accepted<br/>Now you can %1$sUpgrade Automatically!%2$s"
413
  msgstr "Seu Nome de Usuário e Senha foi aceito <br/> Agora você pode %1$s fazer Upgrade automaticamente!%2$s"
414
 
415
- #: classes/models/FrmUpdate.php:149
416
  #@ formidable
417
  msgid "ERROR"
418
  msgstr "ERRO"
419
 
420
- #: classes/models/FrmUpdate.php:169
421
  #@ formidable
422
  msgid "Ready to take your forms to the next level?<br/>Formidable Pro will help you style forms, manage data, and get reports."
423
  msgstr "Pronto para ter seus formulários no próximo nível? <br/> Formidable Pro vai ajudá-lo na aparência dos formulários , gerenciar dados e obter relatórios."
424
 
425
- #: classes/models/FrmUpdate.php:171
426
  #@ formidable
427
  msgid "Learn More"
428
  msgstr "Saiba mais"
429
 
430
- #: classes/models/FrmUpdate.php:200
431
  #@ formidable
432
  msgid "WordPress MU"
433
  msgstr "WordPress MU"
434
 
435
- #: classes/models/FrmUpdate.php:203
436
  #@ formidable
437
  msgid "Use this username and password to enable Formidable Pro site-wide"
438
  msgstr "Usar esse nome de usuário e senha para permitir Formidable Pro em todos os sites da rede"
439
 
440
- #: classes/models/FrmUpdate.php:209
441
  #@ formidable
442
  msgid "Save"
443
  msgstr "Salvar"
@@ -452,90 +394,68 @@ msgstr "Fale Conosco"
452
  msgid "We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly."
453
  msgstr "Nós gostaríamos de ouvir de você. Por favor, envie-nos uma mensagem preenchendo o formulário abaixo e entraremos em contato com você em breve."
454
 
455
- #: classes/templates/contact.php:19
456
  #: classes/views/frm-forms/default-templates.php:7
457
- #: classes/views/frm-forms/default-templates.php:39
458
- #: classes/views/frm-forms/list.php:22
459
- #: classes/views/frm-forms/list.php:32
460
- #: classes/views/frm-forms/list.php:129
461
- #: classes/views/frm-forms/list.php:133
462
- #: pro/classes/views/displays/form.php:61
463
- #: pro/classes/views/displays/list.php:25
464
- #: pro/classes/views/displays/list.php:83
465
- #: pro/classes/views/frmpro-forms/notifications.php:125
 
 
466
  #@ formidable
467
  msgid "Name"
468
  msgstr "Nome"
469
 
470
- #: classes/templates/contact.php:21
471
- #: pro/classes/models/FrmProDisplay.php:157
472
  #@ formidable
473
  msgid "Name cannot be blank"
474
  msgstr "Nome não pode estar em branco"
475
 
476
- #: classes/templates/contact.php:26
477
- #: pro/classes/models/FrmProField.php:48
 
 
478
  #@ formidable
479
  msgid "Email"
480
  msgstr "E-mail"
481
 
482
- #: classes/templates/contact.php:28
483
- #@ formidable
484
- msgid "Email cannot be blank"
485
- msgstr "Email não pode estar em branco"
486
-
487
- #: classes/templates/contact.php:29
488
  #@ formidable
489
  msgid "Please enter a valid email address"
490
  msgstr "Por favor insira um email válido"
491
 
492
- #: classes/templates/contact.php:34
493
- #: pro/classes/models/FrmProField.php:43
494
  #@ formidable
495
  msgid "Website"
496
  msgstr "Website"
497
 
498
- #: classes/templates/contact.php:35
499
- #@ formidable
500
- msgid "Website cannot be blank"
501
- msgstr "Website não pode estar em branco"
502
-
503
- #: classes/templates/contact.php:36
504
- #@ formidable
505
- msgid "Website is an invalid format"
506
- msgstr "Website com formato inválido"
507
-
508
- #: classes/templates/contact.php:41
509
- #: pro/classes/views/frmpro-forms/notifications.php:79
510
- #: pro/classes/views/frmpro-forms/notifications.php:137
511
  #@ formidable
512
  msgid "Subject"
513
  msgstr "Assunto"
514
 
515
- #: classes/templates/contact.php:43
516
- #@ formidable
517
- msgid "Subject cannot be blank"
518
- msgstr "Assunto não pode estar em branco"
519
-
520
- #: classes/templates/contact.php:48
521
- #: pro/classes/views/frmpro-forms/notifications.php:85
522
- #: pro/classes/views/frmpro-forms/notifications.php:143
523
  #@ formidable
524
  msgid "Message"
525
  msgstr "Mensagem"
526
 
527
- #: classes/templates/contact.php:50
528
- #@ formidable
529
- msgid "Message cannot be blank"
530
- msgstr "Mensagem não pode estar em branco"
531
-
532
- #: classes/templates/contact.php:55
533
  #@ formidable
534
  msgid "Captcha"
535
  msgstr "Captcha"
536
 
537
- #: classes/views/frm-entries/form.php:48
538
- #: pro/classes/helpers/FrmProFieldsHelper.php:553
 
539
  #@ formidable
540
  msgid "Entry Key"
541
  msgstr "Chave da Entrada"
@@ -546,180 +466,173 @@ msgstr "Chave da Entrada"
546
  msgid "Upgrade to %1$sFormidable Pro%2$s to view, search, export, and bulk delete your saved entries."
547
  msgstr "Upgrade para %1$s Formidable Pro%2$s para visualizar, pesquisar, exportar e excluir as entradas salvas."
548
 
549
- #: classes/views/frm-forms/add_field.php:26
550
- #: classes/views/frm-forms/add_field.php:42
551
  #@ formidable
552
  msgid "Add an Option"
553
  msgstr "Adicionar uma opção"
554
 
555
- #: classes/views/frm-forms/add_field.php:72
556
- #: classes/views/frm-forms/add_field_links.php:20
557
- #: classes/views/frm-forms/add_field_links.php:41
558
- #: classes/views/frm-forms/add_field_links.php:62
559
- #: classes/views/frm-forms/form.php:23
560
- #: classes/views/frm-forms/form.php:79
 
 
561
  #@ formidable
562
  msgid "Collapse"
563
  msgstr "Recolher"
564
 
565
- #: classes/views/frm-forms/add_field.php:73
566
  #@ formidable
567
  msgid "Field Options"
568
  msgstr "Opções de campo"
569
 
570
- #: classes/views/frm-forms/add_field.php:79
571
- #: pro/classes/views/frmpro-fields/options-form.php:66
572
- #: pro/classes/widgets/FrmShowForm.php:56
573
  #@ formidable
574
  msgid "Field Size"
575
  msgstr "Tamanho do Campo"
576
 
577
- #: classes/views/frm-forms/add_field.php:80
578
  #@ formidable
579
  msgid "columns wide"
580
  msgstr "largura das colunas"
581
 
582
- #: classes/views/frm-forms/add_field.php:80
 
583
  #@ formidable
584
  msgid "characters wide"
585
  msgstr "caracteres de largura"
586
 
587
- #: classes/views/frm-forms/add_field.php:82
588
  #@ formidable
589
  msgid "rows high"
590
  msgstr "altura das linhas"
591
 
592
- #: classes/views/frm-forms/add_field.php:82
593
  #@ formidable
594
  msgid "characters maximum"
595
  msgstr "máximo de caracteres"
596
 
597
- #: classes/views/frm-forms/add_field.php:86
598
- #: classes/views/frm-forms/form.php:131
599
  #@ formidable
600
  msgid "Label Position"
601
  msgstr "Posição do Título do Campo"
602
 
603
- #: classes/views/frm-forms/add_field.php:88
604
  #@ formidable
605
  msgid "Top"
606
  msgstr "Início"
607
 
608
- #: classes/views/frm-forms/add_field.php:89
609
  #@ formidable
610
  msgid "Left"
611
  msgstr "Esquerda"
612
 
613
- #: classes/views/frm-forms/add_field.php:90
614
  #@ formidable
615
  msgid "Right"
616
  msgstr "Direita"
617
 
618
- #: classes/views/frm-forms/add_field.php:91
619
  #@ formidable
620
  msgid "Hidden"
621
  msgstr "Oculto"
622
 
623
- #: classes/views/frm-forms/add_field.php:100
624
  #@ formidable
625
  msgid "Indicate required field with"
626
  msgstr "Indicar campo obrigatório com"
627
 
628
- #: classes/views/frm-forms/add_field.php:110
629
- #@ formidable
630
- msgid "Error message if entry is an invalid format"
631
- msgstr "Mensagem de erro se a entrada é um formato inválido"
632
-
633
- #: classes/views/frm-forms/add_field_links.php:3
634
- #@ formidable
635
- msgid "Copy this code and paste it into your post, page or text widget"
636
- msgstr "Copie este código e cole em seu post, página ou wifget"
637
-
638
- #: classes/views/frm-forms/add_field_links.php:7
639
  #@ formidable
640
  msgid "Preview Form"
641
  msgstr "Visualizar Formulário"
642
 
643
- #: classes/views/frm-forms/add_field_links.php:9
644
  #@ formidable
645
  msgid "Preview in Current Theme"
646
  msgstr "Visualização no Tema Atual"
647
 
648
- #: classes/views/frm-forms/add_field_links.php:13
649
  #@ formidable
650
  msgid "Click on or drag a field into your form"
651
  msgstr "Clique em ou arraste o campo no formulário"
652
 
653
- #: classes/views/frm-forms/add_field_links.php:21
654
  #@ formidable
655
  msgid "Basic Fields"
656
  msgstr "Campos Básicos"
657
 
658
- #: classes/views/frm-forms/add_field_links.php:42
659
  #@ formidable
660
  msgid "Pro Fields"
661
  msgstr "Campos Pro"
662
 
663
- #: classes/views/frm-forms/add_field_links.php:63
664
- #: classes/views/frm-forms/form.php:119
665
- #: classes/views/frm-forms/list.php:38
666
- #: classes/views/frm-forms/list.php:135
667
- #: pro/classes/helpers/FrmProFieldsHelper.php:562
668
- #: pro/classes/helpers/FrmProFieldsHelper.php:577
669
- #: pro/classes/views/displays/form.php:127
670
- #: pro/classes/views/displays/form.php:138
671
- #: pro/classes/views/displays/list.php:37
672
- #: pro/classes/views/displays/list.php:85
673
  #@ formidable
674
  msgid "Key"
675
  msgstr "Chave"
676
 
677
- #: classes/views/frm-forms/add_field_links.php:70
678
  #@ formidable
679
  msgid "required field"
680
  msgstr "campo de preenchimento obrigatório"
681
 
682
- #: classes/views/frm-forms/add_field_links.php:72
683
  #@ formidable
684
  msgid "not required"
685
  msgstr "não obrigatório"
686
 
687
- #: classes/views/frm-forms/add_field_links.php:74
688
  #@ formidable
689
  msgid "clear default text on click"
690
  msgstr "limpar texto padrão ao clicar"
691
 
692
- #: classes/views/frm-forms/add_field_links.php:76
693
  #@ formidable
694
  msgid "do not clear default text on click"
695
  msgstr "não limpar o texto padrão ao clicar"
696
 
697
- #: classes/views/frm-forms/add_field_links.php:78
698
  #@ formidable
699
  msgid "default value will NOT pass validation"
700
  msgstr "valor padrão NÃO vai passar na validação"
701
 
702
- #: classes/views/frm-forms/add_field_links.php:80
703
  #@ formidable
704
  msgid "default value will pass validation"
705
  msgstr "valor padrão vai passar na validação"
706
 
707
- #: classes/views/frm-forms/add_field_links.php:82
708
  #@ formidable
709
  msgid "delete field and all inputed data"
710
  msgstr "apagar campo e todos os dados digitados"
711
 
712
- #: classes/views/frm-forms/add_field_links.php:84
713
  #@ formidable
714
  msgid "duplicate field"
715
  msgstr "campo duplicado"
716
 
717
- #: classes/views/frm-forms/add_field_links.php:86
718
  #@ formidable
719
  msgid "move field"
720
  msgstr "mover campo"
721
 
722
- #: classes/views/frm-forms/add_field_links.php:95
723
  #@ formidable
724
  msgid "Enter or select default values into fields on this form."
725
  msgstr "Digite ou selecione os valores padrão para os campos no formulário."
@@ -730,14 +643,14 @@ msgid "Default Templates"
730
  msgstr "Modelos padrão"
731
 
732
  #: classes/views/frm-forms/default-templates.php:8
733
- #: classes/views/frm-forms/default-templates.php:40
734
- #: classes/views/frm-forms/list.php:25
735
- #: classes/views/frm-forms/list.php:35
736
- #: classes/views/frm-forms/list.php:130
737
- #: classes/views/frm-forms/list.php:134
738
- #: pro/classes/views/displays/form.php:77
739
- #: pro/classes/views/displays/list.php:31
740
- #: pro/classes/views/displays/list.php:84
741
  #@ formidable
742
  msgid "Description"
743
  msgstr "Descrição"
@@ -747,63 +660,71 @@ msgstr "Descrição"
747
  msgid "No Templates Found"
748
  msgstr "Modelos não encontrados"
749
 
750
- #: classes/views/frm-forms/default-templates.php:19
751
  #@ formidable
752
  msgid "Preview"
753
  msgstr "Prévia"
754
 
755
- #: classes/views/frm-forms/default-templates.php:22
756
- #: classes/views/frm-forms/list.php:67
757
- #: classes/views/frm-forms/list.php:100
758
- #: pro/classes/views/displays/form.php:256
759
- #: pro/classes/views/displays/list.php:63
760
  #@ formidable
761
  msgid "Copy"
762
  msgstr "Copiar"
763
 
764
- #: classes/views/frm-forms/default-templates.php:28
765
- #: pro/classes/views/frmpro-entries/list.php:55
 
766
  #@ formidable
767
  msgid "View"
768
  msgstr "Ver"
769
 
770
- #: classes/views/frm-forms/default-templates.php:45
771
  #@ formidable
772
  msgid "Custom Templates"
773
  msgstr "Modelos personalizados"
774
 
775
  #: classes/views/frm-forms/edit.php:3
776
- #: pro/classes/controllers/FrmProEntriesController.php:117
777
  #@ formidable
778
  msgid "Edit Form"
779
  msgstr "Editar Formulário"
780
 
781
- #: classes/views/frm-forms/edit.php:16
782
- #: classes/views/frm-forms/edit.php:29
783
- #: pro/classes/controllers/FrmProDisplaysController.php:342
784
- #: pro/classes/models/FrmProSettings.php:183
785
  #@ formidable
786
  msgid "Update"
787
  msgstr "Atualizar"
788
 
789
- #: classes/views/frm-forms/edit.php:17
790
- #: classes/views/frm-forms/edit.php:30
791
- #: classes/views/frm-forms/new-selection.php:10
792
- #: classes/views/frm-forms/new.php:20
793
- #: pro/classes/views/displays/form.php:280
794
- #: pro/classes/views/frmpro-entries/edit.php:24
795
- #: pro/classes/views/frmpro-entries/new.php:20
 
 
 
796
  #@ formidable
797
  msgid "or"
798
  msgstr "ou"
799
 
800
- #: classes/views/frm-forms/edit.php:18
801
- #: classes/views/frm-forms/edit.php:31
802
- #: classes/views/frm-forms/new.php:21
803
- #: pro/classes/views/displays/form.php:39
804
- #: pro/classes/views/displays/form.php:281
805
- #: pro/classes/views/frmpro-entries/edit.php:25
 
 
 
806
  #: pro/classes/views/frmpro-entries/new.php:21
 
807
  #@ formidable
808
  msgid "Cancel"
809
  msgstr "Cancelar"
@@ -813,9 +734,11 @@ msgstr "Cancelar"
813
  msgid "(Click here to add form description or instructions)"
814
  msgstr "(Clique aqui para adicionar uma descrição do formulário ou instruções)"
815
 
 
816
  #: classes/views/frm-forms/footer.php:35
817
- #: pro/classes/helpers/FrmProEntriesHelper.php:45
818
- #: pro/classes/views/settings/formroller.php:511
 
819
  #@ formidable
820
  msgid "Loading..."
821
  msgstr "Carregando..."
@@ -825,166 +748,166 @@ msgstr "Carregando..."
825
  msgid "Are you sure you want to delete this field and all data associated with it?"
826
  msgstr "Tem certeza de que deseja apagar este campo e todos os dados associados a ele?"
827
 
828
- #: classes/views/frm-forms/form.php:24
829
  #@ formidable
830
  msgid "Advanced Form Options"
831
  msgstr "Opções Avançadas do Formulário"
832
 
833
- #: classes/views/frm-forms/form.php:30
834
  #@ formidable
835
  msgid "Form ShortCodes"
836
  msgstr "Shortcodes do Formulário"
837
 
838
- #: classes/views/frm-forms/form.php:30
839
  #@ formidable
840
  msgid "Key and id are generally synonymous. For more information on using this shortcode, click now."
841
  msgstr "Key e id são geralmente sinônimos. Para obter mais informações sobre como utilizar este shortcode, clique agora."
842
 
843
- #: classes/views/frm-forms/form.php:35
844
- #: classes/views/frm-forms/form.php:123
845
  #@ formidable
846
  msgid "Form Key"
847
  msgstr "Chave do Formulário"
848
 
849
- #: classes/views/frm-forms/form.php:39
850
  #@ formidable
851
  msgid "Styling"
852
  msgstr "Estilizando"
853
 
854
- #: classes/views/frm-forms/form.php:41
855
  #@ formidable
856
  msgid "Use Formidable styling for this form"
857
  msgstr "Use estilo do Formidable para este formulário"
858
 
859
- #: classes/views/frm-forms/form.php:44
860
  #@ formidable
861
  msgid "Submit Button Text"
862
  msgstr "Texto do botão Enviar"
863
 
864
- #: classes/views/frm-forms/form.php:48
865
  #@ formidable
866
  msgid "Action After Form Submission"
867
  msgstr "Ação após envio do formulário"
868
 
869
- #: classes/views/frm-forms/form.php:50
870
  #@ formidable
871
  msgid "To use the second two options, you must upgrade to Formidable Pro."
872
  msgstr "Para usar a segunda duas opções, você deve atualizar para Formidable Pro."
873
 
874
- #: classes/views/frm-forms/form.php:54
875
  #@ formidable
876
  msgid "Display a Message"
877
  msgstr "Exibe uma mensagem"
878
 
879
- #: classes/views/frm-forms/form.php:55
880
  #@ formidable
881
  msgid "Display content from another page"
882
  msgstr "Mostrar o conteúdo de outra página"
883
 
884
- #: classes/views/frm-forms/form.php:56
885
  #@ formidable
886
  msgid "Redirect"
887
  msgstr "Redirecionar"
888
 
889
- #: classes/views/frm-forms/form.php:60
890
  #@ formidable
891
  msgid "Confirmation Message"
892
  msgstr "Mensagem de Confirmação"
893
 
894
- #: classes/views/frm-forms/form.php:63
895
  #@ formidable
896
  msgid "Show the form with the success message."
897
  msgstr "Mostrar o formulário com a mensagem de sucesso."
898
 
899
- #: classes/views/frm-forms/form.php:70
900
  #@ formidable
901
  msgid "Use Akismet to check entries for spam"
902
  msgstr "Use Akismet para verificar as entradas contra spam"
903
 
904
- #: classes/views/frm-forms/form.php:80
905
  #@ formidable
906
  msgid "Form Notification Options"
907
  msgstr "Opções de Notificação do Formulário"
908
 
909
- #: classes/views/frm-forms/form.php:86
910
  #@ formidable
911
  msgid "Email Form Responses to"
912
  msgstr "Enviar dados do formulário para e-mail"
913
 
914
- #: classes/views/frm-forms/form.php:86
915
  #@ formidable
916
  msgid "To send to multiple addresses, separate each address with a comma"
917
  msgstr "Para enviar para vários endereços, separe cada endereço com uma vírgula"
918
 
919
- #: classes/views/frm-forms/form.php:99
920
  #@ formidable
921
  msgid "Before Fields"
922
  msgstr "Antes dos Campos"
923
 
924
- #: classes/views/frm-forms/form.php:114
925
  #@ formidable
926
  msgid "After Fields"
927
  msgstr "Depois dos Campos"
928
 
929
- #: classes/views/frm-forms/form.php:121
930
  #@ formidable
931
  msgid "Form Name"
932
  msgstr "Nome do Formulário"
933
 
934
- #: classes/views/frm-forms/form.php:122
935
  #@ formidable
936
  msgid "Form Description"
937
  msgstr "Descrição do Formulário"
938
 
939
- #: classes/views/frm-forms/form.php:127
940
  #@ formidable
941
  msgid "Field Id"
942
  msgstr "Id do Campo"
943
 
944
- #: classes/views/frm-forms/form.php:128
945
  #: pro/classes/views/displays/tags.php:14
946
- #: pro/classes/views/frmpro-fields/options-form.php:210
947
  #@ formidable
948
  msgid "Field Key"
949
  msgstr "Chave do Campo"
950
 
951
- #: classes/views/frm-forms/form.php:129
952
  #@ formidable
953
  msgid "Field Name"
954
  msgstr "Nome do Campo"
955
 
956
- #: classes/views/frm-forms/form.php:130
957
  #: pro/classes/views/settings/formroller.php:92
958
  #@ formidable
959
  msgid "Field Description"
960
  msgstr "Descrição do Campo"
961
 
962
- #: classes/views/frm-forms/form.php:132
963
  #@ formidable
964
  msgid "Required label"
965
  msgstr "Rótulo Campo Obrigatório"
966
 
967
- #: classes/views/frm-forms/form.php:133
968
  #@ formidable
969
  msgid "Input Field"
970
  msgstr "Campo de entrada"
971
 
972
- #: classes/views/frm-forms/form.php:134
973
  #@ formidable
974
  msgid "Show a single radio or checkbox option by replacing \"1\" with the order of the option"
975
  msgstr "Exibe um único rádio ou caixa de marca, substituindo \"1\" com oa ordem da opção"
976
 
977
- #: classes/views/frm-forms/form.php:135
978
  #@ formidable
979
  msgid "Hide the option labels"
980
  msgstr "Esconder título da opção"
981
 
982
- #: classes/views/frm-forms/form.php:137
983
  #@ formidable
984
  msgid "Add class name if field is required"
985
  msgstr "Adicione o nome da classe se o campo é obrigatório"
986
 
987
- #: classes/views/frm-forms/form.php:138
988
  #@ formidable
989
  msgid "Add class name if field has an error on form submit"
990
  msgstr "Adicione o nome da classe se o campo tem um erro ao submeter o formulário"
@@ -1009,248 +932,228 @@ msgstr "Mostrar título do formulário"
1009
  msgid "Display form description"
1010
  msgstr "Exibir descrição do formulário"
1011
 
1012
- #: classes/views/frm-forms/list.php:29
1013
- #: classes/views/frm-forms/list.php:132
1014
- #: pro/classes/helpers/FrmProFieldsHelper.php:561
1015
- #: pro/classes/helpers/FrmProFieldsHelper.php:576
1016
- #: pro/classes/views/displays/form.php:126
1017
- #: pro/classes/views/displays/form.php:137
1018
- #: pro/classes/views/displays/list.php:19
1019
- #: pro/classes/views/displays/list.php:82
1020
  #@ formidable
1021
  msgid "ID"
1022
  msgstr "ID"
1023
 
1024
- #: classes/views/frm-forms/list.php:40
1025
- #: classes/views/frm-forms/list.php:95
1026
- #: classes/views/frm-forms/list.php:111
1027
- #: classes/views/frm-forms/list.php:136
1028
- #: pro/classes/controllers/FrmProEntriesController.php:44
1029
  #: pro/classes/views/frmpro-entries/list.php:3
 
1030
  #: pro/classes/views/shared/import_form.php:48
1031
  #@ formidable
1032
  msgid "Entries"
1033
  msgstr "Entradas"
1034
 
1035
- #: classes/views/frm-forms/list.php:41
1036
- #: classes/views/frm-forms/list.php:137
1037
  #@ formidable
1038
  msgid "Direct Link"
1039
  msgstr "Link direto"
1040
 
1041
- #: pro/classes/views/displays/list.php:44
1042
- #: pro/classes/views/displays/list.php:89
1043
  #@ formidable
1044
  msgid "ShortCode"
1045
  msgstr "ShortCode"
1046
 
1047
- #: classes/views/frm-forms/list.php:49
1048
  #@ formidable
1049
  msgid "No Forms Found"
1050
  msgstr "Nenhum formulário encontrado"
1051
 
1052
- #: classes/views/frm-forms/list.php:60
1053
- #: classes/views/frm-forms/list.php:68
1054
- #: classes/views/frm-forms/list.php:81
1055
- #: classes/views/frm-forms/list.php:88
1056
- #: pro/classes/helpers/FrmProAppHelper.php:57
1057
- #: pro/classes/helpers/FrmProFieldsHelper.php:639
1058
- #: pro/classes/views/displays/list.php:62
1059
- #: pro/classes/views/frmpro-entries/list.php:58
 
 
1060
  #@ formidable
1061
  msgid "Edit"
1062
  msgstr "Editar"
1063
 
1064
- #: classes/views/frm-forms/list.php:72
1065
- #: classes/views/frm-forms/list.php:105
1066
  #, php-format
1067
  #@ formidable
1068
  msgid "Are you sure you want to delete your %1$s Form?"
1069
  msgstr "Tem certeza que quer apagar seu formulário%1$s ?"
1070
 
1071
- #: classes/views/frm-forms/list.php:72
1072
- #: classes/views/frm-forms/list.php:105
1073
- #: pro/classes/helpers/FrmProAppHelper.php:124
1074
- #: pro/classes/helpers/FrmProFieldsHelper.php:687
1075
- #: pro/classes/views/displays/form.php:37
1076
- #: pro/classes/views/displays/list.php:64
1077
- #: pro/classes/views/frmpro-entries/list.php:67
 
1078
  #@ formidable
1079
  msgid "Delete"
1080
  msgstr "Excluir"
1081
 
1082
- #: classes/views/frm-forms/list.php:92
1083
  #@ formidable
1084
  msgid "New"
1085
  msgstr "Novo"
1086
 
1087
- #: classes/views/frm-forms/list.php:92
1088
- #: pro/classes/views/displays/list.php:42
1089
- #: pro/classes/views/displays/list.php:87
 
1090
  #@ formidable
1091
  msgid "Entry"
1092
  msgstr "Entrada"
1093
 
1094
- #: classes/views/frm-forms/list.php:92
1095
  #@ formidable
1096
  msgid "New Entry"
1097
  msgstr "Nova entrada"
1098
 
1099
- #: classes/views/frm-forms/list.php:97
1100
  #: pro/classes/controllers/FrmProStatisticsController.php:13
1101
  #: pro/classes/controllers/FrmProStatisticsController.php:25
1102
- #: pro/classes/views/frmpro-statistics/show.php:3
1103
  #@ formidable
1104
  msgid "Reports"
1105
  msgstr "Relatórios"
1106
 
1107
  #: classes/views/frm-forms/add_field.php:6
1108
- #: classes/views/frm-forms/list.php:100
1109
- #: pro/classes/views/displays/list.php:63
1110
- #: pro/classes/views/frmpro-entries/list.php:62
 
 
1111
  #@ formidable
1112
  msgid "Duplicate"
1113
  msgstr "Duplicado"
1114
 
1115
- #: classes/views/frm-forms/list.php:101
1116
- #: classes/views/frm-forms/new.php:19
1117
- #: pro/classes/controllers/FrmProDisplaysController.php:77
1118
- #: pro/classes/controllers/FrmProDisplaysController.php:86
1119
- #: pro/classes/views/frmpro-entries/new.php:19
1120
  #@ formidable
1121
  msgid "Create"
1122
  msgstr "Criar"
1123
 
1124
- #: classes/views/frm-forms/list.php:101
1125
- #: classes/views/frm-forms/list.php:102
1126
  #@ formidable
1127
  msgid "Template"
1128
  msgstr "Modelo"
1129
 
1130
- #: classes/views/frm-forms/list.php:101
1131
  #@ formidable
1132
  msgid "Create Template"
1133
  msgstr "Criar Modelo"
1134
 
1135
- #: classes/views/frm-forms/list.php:113
1136
  #@ formidable
1137
  msgid "View Form"
1138
  msgstr "Ver formulário"
1139
 
1140
- #: classes/views/frm-forms/new-field-js.php:18
1141
- #: classes/views/frm-forms/new-option-js.php:12
1142
  #@ formidable
1143
  msgid "(Blank)"
1144
  msgstr "(Em branco)"
1145
 
1146
- #: classes/views/frm-forms/new-field-js.php:29
1147
- #@ formidable
1148
- msgid "(Click here to add optional description or instructions)"
1149
- msgstr "(Clique aqui para adicionar uma descrição opcional ou instruções)"
1150
-
1151
- #: classes/views/frm-forms/new-selection.php:4
1152
- #: classes/views/frm-forms/new.php:3
1153
- #@ formidable
1154
- msgid "Create Form"
1155
- msgstr "Criar formulário"
1156
-
1157
- #: classes/views/frm-forms/new-selection.php:11
1158
- #@ formidable
1159
- msgid "Create New Form"
1160
- msgstr "Criar um novo formulário"
1161
-
1162
- #: classes/views/frm-settings/form.php:13
1163
- #: classes/views/frm-settings/form.php:136
1164
  #@ formidable
1165
  msgid "Update Options"
1166
  msgstr "Atualizar Opções"
1167
 
1168
- #: classes/views/frm-settings/form.php:17
1169
  #@ formidable
1170
  msgid "Preview Page"
1171
  msgstr "Visualizar Página"
1172
 
1173
- #: classes/views/frm-settings/form.php:37
1174
  #@ formidable
1175
  msgid "Include the jQuery CSS on ALL pages"
1176
  msgstr "Incluir o jQuery CSS em TODAS as páginas"
1177
 
1178
- #: classes/views/frm-settings/form.php:37
1179
  #@ formidable
1180
  msgid "The styling for the date field calendar. Some users may be using this css on pages other than just the ones that include a date field."
1181
  msgstr "O estilo do campo de data. Alguns usuários podem estar usando este css em páginas que não apenas os que incluem um campo de data."
1182
 
1183
- #: classes/views/frm-settings/form.php:43
1184
  #@ formidable
1185
  msgid "User Permissions"
1186
  msgstr "Permissões de Usuário"
1187
 
1188
- #: classes/views/frm-settings/form.php:43
1189
  #@ formidable
1190
  msgid "Select users that are allowed access to Formidable. Without access to View Forms, users will be unable to see the Formidable menu."
1191
  msgstr "Selecione os usuários que estão autorizados a acessar o Formidable. Sem acesso a exibição de formulários, os usuários serão incapazes de ver o menu do Formidable."
1192
 
1193
- #: classes/views/frm-settings/form.php:91
1194
  #@ formidable
1195
  msgid "Default Messages"
1196
  msgstr "Mensagens Padrões"
1197
 
1198
- #: classes/views/frm-settings/form.php:91
1199
  #@ formidable
1200
  msgid "You can override the success message and submit button settings on individual forms."
1201
  msgstr "Você pode substituir a mensagem de sucesso e botão de envio em cada formulário individualmente."
1202
 
1203
- #: classes/views/frm-settings/form.php:93
1204
  #@ formidable
1205
  msgid "Success Message"
1206
  msgstr "Mensagem de sucesso"
1207
 
1208
- #: classes/views/frm-settings/form.php:93
1209
  #@ formidable
1210
  msgid "The default message seen after a form is submitted."
1211
  msgstr "A mensagem padrão após um formulário ser enviado."
1212
 
1213
- #: classes/views/frm-settings/form.php:101
1214
- #@ formidable
1215
- msgid "The message seen when a form is submitted and passes validation, but something goes wrong. You will likely never see this error."
1216
- msgstr "Está mensagem é exibida quando um formulário é submetido e passa a validação, mas algo dá errado. Você provavelmente nunca verá este erro."
1217
-
1218
- #: classes/views/frm-settings/form.php:117
1219
  #@ formidable
1220
  msgid "Login Message"
1221
  msgstr "Mensagem de Login"
1222
 
1223
- #: classes/views/frm-settings/form.php:117
1224
  #@ formidable
1225
  msgid "The message seen when a user who is not logged-in views a form only logged-in users can submit."
1226
  msgstr "Está mensagem é vista quando um usuário que não está logado tenta visualizar um formulário que apenas usuários registrados podem ver."
1227
 
1228
- #: pro/classes/views/settings/formroller.php:341
1229
  #@ formidable
1230
  msgid "Submit Button"
1231
  msgstr "Botão de Enviar"
1232
 
1233
- #: classes/views/frm-settings/form.php:134
1234
  #@ formidable
1235
  msgid "Are you sure you want to do this? Clicking OK will delete all forms, form data, and all other Formidable data. There is no Undo."
1236
  msgstr "Tem certeza que quer fazer isso? Clicando em OK vai apagar todos os formulários, dados de formulários e todos os outros dados do Formidable. Não tem como desfazer."
1237
 
1238
- #: classes/views/frm-settings/form.php:134
1239
  #@ formidable
1240
  msgid "Uninstall Formidable"
1241
  msgstr "Desinstalar Formidable"
1242
 
1243
- #: classes/views/frm-statistics/list.php:3
1244
- #@ formidable
1245
- msgid "Pro Statistics"
1246
- msgstr "Estatísticas Pro"
1247
-
1248
  #: classes/views/frm-statistics/list.php:9
1249
  #@ formidable
1250
  msgid "Upgrade to Formidable Pro to get reports and statistics on your saved entries"
1251
  msgstr "Faça upgrade para Formidable Pro para obter relatórios e estatísticas sobre as entradas salvas"
1252
 
1253
- #: classes/views/shared/item-table-nav.php:8
1254
  #, php-format
1255
  #@ formidable
1256
  msgid "Displaying %1$s&#8211;%2$s of %3$s"
@@ -1266,200 +1169,154 @@ msgstr "Tags Formidable"
1266
  msgid "Formidable Tag"
1267
  msgstr "Tag Formidable"
1268
 
1269
- #: pro/classes/controllers/FrmProDisplaysController.php:32
1270
- #: pro/classes/views/displays/list.php:3
1271
- #@ formidable
1272
- msgid "Custom Display"
1273
- msgstr "Exibição personalizada"
1274
-
1275
- #: pro/classes/controllers/FrmProDisplaysController.php:33
1276
- #@ formidable
1277
- msgid "New Custom Display"
1278
- msgstr "Nova exibição personalizada"
1279
-
1280
- #: pro/classes/controllers/FrmProDisplaysController.php:40
1281
- #@ formidable
1282
- msgid "Setup new Custom Display Settings"
1283
- msgstr "Nova configuração de exibição personalizada"
1284
-
1285
- #: pro/classes/controllers/FrmProDisplaysController.php:91
1286
- #@ formidable
1287
- msgid "Custom Display settings were Successfully Created"
1288
- msgstr "As configurações de exibição personalizada foram criadas com sucesso"
1289
-
1290
- #: pro/classes/controllers/FrmProDisplaysController.php:112
1291
- #@ formidable
1292
- msgid "Custom Display settings were Successfully Updated"
1293
- msgstr "As configurações de exibição personalizada foram atualizadas com sucesso"
1294
-
1295
- #: pro/classes/controllers/FrmProDisplaysController.php:122
1296
- #@ formidable
1297
- msgid "Custom Display settings were Successfully Copied"
1298
- msgstr "As configurações de exibição personalizada foram copiados com êxito"
1299
-
1300
- #: pro/classes/controllers/FrmProDisplaysController.php:126
1301
  #@ formidable
1302
  msgid "There was a problem creating new Entry Display settings."
1303
  msgstr "Houve um problema criando nova configuração de exibição de entrada."
1304
 
1305
- #: pro/classes/controllers/FrmProDisplaysController.php:134
1306
- #@ formidable
1307
- msgid "Custom Display settings were Successfully Deleted"
1308
- msgstr "As configurações exibição personalizada foram apagadas com sucesso"
1309
-
1310
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1311
  #@ formidable
1312
  msgid "January"
1313
  msgstr "Janeiro"
1314
 
1315
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1316
  #@ formidable
1317
  msgid "February"
1318
  msgstr "Fevereiro"
1319
 
1320
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1321
  #@ formidable
1322
  msgid "March"
1323
  msgstr "Março"
1324
 
1325
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1326
  #@ formidable
1327
  msgid "April"
1328
  msgstr "Abril"
1329
 
1330
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1331
  #@ formidable
1332
  msgid "May"
1333
  msgstr "Maio"
1334
 
1335
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1336
  #@ formidable
1337
  msgid "June"
1338
  msgstr "Junho"
1339
 
1340
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1341
  #@ formidable
1342
  msgid "July"
1343
  msgstr "Julho"
1344
 
1345
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1346
  #@ formidable
1347
  msgid "August"
1348
  msgstr "Agosto"
1349
 
1350
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1351
  #@ formidable
1352
  msgid "September"
1353
  msgstr "Setembro"
1354
 
1355
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1356
  #@ formidable
1357
  msgid "October"
1358
  msgstr "Outubro"
1359
 
1360
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1361
  #@ formidable
1362
  msgid "November"
1363
  msgstr "Novembro"
1364
 
1365
- #: pro/classes/controllers/FrmProDisplaysController.php:170
1366
  #@ formidable
1367
  msgid "December"
1368
  msgstr "Dezembro"
1369
 
1370
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1371
  #@ formidable
1372
  msgid "Sunday"
1373
  msgstr "Domingo"
1374
 
1375
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1376
  #@ formidable
1377
  msgid "Monday"
1378
  msgstr "Segunda-feira"
1379
 
1380
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1381
  #@ formidable
1382
  msgid "Tuesday"
1383
  msgstr "Terça-feira"
1384
 
1385
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1386
  #@ formidable
1387
  msgid "Wednesday"
1388
  msgstr "Quarta-feira"
1389
 
1390
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1391
  #@ formidable
1392
  msgid "Thursday"
1393
  msgstr "Quinta-feira"
1394
 
1395
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1396
  #@ formidable
1397
  msgid "Friday"
1398
  msgstr "Sexta-feira"
1399
 
1400
- #: pro/classes/controllers/FrmProDisplaysController.php:171
1401
  #@ formidable
1402
  msgid "Saturday"
1403
  msgstr "Sábado"
1404
 
1405
- #: pro/classes/controllers/FrmProDisplaysController.php:376
1406
  #@ formidable
1407
  msgid "That is not a valid custom display ID"
1408
  msgstr "Isso não é um ID válido de uma exibição personalizada"
1409
 
1410
- #: pro/classes/controllers/FrmProDisplaysController.php:594
1411
- #: pro/classes/views/frmpro-entries/list.php:29
 
1412
  #@ formidable
1413
  msgid "No Entries Found"
1414
  msgstr "Não foram encontradas entradas"
1415
 
1416
- #: pro/classes/controllers/FrmProEntriesController.php:46
1417
- #@ formidable
1418
- msgid "Create an Entry"
1419
- msgstr "Criar uma entrada"
1420
-
1421
- #: pro/classes/controllers/FrmProEntriesController.php:112
1422
  #@ formidable
1423
  msgid "Entries from:"
1424
  msgstr "Entradas de:"
1425
 
1426
- #: pro/classes/controllers/FrmProEntriesController.php:120
1427
- #@ formidable
1428
- msgid "Add an Entry"
1429
- msgstr "Adicionar uma entrada"
1430
-
1431
- #: pro/classes/controllers/FrmProEntriesController.php:181
1432
  #@ formidable
1433
  msgid "Entry was Successfully Created"
1434
  msgstr "Entrada foi criada com sucesso"
1435
 
1436
- #: pro/classes/controllers/FrmProEntriesController.php:205
1437
  #@ formidable
1438
  msgid "Entry was Successfully Updated"
1439
  msgstr "Entrada foi atualizado com sucesso"
1440
 
1441
- #: pro/classes/controllers/FrmProEntriesController.php:205
1442
  #@ formidable
1443
  msgid "Back to Entries"
1444
  msgstr "Voltar para Entradas"
1445
 
1446
- #: pro/classes/controllers/FrmProEntriesController.php:221
1447
  #@ formidable
1448
  msgid "Entry was Successfully Duplicated"
1449
  msgstr "Entrada foi duplicada com sucesso"
1450
 
1451
- #: pro/classes/controllers/FrmProEntriesController.php:223
1452
  #@ formidable
1453
  msgid "There was a problem duplicating that entry"
1454
  msgstr "Houve um problema ao duplicar essa entrada"
1455
 
1456
- #: pro/classes/controllers/FrmProEntriesController.php:241
1457
- #: pro/classes/controllers/FrmProEntriesController.php:348
1458
  #@ formidable
1459
  msgid "Entry was Successfully Destroyed"
1460
  msgstr "Entrada foi apagada com sucesso"
1461
 
1462
- #: pro/classes/controllers/FrmProEntriesController.php:256
1463
  #@ formidable
1464
  msgid "No entries were specified"
1465
  msgstr "Nenhuma entrada foi especificada"
@@ -1469,597 +1326,592 @@ msgstr "Nenhuma entrada foi especificada"
1469
  msgid "Duplicate Field"
1470
  msgstr "Campo duplicado"
1471
 
1472
- #: pro/classes/controllers/FrmProFieldsController.php:210
1473
  #@ formidable
1474
  msgid "English/Western"
1475
  msgstr "Inglês / Ocidental"
1476
 
1477
- #: pro/classes/controllers/FrmProFieldsController.php:210
1478
  #@ formidable
1479
  msgid "Afrikaans"
1480
  msgstr "Afrikaans"
1481
 
1482
- #: pro/classes/controllers/FrmProFieldsController.php:210
1483
  #@ formidable
1484
  msgid "Albanian"
1485
  msgstr "Albanês"
1486
 
1487
- #: pro/classes/controllers/FrmProFieldsController.php:210
1488
  #@ formidable
1489
  msgid "Arabic"
1490
  msgstr "Árabe"
1491
 
1492
- #: pro/classes/controllers/FrmProFieldsController.php:210
1493
  #@ formidable
1494
  msgid "Armenian"
1495
  msgstr "Armênio"
1496
 
1497
- #: pro/classes/controllers/FrmProFieldsController.php:210
1498
  #@ formidable
1499
  msgid "Azerbaijani"
1500
  msgstr "Azerbaijano"
1501
 
1502
- #: pro/classes/controllers/FrmProFieldsController.php:210
1503
  #@ formidable
1504
  msgid "Basque"
1505
  msgstr "Basco"
1506
 
1507
- #: pro/classes/controllers/FrmProFieldsController.php:210
1508
  #@ formidable
1509
  msgid "Bosnian"
1510
  msgstr "Bósnio"
1511
 
1512
- #: pro/classes/controllers/FrmProFieldsController.php:210
1513
  #@ formidable
1514
  msgid "Bulgarian"
1515
  msgstr "Búlgaro"
1516
 
1517
- #: pro/classes/controllers/FrmProFieldsController.php:210
1518
  #@ formidable
1519
  msgid "Catalan"
1520
  msgstr "Catalão"
1521
 
1522
- #: pro/classes/controllers/FrmProFieldsController.php:210
1523
  #@ formidable
1524
  msgid "Chinese Hong Kong"
1525
  msgstr "Chinês de Hong Kong"
1526
 
1527
- #: pro/classes/controllers/FrmProFieldsController.php:210
1528
  #@ formidable
1529
  msgid "Chinese Simplified"
1530
  msgstr "Chinês Simplificado"
1531
 
1532
- #: pro/classes/controllers/FrmProFieldsController.php:210
1533
  #@ formidable
1534
  msgid "Chinese Traditional"
1535
  msgstr "Chinês Tradicional"
1536
 
1537
- #: pro/classes/controllers/FrmProFieldsController.php:210
1538
  #@ formidable
1539
  msgid "Croatian"
1540
  msgstr "Croata"
1541
 
1542
- #: pro/classes/controllers/FrmProFieldsController.php:210
1543
  #@ formidable
1544
  msgid "Czech"
1545
  msgstr "Checa"
1546
 
1547
- #: pro/classes/controllers/FrmProFieldsController.php:210
1548
  #@ formidable
1549
  msgid "Danish"
1550
  msgstr "Dinamarquês"
1551
 
1552
- #: classes/views/frm-settings/form.php:82
1553
- #: pro/classes/controllers/FrmProFieldsController.php:210
1554
  #@ formidable
1555
  msgid "Dutch"
1556
  msgstr "Holandês"
1557
 
1558
- #: pro/classes/controllers/FrmProFieldsController.php:210
1559
  #@ formidable
1560
  msgid "English/UK"
1561
  msgstr "Inglês / Reino Unido"
1562
 
1563
- #: pro/classes/controllers/FrmProFieldsController.php:210
1564
  #@ formidable
1565
  msgid "Esperanto"
1566
  msgstr "Esperanto"
1567
 
1568
- #: pro/classes/controllers/FrmProFieldsController.php:210
1569
  #@ formidable
1570
  msgid "Estonian"
1571
  msgstr "Estoniano"
1572
 
1573
- #: pro/classes/controllers/FrmProFieldsController.php:210
1574
  #@ formidable
1575
  msgid "Faroese"
1576
  msgstr "Feroês"
1577
 
1578
- #: pro/classes/controllers/FrmProFieldsController.php:210
1579
  #@ formidable
1580
  msgid "Farsi/Persian"
1581
  msgstr "Persa / Farsi"
1582
 
1583
- #: pro/classes/controllers/FrmProFieldsController.php:210
1584
  #@ formidable
1585
  msgid "Finnish"
1586
  msgstr "Finlandesa"
1587
 
1588
- #: classes/views/frm-settings/form.php:82
1589
- #: pro/classes/controllers/FrmProFieldsController.php:210
1590
  #@ formidable
1591
  msgid "French"
1592
  msgstr "Francês"
1593
 
1594
- #: pro/classes/controllers/FrmProFieldsController.php:210
1595
  #@ formidable
1596
  msgid "French/Swiss"
1597
  msgstr "Francês / Suíça"
1598
 
1599
- #: classes/views/frm-settings/form.php:82
1600
- #: pro/classes/controllers/FrmProFieldsController.php:210
1601
  #@ formidable
1602
  msgid "German"
1603
  msgstr "Alemão"
1604
 
1605
- #: pro/classes/controllers/FrmProFieldsController.php:210
1606
  #@ formidable
1607
  msgid "Greek"
1608
  msgstr "Grego"
1609
 
1610
- #: pro/classes/controllers/FrmProFieldsController.php:210
1611
  #@ formidable
1612
  msgid "Hebrew"
1613
  msgstr "Hebraico"
1614
 
1615
- #: pro/classes/controllers/FrmProFieldsController.php:210
1616
  #@ formidable
1617
  msgid "Hungarian"
1618
  msgstr "Húngaro"
1619
 
1620
- #: pro/classes/controllers/FrmProFieldsController.php:210
1621
  #@ formidable
1622
  msgid "Icelandic"
1623
  msgstr "Islandesa"
1624
 
1625
- #: pro/classes/controllers/FrmProFieldsController.php:210
1626
  #@ formidable
1627
  msgid "Italian"
1628
  msgstr "Italiano"
1629
 
1630
- #: pro/classes/controllers/FrmProFieldsController.php:210
1631
  #@ formidable
1632
  msgid "Japanese"
1633
  msgstr "Japonês"
1634
 
1635
- #: pro/classes/controllers/FrmProFieldsController.php:210
1636
  #@ formidable
1637
  msgid "Korean"
1638
  msgstr "Coreano"
1639
 
1640
- #: pro/classes/controllers/FrmProFieldsController.php:210
1641
  #@ formidable
1642
  msgid "Latvian"
1643
  msgstr "Letã"
1644
 
1645
- #: pro/classes/controllers/FrmProFieldsController.php:210
1646
  #@ formidable
1647
  msgid "Lithuanian"
1648
  msgstr "Lituano"
1649
 
1650
- #: pro/classes/controllers/FrmProFieldsController.php:210
1651
  #@ formidable
1652
  msgid "Malaysian"
1653
  msgstr "Malásia"
1654
 
1655
- #: pro/classes/controllers/FrmProFieldsController.php:210
1656
  #@ formidable
1657
  msgid "Norwegian"
1658
  msgstr "Norueguês"
1659
 
1660
- #: pro/classes/controllers/FrmProFieldsController.php:210
1661
  #@ formidable
1662
  msgid "Polish"
1663
  msgstr "Polonês"
1664
 
1665
- #: pro/classes/controllers/FrmProFieldsController.php:210
1666
  #@ formidable
1667
  msgid "Portuguese/Brazilian"
1668
  msgstr "Português / Brasileiro"
1669
 
1670
- #: pro/classes/controllers/FrmProFieldsController.php:210
1671
  #@ formidable
1672
  msgid "Romanian"
1673
  msgstr "Romeno"
1674
 
1675
- #: classes/views/frm-settings/form.php:82
1676
- #: pro/classes/controllers/FrmProFieldsController.php:210
1677
  #@ formidable
1678
  msgid "Russian"
1679
  msgstr "Russo"
1680
 
1681
- #: pro/classes/controllers/FrmProFieldsController.php:210
 
1682
  #@ formidable
1683
  msgid "Serbian"
1684
  msgstr "Sérvio"
1685
 
1686
- #: pro/classes/controllers/FrmProFieldsController.php:210
1687
  #@ formidable
1688
  msgid "Slovak"
1689
  msgstr "Eslovaca"
1690
 
1691
- #: pro/classes/controllers/FrmProFieldsController.php:210
1692
  #@ formidable
1693
  msgid "Slovenian"
1694
  msgstr "Esloveno"
1695
 
1696
- #: classes/views/frm-settings/form.php:82
1697
- #: pro/classes/controllers/FrmProFieldsController.php:210
1698
  #@ formidable
1699
  msgid "Spanish"
1700
  msgstr "Espanhol"
1701
 
1702
- #: pro/classes/controllers/FrmProFieldsController.php:210
1703
  #@ formidable
1704
  msgid "Swedish"
1705
  msgstr "Sueco"
1706
 
1707
- #: pro/classes/controllers/FrmProFieldsController.php:210
1708
  #@ formidable
1709
  msgid "Tamil"
1710
  msgstr "Tâmil"
1711
 
1712
- #: pro/classes/controllers/FrmProFieldsController.php:210
1713
  #@ formidable
1714
  msgid "Thai"
1715
  msgstr "Tailandês"
1716
 
1717
- #: classes/views/frm-settings/form.php:82
1718
- #: pro/classes/controllers/FrmProFieldsController.php:210
1719
  #@ formidable
1720
  msgid "Turkish"
1721
  msgstr "Turco"
1722
 
1723
- #: pro/classes/controllers/FrmProFieldsController.php:210
1724
  #@ formidable
1725
  msgid "Ukranian"
1726
  msgstr "Ucraniano"
1727
 
1728
- #: pro/classes/controllers/FrmProFieldsController.php:210
1729
  #@ formidable
1730
  msgid "Vietnamese"
1731
  msgstr "Vietnamita"
1732
 
1733
- #: pro/classes/controllers/FrmProFormsController.php:63
1734
  #@ formidable
1735
  msgid "Current Date"
1736
  msgstr "Data Atual"
1737
 
1738
- #: pro/classes/controllers/FrmProFormsController.php:64
1739
  #@ formidable
1740
  msgid "Current Time"
1741
  msgstr "Hora Atual"
1742
 
1743
- #: pro/classes/controllers/FrmProFormsController.php:65
1744
  #@ formidable
1745
  msgid "User Email"
1746
  msgstr "E-mail do usuário"
1747
 
1748
- #: pro/classes/controllers/FrmProFormsController.php:66
1749
  #@ formidable
1750
  msgid "User Login"
1751
  msgstr "Login de Usuário"
1752
 
1753
- #: pro/classes/controllers/FrmProFormsController.php:67
1754
  #@ formidable
1755
  msgid "User Display Name"
1756
  msgstr "Nome de usuário"
1757
 
1758
- #: pro/classes/controllers/FrmProFormsController.php:68
1759
  #@ formidable
1760
  msgid "User First Name"
1761
  msgstr "Primeiro Nome do Usuário"
1762
 
1763
- #: pro/classes/controllers/FrmProFormsController.php:69
1764
  #@ formidable
1765
  msgid "User Last Name"
1766
  msgstr "Último Nome do usuário "
1767
 
1768
- #: pro/classes/controllers/FrmProFormsController.php:70
1769
  #@ formidable
1770
  msgid "User Meta"
1771
  msgstr "Usuário Meta"
1772
 
1773
- #: pro/classes/controllers/FrmProFormsController.php:71
 
 
1774
  #@ formidable
1775
  msgid "Post ID"
1776
  msgstr "ID do Post"
1777
 
1778
- #: pro/classes/controllers/FrmProFormsController.php:73
1779
  #@ formidable
1780
  msgid "Client IP Address"
1781
  msgstr "Endereço IP do cliente"
1782
 
1783
- #: pro/classes/controllers/FrmProFormsController.php:74
1784
  #@ formidable
1785
  msgid "Auto Increment"
1786
  msgstr "Auto Incremento"
1787
 
1788
- #: pro/classes/controllers/FrmProFormsController.php:75
1789
  #@ formidable
1790
  msgid "GET/POST variable"
1791
  msgstr "Variável GET / POST"
1792
 
1793
- #: classes/views/frm-forms/list.php:102
1794
- #: pro/classes/controllers/FrmProFormsController.php:100
1795
  #@ formidable
1796
  msgid "Export Template"
1797
  msgstr "Exportar Modelo"
1798
 
1799
- #: pro/classes/controllers/FrmProStatisticsController.php:226
1800
  #@ formidable
1801
  msgid "Completed"
1802
  msgstr "Concluído"
1803
 
1804
- #: pro/classes/controllers/FrmProStatisticsController.php:226
1805
  #@ formidable
1806
  msgid "Not Completed"
1807
  msgstr "Não Concluído"
1808
 
1809
- #: pro/classes/helpers/FrmProAppHelper.php:123
1810
  #@ formidable
1811
  msgid "Bulk Actions"
1812
  msgstr "Ações em massa"
1813
 
1814
- #: pro/classes/helpers/FrmProAppHelper.php:127
1815
  #@ formidable
1816
  msgid "Apply"
1817
  msgstr "Aplicar"
1818
 
1819
- #: pro/classes/helpers/FrmProAppHelper.php:150
1820
  #@ formidable
1821
  msgid "All Fields"
1822
  msgstr "Todos os Campos"
1823
 
1824
- #: pro/classes/helpers/FrmProAppHelper.php:157
1825
  #@ formidable
1826
  msgid "Search"
1827
  msgstr "Pesquisa"
1828
 
1829
- #: pro/classes/helpers/FrmProAppHelper.php:159
1830
  #@ formidable
1831
  msgid "Reset"
1832
  msgstr "Reset"
1833
 
1834
- #: pro/classes/helpers/FrmProFieldsHelper.php:246
1835
  #@ formidable
1836
  msgid "Draft"
1837
  msgstr "Rascunho"
1838
 
1839
- #: pro/classes/helpers/FrmProFieldsHelper.php:247
1840
  #@ formidable
1841
  msgid "Pending Review"
1842
  msgstr "Revisão pendente"
1843
 
1844
- #: pro/classes/helpers/FrmProFieldsHelper.php:249
1845
  #@ formidable
1846
  msgid "Published"
1847
  msgstr "Publicado"
1848
 
1849
- #: pro/classes/helpers/FrmProFieldsHelper.php:250
1850
  #@ formidable
1851
  msgid "Scheduled"
1852
  msgstr "Agendado"
1853
 
1854
- #: pro/classes/helpers/FrmProFieldsHelper.php:426
1855
  #@ formidable
1856
  msgid "Edit Uploaded File"
1857
  msgstr "Editar Arquivo Carregado"
1858
 
1859
- #: pro/classes/helpers/FrmProFieldsHelper.php:550
1860
  #@ formidable
1861
  msgid "Select a value to insert into the box below"
1862
  msgstr "Selecione um valor para inserir na caixa abaixo"
1863
 
1864
- #: pro/classes/helpers/FrmProFieldsHelper.php:552
1865
  #@ formidable
1866
  msgid "Entry ID"
1867
  msgstr "ID Entrada"
1868
 
1869
- #: pro/classes/helpers/FrmProFieldsHelper.php:554
1870
  #@ formidable
1871
  msgid "Entry Creation Date"
1872
  msgstr "Data da Criação da Entrada"
1873
 
1874
- #: pro/classes/helpers/FrmProFieldsHelper.php:556
1875
  #@ formidable
1876
  msgid "Form Fields"
1877
  msgstr "Campos do formulário"
1878
 
1879
- #: pro/classes/helpers/FrmProFieldsHelper.php:564
1880
  #@ formidable
1881
  msgid "Thumbnail"
1882
  msgstr "Miniatura"
1883
 
1884
- #: pro/classes/helpers/FrmProFieldsHelper.php:565
1885
  #@ formidable
1886
  msgid "Medium"
1887
  msgstr "Médio"
1888
 
1889
- #: pro/classes/helpers/FrmProFieldsHelper.php:566
1890
  #@ formidable
1891
  msgid "Large"
1892
  msgstr "Grande"
1893
 
1894
- #: pro/classes/helpers/FrmProFieldsHelper.php:567
1895
  #@ formidable
1896
  msgid "Full Size"
1897
  msgstr "Tamanho Máximo"
1898
 
1899
- #: pro/classes/helpers/FrmProFieldsHelper.php:588
1900
  #@ formidable
1901
  msgid "Helpers"
1902
  msgstr "Helpers"
1903
 
1904
- #: pro/classes/helpers/FrmProFieldsHelper.php:589
1905
  #@ formidable
1906
  msgid "Admin link to edit the entry"
1907
  msgstr "Admin link para editar a entrada"
1908
 
1909
- #: pro/classes/helpers/FrmProFieldsHelper.php:591
1910
  #@ formidable
1911
  msgid "Link to view single page if showing dynamic entries"
1912
  msgstr "Link para a exibição de página única, se mostrando entradas dinâmicas"
1913
 
1914
- #: pro/classes/helpers/FrmProFieldsHelper.php:595
1915
  #@ formidable
1916
  msgid "Add a rotating 'even' or 'odd' class"
1917
  msgstr "Adicionar uma classe de rotação 'impar' ou 'par'"
1918
 
1919
- #: pro/classes/helpers/FrmProFieldsHelper.php:597
1920
  #@ formidable
1921
  msgid "Site URL"
1922
  msgstr "URL do site"
1923
 
1924
- #: pro/classes/models/FrmProDisplay.php:169
1925
  #@ formidable
1926
  msgid "Limit must be a number"
1927
  msgstr "Limite deve ser um número"
1928
 
1929
- #: pro/classes/models/FrmProEntryMeta.php:94
 
1930
  #@ formidable
1931
  msgid "must be unique"
1932
  msgstr "deve ser uníco"
1933
 
1934
- #: pro/classes/models/FrmProField.php:19
1935
- #@ formidable
1936
- msgid "1 = Not Important, 10 = Very Important"
1937
- msgstr "1 = Não Importante, 10 = Muito Importante"
1938
-
1939
- #: pro/classes/models/FrmProField.php:33
1940
  #@ formidable
1941
  msgid "Phone"
1942
  msgstr "Telefone"
1943
 
1944
- #: pro/classes/models/FrmProField.php:39
1945
- #: pro/classes/models/FrmProForm.php:77
1946
  #@ formidable
1947
  msgid "User ID"
1948
  msgstr "ID do Usuário"
1949
 
1950
- #: pro/classes/models/FrmProField.php:54
1951
  #@ formidable
1952
  msgid "Heading"
1953
  msgstr "Designação"
1954
 
1955
- #: pro/classes/models/FrmProField.php:60
1956
- #: pro/classes/views/displays/list.php:43
1957
- #: pro/classes/views/displays/list.php:88
1958
  #@ formidable
1959
  msgid "Page"
1960
  msgstr "Página"
1961
 
1962
- #: pro/classes/models/FrmProForm.php:84
1963
  #@ formidable
1964
  msgid "Please insert a message for your auto responder."
1965
  msgstr "Por favor insira uma mensagem para sua resposta automática."
1966
 
1967
- #: pro/classes/models/FrmProForm.php:86
1968
  #@ formidable
1969
  msgid "That is not a valid reply-to email address for your auto responder."
1970
  msgstr "Não é um e-mail válido para sua resposta automática."
1971
 
1972
- #: pro/classes/models/FrmProSettings.php:101
1973
  #@ formidable
1974
  msgid "You have already submitted that form"
1975
  msgstr "Você já enviou esse formulário"
1976
 
1977
- #: pro/classes/models/FrmProSettings.php:182
1978
- #@ formidable
1979
- msgid "Your responses were successfully saved."
1980
- msgstr "Suas respostas foram salvas com sucesso."
1981
-
1982
- #: pro/classes/views/displays/edit.php:7
1983
  #: pro/classes/views/displays/new.php:7
1984
  #@ formidable
1985
  msgid "Get Help with This Page"
1986
  msgstr "Obter Ajuda com esta página"
1987
 
1988
- #: pro/classes/views/displays/form.php:26
1989
  #@ formidable
1990
  msgid "Save to get ID"
1991
  msgstr "Salvar para obter o ID"
1992
 
1993
- #: pro/classes/views/settings/formroller.php:320
1994
  #@ formidable
1995
  msgid "Calendar"
1996
  msgstr "Calendário"
1997
 
1998
- #: pro/classes/views/displays/form.php:112
1999
  #@ formidable
2000
  msgid "Date Field"
2001
  msgstr "Campo de Data"
2002
 
2003
- #: pro/classes/views/displays/form.php:114
2004
- #: pro/classes/views/displays/form.php:204
2005
- #: pro/classes/views/displays/where_row.php:5
2006
  #@ formidable
2007
  msgid "Entry creation date"
2008
  msgstr "Data de criação da Entrada"
2009
 
2010
- #: pro/classes/views/displays/form.php:92
2011
  #@ formidable
2012
  msgid "Use Entries from Form"
2013
  msgstr "Use entradas de formulário"
2014
 
2015
- #: pro/classes/views/displays/form.php:96
2016
  #@ formidable
2017
  msgid "Select Entry"
2018
  msgstr "Selecione Entrada"
2019
 
2020
- #: pro/classes/views/displays/form.php:96
2021
  #@ formidable
2022
  msgid "The first one depending on the Order specified below"
2023
  msgstr "O primeiro, dependendo da ordem especificado abaixo"
2024
 
2025
- #: pro/classes/views/displays/form.php:153
2026
  #@ formidable
2027
  msgid "Before Content"
2028
  msgstr "Antes de Conteúdo"
2029
 
2030
- #: pro/classes/views/displays/form.php:153
2031
  #@ formidable
2032
  msgid "This content will not be repeated. This would be a good place to put any HTML table tags."
2033
  msgstr "Este conteúdo não será repetida. Este seria um bom lugar para colocar tags HTML de tabela."
2034
 
2035
- #: pro/classes/views/displays/form.php:148
2036
- #: pro/classes/views/displays/form.php:160
2037
- #: pro/classes/views/frmpro-fields/options-form.php:109
 
2038
  #@ formidable
2039
  msgid "Content"
2040
  msgstr "Conteúdo"
2041
 
2042
- #: pro/classes/views/displays/form.php:160
2043
  #@ formidable
2044
  msgid "The HTML for your page. If 'All Entries' is selected above, this content will be repeated for each entry. The field ID and Key work synonymously, although there are times one choice may be better. If you are panning to copy your custom display settings to other blogs, use the Key since they will be copied and the ids may differ from blog to blog."
2045
  msgstr "O HTML de sua página. Se \\\"Todas as entradas\\\" estiver selecionado acima, esse conteúdo será repetido para cada entrada. O campo ID e Key são sinônimos, embora haja vezes que escolher um ou outro pode ser melhor. Se você é quer copiar as configurações de exibição personalizado para outros blogs, use Key, uma vez que os ID's podem diferir de blog para blog."
2046
 
2047
- #: pro/classes/views/displays/form.php:172
2048
  #@ formidable
2049
  msgid "After Content"
2050
  msgstr "Depois do Conteúdo"
2051
 
2052
- #: pro/classes/views/displays/form.php:172
2053
  #@ formidable
2054
  msgid "This content will not be repeated. This would be a good place to close any HTML tags from the Before Content field."
2055
  msgstr "Este conteúdo não será repetido. Este seria um bom lugar para fechar as tags HTML usadasno campo Antes do Conteúdo."
2056
 
2057
- #: pro/classes/views/displays/form.php:179
2058
  #@ formidable
2059
  msgid "Dynamic Content"
2060
  msgstr "Conteúdo Dinâmico"
2061
 
2062
- #: pro/classes/views/displays/form.php:179
2063
  #, php-format
2064
  #@ formidable
2065
  msgid "The HTML for the entry on the dynamic page. This content will NOT be repeated, and will only show when the %1$s is clicked."
@@ -2080,82 +1932,77 @@ msgstr "Antes de o conteúdo da página"
2080
  msgid "If you would like the content to be inserted automatically, you must then select the page in which to insert it."
2081
  msgstr "Se você quer o conteúdo inserido automaticamente, você deve selecionar a página na qual inseri-lo."
2082
 
2083
- #: pro/classes/views/displays/form.php:121
2084
  #@ formidable
2085
  msgid "Detail Link"
2086
  msgstr "Link Detalhe"
2087
 
2088
- #: pro/classes/views/displays/form.php:121
2089
  #, php-format
2090
  #@ formidable
2091
  msgid "Example: If parameter name is 'contact', the url would be like %1$s/selected-page?contact=2. If this entry is linked to a post, the post permalink will be used instead."
2092
  msgstr "Exemplo: Se o nome do parâmetro é 'contato', a url seria como%1$s/selected-page?contato=2. Se essa entrada está ligada a um poste, o permalink do post vai ser utilizado."
2093
 
2094
- #: pro/classes/views/displays/form.php:129
2095
  #, php-format
2096
  #@ formidable
2097
  msgid "Select the value that will be added onto the page URL. This will create a pretty URL like %1$s/selected-page/entry-key"
2098
  msgstr "Selecione o valor que será adicionado para a URL da página. Isto irá criar uma URL bonita como %1$s/selected-page/entry-key"
2099
 
2100
- #: pro/classes/views/displays/form.php:131
2101
  #@ formidable
2102
  msgid "Parameter Name"
2103
  msgstr "Nome do parâmetro"
2104
 
2105
- #: pro/classes/views/displays/form.php:134
2106
  #@ formidable
2107
  msgid "Parameter Value"
2108
  msgstr "Valor do parâmetro"
2109
 
2110
- #: pro/classes/views/displays/form.php:203
2111
  #@ formidable
2112
  msgid "Random"
2113
  msgstr "Randomico"
2114
 
2115
- #: pro/classes/views/displays/form.php:210
2116
  #@ formidable
2117
  msgid "Ascending"
2118
  msgstr "Crescente"
2119
 
2120
- #: pro/classes/views/displays/form.php:211
2121
  #@ formidable
2122
  msgid "Descending"
2123
  msgstr "Descendente"
2124
 
2125
- #: pro/classes/views/displays/form.php:218
2126
  #@ formidable
2127
  msgid "Narrow down which entries will be used."
2128
  msgstr "Selecione as entradas que serão utilizados."
2129
 
2130
- #: pro/classes/views/displays/form.php:238
2131
  #@ formidable
2132
  msgid "If you don’t want all your entries displayed, you can insert the number limit here. Leave blank if you’d like all entries shown."
2133
  msgstr "Se você não deseja que todas as entradas sejam exibidas, você pode inserir um limite aqui. Deixe em branco se quiser todas as entradas exibidas."
2134
 
2135
- #: pro/classes/views/displays/form.php:247
2136
  #@ formidable
2137
  msgid "The number of entries to show per page. Leave blank to not use pagination."
2138
  msgstr "O número de entradas para mostrar por página. Deixe em branco para não usar paginação."
2139
 
2140
- #: pro/classes/views/displays/form.php:257
2141
- #@ formidable
2142
- msgid "Copy these display settings to other blogs when Formidable Pro is activated. Note: Use only field keys in the content box(es) below."
2143
- msgstr "Copie essas configurações de exibição para outros blogs, quando Formidable Pro está ativado. Nota: Use as chaves de campo da caixa de conteúdo (s) abaixo."
2144
-
2145
- #: pro/classes/views/displays/list.php:41
2146
- #: pro/classes/views/displays/list.php:86
2147
  #: pro/classes/widgets/FrmPollResults.php:40
2148
- #: pro/classes/widgets/FrmShowForm.php:46
2149
  #@ formidable
2150
  msgid "Form"
2151
  msgstr "Formulário"
2152
 
2153
- #: pro/classes/views/displays/list.php:50
2154
  #@ formidable
2155
  msgid "No Records Found"
2156
  msgstr "Nenhum Registro Encontrado"
2157
 
2158
- #: pro/classes/views/displays/list.php:64
2159
  #, php-format
2160
  #@ formidable
2161
  msgid "Are you sure you want to delete your %1$s display data?"
@@ -2216,32 +2063,32 @@ msgstr "Especifique o texto para o link Mais."
2216
  msgid "Date options: 'NOW' or a date in yyyy-mm-dd format."
2217
  msgstr "Data opções: \\\"NOW\\\" (AGORA)ou uma data no formato aaaa-mm-dd."
2218
 
2219
- #: pro/classes/views/displays/where_row.php:8
2220
  #@ formidable
2221
  msgid "is"
2222
  msgstr "é"
2223
 
2224
- #: pro/classes/views/displays/where_row.php:10
2225
  #@ formidable
2226
  msgid "equal to"
2227
  msgstr "igual a"
2228
 
2229
- #: pro/classes/views/displays/where_row.php:11
2230
  #@ formidable
2231
  msgid "NOT equal to"
2232
  msgstr "NÃO igual"
2233
 
2234
- #: pro/classes/views/displays/where_row.php:12
2235
  #@ formidable
2236
  msgid "greater than"
2237
  msgstr "maior que"
2238
 
2239
- #: pro/classes/views/displays/where_row.php:13
2240
  #@ formidable
2241
  msgid "less than"
2242
  msgstr "menor que"
2243
 
2244
- #: pro/classes/views/displays/where_row.php:14
2245
  #@ formidable
2246
  msgid "like"
2247
  msgstr "como"
@@ -2251,45 +2098,28 @@ msgstr "como"
2251
  msgid "Edit Entry"
2252
  msgstr "Editar entrada"
2253
 
2254
- #: pro/classes/controllers/FrmProEntriesController.php:939
2255
- #: pro/classes/views/frmpro-entries/list.php:67
2256
- #@ default
2257
  #@ formidable
2258
  msgid "Are you sure you want to delete that entry?"
2259
  msgstr "Tem certeza que quer apagar esta entrada?"
2260
 
2261
- #: pro/classes/views/frmpro-entries/list.php:91
2262
  #@ formidable
2263
  msgid "Download CSV for"
2264
  msgstr "Download CSV para"
2265
 
2266
- #: pro/classes/views/frmpro-entries/new-selection.php:4
2267
- #@ formidable
2268
- msgid "Create Entry"
2269
- msgstr "Criar Entrada"
2270
-
2271
  #: pro/classes/views/frmpro-entries/new-selection.php:8
2272
  #@ formidable
2273
  msgid "Select Form for New Entry"
2274
  msgstr "Selecione Formulário para nova entrada"
2275
 
2276
- #: pro/classes/views/frmpro-entries/new.php:3
2277
- #, php-format
2278
- #@ formidable
2279
- msgid "New %1$s Entry"
2280
- msgstr "Nova entrada %1$s"
2281
-
2282
  #: pro/classes/views/frmpro-entries/show.php:3
2283
  #@ formidable
2284
  msgid "View Entry"
2285
  msgstr "Veja a entrada"
2286
 
2287
- #: pro/classes/views/frmpro-entries/show.php:12
2288
- #: pro/classes/views/frmpro-entries/show.php:55
2289
- #@ formidable
2290
- msgid "Edit this entry"
2291
- msgstr "Edite esta entrada"
2292
-
2293
  #: pro/classes/views/frmpro-fields/dynamic-options.php:18
2294
  #@ formidable
2295
  msgid "Limit selection choices to those created by the user filling out this form"
@@ -2310,119 +2140,124 @@ msgstr "Mostrar como"
2310
  msgid "Just show it"
2311
  msgstr "Apenas o exiba"
2312
 
2313
- #: pro/classes/views/frmpro-fields/options-form.php:26
2314
  #@ formidable
2315
  msgid "Calendar Localization"
2316
  msgstr "Localização do Calendário"
2317
 
2318
- #: pro/classes/views/frmpro-fields/options-form.php:37
2319
  #@ formidable
2320
  msgid "Start Year"
2321
  msgstr "Ano Inicial"
2322
 
2323
- #: pro/classes/views/frmpro-fields/options-form.php:45
2324
  #@ formidable
2325
  msgid "End Year"
2326
  msgstr "Ano Final"
2327
 
2328
- #: pro/classes/views/frmpro-fields/options-form.php:54
2329
  #@ formidable
2330
  msgid "Clock Settings"
2331
  msgstr "Definições do Relógio"
2332
 
2333
- #: pro/classes/views/frmpro-fields/options-form.php:59
2334
  #@ formidable
2335
  msgid "hour clock"
2336
  msgstr "hora do relógio "
2337
 
2338
- #: pro/classes/views/frmpro-fields/options-form.php:62
2339
  #@ formidable
2340
  msgid "minute step"
2341
  msgstr "intervalo de minutos"
2342
 
2343
- #: pro/classes/views/frmpro-fields/options-form.php:67
2344
  #@ formidable
2345
  msgid "automatic width"
2346
  msgstr "largura automática"
2347
 
2348
- #: pro/classes/views/frmpro-fields/options-form.php:71
2349
  #@ formidable
2350
  msgid "Email Attachment"
2351
  msgstr "Anexo de E-mail"
2352
 
2353
- #: pro/classes/views/frmpro-fields/options-form.php:72
2354
  #@ formidable
2355
  msgid "attach this file to the email notification"
2356
  msgstr "anexar esse arquivo ao email de notificação"
2357
 
2358
- #: pro/classes/views/frmpro-fields/options-form.php:75
2359
  #@ formidable
2360
  msgid "Number Range"
2361
  msgstr "Faixa de Número"
2362
 
2363
- #: pro/classes/views/frmpro-fields/options-form.php:75
2364
  #@ formidable
2365
  msgid "Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field."
2366
  msgstr "Os navegadores que suportam o campo de número HTML5 exigem um intervalo de números para determinar os números visitos ao clicar nas setas ao lado do campo."
2367
 
2368
- #: pro/classes/views/frmpro-fields/options-form.php:76
2369
  #@ formidable
2370
  msgid "minimum"
2371
  msgstr "mínimo"
2372
 
2373
- #: pro/classes/views/frmpro-fields/options-form.php:77
2374
  #@ formidable
2375
  msgid "maximum"
2376
  msgstr "máximo"
2377
 
2378
- #: pro/classes/views/frmpro-fields/options-form.php:78
2379
  #@ formidable
2380
  msgid "step"
2381
  msgstr "etapa"
2382
 
2383
- #: pro/classes/views/frmpro-fields/options-form.php:81
2384
  #@ formidable
2385
  msgid "Range"
2386
  msgstr "Faixa"
2387
 
2388
- #: pro/classes/views/frmpro-fields/options-form.php:88
2389
  #@ formidable
2390
  msgid "to"
2391
  msgstr "para"
2392
 
2393
- #: pro/classes/views/frmpro-fields/options-form.php:98
2394
- #: pro/classes/views/frmpro-fields/options-form.php:119
2395
- #: pro/classes/views/frmpro-fields/options-form.php:127
2396
  #@ formidable
2397
  msgid "Field Type"
2398
  msgstr "Tipo de campo"
2399
 
2400
- #: pro/classes/views/frmpro-fields/options-form.php:157
2401
  #@ formidable
2402
  msgid "Hide this field unless the value of"
2403
  msgstr "Esconder este campo a menos que o valor de"
2404
 
2405
- #: pro/classes/views/frmpro-fields/options-form.php:159
 
 
 
 
 
 
2406
  #@ formidable
2407
  msgid "Select Field"
2408
  msgstr "Selecione Campo"
2409
 
2410
- #: pro/classes/views/frmpro-fields/options-form.php:167
2411
  #@ formidable
2412
  msgid "is equal to"
2413
  msgstr "é igual a"
2414
 
2415
- #: pro/classes/views/frmpro-fields/options-form.php:181
2416
  #@ formidable
2417
  msgid "Post field"
2418
  msgstr "campo Post"
2419
 
2420
- #: pro/classes/views/frmpro-fields/options-form.php:181
2421
  #@ formidable
2422
  msgid "Create a post from each form submission by selecting which part of the post this field will create. 'Custom field' is the only post field type that should be used multiple times."
2423
  msgstr "Criar um post de cada envio do formulário, selecionando a parte do post que este campo irá criar. 'Campo personalizado' é o uníco tipo de campo de post que pode ser usado várias vezes."
2424
 
2425
- #: pro/classes/views/frmpro-fields/options-form.php:210
2426
  #@ formidable
2427
  msgid "The field key can be used as an alternative to the field ID in many cases."
2428
  msgstr "O campo chave pode ser usado como uma alternativa para o campo ID, em muitos casos."
@@ -2432,16 +2267,6 @@ msgstr "O campo chave pode ser usado como uma alternativa para o campo ID, em mu
2432
  msgid "These buttons are for illustrative purposes only. They will be functional in your form."
2433
  msgstr "Estes botões são apenas para fins ilustrativos. Eles vão ser funcionais em seu formulário."
2434
 
2435
- #: pro/classes/views/frmpro-fields/show.php:110
2436
- #@ formidable
2437
- msgid "Add a Row"
2438
- msgstr "Adicionar uma linha"
2439
-
2440
- #: pro/classes/views/frmpro-fields/show.php:111
2441
- #@ formidable
2442
- msgid "Add a Column"
2443
- msgstr "Adicionar uma coluna"
2444
-
2445
  #: pro/classes/views/frmpro-forms/add_form_options.php:1
2446
  #@ formidable
2447
  msgid "Use Content from Page"
@@ -2457,62 +2282,62 @@ msgstr "Redirecionar para"
2457
  msgid "Submit this Form with AJAX"
2458
  msgstr "Envie este formulário com AJAX"
2459
 
2460
- #: pro/classes/views/frmpro-forms/add_form_options.php:14
2461
  #@ formidable
2462
  msgid "Only"
2463
  msgstr "Somente"
2464
 
2465
- #: pro/classes/views/frmpro-forms/add_form_options.php:22
2466
  #@ formidable
2467
  msgid "Can See and Submit this Form"
2468
  msgstr "Pode ver e enviar este formulário"
2469
 
2470
- #: pro/classes/views/frmpro-forms/add_form_options.php:24
2471
  #@ formidable
2472
  msgid "Allow"
2473
  msgstr "Permitir"
2474
 
2475
- #: pro/classes/views/frmpro-forms/add_form_options.php:32
2476
  #@ formidable
2477
  msgid "to Edit Their Own Previous Responses"
2478
  msgstr "editar suas próprias respostas anteriores"
2479
 
2480
- #: pro/classes/views/frmpro-forms/add_form_options.php:35
2481
  #@ formidable
2482
  msgid "Also Allow"
2483
  msgstr "Também permitir"
2484
 
2485
- #: pro/classes/views/frmpro-forms/add_form_options.php:43
2486
  #@ formidable
2487
  msgid "to Edit Responses Submitted by Anyone"
2488
  msgstr "Editar respostas enviadas por qualquer pessoa"
2489
 
2490
- #: pro/classes/views/frmpro-forms/add_form_options.php:47
2491
  #@ formidable
2492
  msgid "Update Submit Button Text"
2493
  msgstr "Atualize texto do botão Enviar"
2494
 
2495
- #: pro/classes/views/frmpro-forms/add_form_options.php:52
2496
  #@ formidable
2497
  msgid "Update Confirmation Message"
2498
  msgstr "Atualize Mensagem de Confirmação"
2499
 
2500
- #: pro/classes/views/frmpro-forms/add_form_options.php:56
2501
  #@ formidable
2502
  msgid "Allow Only One Entry for Each"
2503
  msgstr "Permitir apenas uma entrada para cada"
2504
 
2505
- #: pro/classes/views/frmpro-forms/add_form_options.php:59
2506
  #@ formidable
2507
  msgid "Logged-in User"
2508
  msgstr "Usuário logado"
2509
 
2510
- #: pro/classes/views/frmpro-forms/add_form_options.php:61
2511
  #@ formidable
2512
  msgid "Saved Cookie"
2513
  msgstr "Cookie Salvo"
2514
 
2515
- #: pro/classes/views/frmpro-forms/add_form_options.php:78
2516
  #@ formidable
2517
  msgid "Copy this form to other blogs when Formidable Pro is activated"
2518
  msgstr "Copie este formulário para outros blogs, quando Formidable Pro está ativado"
@@ -2527,11 +2352,6 @@ msgstr "Utilize os valores padrão dinâmico inserindo o shortcodes abaixo como
2527
  msgid "A variable from the URL or value posted from previous page."
2528
  msgstr "Uma variável da URL ou valor recebido da página anterior."
2529
 
2530
- #: pro/classes/views/frmpro-forms/instructions.php:18
2531
- #@ formidable
2532
- msgid "Replace CUSTOM with the parameter name. In url.com?product=form, the variable is 'product'. You would use [get-product] in your field."
2533
- msgstr "Substitua CUSTOM pelo nome do parâmetro. Em url.com? produto=form, a variável é 'produto'. Você usaria [get-produto] em seu campo."
2534
-
2535
  #: pro/classes/views/frmpro-forms/notifications.php:3
2536
  #@ formidable
2537
  msgid "and/or"
@@ -2542,54 +2362,49 @@ msgstr "e/ou"
2542
  msgid "Select a user id, hidden, or email field to send a notification."
2543
  msgstr "Selecione um ID de usuário, oculto, ou o campo e-mail para enviar uma notificação."
2544
 
2545
- #: pro/classes/views/frmpro-forms/notifications.php:31
2546
  #@ formidable
2547
  msgid "Usually the name and email of the person filling out the form. Select from Text, Email, User ID, or hidden fields for the name. Select from Email, User ID, and hidden fields for the email. Defaults to your site name and admin email found on the WordPress General Settings page."
2548
  msgstr "Normalmente, o nome e e-mail da pessoa que está preenchendo o formulário. Escolha entre Texto, Email, ID de usuário, ou campos ocultos para o nome. Selecione a partir de e-mail, identificação de usuário, e os campos ocultos para o e-mail. O padrão é o nome do site e e-mail admin encontrados na página do WordPress Definições Gerais."
2549
 
2550
- #: pro/classes/views/frmpro-forms/notifications.php:74
2551
- #: pro/classes/views/frmpro-forms/notifications.php:132
2552
  #@ formidable
2553
  msgid "Email Format"
2554
  msgstr "Formato do e-mail"
2555
 
2556
- #: pro/classes/views/frmpro-forms/notifications.php:75
2557
- #: pro/classes/views/frmpro-forms/notifications.php:133
2558
  #@ formidable
2559
  msgid "Send Plain Text"
2560
  msgstr "Enviar Plain Text"
2561
 
2562
- #: pro/classes/views/frmpro-forms/notifications.php:85
2563
- #@ formidable
2564
- msgid "Leave blank to use default message."
2565
- msgstr "Deixe em branco para usar a mensagem padrão."
2566
-
2567
- #: pro/classes/views/frmpro-forms/notifications.php:92
2568
  #@ formidable
2569
  msgid "Append IP Address, Browser, and Referring URL to message"
2570
  msgstr "Acrescente o endereço IP, Browser, e URL de referência na mensagem"
2571
 
2572
- #: pro/classes/views/frmpro-forms/notifications.php:96
2573
  #@ formidable
2574
  msgid "Auto Responder"
2575
  msgstr "Resposta Automática"
2576
 
2577
- #: pro/classes/views/frmpro-forms/notifications.php:97
2578
  #@ formidable
2579
  msgid "Send an automatic response to users submitting the form"
2580
  msgstr "Enviar uma resposta automática para os usuários que enviarem o formulário"
2581
 
2582
- #: pro/classes/views/frmpro-forms/notifications.php:101
2583
  #@ formidable
2584
  msgid "Email to"
2585
  msgstr "E-mail para"
2586
 
2587
- #: pro/classes/views/frmpro-forms/notifications.php:101
2588
  #@ formidable
2589
  msgid "Select a user id, hidden, or email field to send the autoresponse."
2590
  msgstr "Selecione um ID de usuário, escondido, ou campo de e-mail para enviar a resposta automática."
2591
 
2592
- #: pro/classes/views/frmpro-forms/notifications.php:124
2593
  #@ formidable
2594
  msgid "Reply to"
2595
  msgstr "Responder para"
@@ -2619,16 +2434,6 @@ msgstr "Se você tiver criado um formulário tipo acordeão, não se esqueça d
2619
  msgid "Keys"
2620
  msgstr "Chaves"
2621
 
2622
- #: pro/classes/views/settings/form.php:18
2623
- #@ formidable
2624
- msgid "Hide Key input fields to prevent them from being edited. Uncheck this box if you'd like to change the saved keys for use in your template."
2625
- msgstr "Esconder os campos do tipo chave para impedir que eles sejam editados. Desmarque esta caixa se você quiser mudar as chaves salvas para uso no seu modelo."
2626
-
2627
- #: pro/classes/views/settings/form.php:21
2628
- #@ formidable
2629
- msgid "Lock Field and Entry Keys"
2630
- msgstr "Bloqueia campo chave e suas entradas"
2631
-
2632
  #: pro/classes/views/settings/form.php:26
2633
  #@ formidable
2634
  msgid "Path to Extra Templates"
@@ -2655,23 +2460,23 @@ msgstr "Formato de data"
2655
  msgid "Change the format of the date used in the calendar."
2656
  msgstr "Alterar o formato da data usada no calendário."
2657
 
2658
- #: pro/classes/views/settings/form.php:56
2659
  #@ formidable
2660
  msgid "Pretty Permalinks"
2661
  msgstr "Permalinks bonitos"
2662
 
2663
- #: pro/classes/views/settings/form.php:59
2664
  #@ formidable
2665
  msgid "Use pretty permalinks for entry detail links"
2666
  msgstr "Use permalinks bonito para links de entrada detalhada"
2667
 
2668
  #: pro/classes/views/settings/formroller.php:22
2669
- #: pro/classes/views/settings/formroller.php:194
2670
- #: pro/classes/views/settings/formroller.php:226
2671
- #: pro/classes/views/settings/formroller.php:250
2672
- #: pro/classes/views/settings/formroller.php:396
2673
- #: pro/classes/views/settings/formroller.php:446
2674
- #: pro/classes/views/settings/formroller.php:472
2675
  #@ formidable
2676
  msgid "Border"
2677
  msgstr "Borda"
@@ -2679,67 +2484,67 @@ msgstr "Borda"
2679
  #: pro/classes/views/settings/formroller.php:27
2680
  #: pro/classes/views/settings/formroller.php:50
2681
  #: pro/classes/views/settings/formroller.php:100
2682
- #: pro/classes/views/settings/formroller.php:299
2683
  #@ formidable
2684
  msgid "Color"
2685
  msgstr "Cor"
2686
 
2687
  #: pro/classes/views/settings/formroller.php:32
2688
- #: pro/classes/views/settings/formroller.php:165
2689
- #: pro/classes/views/settings/formroller.php:413
2690
  #@ formidable
2691
  msgid "Padding"
2692
  msgstr "Padding"
2693
 
2694
  #: pro/classes/views/settings/formroller.php:111
2695
- #: pro/classes/views/settings/formroller.php:202
2696
- #: pro/classes/views/settings/formroller.php:258
2697
  #@ formidable
2698
  msgid "Style"
2699
  msgstr "Estilo"
2700
 
2701
- #: pro/classes/views/settings/formroller.php:204
2702
- #: pro/classes/views/settings/formroller.php:260
2703
  #@ formidable
2704
  msgid "solid"
2705
  msgstr "sólido"
2706
 
2707
- #: pro/classes/views/settings/formroller.php:205
2708
- #: pro/classes/views/settings/formroller.php:261
2709
  #@ formidable
2710
  msgid "dotted"
2711
  msgstr "pontilhado"
2712
 
2713
- #: pro/classes/views/settings/formroller.php:206
2714
- #: pro/classes/views/settings/formroller.php:262
2715
  #@ formidable
2716
  msgid "dashed"
2717
  msgstr "tracejada"
2718
 
2719
- #: pro/classes/views/settings/formroller.php:207
2720
- #: pro/classes/views/settings/formroller.php:263
2721
  #@ formidable
2722
  msgid "double"
2723
  msgstr "dupla"
2724
 
2725
- #: pro/classes/views/settings/formroller.php:198
2726
- #: pro/classes/views/settings/formroller.php:254
2727
- #: pro/classes/views/settings/formroller.php:400
2728
  #@ formidable
2729
  msgid "Thickness"
2730
  msgstr "Espessura"
2731
 
2732
- #: pro/classes/views/settings/formroller.php:345
2733
  #@ formidable
2734
  msgid "Disable submit button styling"
2735
  msgstr "Desabilitar estilização do botão submit"
2736
 
2737
- #: pro/classes/views/settings/formroller.php:347
2738
  #@ formidable
2739
  msgid "Note: If disabled, you may not see the change take effect until you make 2 more styling changes or click \"Update Options\"."
2740
  msgstr "Nota: Se desativado, você não pode ver as alterações terem efeito até que você faça duas ou mais mudanças no estilo ou clique em \"Update Options\"."
2741
 
2742
- #: pro/classes/views/settings/formroller.php:513
2743
  #@ formidable
2744
  msgid "Templates Updated"
2745
  msgstr "Modelos Atualizados"
@@ -2754,9 +2559,10 @@ msgstr "Exibir uma lista de entradas do Formidable"
2754
  msgid "Formidable Entries List"
2755
  msgstr "Lista de Entradas Formidable"
2756
 
 
 
2757
  #: pro/classes/widgets/FrmListEntries.php:133
2758
  #: pro/classes/widgets/FrmPollResults.php:34
2759
- #: pro/classes/widgets/FrmShowForm.php:43
2760
  #@ formidable
2761
  msgid "Title"
2762
  msgstr "Título"
@@ -2811,46 +2617,42 @@ msgstr "Mostra as entradas abaixo de Categorias"
2811
  msgid "Entry Limit (leave blank to list all)"
2812
  msgstr "Limite de Entradas (deixe em branco para listar todas)"
2813
 
2814
- #: pro/classes/widgets/FrmShowForm.php:6
2815
  #@ formidable
2816
  msgid "Display a Formidable Form"
2817
  msgstr "Exibir formulário Formidable"
2818
 
2819
- #: pro/classes/widgets/FrmShowForm.php:7
2820
  #@ formidable
2821
  msgid "Formidable Form"
2822
  msgstr "Formulário Formidable"
2823
 
 
2824
  #: pro/classes/widgets/FrmPollResults.php:38
2825
- #: pro/classes/widgets/FrmShowForm.php:51
2826
  #@ formidable
2827
  msgid "Show Description"
2828
  msgstr "Exibir Descrição"
2829
 
2830
- #: pro/classes/widgets/FrmShowForm.php:54
2831
  #@ formidable
2832
  msgid "Fit Select Boxes into SideBar"
2833
  msgstr "Encaixar Caixas de Seleção na barra lateral"
2834
 
2835
- #: pro/classes/widgets/FrmShowForm.php:57
2836
- #@ formidable
2837
- msgid "If your text fields are too big for your sidebar, insert a size here. If the field doesn't change after saving this widget, it is probably getting overridden in your field settings. To correct this, edit the form and remove the number in the 'Size' field option."
2838
- msgstr "Se os campos de texto são grandes demais para sua barra lateral, insira um tamanho aqui. Se o campo não muda depois de salvar este widget, ele, provavelmente, está sendo substituído pelas configurações do seu campo. Para corrigir isso, edite o formulário e remova o número na opção \\\"Tamanho\\\" do campo."
2839
-
2840
- #: classes/helpers/FrmFieldsHelper.php:220
2841
- #: classes/helpers/FrmFieldsHelper.php:226
2842
  #@ formidable
2843
  msgid "not"
2844
  msgstr "não"
2845
 
2846
- #: classes/views/frm-forms/edit.php:14
2847
- #: classes/views/frm-forms/edit.php:28
 
2848
  #@ formidable
2849
  msgid "Customize Form HTML"
2850
  msgstr ""
2851
 
2852
- #: classes/views/frm-forms/edit.php:14
2853
- #: classes/views/frm-forms/edit.php:28
2854
  #@ formidable
2855
  msgid "Advanced Users: Customize your form HTML here"
2856
  msgstr ""
@@ -2860,11 +2662,6 @@ msgstr ""
2860
  msgid "Select a form to insert"
2861
  msgstr ""
2862
 
2863
- #: classes/views/frm-forms/insert_form_popup.php:47
2864
- #@ formidable
2865
- msgid "Select custom display settings to insert"
2866
- msgstr ""
2867
-
2868
  #: classes/views/frm-forms/insert_form_popup.php:58
2869
  #@ formidable
2870
  msgid "Filter shortcodes within the custom display content"
@@ -2880,97 +2677,95 @@ msgstr ""
2880
  msgid "Insert a search box"
2881
  msgstr ""
2882
 
2883
- #: classes/views/frm-forms/list.php:102
2884
  #: pro/classes/views/shared/import_form.php:37
2885
  #@ formidable
2886
  msgid "Export"
2887
  msgstr "Exportar"
2888
 
2889
- #: classes/views/frm-settings/form.php:53
2890
  #@ formidable
2891
  msgid "reCAPTCHA"
2892
  msgstr ""
2893
 
2894
- #: classes/views/frm-settings/form.php:53
2895
  #@ formidable
2896
  msgid "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking spam on your blog. reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a human. This verifies that they are not a spambot."
2897
  msgstr ""
2898
 
2899
- #: classes/views/frm-settings/form.php:60
2900
  #@ formidable
2901
  msgid "Public Key"
2902
  msgstr ""
2903
 
2904
- #: classes/views/frm-settings/form.php:64
2905
  #@ formidable
2906
  msgid "Private Key"
2907
  msgstr ""
2908
 
2909
- #: classes/views/frm-settings/form.php:73
2910
  #@ formidable
2911
  msgid "reCAPTCHA Theme"
2912
  msgstr ""
2913
 
2914
- #: classes/views/frm-settings/form.php:75
2915
  #@ formidable
2916
  msgid "Red"
2917
- msgstr ""
2918
 
2919
- #: classes/views/frm-settings/form.php:75
2920
  #@ formidable
2921
  msgid "White"
2922
- msgstr ""
2923
 
2924
- #: classes/views/frm-settings/form.php:75
2925
  #@ formidable
2926
  msgid "Black Glass"
2927
  msgstr ""
2928
 
2929
- #: classes/views/frm-settings/form.php:75
2930
  #@ formidable
2931
  msgid "Clean"
2932
  msgstr ""
2933
 
2934
- #: classes/views/frm-settings/form.php:80
2935
- #@ formiable
2936
  msgid "reCAPTCHA Language"
2937
  msgstr ""
2938
 
2939
- #: classes/views/frm-settings/form.php:82
2940
  #@ formidable
2941
  msgid "English"
2942
- msgstr ""
2943
 
2944
- #: classes/views/frm-settings/form.php:82
2945
  #@ formidable
2946
  msgid "Portuguese"
2947
- msgstr ""
2948
-
2949
- #: pro/classes/controllers/FrmProDisplaysController.php:93
2950
- #@ formidable
2951
- msgid "Oops! There was a problem saving your Custom Display Settings. Please try deactivating and reactivating Formidable to correct the problem."
2952
- msgstr ""
2953
 
2954
- #: pro/classes/controllers/FrmProFormsController.php:72
 
 
2955
  #@ formidable
2956
  msgid "Post Title"
2957
  msgstr ""
2958
 
2959
- #: pro/classes/views/frmpro-fields/options-form.php:132
2960
  #@ formidable
2961
  msgid "Unique"
2962
  msgstr ""
2963
 
2964
- #: pro/classes/views/frmpro-fields/options-form.php:134
2965
  #@ formidable
2966
  msgid "Read Only"
2967
  msgstr ""
2968
 
2969
- #: pro/classes/views/frmpro-forms/notifications.php:31
2970
  #@ formidable
2971
  msgid "From/Reply to"
2972
  msgstr ""
2973
 
 
2974
  #: pro/classes/views/settings/formroller.php:9
2975
  #@ formidable
2976
  msgid "General"
@@ -3009,15 +2804,15 @@ msgstr ""
3009
 
3010
  #: pro/classes/views/settings/formroller.php:46
3011
  #: pro/classes/views/settings/formroller.php:96
3012
- #: pro/classes/views/settings/formroller.php:295
3013
  #@ formidable
3014
  msgid "Family"
3015
  msgstr ""
3016
 
3017
  #: pro/classes/views/settings/formroller.php:54
3018
  #: pro/classes/views/settings/formroller.php:104
3019
- #: pro/classes/views/settings/formroller.php:303
3020
- #: pro/classes/views/settings/formroller.php:350
3021
  #@ formidable
3022
  msgid "Weight"
3023
  msgstr ""
@@ -3025,9 +2820,10 @@ msgstr ""
3025
  #: pro/classes/views/settings/formroller.php:61
3026
  #: pro/classes/views/settings/formroller.php:118
3027
  #: pro/classes/views/settings/formroller.php:155
3028
- #: pro/classes/views/settings/formroller.php:310
3029
- #: pro/classes/views/settings/formroller.php:363
3030
- #: pro/classes/views/settings/formroller.php:480
 
3031
  #@ formidable
3032
  msgid "Size"
3033
  msgstr ""
@@ -3039,22 +2835,22 @@ msgstr ""
3039
 
3040
  #: pro/classes/views/settings/formroller.php:83
3041
  #: pro/classes/views/settings/formroller.php:160
3042
- #: pro/classes/views/settings/formroller.php:368
3043
  #@ formidable
3044
  msgid "Width"
3045
  msgstr ""
3046
 
3047
  #: pro/classes/views/settings/formroller.php:106
3048
  #: pro/classes/views/settings/formroller.php:113
3049
- #: pro/classes/views/settings/formroller.php:305
3050
- #: pro/classes/views/settings/formroller.php:352
3051
  #@ formidable
3052
  msgid "normal"
3053
  msgstr ""
3054
 
3055
  #: pro/classes/views/settings/formroller.php:107
3056
- #: pro/classes/views/settings/formroller.php:306
3057
- #: pro/classes/views/settings/formroller.php:353
3058
  #@ formidable
3059
  msgid "bold"
3060
  msgstr ""
@@ -3070,7 +2866,7 @@ msgid "Corner Radius"
3070
  msgstr ""
3071
 
3072
  #: pro/classes/views/settings/formroller.php:140
3073
- #: pro/classes/views/settings/formroller.php:358
3074
  #@ formidable
3075
  msgid "Corners"
3076
  msgstr ""
@@ -3085,101 +2881,96 @@ msgstr ""
3085
  msgid "Field Settings"
3086
  msgstr ""
3087
 
3088
- #: pro/classes/views/settings/formroller.php:170
3089
- #@ formidable
3090
- msgid "Top Margin"
3091
- msgstr ""
3092
-
3093
- #: pro/classes/views/settings/formroller.php:180
3094
  #@ formidable
3095
  msgid "Field Colors"
3096
  msgstr ""
3097
 
3098
- #: pro/classes/views/settings/formroller.php:185
3099
- #: pro/classes/views/settings/formroller.php:222
3100
- #: pro/classes/views/settings/formroller.php:241
3101
  #@ formidable
3102
  msgid "BG color"
3103
  msgstr ""
3104
 
3105
- #: pro/classes/views/settings/formroller.php:189
3106
- #: pro/classes/views/settings/formroller.php:245
3107
- #: pro/classes/views/settings/formroller.php:386
3108
- #: pro/classes/views/settings/formroller.php:451
3109
- #: pro/classes/views/settings/formroller.php:476
3110
  #@ formidable
3111
  msgid "Text"
3112
  msgstr ""
3113
 
3114
- #: pro/classes/views/settings/formroller.php:217
3115
  #@ formidable
3116
  msgid "Field Colors: active state"
3117
  msgstr ""
3118
 
3119
- #: pro/classes/views/settings/formroller.php:236
3120
  #@ formidable
3121
  msgid "Field Colors: error state"
3122
  msgstr ""
3123
 
3124
- #: pro/classes/views/settings/formroller.php:272
3125
  #@ formidable
3126
  msgid "Radio Buttons & Check Boxes"
3127
  msgstr ""
3128
 
3129
- #: pro/classes/views/settings/formroller.php:277
3130
  #@ formidable
3131
  msgid "Radio"
3132
  msgstr ""
3133
 
3134
- #: pro/classes/views/settings/formroller.php:286
3135
  #@ formidable
3136
  msgid "Check Box"
3137
  msgstr ""
3138
 
3139
- #: pro/classes/views/settings/formroller.php:324
3140
  #@ formidable
3141
  msgid "Theme"
3142
  msgstr ""
3143
 
3144
- #: pro/classes/views/settings/formroller.php:373
3145
  #@ formidable
3146
  msgid "Height"
3147
  msgstr ""
3148
 
3149
- #: pro/classes/views/settings/formroller.php:378
3150
- #: pro/classes/views/settings/formroller.php:382
3151
- #: pro/classes/views/settings/formroller.php:441
3152
- #: pro/classes/views/settings/formroller.php:467
3153
  #@ formidable
3154
  msgid "BG Color"
3155
  msgstr ""
3156
 
3157
- #: pro/classes/views/settings/formroller.php:391
3158
  #@ formidable
3159
  msgid "BG Image"
3160
  msgstr ""
3161
 
3162
- #: pro/classes/views/settings/formroller.php:404
3163
  #@ formidable
3164
  msgid "Shadow"
3165
  msgstr ""
3166
 
3167
- #: pro/classes/views/settings/formroller.php:409
3168
  #@ formidable
3169
  msgid "Margin"
3170
  msgstr ""
3171
 
3172
- #: pro/classes/views/settings/formroller.php:424
3173
  #@ formidable
3174
  msgid "Error"
3175
  msgstr ""
3176
 
3177
- #: pro/classes/views/settings/formroller.php:429
3178
  #@ formidable
3179
  msgid "Icon"
3180
  msgstr ""
3181
 
3182
- #: pro/classes/views/settings/formroller.php:462
3183
  #@ formidable
3184
  msgid "Success"
3185
  msgstr ""
@@ -3194,12 +2985,6 @@ msgstr ""
3194
  msgid "Formidable Poll & Results"
3195
  msgstr ""
3196
 
3197
- #: classes/helpers/FrmAppHelper.php:167
3198
- #: classes/models/FrmEntry.php:228
3199
- #@ formidable
3200
- msgid "cannot be blank"
3201
- msgstr ""
3202
-
3203
  #: classes/helpers/FrmFieldsHelper.php:12
3204
  #@ formidable
3205
  msgid "reCAPTCHA (SPAM Control)"
@@ -3216,129 +3001,109 @@ msgid "Hidden User ID"
3216
  msgstr ""
3217
 
3218
  #: classes/helpers/FrmFieldsHelper.php:37
3219
- #: pro/classes/models/FrmProField.php:51
3220
  #@ formidable
3221
  msgid "HTML"
3222
  msgstr ""
3223
 
3224
- #: classes/models/FrmSettings.php:72
3225
  #@ formidable
3226
  msgid "The reCAPTCHA was not entered correctly"
3227
  msgstr ""
3228
 
3229
- #: classes/views/frm-forms/add_field.php:48
3230
  #, php-format
3231
  #@ formidable
3232
  msgid "Hint: Change colors in the %1$sFormidable settings"
3233
  msgstr ""
3234
 
3235
- #: classes/views/frm-forms/add_field.php:98
3236
  #@ formidable
3237
  msgid "Required Field"
3238
  msgstr ""
3239
 
3240
- #: classes/views/frm-forms/add_field.php:99
3241
  #@ formidable
3242
  msgid "Required"
3243
  msgstr ""
3244
 
3245
- #: classes/views/frm-forms/add_field.php:105
3246
- #@ formidable
3247
- msgid "Error message if field is left blank"
3248
- msgstr ""
3249
-
3250
- #: classes/views/frm-forms/form.php:124
3251
  #@ formidable
3252
  msgid "Delete Entry Link"
3253
  msgstr ""
3254
 
3255
- #: classes/views/frm-forms/list.php:42
3256
- #: classes/views/frm-forms/list.php:138
3257
  #@ formidable
3258
  msgid "ShortCodes"
3259
  msgstr ""
3260
 
3261
- #: classes/views/frm-settings/form.php:109
3262
- #@ formidable
3263
- msgid "Incorrect Captcha Message"
3264
- msgstr ""
3265
-
3266
- #: classes/views/frm-settings/form.php:109
3267
- #@ formidable
3268
- msgid "The message seen when a captcha response is either incorrect or missing."
3269
- msgstr ""
3270
-
3271
- #: classes/views/frm-settings/form.php:125
3272
  #@ formidable
3273
  msgid "Default Submit Button"
3274
  msgstr ""
3275
 
3276
- #: pro/classes/controllers/FrmProEntriesController.php:975
3277
  #@ formidable
3278
  msgid "No one! You do not have permission"
3279
  msgstr ""
3280
 
3281
- #: pro/classes/helpers/FrmProAppHelper.php:125
3282
  #@ formidable
3283
  msgid "Export to XML"
3284
  msgstr ""
3285
 
3286
- #: pro/classes/helpers/FrmProEntriesHelper.php:40
3287
  #@ formidable
3288
  msgid "Resend Email Notification"
3289
  msgstr ""
3290
 
3291
- #: pro/classes/helpers/FrmProEntriesHelper.php:41
3292
  #@ formidable
3293
  msgid "Resend Autoresponse"
3294
  msgstr ""
3295
 
3296
- #: pro/classes/helpers/FrmProEntriesHelper.php:47
3297
  #@ formidable
3298
  msgid "Email Resent to"
3299
  msgstr ""
3300
 
3301
- #: pro/classes/models/FrmProDisplay.php:159
3302
- #: pro/classes/views/displays/form.php:78
3303
  #@ formidable
3304
  msgid "This is not displayed anywhere, but is just for your reference. (optional)"
3305
  msgstr ""
3306
 
3307
- #: pro/classes/models/FrmProDisplay.php:163
3308
  #@ formidable
3309
  msgid "Content cannot be blank"
3310
  msgstr ""
3311
 
3312
- #: pro/classes/models/FrmProDisplay.php:166
3313
  #@ formidable
3314
  msgid "Page cannot be blank if you want the content inserted automatically"
3315
  msgstr ""
3316
 
3317
- #: pro/classes/models/FrmProDisplay.php:173
3318
  #@ formidable
3319
  msgid "Dynamic Content cannot be blank"
3320
  msgstr ""
3321
 
3322
- #: pro/classes/models/FrmProDisplay.php:177
3323
  #@ formidable
3324
  msgid "Parameter Name cannot be blank if content is dynamic"
3325
  msgstr ""
3326
 
3327
- #: pro/classes/models/FrmProDisplay.php:180
3328
  #@ formidable
3329
  msgid "Parameter Value cannot be blank if content is dynamic"
3330
  msgstr ""
3331
 
3332
- #: pro/classes/models/FrmProDisplay.php:183
3333
  #@ formidable
3334
  msgid "Detail Link cannot be blank if content is dynamic"
3335
  msgstr ""
3336
 
3337
- #: pro/classes/views/displays/edit.php:3
3338
- #@ formidable
3339
- msgid "Edit Custom Display Settings"
3340
- msgstr ""
3341
-
3342
  #: pro/classes/views/displays/form.php:4
3343
  #@ formidable
3344
  msgid "Shortcode Options"
@@ -3364,98 +3129,95 @@ msgstr ""
3364
  msgid "on page"
3365
  msgstr ""
3366
 
3367
- #: pro/classes/views/displays/form.php:25
3368
  #@ formidable
3369
  msgid "Insert on a page, post, or text widget"
3370
  msgstr ""
3371
 
3372
- #: pro/classes/views/displays/form.php:29
3373
  #@ formidable
3374
  msgid "Insert in a template"
3375
  msgstr ""
3376
 
3377
- #: pro/classes/views/displays/form.php:37
3378
  #, php-format
3379
  #@ formidable
3380
  msgid "Are you sure you want to delete your %1$s display?"
3381
  msgstr ""
3382
 
3383
- #: pro/classes/views/displays/form.php:57
3384
  #@ formidable
3385
  msgid "Custom Display Info"
3386
  msgstr ""
3387
 
3388
- #: pro/classes/views/displays/form.php:69
3389
  #@ formidable
3390
  msgid "Display Key"
3391
  msgstr ""
3392
 
3393
- #: pro/classes/views/displays/form.php:88
3394
  #@ formidable
3395
  msgid "Form and Display Type"
3396
  msgstr ""
3397
 
3398
- #: pro/classes/views/displays/form.php:102
3399
  #@ formidable
3400
  msgid "Display Format"
3401
  msgstr ""
3402
 
3403
- #: pro/classes/views/displays/form.php:105
3404
  #@ formidable
3405
  msgid "All Entries &mdash; list all entries in the specified form"
3406
  msgstr ""
3407
 
3408
- #: pro/classes/views/displays/form.php:106
3409
  #@ formidable
3410
  msgid "Single Entry &mdash; display one entry"
3411
  msgstr ""
3412
 
3413
- #: pro/classes/views/displays/form.php:107
3414
  #@ formidable
3415
  msgid "Both (Dynamic) &mdash; list the entries that will link to a single entry page"
3416
  msgstr ""
3417
 
3418
- #: pro/classes/views/displays/form.php:108
3419
  #@ formidable
3420
  msgid "Calendar &mdash; insert entries into a calendar"
3421
  msgstr ""
3422
 
3423
- #: pro/classes/views/displays/form.php:153
3424
- #: pro/classes/views/displays/form.php:172
 
 
3425
  #@ formidable
3426
  msgid "optional"
3427
  msgstr ""
3428
 
3429
- #: pro/classes/views/displays/form.php:194
3430
  #@ formidable
3431
  msgid "Advanced"
3432
  msgstr ""
3433
 
3434
- #: pro/classes/views/displays/form.php:199
3435
  #@ formidable
3436
  msgid "Order"
3437
  msgstr ""
3438
 
3439
- #: pro/classes/views/displays/form.php:217
3440
  #@ formidable
3441
  msgid "Where"
3442
  msgstr ""
3443
 
3444
- #: pro/classes/views/displays/form.php:237
3445
  #@ formidable
3446
  msgid "Limit"
3447
  msgstr ""
3448
 
3449
- #: pro/classes/views/displays/form.php:246
3450
  #@ formidable
3451
  msgid "Page Size"
3452
  msgstr ""
3453
 
3454
- #: pro/classes/views/displays/new.php:3
3455
- #@ formidable
3456
- msgid "Add New Custom Display Settings"
3457
- msgstr ""
3458
-
3459
  #: pro/classes/views/displays/tags.php:2
3460
  #@ formidable
3461
  msgid "Image Size"
@@ -3486,27 +3248,17 @@ msgstr ""
3486
  msgid "Other Options"
3487
  msgstr ""
3488
 
3489
- #: pro/classes/views/frmpro-entries/show.php:32
3490
- #@ formidable
3491
- msgid "Timestamp"
3492
- msgstr ""
3493
-
3494
- #: pro/classes/views/frmpro-entries/show.php:52
3495
- #@ formidable
3496
- msgid "Resend Emails"
3497
- msgstr ""
3498
-
3499
- #: pro/classes/views/frmpro-fields/options-form.php:136
3500
  #@ formidable
3501
  msgid "Admin Only"
3502
  msgstr ""
3503
 
3504
- #: pro/classes/views/frmpro-fields/options-form.php:144
3505
  #@ formidable
3506
  msgid "Calculations"
3507
  msgstr ""
3508
 
3509
- #: pro/classes/views/frmpro-fields/options-form.php:146
3510
  #@ formidable
3511
  msgid "Calculate the default value for this field"
3512
  msgstr ""
@@ -3521,7 +3273,7 @@ msgstr ""
3521
  msgid "You can edit this content in the field options."
3522
  msgstr ""
3523
 
3524
- #: pro/classes/views/frmpro-statistics/show.php:8
3525
  #@ formidable
3526
  msgid "Go to Report"
3527
  msgstr ""
@@ -3571,92 +3323,83 @@ msgstr ""
3571
  msgid "The format of that path is incorrect. Please try again."
3572
  msgstr ""
3573
 
3574
- #: pro/classes/views/settings/form.php:79
3575
- #: pro/classes/views/settings/form.php:80
3576
- #@ formidable
3577
- msgid "Alert"
3578
- msgstr ""
3579
-
3580
- #: pro/classes/views/settings/form.php:79
3581
- #: pro/classes/views/settings/form.php:80
3582
- #@ formidable
3583
- msgid "Sample error style"
3584
- msgstr ""
3585
-
3586
- #: pro/classes/views/settings/form.php:87
3587
  #@ formidable
3588
  msgid "Text field"
3589
  msgstr ""
3590
 
3591
- #: pro/classes/views/settings/form.php:88
3592
- #: pro/classes/views/settings/form.php:94
3593
  #@ formidable
3594
  msgid "This is sample text"
3595
  msgstr ""
3596
 
3597
- #: pro/classes/views/settings/form.php:89
3598
  #@ formidable
3599
  msgid "A field with a description"
3600
  msgstr ""
3601
 
3602
- #: pro/classes/views/settings/form.php:93
3603
  #@ formidable
3604
  msgid "Text field with error"
3605
  msgstr ""
3606
 
3607
- #: pro/classes/views/settings/form.php:98
3608
  #@ formidable
3609
  msgid "Text field in active state"
3610
  msgstr ""
3611
 
3612
- #: pro/classes/views/settings/form.php:99
3613
  #@ formidable
3614
  msgid "The active state will be seen when the field is clicked"
3615
  msgstr ""
3616
 
3617
- #: pro/classes/views/settings/form.php:108
3618
  #@ formidable
3619
  msgid "Drop-down Select"
3620
  msgstr ""
3621
 
3622
- #: pro/classes/views/settings/form.php:111
3623
  #@ formidable
3624
  msgid "An Option"
3625
  msgstr ""
3626
 
3627
- #: pro/classes/views/settings/form.php:116
3628
  #@ formidable
3629
  msgid "Radio Buttons"
3630
  msgstr ""
3631
 
3632
- #: pro/classes/views/settings/form.php:117
3633
- #: pro/classes/views/settings/form.php:123
 
 
3634
  #@ formidable
3635
  msgid "Option 1"
3636
  msgstr ""
3637
 
3638
- #: pro/classes/views/settings/form.php:118
3639
- #: pro/classes/views/settings/form.php:124
 
3640
  #@ formidable
3641
  msgid "Option 2"
3642
  msgstr ""
3643
 
3644
- #: pro/classes/views/settings/form.php:122
3645
  #@ formidable
3646
  msgid "Check Boxes"
3647
  msgstr ""
3648
 
3649
- #: pro/classes/views/settings/form.php:128
3650
  #@ formidable
3651
  msgid "Text Area"
3652
  msgstr ""
3653
 
3654
- #: pro/classes/views/settings/form.php:130
3655
  #@ formidable
3656
  msgid "Another field with a description"
3657
  msgstr ""
3658
 
3659
- #: pro/classes/views/settings/form.php:134
3660
  #@ formidable
3661
  msgid "Rich Text Area"
3662
  msgstr ""
@@ -3666,6 +3409,8 @@ msgstr ""
3666
  msgid "Import/Export"
3667
  msgstr ""
3668
 
 
 
3669
  #: pro/classes/views/shared/import_form.php:13
3670
  #@ formidable
3671
  msgid "Import"
@@ -3706,53 +3451,1897 @@ msgstr ""
3706
  msgid "Include the following data types in your export file"
3707
  msgstr ""
3708
 
3709
- #: pro/classes/views/shared/import_form.php:49
3710
- #@ formidable
3711
- msgid "Custom Display Settings"
3712
- msgstr ""
3713
-
3714
  #: pro/classes/views/shared/import_form.php:54
3715
  #@ formidable
3716
  msgid "Select forms (optional)"
3717
  msgstr ""
3718
 
3719
- #: pro/classes/views/shared/import_form.php:56
3720
- #@ formidable
3721
- msgid "If you would like to include ONLY specific forms and the entries and custom display settings related to those forms, select those forms here"
3722
- msgstr ""
3723
-
3724
  #: pro/classes/views/shared/import_form.php:64
3725
  #@ formidable
3726
  msgid "Export Selection"
3727
  msgstr ""
3728
 
3729
- #: classes/views/frm-settings/form.php:24
3730
  #@ formidable
3731
  msgid "Stylesheets"
3732
  msgstr ""
3733
 
3734
- #: classes/views/frm-settings/form.php:27
3735
  #@ formidable
3736
  msgid "Load Formidable styling"
3737
  msgstr ""
3738
 
3739
- #: classes/views/frm-settings/form.php:29
3740
  #@ formidable
3741
  msgid "on every page of your site"
3742
  msgstr ""
3743
 
3744
- #: classes/views/frm-settings/form.php:30
3745
  #@ formidable
3746
  msgid "only on applicable pages"
3747
  msgstr ""
3748
 
3749
- #: classes/views/frm-settings/form.php:31
3750
  #@ formidable
3751
  msgid "Don't use Formidable styling on any page"
3752
  msgstr ""
3753
 
3754
- #: classes/views/frm-settings/form.php:101
3755
  #@ formidable
3756
  msgid "Failed or Duplicate Entry Message"
3757
  msgstr ""
3758
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: classes/controllers/FrmAppController.php:62
23
  #: classes/controllers/FrmFormsController.php:21
24
  #: classes/views/frm-forms/list.php:3
25
  #: pro/classes/views/shared/import_form.php:47
27
  msgid "Forms"
28
  msgstr "Formulários"
29
 
 
 
 
 
 
 
30
  #: classes/controllers/FrmAppController.php:63
31
  #: classes/controllers/FrmFormsController.php:23
 
32
  #@ formidable
33
  msgid "Templates"
34
  msgstr "Modelos"
35
 
36
+ #: classes/controllers/FrmAppController.php:70
37
  #: classes/controllers/FrmSettingsController.php:14
 
38
  #@ formidable
39
  msgid "Settings"
40
  msgstr "Configurações"
41
 
42
+ #: classes/controllers/FrmAppController.php:85
43
+ #: classes/controllers/FrmAppController.php:123
44
  #, php-format
45
  #@ formidable
46
  msgid "Your Formidable Pro installation isn't quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Formidable Pro%2$s"
47
  msgstr "Sua instalação Formidable Pro não está completa ainda.<br/> %1$sUpgrade automático para ativar Formidable Pro%2$s"
48
 
49
+ #: classes/controllers/FrmAppController.php:213
 
 
 
 
 
50
  #@ formidable
51
  msgid "Formidable was successfully uninstalled."
52
  msgstr "Formidable foi desinstalado com êxito."
53
 
54
  #: classes/controllers/FrmEntriesController.php:15
 
55
  #@ formidable
56
  msgid "Pro Entries"
57
  msgstr "Entradas Pro"
61
  msgid "Please select a valid form"
62
  msgstr "Por favor selecione um formulário válido"
63
 
64
+ #: classes/controllers/FrmFormsController.php:78
65
  #@ formidable
66
  msgid "Form was Successfully Created"
67
  msgstr "Formulário foi criado com sucesso"
68
 
69
+ #: classes/controllers/FrmFormsController.php:113
70
  #@ formidable
71
  msgid "Form was Successfully Updated"
72
  msgstr "Formulário foi atualizado com sucesso"
73
 
74
+ #: classes/controllers/FrmFormsController.php:123
75
  #@ formidable
76
  msgid "Form template was Successfully Created"
77
  msgstr "modelo de formulário foi criado com sucesso"
78
 
79
+ #: classes/controllers/FrmFormsController.php:123
80
  #@ formidable
81
  msgid "Form was Successfully Copied"
82
  msgstr "Formulário foi copiado com sucesso"
83
 
84
+ #: classes/controllers/FrmFormsController.php:127
85
  #@ formidable
86
  msgid "There was a problem creating new template."
87
  msgstr "Houve um problema ao criar novo modelo."
88
 
89
+ #: classes/controllers/FrmFormsController.php:169
90
  #@ formidable
91
  msgid "Form was Successfully Deleted"
92
  msgstr "Formulário foi excluído com êxito"
93
 
94
+ #: classes/controllers/FrmFormsController.php:190
95
  #@ formidable
96
  msgid "Add Formidable Form"
97
  msgstr "Adicionar formulário Formidable"
98
 
99
+ #: classes/controllers/FrmFormsController.php:308
100
  #@ formidable
101
  msgid "That template cannot be edited"
102
  msgstr "Esse modelo não pode ser editado"
111
  msgid "View Forms and Templates"
112
  msgstr "Exibir formulários e modelos"
113
 
 
 
 
 
 
114
  #: classes/helpers/FrmAppHelper.php:46
115
  #@ formidable
116
  msgid "Delete Forms and Templates"
126
  msgid "View Entries from Admin Area"
127
  msgstr "Ver entradas da Área de Admin"
128
 
 
 
 
 
 
129
  #: classes/helpers/FrmAppHelper.php:52
130
  #@ formidable
131
  msgid "Edit Entries from Admin Area"
141
  msgid "View Reports"
142
  msgstr "Ver relatórios"
143
 
 
 
 
 
 
 
 
 
 
 
 
144
  #: classes/helpers/FrmFieldsHelper.php:7
145
  #@ formidable
146
  msgid "Text Input (One Line)"
177
  msgstr "Quebra de Página"
178
 
179
  #: classes/helpers/FrmFieldsHelper.php:23
180
+ #: pro/classes/views/settings/form.php:113
181
  #@ formidable
182
  msgid "File Upload"
183
  msgstr "Upload de Arquivos"
193
  msgstr "Telefone"
194
 
195
  #: classes/helpers/FrmFieldsHelper.php:27
196
+ #: pro/classes/views/frmpro-forms/notifications.php:125
197
  #@ formidable
198
  msgid "Email Address"
199
  msgstr "E-mail"
200
 
201
  #: classes/helpers/FrmFieldsHelper.php:28
202
+ #: pro/classes/models/FrmProField.php:34
203
  #@ formidable
204
  msgid "Date"
205
  msgstr "Data"
206
 
207
  #: classes/helpers/FrmFieldsHelper.php:29
208
+ #: pro/classes/models/FrmProField.php:39
209
  #@ formidable
210
  msgid "Time"
211
  msgstr "Hora"
240
  msgid "Tags"
241
  msgstr "Tags"
242
 
243
+ #: classes/helpers/FrmFieldsHelper.php:54
244
  #@ formidable
245
  msgid "Untitled"
246
  msgstr "Sem título"
247
 
248
+ #: classes/helpers/FrmFieldsHelper.php:265
 
 
 
 
 
 
249
  #, php-format
250
  #@ formidable
251
  msgid "Set this field to %1$sclear on click"
252
  msgstr "Defina este campo para %1$sclear ao clicar nele"
253
 
254
+ #: classes/helpers/FrmFieldsHelper.php:271
255
  #, php-format
256
  #@ formidable
257
  msgid "This default value should %1$sbe considered blank"
258
  msgstr "Este valor padrão dever ser %1$sbe considerado em branco"
259
 
260
  #: classes/helpers/FrmFormsHelper.php:16
261
+ #: classes/views/frm-forms/default-templates.php:24
262
+ #: classes/views/frm-forms/list.php:73
263
  #@ formidable
264
  msgid "Create Form from Template"
265
  msgstr "Criar um formulário a partir do modelo"
266
 
267
+ #: classes/helpers/FrmFormsHelper.php:46
268
  #@ formidable
269
  msgid "Untitled Form"
270
  msgstr "Formulário sem título"
271
 
272
+ #: classes/models/FrmEntry.php:297
 
 
 
 
 
 
273
  #@ formidable
274
  msgid "Your entry appears to be spam!"
275
  msgstr "Sua entrada parece ser spam!"
280
  msgid "%1$s form has been submitted on %2$s."
281
  msgstr "Formulário %1$sbe foi enviado em %2$s."
282
 
283
+ #: classes/models/FrmNotification.php:44
284
+ #: pro/classes/models/FrmProNotification.php:180
285
  #: pro/classes/views/displays/tags.php:21
286
+ #: pro/classes/views/frmpro-entries/show.php:93
287
  #@ formidable
288
  msgid "User Information"
289
  msgstr "Informações do Usuário"
290
 
291
+ #: classes/models/FrmNotification.php:45
292
+ #: pro/classes/models/FrmProNotification.php:181
293
+ #: pro/classes/models/FrmProNotification.php:185
294
+ #: pro/classes/views/frmpro-entries/import.php:98
295
+ #: pro/classes/views/frmpro-entries/show.php:98
296
+ #: pro/classes/views/frmpro-forms/add_form_options.php:74
297
  #@ formidable
298
  msgid "IP Address"
299
  msgstr "Endereço IP"
300
 
301
+ #: classes/models/FrmNotification.php:46
302
+ #: pro/classes/models/FrmProNotification.php:182
303
+ #: pro/classes/models/FrmProNotification.php:187
304
+ #: pro/classes/views/frmpro-entries/show.php:102
305
  #@ formidable
306
  msgid "User-Agent (Browser/OS)"
307
  msgstr "User-agent (Browser / OS)"
308
 
309
+ #: classes/models/FrmNotification.php:47
310
+ #: pro/classes/models/FrmProNotification.php:183
311
+ #: pro/classes/models/FrmProNotification.php:189
312
+ #: pro/classes/views/frmpro-entries/show.php:106
313
  #@ formidable
314
  msgid "Referrer"
315
  msgstr "Referrer"
316
 
317
+ #: classes/models/FrmNotification.php:50
318
+ #: pro/classes/models/FrmProNotification.php:203
319
+ #: pro/classes/models/FrmProNotification.php:316
320
  #, php-format
321
  #@ formidable
322
  msgid "%1$s Form submitted on %2$s"
323
  msgstr "Formulário %1$s enviado em %2$s"
324
 
325
+ #: classes/models/FrmSettings.php:99
 
326
  #@ formidable
327
  msgid "Your responses were successfully submitted. Thank you!"
328
  msgstr "Suas respostas foram enviados com sucesso. Obrigado!"
329
 
330
+ #: classes/models/FrmSettings.php:111
331
+ #: pro/classes/views/frmpro-entries/show.php:159
 
 
 
 
 
 
332
  #@ formidable
333
  msgid "Submit"
334
  msgstr "Enviar"
335
 
336
+ #: classes/models/FrmSettings.php:114
337
  #@ formidable
338
  msgid "You do not have permission to view this form."
339
  msgstr "Você não tem permissão para visualizar este formulário."
340
 
341
+ #: classes/models/FrmSettings.php:118
342
  #@ formidable
343
  msgid "You do not have permission to do that"
344
  msgstr "Você não tem permissão de fazer isso"
345
 
346
+ #: classes/models/FrmUpdate.php:134
 
 
 
 
 
347
  #@ formidable
348
  msgid "Pro Account Information"
349
  msgstr "Informações sobre a conta Pro"
350
 
351
+ #: classes/models/FrmUpdate.php:143
352
  #, php-format
353
  #@ formidable
354
  msgid "Your Username & Password was accepted<br/>Now you can %1$sUpgrade Automatically!%2$s"
355
  msgstr "Seu Nome de Usuário e Senha foi aceito <br/> Agora você pode %1$s fazer Upgrade automaticamente!%2$s"
356
 
357
+ #: classes/models/FrmUpdate.php:151
358
  #@ formidable
359
  msgid "ERROR"
360
  msgstr "ERRO"
361
 
362
+ #: classes/models/FrmUpdate.php:171
363
  #@ formidable
364
  msgid "Ready to take your forms to the next level?<br/>Formidable Pro will help you style forms, manage data, and get reports."
365
  msgstr "Pronto para ter seus formulários no próximo nível? <br/> Formidable Pro vai ajudá-lo na aparência dos formulários , gerenciar dados e obter relatórios."
366
 
367
+ #: classes/models/FrmUpdate.php:173
368
  #@ formidable
369
  msgid "Learn More"
370
  msgstr "Saiba mais"
371
 
372
+ #: classes/models/FrmUpdate.php:202
373
  #@ formidable
374
  msgid "WordPress MU"
375
  msgstr "WordPress MU"
376
 
377
+ #: classes/models/FrmUpdate.php:205
378
  #@ formidable
379
  msgid "Use this username and password to enable Formidable Pro site-wide"
380
  msgstr "Usar esse nome de usuário e senha para permitir Formidable Pro em todos os sites da rede"
381
 
382
+ #: classes/models/FrmUpdate.php:210
383
  #@ formidable
384
  msgid "Save"
385
  msgstr "Salvar"
394
  msgid "We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly."
395
  msgstr "Nós gostaríamos de ouvir de você. Por favor, envie-nos uma mensagem preenchendo o formulário abaixo e entraremos em contato com você em breve."
396
 
 
397
  #: classes/views/frm-forms/default-templates.php:7
398
+ #: classes/views/frm-forms/default-templates.php:41
399
+ #: classes/views/frm-forms/list.php:26
400
+ #: classes/views/frm-forms/list.php:36
401
+ #: classes/views/frm-forms/list.php:140
402
+ #: classes/views/frm-forms/list.php:144
403
+ #: pro/classes/views/displays/form.php:67
404
+ #: pro/classes/views/displays/list.php:29
405
+ #: pro/classes/views/displays/list.php:89
406
+ #: pro/classes/views/frmpro-fields/options-form.php:189
407
+ #: pro/classes/views/frmpro-forms/notifications.php:30
408
+ #: pro/classes/views/frmpro-forms/notifications.php:123
409
  #@ formidable
410
  msgid "Name"
411
  msgstr "Nome"
412
 
413
+ #: pro/classes/models/FrmProDisplay.php:167
 
414
  #@ formidable
415
  msgid "Name cannot be blank"
416
  msgstr "Nome não pode estar em branco"
417
 
418
+ #: classes/templates/contact.php:37
419
+ #: pro/classes/models/FrmProField.php:58
420
+ #: pro/classes/views/frmpro-forms/notifications.php:50
421
+ #: pro/classes/views/frmpro-forms/notifications.php:125
422
  #@ formidable
423
  msgid "Email"
424
  msgstr "E-mail"
425
 
426
+ #: classes/templates/contact.php:39
 
 
 
 
 
427
  #@ formidable
428
  msgid "Please enter a valid email address"
429
  msgstr "Por favor insira um email válido"
430
 
431
+ #: classes/templates/contact.php:44
432
+ #: pro/classes/models/FrmProField.php:53
433
  #@ formidable
434
  msgid "Website"
435
  msgstr "Website"
436
 
437
+ #: classes/templates/contact.php:50
438
+ #: pro/classes/views/frmpro-forms/notifications.php:77
439
+ #: pro/classes/views/frmpro-forms/notifications.php:135
 
 
 
 
 
 
 
 
 
 
440
  #@ formidable
441
  msgid "Subject"
442
  msgstr "Assunto"
443
 
444
+ #: classes/templates/contact.php:56
445
+ #: pro/classes/views/frmpro-forms/notifications.php:83
446
+ #: pro/classes/views/frmpro-forms/notifications.php:141
 
 
 
 
 
447
  #@ formidable
448
  msgid "Message"
449
  msgstr "Mensagem"
450
 
451
+ #: classes/templates/contact.php:62
 
 
 
 
 
452
  #@ formidable
453
  msgid "Captcha"
454
  msgstr "Captcha"
455
 
456
+ #: classes/views/frm-entries/form.php:38
457
+ #: pro/classes/helpers/FrmProFieldsHelper.php:831
458
+ #: pro/classes/views/frmpro-entries/import.php:99
459
  #@ formidable
460
  msgid "Entry Key"
461
  msgstr "Chave da Entrada"
466
  msgid "Upgrade to %1$sFormidable Pro%2$s to view, search, export, and bulk delete your saved entries."
467
  msgstr "Upgrade para %1$s Formidable Pro%2$s para visualizar, pesquisar, exportar e excluir as entradas salvas."
468
 
469
+ #: classes/views/frm-forms/add_field.php:36
470
+ #: classes/views/frm-forms/add_field.php:69
471
  #@ formidable
472
  msgid "Add an Option"
473
  msgstr "Adicionar uma opção"
474
 
475
+ #: classes/views/frm-forms/add_field.php:108
476
+ #: classes/views/frm-forms/add_field_links.php:25
477
+ #: classes/views/frm-forms/add_field_links.php:46
478
+ #: classes/views/frm-forms/add_field_links.php:67
479
+ #: classes/views/frm-forms/form.php:25
480
+ #: classes/views/frm-forms/form.php:81
481
+ #: pro/classes/views/frmpro-forms/comment_options.php:3
482
+ #: pro/classes/views/frmpro-forms/post_options.php:3
483
  #@ formidable
484
  msgid "Collapse"
485
  msgstr "Recolher"
486
 
487
+ #: classes/views/frm-forms/add_field.php:109
488
  #@ formidable
489
  msgid "Field Options"
490
  msgstr "Opções de campo"
491
 
492
+ #: classes/views/frm-forms/add_field.php:115
493
+ #: classes/widgets/FrmShowForm.php:56
494
+ #: pro/classes/views/frmpro-fields/options-form.php:65
495
  #@ formidable
496
  msgid "Field Size"
497
  msgstr "Tamanho do Campo"
498
 
499
+ #: classes/views/frm-forms/add_field.php:116
500
  #@ formidable
501
  msgid "columns wide"
502
  msgstr "largura das colunas"
503
 
504
+ #: classes/views/frm-forms/add_field.php:116
505
+ #: classes/widgets/FrmShowForm.php:58
506
  #@ formidable
507
  msgid "characters wide"
508
  msgstr "caracteres de largura"
509
 
510
+ #: classes/views/frm-forms/add_field.php:118
511
  #@ formidable
512
  msgid "rows high"
513
  msgstr "altura das linhas"
514
 
515
+ #: classes/views/frm-forms/add_field.php:118
516
  #@ formidable
517
  msgid "characters maximum"
518
  msgstr "máximo de caracteres"
519
 
520
+ #: classes/views/frm-forms/add_field.php:122
521
+ #: classes/views/frm-forms/form.php:136
522
  #@ formidable
523
  msgid "Label Position"
524
  msgstr "Posição do Título do Campo"
525
 
526
+ #: classes/views/frm-forms/add_field.php:124
527
  #@ formidable
528
  msgid "Top"
529
  msgstr "Início"
530
 
531
+ #: classes/views/frm-forms/add_field.php:125
532
  #@ formidable
533
  msgid "Left"
534
  msgstr "Esquerda"
535
 
536
+ #: classes/views/frm-forms/add_field.php:126
537
  #@ formidable
538
  msgid "Right"
539
  msgstr "Direita"
540
 
541
+ #: classes/views/frm-forms/add_field.php:128
542
  #@ formidable
543
  msgid "Hidden"
544
  msgstr "Oculto"
545
 
546
+ #: classes/views/frm-forms/add_field.php:137
547
  #@ formidable
548
  msgid "Indicate required field with"
549
  msgstr "Indicar campo obrigatório com"
550
 
551
+ #: classes/views/frm-forms/add_field_links.php:9
 
 
 
 
 
 
 
 
 
 
552
  #@ formidable
553
  msgid "Preview Form"
554
  msgstr "Visualizar Formulário"
555
 
556
+ #: classes/views/frm-forms/add_field_links.php:12
557
  #@ formidable
558
  msgid "Preview in Current Theme"
559
  msgstr "Visualização no Tema Atual"
560
 
561
+ #: classes/views/frm-forms/add_field_links.php:18
562
  #@ formidable
563
  msgid "Click on or drag a field into your form"
564
  msgstr "Clique em ou arraste o campo no formulário"
565
 
566
+ #: classes/views/frm-forms/add_field_links.php:26
567
  #@ formidable
568
  msgid "Basic Fields"
569
  msgstr "Campos Básicos"
570
 
571
+ #: classes/views/frm-forms/add_field_links.php:47
572
  #@ formidable
573
  msgid "Pro Fields"
574
  msgstr "Campos Pro"
575
 
576
+ #: classes/views/frm-forms/add_field_links.php:68
577
+ #: classes/views/frm-forms/form.php:124
578
+ #: classes/views/frm-forms/list.php:42
579
+ #: classes/views/frm-forms/list.php:146
580
+ #: pro/classes/helpers/FrmProFieldsHelper.php:845
581
+ #: pro/classes/helpers/FrmProFieldsHelper.php:859
582
+ #: pro/classes/views/displays/form.php:133
583
+ #: pro/classes/views/displays/form.php:144
584
+ #: pro/classes/views/displays/list.php:41
585
+ #: pro/classes/views/displays/list.php:91
586
  #@ formidable
587
  msgid "Key"
588
  msgstr "Chave"
589
 
590
+ #: classes/views/frm-forms/add_field_links.php:75
591
  #@ formidable
592
  msgid "required field"
593
  msgstr "campo de preenchimento obrigatório"
594
 
595
+ #: classes/views/frm-forms/add_field_links.php:77
596
  #@ formidable
597
  msgid "not required"
598
  msgstr "não obrigatório"
599
 
600
+ #: classes/views/frm-forms/add_field_links.php:79
601
  #@ formidable
602
  msgid "clear default text on click"
603
  msgstr "limpar texto padrão ao clicar"
604
 
605
+ #: classes/views/frm-forms/add_field_links.php:81
606
  #@ formidable
607
  msgid "do not clear default text on click"
608
  msgstr "não limpar o texto padrão ao clicar"
609
 
610
+ #: classes/views/frm-forms/add_field_links.php:83
611
  #@ formidable
612
  msgid "default value will NOT pass validation"
613
  msgstr "valor padrão NÃO vai passar na validação"
614
 
615
+ #: classes/views/frm-forms/add_field_links.php:85
616
  #@ formidable
617
  msgid "default value will pass validation"
618
  msgstr "valor padrão vai passar na validação"
619
 
620
+ #: classes/views/frm-forms/add_field_links.php:87
621
  #@ formidable
622
  msgid "delete field and all inputed data"
623
  msgstr "apagar campo e todos os dados digitados"
624
 
625
+ #: classes/views/frm-forms/add_field_links.php:89
626
  #@ formidable
627
  msgid "duplicate field"
628
  msgstr "campo duplicado"
629
 
630
+ #: classes/views/frm-forms/add_field_links.php:91
631
  #@ formidable
632
  msgid "move field"
633
  msgstr "mover campo"
634
 
635
+ #: classes/views/frm-forms/add_field_links.php:100
636
  #@ formidable
637
  msgid "Enter or select default values into fields on this form."
638
  msgstr "Digite ou selecione os valores padrão para os campos no formulário."
643
  msgstr "Modelos padrão"
644
 
645
  #: classes/views/frm-forms/default-templates.php:8
646
+ #: classes/views/frm-forms/default-templates.php:42
647
+ #: classes/views/frm-forms/list.php:29
648
+ #: classes/views/frm-forms/list.php:39
649
+ #: classes/views/frm-forms/list.php:141
650
+ #: classes/views/frm-forms/list.php:145
651
+ #: pro/classes/views/displays/form.php:83
652
+ #: pro/classes/views/displays/list.php:35
653
+ #: pro/classes/views/displays/list.php:90
654
  #@ formidable
655
  msgid "Description"
656
  msgstr "Descrição"
660
  msgid "No Templates Found"
661
  msgstr "Modelos não encontrados"
662
 
663
+ #: classes/views/frm-forms/default-templates.php:21
664
  #@ formidable
665
  msgid "Preview"
666
  msgstr "Prévia"
667
 
668
+ #: classes/views/frm-forms/default-templates.php:24
669
+ #: classes/views/frm-forms/list.php:73
670
+ #: classes/views/frm-forms/list.php:108
671
+ #: pro/classes/views/displays/form.php:270
672
+ #: pro/classes/views/displays/list.php:69
673
  #@ formidable
674
  msgid "Copy"
675
  msgstr "Copiar"
676
 
677
+ #: classes/views/frm-forms/default-templates.php:30
678
+ #: pro/classes/views/frmpro-entries/edit.php:20
679
+ #: pro/classes/views/frmpro-entries/list.php:61
680
  #@ formidable
681
  msgid "View"
682
  msgstr "Ver"
683
 
684
+ #: classes/views/frm-forms/default-templates.php:47
685
  #@ formidable
686
  msgid "Custom Templates"
687
  msgstr "Modelos personalizados"
688
 
689
  #: classes/views/frm-forms/edit.php:3
690
+ #: pro/classes/helpers/FrmProEntriesHelper.php:85
691
  #@ formidable
692
  msgid "Edit Form"
693
  msgstr "Editar Formulário"
694
 
695
+ #: classes/views/frm-forms/edit.php:19
696
+ #: classes/views/frm-forms/edit.php:32
697
+ #: pro/classes/controllers/FrmProDisplaysController.php:408
698
+ #: pro/classes/models/FrmProSettings.php:189
699
  #@ formidable
700
  msgid "Update"
701
  msgstr "Atualizar"
702
 
703
+ #: classes/views/frm-forms/add_field.php:39
704
+ #: classes/views/frm-forms/add_field.php:72
705
+ #: classes/views/frm-forms/edit.php:20
706
+ #: classes/views/frm-forms/edit.php:33
707
+ #: classes/views/frm-forms/new-selection.php:9
708
+ #: classes/views/frm-forms/new.php:14
709
+ #: classes/views/frm-forms/new.php:26
710
+ #: pro/classes/views/displays/form.php:292
711
+ #: pro/classes/views/frmpro-entries/edit.php:55
712
+ #: pro/classes/views/frmpro-entries/new.php:39
713
  #@ formidable
714
  msgid "or"
715
  msgstr "ou"
716
 
717
+ #: classes/views/frm-fields/import_choices.php:70
718
+ #: classes/views/frm-forms/edit.php:21
719
+ #: classes/views/frm-forms/edit.php:34
720
+ #: classes/views/frm-forms/new.php:15
721
+ #: classes/views/frm-forms/new.php:27
722
+ #: pro/classes/controllers/FrmProEntriesController.php:1058
723
+ #: pro/classes/views/displays/form.php:45
724
+ #: pro/classes/views/displays/form.php:293
725
+ #: pro/classes/views/frmpro-entries/edit.php:56
726
  #: pro/classes/views/frmpro-entries/new.php:21
727
+ #: pro/classes/views/frmpro-entries/new.php:40
728
  #@ formidable
729
  msgid "Cancel"
730
  msgstr "Cancelar"
734
  msgid "(Click here to add form description or instructions)"
735
  msgstr "(Clique aqui para adicionar uma descrição do formulário ou instruções)"
736
 
737
+ #: classes/controllers/FrmAppController.php:109
738
  #: classes/views/frm-forms/footer.php:35
739
+ #: pro/classes/helpers/FrmProEntriesHelper.php:67
740
+ #: pro/classes/views/frmpro-entries/import.php:16
741
+ #: pro/classes/views/settings/formroller.php:523
742
  #@ formidable
743
  msgid "Loading..."
744
  msgstr "Carregando..."
748
  msgid "Are you sure you want to delete this field and all data associated with it?"
749
  msgstr "Tem certeza de que deseja apagar este campo e todos os dados associados a ele?"
750
 
751
+ #: classes/views/frm-forms/form.php:26
752
  #@ formidable
753
  msgid "Advanced Form Options"
754
  msgstr "Opções Avançadas do Formulário"
755
 
756
+ #: classes/views/frm-forms/form.php:32
757
  #@ formidable
758
  msgid "Form ShortCodes"
759
  msgstr "Shortcodes do Formulário"
760
 
761
+ #: classes/views/frm-forms/form.php:32
762
  #@ formidable
763
  msgid "Key and id are generally synonymous. For more information on using this shortcode, click now."
764
  msgstr "Key e id são geralmente sinônimos. Para obter mais informações sobre como utilizar este shortcode, clique agora."
765
 
766
+ #: classes/views/frm-forms/form.php:37
767
+ #: classes/views/frm-forms/form.php:128
768
  #@ formidable
769
  msgid "Form Key"
770
  msgstr "Chave do Formulário"
771
 
772
+ #: classes/views/frm-forms/form.php:41
773
  #@ formidable
774
  msgid "Styling"
775
  msgstr "Estilizando"
776
 
777
+ #: classes/views/frm-forms/form.php:43
778
  #@ formidable
779
  msgid "Use Formidable styling for this form"
780
  msgstr "Use estilo do Formidable para este formulário"
781
 
782
+ #: classes/views/frm-forms/form.php:46
783
  #@ formidable
784
  msgid "Submit Button Text"
785
  msgstr "Texto do botão Enviar"
786
 
787
+ #: classes/views/frm-forms/form.php:50
788
  #@ formidable
789
  msgid "Action After Form Submission"
790
  msgstr "Ação após envio do formulário"
791
 
792
+ #: classes/views/frm-forms/form.php:52
793
  #@ formidable
794
  msgid "To use the second two options, you must upgrade to Formidable Pro."
795
  msgstr "Para usar a segunda duas opções, você deve atualizar para Formidable Pro."
796
 
797
+ #: classes/views/frm-forms/form.php:56
798
  #@ formidable
799
  msgid "Display a Message"
800
  msgstr "Exibe uma mensagem"
801
 
802
+ #: classes/views/frm-forms/form.php:57
803
  #@ formidable
804
  msgid "Display content from another page"
805
  msgstr "Mostrar o conteúdo de outra página"
806
 
807
+ #: classes/views/frm-forms/form.php:58
808
  #@ formidable
809
  msgid "Redirect"
810
  msgstr "Redirecionar"
811
 
812
+ #: classes/views/frm-forms/form.php:62
813
  #@ formidable
814
  msgid "Confirmation Message"
815
  msgstr "Mensagem de Confirmação"
816
 
817
+ #: classes/views/frm-forms/form.php:65
818
  #@ formidable
819
  msgid "Show the form with the success message."
820
  msgstr "Mostrar o formulário com a mensagem de sucesso."
821
 
822
+ #: classes/views/frm-forms/form.php:72
823
  #@ formidable
824
  msgid "Use Akismet to check entries for spam"
825
  msgstr "Use Akismet para verificar as entradas contra spam"
826
 
827
+ #: classes/views/frm-forms/form.php:82
828
  #@ formidable
829
  msgid "Form Notification Options"
830
  msgstr "Opções de Notificação do Formulário"
831
 
832
+ #: classes/views/frm-forms/form.php:88
833
  #@ formidable
834
  msgid "Email Form Responses to"
835
  msgstr "Enviar dados do formulário para e-mail"
836
 
837
+ #: classes/views/frm-forms/form.php:88
838
  #@ formidable
839
  msgid "To send to multiple addresses, separate each address with a comma"
840
  msgstr "Para enviar para vários endereços, separe cada endereço com uma vírgula"
841
 
842
+ #: classes/views/frm-forms/form.php:103
843
  #@ formidable
844
  msgid "Before Fields"
845
  msgstr "Antes dos Campos"
846
 
847
+ #: classes/views/frm-forms/form.php:119
848
  #@ formidable
849
  msgid "After Fields"
850
  msgstr "Depois dos Campos"
851
 
852
+ #: classes/views/frm-forms/form.php:126
853
  #@ formidable
854
  msgid "Form Name"
855
  msgstr "Nome do Formulário"
856
 
857
+ #: classes/views/frm-forms/form.php:127
858
  #@ formidable
859
  msgid "Form Description"
860
  msgstr "Descrição do Formulário"
861
 
862
+ #: classes/views/frm-forms/form.php:132
863
  #@ formidable
864
  msgid "Field Id"
865
  msgstr "Id do Campo"
866
 
867
+ #: classes/views/frm-forms/form.php:133
868
  #: pro/classes/views/displays/tags.php:14
869
+ #: pro/classes/views/frmpro-fields/options-form.php:219
870
  #@ formidable
871
  msgid "Field Key"
872
  msgstr "Chave do Campo"
873
 
874
+ #: classes/views/frm-forms/form.php:134
875
  #@ formidable
876
  msgid "Field Name"
877
  msgstr "Nome do Campo"
878
 
879
+ #: classes/views/frm-forms/form.php:135
880
  #: pro/classes/views/settings/formroller.php:92
881
  #@ formidable
882
  msgid "Field Description"
883
  msgstr "Descrição do Campo"
884
 
885
+ #: classes/views/frm-forms/form.php:137
886
  #@ formidable
887
  msgid "Required label"
888
  msgstr "Rótulo Campo Obrigatório"
889
 
890
+ #: classes/views/frm-forms/form.php:138
891
  #@ formidable
892
  msgid "Input Field"
893
  msgstr "Campo de entrada"
894
 
895
+ #: classes/views/frm-forms/form.php:139
896
  #@ formidable
897
  msgid "Show a single radio or checkbox option by replacing \"1\" with the order of the option"
898
  msgstr "Exibe um único rádio ou caixa de marca, substituindo \"1\" com oa ordem da opção"
899
 
900
+ #: classes/views/frm-forms/form.php:140
901
  #@ formidable
902
  msgid "Hide the option labels"
903
  msgstr "Esconder título da opção"
904
 
905
+ #: classes/views/frm-forms/form.php:142
906
  #@ formidable
907
  msgid "Add class name if field is required"
908
  msgstr "Adicione o nome da classe se o campo é obrigatório"
909
 
910
+ #: classes/views/frm-forms/form.php:143
911
  #@ formidable
912
  msgid "Add class name if field has an error on form submit"
913
  msgstr "Adicione o nome da classe se o campo tem um erro ao submeter o formulário"
932
  msgid "Display form description"
933
  msgstr "Exibir descrição do formulário"
934
 
935
+ #: classes/views/frm-forms/list.php:33
936
+ #: classes/views/frm-forms/list.php:143
937
+ #: pro/classes/helpers/FrmProFieldsHelper.php:844
938
+ #: pro/classes/helpers/FrmProFieldsHelper.php:858
939
+ #: pro/classes/views/displays/form.php:132
940
+ #: pro/classes/views/displays/form.php:143
941
+ #: pro/classes/views/displays/list.php:23
942
+ #: pro/classes/views/displays/list.php:88
943
  #@ formidable
944
  msgid "ID"
945
  msgstr "ID"
946
 
947
+ #: classes/views/frm-forms/list.php:44
948
+ #: classes/views/frm-forms/list.php:102
949
+ #: classes/views/frm-forms/list.php:122
950
+ #: classes/views/frm-forms/list.php:147
951
+ #: pro/classes/controllers/FrmProEntriesController.php:47
952
  #: pro/classes/views/frmpro-entries/list.php:3
953
+ #: pro/classes/views/frmpro-fields/dynamic-options.php:17
954
  #: pro/classes/views/shared/import_form.php:48
955
  #@ formidable
956
  msgid "Entries"
957
  msgstr "Entradas"
958
 
959
+ #: classes/views/frm-forms/list.php:45
960
+ #: classes/views/frm-forms/list.php:148
961
  #@ formidable
962
  msgid "Direct Link"
963
  msgstr "Link direto"
964
 
965
+ #: pro/classes/views/displays/list.php:48
966
+ #: pro/classes/views/displays/list.php:95
967
  #@ formidable
968
  msgid "ShortCode"
969
  msgstr "ShortCode"
970
 
971
+ #: classes/views/frm-forms/list.php:53
972
  #@ formidable
973
  msgid "No Forms Found"
974
  msgstr "Nenhum formulário encontrado"
975
 
976
+ #: classes/views/frm-forms/list.php:66
977
+ #: classes/views/frm-forms/list.php:74
978
+ #: classes/views/frm-forms/list.php:87
979
+ #: classes/views/frm-forms/list.php:94
980
+ #: pro/classes/controllers/FrmProEntriesController.php:1058
981
+ #: pro/classes/helpers/FrmProAppHelper.php:109
982
+ #: pro/classes/helpers/FrmProFieldsHelper.php:992
983
+ #: pro/classes/views/displays/list.php:68
984
+ #: pro/classes/views/frmpro-entries/list.php:64
985
+ #: pro/classes/views/frmpro-entries/show.php:29
986
  #@ formidable
987
  msgid "Edit"
988
  msgstr "Editar"
989
 
990
+ #: classes/views/frm-forms/list.php:78
991
+ #: classes/views/frm-forms/list.php:116
992
  #, php-format
993
  #@ formidable
994
  msgid "Are you sure you want to delete your %1$s Form?"
995
  msgstr "Tem certeza que quer apagar seu formulário%1$s ?"
996
 
997
+ #: classes/views/frm-forms/list.php:78
998
+ #: classes/views/frm-forms/list.php:116
999
+ #: pro/classes/helpers/FrmProAppHelper.php:177
1000
+ #: pro/classes/views/displays/form.php:43
1001
+ #: pro/classes/views/displays/list.php:70
1002
+ #: pro/classes/views/frmpro-entries/edit.php:33
1003
+ #: pro/classes/views/frmpro-entries/list.php:73
1004
+ #: pro/classes/views/frmpro-entries/show.php:25
1005
  #@ formidable
1006
  msgid "Delete"
1007
  msgstr "Excluir"
1008
 
1009
+ #: classes/views/frm-forms/list.php:98
1010
  #@ formidable
1011
  msgid "New"
1012
  msgstr "Novo"
1013
 
1014
+ #: classes/views/frm-forms/list.php:98
1015
+ #: pro/classes/views/displays/list.php:46
1016
+ #: pro/classes/views/displays/list.php:93
1017
+ #: pro/classes/views/frmpro-entries/show.php:43
1018
  #@ formidable
1019
  msgid "Entry"
1020
  msgstr "Entrada"
1021
 
1022
+ #: classes/views/frm-forms/list.php:98
1023
  #@ formidable
1024
  msgid "New Entry"
1025
  msgstr "Nova entrada"
1026
 
1027
+ #: classes/views/frm-forms/list.php:104
1028
  #: pro/classes/controllers/FrmProStatisticsController.php:13
1029
  #: pro/classes/controllers/FrmProStatisticsController.php:25
 
1030
  #@ formidable
1031
  msgid "Reports"
1032
  msgstr "Relatórios"
1033
 
1034
  #: classes/views/frm-forms/add_field.php:6
1035
+ #: classes/views/frm-forms/list.php:108
1036
+ #: pro/classes/views/displays/list.php:69
1037
+ #: pro/classes/views/frmpro-entries/edit.php:21
1038
+ #: pro/classes/views/frmpro-entries/list.php:68
1039
+ #: pro/classes/views/frmpro-entries/show.php:18
1040
  #@ formidable
1041
  msgid "Duplicate"
1042
  msgstr "Duplicado"
1043
 
1044
+ #: classes/views/frm-forms/list.php:109
1045
+ #: classes/views/frm-forms/new.php:13
1046
+ #: classes/views/frm-forms/new.php:25
1047
+ #: pro/classes/controllers/FrmProDisplaysController.php:93
1048
+ #: pro/classes/controllers/FrmProDisplaysController.php:102
1049
  #@ formidable
1050
  msgid "Create"
1051
  msgstr "Criar"
1052
 
1053
+ #: classes/views/frm-forms/list.php:109
1054
+ #: classes/views/frm-forms/list.php:111
1055
  #@ formidable
1056
  msgid "Template"
1057
  msgstr "Modelo"
1058
 
1059
+ #: classes/views/frm-forms/list.php:109
1060
  #@ formidable
1061
  msgid "Create Template"
1062
  msgstr "Criar Modelo"
1063
 
1064
+ #: classes/views/frm-forms/list.php:124
1065
  #@ formidable
1066
  msgid "View Form"
1067
  msgstr "Ver formulário"
1068
 
1069
+ #: classes/views/frm-forms/new-field-js.php:20
1070
+ #: classes/views/frm-forms/new-option-js.php:11
1071
  #@ formidable
1072
  msgid "(Blank)"
1073
  msgstr "(Em branco)"
1074
 
1075
+ #: classes/views/frm-settings/form.php:23
1076
+ #: classes/views/frm-settings/form.php:159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1077
  #@ formidable
1078
  msgid "Update Options"
1079
  msgstr "Atualizar Opções"
1080
 
1081
+ #: classes/views/frm-settings/form.php:28
1082
  #@ formidable
1083
  msgid "Preview Page"
1084
  msgstr "Visualizar Página"
1085
 
1086
+ #: classes/views/frm-settings/form.php:59
1087
  #@ formidable
1088
  msgid "Include the jQuery CSS on ALL pages"
1089
  msgstr "Incluir o jQuery CSS em TODAS as páginas"
1090
 
1091
+ #: classes/views/frm-settings/form.php:59
1092
  #@ formidable
1093
  msgid "The styling for the date field calendar. Some users may be using this css on pages other than just the ones that include a date field."
1094
  msgstr "O estilo do campo de data. Alguns usuários podem estar usando este css em páginas que não apenas os que incluem um campo de data."
1095
 
1096
+ #: classes/views/frm-settings/form.php:65
1097
  #@ formidable
1098
  msgid "User Permissions"
1099
  msgstr "Permissões de Usuário"
1100
 
1101
+ #: classes/views/frm-settings/form.php:65
1102
  #@ formidable
1103
  msgid "Select users that are allowed access to Formidable. Without access to View Forms, users will be unable to see the Formidable menu."
1104
  msgstr "Selecione os usuários que estão autorizados a acessar o Formidable. Sem acesso a exibição de formulários, os usuários serão incapazes de ver o menu do Formidable."
1105
 
1106
+ #: classes/views/frm-settings/form.php:112
1107
  #@ formidable
1108
  msgid "Default Messages"
1109
  msgstr "Mensagens Padrões"
1110
 
1111
+ #: classes/views/frm-settings/form.php:112
1112
  #@ formidable
1113
  msgid "You can override the success message and submit button settings on individual forms."
1114
  msgstr "Você pode substituir a mensagem de sucesso e botão de envio em cada formulário individualmente."
1115
 
1116
+ #: classes/views/frm-settings/form.php:122
1117
  #@ formidable
1118
  msgid "Success Message"
1119
  msgstr "Mensagem de sucesso"
1120
 
1121
+ #: classes/views/frm-settings/form.php:122
1122
  #@ formidable
1123
  msgid "The default message seen after a form is submitted."
1124
  msgstr "A mensagem padrão após um formulário ser enviado."
1125
 
1126
+ #: classes/views/frm-settings/form.php:138
 
 
 
 
 
1127
  #@ formidable
1128
  msgid "Login Message"
1129
  msgstr "Mensagem de Login"
1130
 
1131
+ #: classes/views/frm-settings/form.php:138
1132
  #@ formidable
1133
  msgid "The message seen when a user who is not logged-in views a form only logged-in users can submit."
1134
  msgstr "Está mensagem é vista quando um usuário que não está logado tenta visualizar um formulário que apenas usuários registrados podem ver."
1135
 
1136
+ #: pro/classes/views/settings/formroller.php:347
1137
  #@ formidable
1138
  msgid "Submit Button"
1139
  msgstr "Botão de Enviar"
1140
 
1141
+ #: classes/views/frm-settings/form.php:157
1142
  #@ formidable
1143
  msgid "Are you sure you want to do this? Clicking OK will delete all forms, form data, and all other Formidable data. There is no Undo."
1144
  msgstr "Tem certeza que quer fazer isso? Clicando em OK vai apagar todos os formulários, dados de formulários e todos os outros dados do Formidable. Não tem como desfazer."
1145
 
1146
+ #: classes/views/frm-settings/form.php:157
1147
  #@ formidable
1148
  msgid "Uninstall Formidable"
1149
  msgstr "Desinstalar Formidable"
1150
 
 
 
 
 
 
1151
  #: classes/views/frm-statistics/list.php:9
1152
  #@ formidable
1153
  msgid "Upgrade to Formidable Pro to get reports and statistics on your saved entries"
1154
  msgstr "Faça upgrade para Formidable Pro para obter relatórios e estatísticas sobre as entradas salvas"
1155
 
1156
+ #: classes/views/shared/item-table-nav.php:6
1157
  #, php-format
1158
  #@ formidable
1159
  msgid "Displaying %1$s&#8211;%2$s of %3$s"
1169
  msgid "Formidable Tag"
1170
  msgstr "Tag Formidable"
1171
 
1172
+ #: pro/classes/controllers/FrmProDisplaysController.php:157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1173
  #@ formidable
1174
  msgid "There was a problem creating new Entry Display settings."
1175
  msgstr "Houve um problema criando nova configuração de exibição de entrada."
1176
 
1177
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
 
 
 
 
 
1178
  #@ formidable
1179
  msgid "January"
1180
  msgstr "Janeiro"
1181
 
1182
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1183
  #@ formidable
1184
  msgid "February"
1185
  msgstr "Fevereiro"
1186
 
1187
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1188
  #@ formidable
1189
  msgid "March"
1190
  msgstr "Março"
1191
 
1192
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1193
  #@ formidable
1194
  msgid "April"
1195
  msgstr "Abril"
1196
 
1197
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1198
  #@ formidable
1199
  msgid "May"
1200
  msgstr "Maio"
1201
 
1202
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1203
  #@ formidable
1204
  msgid "June"
1205
  msgstr "Junho"
1206
 
1207
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1208
  #@ formidable
1209
  msgid "July"
1210
  msgstr "Julho"
1211
 
1212
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1213
  #@ formidable
1214
  msgid "August"
1215
  msgstr "Agosto"
1216
 
1217
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1218
  #@ formidable
1219
  msgid "September"
1220
  msgstr "Setembro"
1221
 
1222
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1223
  #@ formidable
1224
  msgid "October"
1225
  msgstr "Outubro"
1226
 
1227
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1228
  #@ formidable
1229
  msgid "November"
1230
  msgstr "Novembro"
1231
 
1232
+ #: pro/classes/controllers/FrmProDisplaysController.php:230
1233
  #@ formidable
1234
  msgid "December"
1235
  msgstr "Dezembro"
1236
 
1237
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1238
  #@ formidable
1239
  msgid "Sunday"
1240
  msgstr "Domingo"
1241
 
1242
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1243
  #@ formidable
1244
  msgid "Monday"
1245
  msgstr "Segunda-feira"
1246
 
1247
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1248
  #@ formidable
1249
  msgid "Tuesday"
1250
  msgstr "Terça-feira"
1251
 
1252
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1253
  #@ formidable
1254
  msgid "Wednesday"
1255
  msgstr "Quarta-feira"
1256
 
1257
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1258
  #@ formidable
1259
  msgid "Thursday"
1260
  msgstr "Quinta-feira"
1261
 
1262
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1263
  #@ formidable
1264
  msgid "Friday"
1265
  msgstr "Sexta-feira"
1266
 
1267
+ #: pro/classes/controllers/FrmProDisplaysController.php:231
1268
  #@ formidable
1269
  msgid "Saturday"
1270
  msgstr "Sábado"
1271
 
1272
+ #: pro/classes/controllers/FrmProDisplaysController.php:442
1273
  #@ formidable
1274
  msgid "That is not a valid custom display ID"
1275
  msgstr "Isso não é um ID válido de uma exibição personalizada"
1276
 
1277
+ #: pro/classes/controllers/FrmProEntriesController.php:852
1278
+ #: pro/classes/helpers/FrmProDisplaysHelper.php:43
1279
+ #: pro/classes/views/frmpro-entries/list.php:31
1280
  #@ formidable
1281
  msgid "No Entries Found"
1282
  msgstr "Não foram encontradas entradas"
1283
 
1284
+ #: pro/classes/helpers/FrmProEntriesHelper.php:79
 
 
 
 
 
1285
  #@ formidable
1286
  msgid "Entries from:"
1287
  msgstr "Entradas de:"
1288
 
1289
+ #: pro/classes/controllers/FrmProEntriesController.php:189
 
 
 
 
 
1290
  #@ formidable
1291
  msgid "Entry was Successfully Created"
1292
  msgstr "Entrada foi criada com sucesso"
1293
 
1294
+ #: pro/classes/controllers/FrmProEntriesController.php:213
1295
  #@ formidable
1296
  msgid "Entry was Successfully Updated"
1297
  msgstr "Entrada foi atualizado com sucesso"
1298
 
1299
+ #: pro/classes/controllers/FrmProEntriesController.php:213
1300
  #@ formidable
1301
  msgid "Back to Entries"
1302
  msgstr "Voltar para Entradas"
1303
 
1304
+ #: pro/classes/controllers/FrmProEntriesController.php:320
1305
  #@ formidable
1306
  msgid "Entry was Successfully Duplicated"
1307
  msgstr "Entrada foi duplicada com sucesso"
1308
 
1309
+ #: pro/classes/controllers/FrmProEntriesController.php:322
1310
  #@ formidable
1311
  msgid "There was a problem duplicating that entry"
1312
  msgstr "Houve um problema ao duplicar essa entrada"
1313
 
1314
+ #: pro/classes/controllers/FrmProEntriesController.php:340
 
1315
  #@ formidable
1316
  msgid "Entry was Successfully Destroyed"
1317
  msgstr "Entrada foi apagada com sucesso"
1318
 
1319
+ #: pro/classes/controllers/FrmProEntriesController.php:355
1320
  #@ formidable
1321
  msgid "No entries were specified"
1322
  msgstr "Nenhuma entrada foi especificada"
1326
  msgid "Duplicate Field"
1327
  msgstr "Campo duplicado"
1328
 
1329
+ #: pro/classes/controllers/FrmProFieldsController.php:218
1330
  #@ formidable
1331
  msgid "English/Western"
1332
  msgstr "Inglês / Ocidental"
1333
 
1334
+ #: pro/classes/controllers/FrmProFieldsController.php:218
1335
  #@ formidable
1336
  msgid "Afrikaans"
1337
  msgstr "Afrikaans"
1338
 
1339
+ #: pro/classes/controllers/FrmProFieldsController.php:219
1340
  #@ formidable
1341
  msgid "Albanian"
1342
  msgstr "Albanês"
1343
 
1344
+ #: pro/classes/controllers/FrmProFieldsController.php:219
1345
  #@ formidable
1346
  msgid "Arabic"
1347
  msgstr "Árabe"
1348
 
1349
+ #: pro/classes/controllers/FrmProFieldsController.php:220
1350
  #@ formidable
1351
  msgid "Armenian"
1352
  msgstr "Armênio"
1353
 
1354
+ #: pro/classes/controllers/FrmProFieldsController.php:220
1355
  #@ formidable
1356
  msgid "Azerbaijani"
1357
  msgstr "Azerbaijano"
1358
 
1359
+ #: pro/classes/controllers/FrmProFieldsController.php:221
1360
  #@ formidable
1361
  msgid "Basque"
1362
  msgstr "Basco"
1363
 
1364
+ #: pro/classes/controllers/FrmProFieldsController.php:221
1365
  #@ formidable
1366
  msgid "Bosnian"
1367
  msgstr "Bósnio"
1368
 
1369
+ #: pro/classes/controllers/FrmProFieldsController.php:222
1370
  #@ formidable
1371
  msgid "Bulgarian"
1372
  msgstr "Búlgaro"
1373
 
1374
+ #: pro/classes/controllers/FrmProFieldsController.php:222
1375
  #@ formidable
1376
  msgid "Catalan"
1377
  msgstr "Catalão"
1378
 
1379
+ #: pro/classes/controllers/FrmProFieldsController.php:223
1380
  #@ formidable
1381
  msgid "Chinese Hong Kong"
1382
  msgstr "Chinês de Hong Kong"
1383
 
1384
+ #: pro/classes/controllers/FrmProFieldsController.php:223
1385
  #@ formidable
1386
  msgid "Chinese Simplified"
1387
  msgstr "Chinês Simplificado"
1388
 
1389
+ #: pro/classes/controllers/FrmProFieldsController.php:224
1390
  #@ formidable
1391
  msgid "Chinese Traditional"
1392
  msgstr "Chinês Tradicional"
1393
 
1394
+ #: pro/classes/controllers/FrmProFieldsController.php:224
1395
  #@ formidable
1396
  msgid "Croatian"
1397
  msgstr "Croata"
1398
 
1399
+ #: pro/classes/controllers/FrmProFieldsController.php:225
1400
  #@ formidable
1401
  msgid "Czech"
1402
  msgstr "Checa"
1403
 
1404
+ #: pro/classes/controllers/FrmProFieldsController.php:225
1405
  #@ formidable
1406
  msgid "Danish"
1407
  msgstr "Dinamarquês"
1408
 
1409
+ #: classes/views/frm-settings/form.php:104
1410
+ #: pro/classes/controllers/FrmProFieldsController.php:226
1411
  #@ formidable
1412
  msgid "Dutch"
1413
  msgstr "Holandês"
1414
 
1415
+ #: pro/classes/controllers/FrmProFieldsController.php:226
1416
  #@ formidable
1417
  msgid "English/UK"
1418
  msgstr "Inglês / Reino Unido"
1419
 
1420
+ #: pro/classes/controllers/FrmProFieldsController.php:227
1421
  #@ formidable
1422
  msgid "Esperanto"
1423
  msgstr "Esperanto"
1424
 
1425
+ #: pro/classes/controllers/FrmProFieldsController.php:227
1426
  #@ formidable
1427
  msgid "Estonian"
1428
  msgstr "Estoniano"
1429
 
1430
+ #: pro/classes/controllers/FrmProFieldsController.php:228
1431
  #@ formidable
1432
  msgid "Faroese"
1433
  msgstr "Feroês"
1434
 
1435
+ #: pro/classes/controllers/FrmProFieldsController.php:228
1436
  #@ formidable
1437
  msgid "Farsi/Persian"
1438
  msgstr "Persa / Farsi"
1439
 
1440
+ #: pro/classes/controllers/FrmProFieldsController.php:229
1441
  #@ formidable
1442
  msgid "Finnish"
1443
  msgstr "Finlandesa"
1444
 
1445
+ #: classes/views/frm-settings/form.php:104
1446
+ #: pro/classes/controllers/FrmProFieldsController.php:229
1447
  #@ formidable
1448
  msgid "French"
1449
  msgstr "Francês"
1450
 
1451
+ #: pro/classes/controllers/FrmProFieldsController.php:230
1452
  #@ formidable
1453
  msgid "French/Swiss"
1454
  msgstr "Francês / Suíça"
1455
 
1456
+ #: classes/views/frm-settings/form.php:104
1457
+ #: pro/classes/controllers/FrmProFieldsController.php:230
1458
  #@ formidable
1459
  msgid "German"
1460
  msgstr "Alemão"
1461
 
1462
+ #: pro/classes/controllers/FrmProFieldsController.php:231
1463
  #@ formidable
1464
  msgid "Greek"
1465
  msgstr "Grego"
1466
 
1467
+ #: pro/classes/controllers/FrmProFieldsController.php:231
1468
  #@ formidable
1469
  msgid "Hebrew"
1470
  msgstr "Hebraico"
1471
 
1472
+ #: pro/classes/controllers/FrmProFieldsController.php:232
1473
  #@ formidable
1474
  msgid "Hungarian"
1475
  msgstr "Húngaro"
1476
 
1477
+ #: pro/classes/controllers/FrmProFieldsController.php:232
1478
  #@ formidable
1479
  msgid "Icelandic"
1480
  msgstr "Islandesa"
1481
 
1482
+ #: pro/classes/controllers/FrmProFieldsController.php:233
1483
  #@ formidable
1484
  msgid "Italian"
1485
  msgstr "Italiano"
1486
 
1487
+ #: pro/classes/controllers/FrmProFieldsController.php:233
1488
  #@ formidable
1489
  msgid "Japanese"
1490
  msgstr "Japonês"
1491
 
1492
+ #: pro/classes/controllers/FrmProFieldsController.php:234
1493
  #@ formidable
1494
  msgid "Korean"
1495
  msgstr "Coreano"
1496
 
1497
+ #: pro/classes/controllers/FrmProFieldsController.php:234
1498
  #@ formidable
1499
  msgid "Latvian"
1500
  msgstr "Letã"
1501
 
1502
+ #: pro/classes/controllers/FrmProFieldsController.php:235
1503
  #@ formidable
1504
  msgid "Lithuanian"
1505
  msgstr "Lituano"
1506
 
1507
+ #: pro/classes/controllers/FrmProFieldsController.php:235
1508
  #@ formidable
1509
  msgid "Malaysian"
1510
  msgstr "Malásia"
1511
 
1512
+ #: pro/classes/controllers/FrmProFieldsController.php:236
1513
  #@ formidable
1514
  msgid "Norwegian"
1515
  msgstr "Norueguês"
1516
 
1517
+ #: pro/classes/controllers/FrmProFieldsController.php:236
1518
  #@ formidable
1519
  msgid "Polish"
1520
  msgstr "Polonês"
1521
 
1522
+ #: pro/classes/controllers/FrmProFieldsController.php:237
1523
  #@ formidable
1524
  msgid "Portuguese/Brazilian"
1525
  msgstr "Português / Brasileiro"
1526
 
1527
+ #: pro/classes/controllers/FrmProFieldsController.php:237
1528
  #@ formidable
1529
  msgid "Romanian"
1530
  msgstr "Romeno"
1531
 
1532
+ #: classes/views/frm-settings/form.php:104
1533
+ #: pro/classes/controllers/FrmProFieldsController.php:238
1534
  #@ formidable
1535
  msgid "Russian"
1536
  msgstr "Russo"
1537
 
1538
+ #: pro/classes/controllers/FrmProFieldsController.php:238
1539
+ #: pro/classes/controllers/FrmProFieldsController.php:239
1540
  #@ formidable
1541
  msgid "Serbian"
1542
  msgstr "Sérvio"
1543
 
1544
+ #: pro/classes/controllers/FrmProFieldsController.php:239
1545
  #@ formidable
1546
  msgid "Slovak"
1547
  msgstr "Eslovaca"
1548
 
1549
+ #: pro/classes/controllers/FrmProFieldsController.php:240
1550
  #@ formidable
1551
  msgid "Slovenian"
1552
  msgstr "Esloveno"
1553
 
1554
+ #: classes/views/frm-settings/form.php:104
1555
+ #: pro/classes/controllers/FrmProFieldsController.php:240
1556
  #@ formidable
1557
  msgid "Spanish"
1558
  msgstr "Espanhol"
1559
 
1560
+ #: pro/classes/controllers/FrmProFieldsController.php:241
1561
  #@ formidable
1562
  msgid "Swedish"
1563
  msgstr "Sueco"
1564
 
1565
+ #: pro/classes/controllers/FrmProFieldsController.php:241
1566
  #@ formidable
1567
  msgid "Tamil"
1568
  msgstr "Tâmil"
1569
 
1570
+ #: pro/classes/controllers/FrmProFieldsController.php:242
1571
  #@ formidable
1572
  msgid "Thai"
1573
  msgstr "Tailandês"
1574
 
1575
+ #: classes/views/frm-settings/form.php:104
1576
+ #: pro/classes/controllers/FrmProFieldsController.php:242
1577
  #@ formidable
1578
  msgid "Turkish"
1579
  msgstr "Turco"
1580
 
1581
+ #: pro/classes/controllers/FrmProFieldsController.php:243
1582
  #@ formidable
1583
  msgid "Ukranian"
1584
  msgstr "Ucraniano"
1585
 
1586
+ #: pro/classes/controllers/FrmProFieldsController.php:243
1587
  #@ formidable
1588
  msgid "Vietnamese"
1589
  msgstr "Vietnamita"
1590
 
1591
+ #: pro/classes/controllers/FrmProFormsController.php:124
1592
  #@ formidable
1593
  msgid "Current Date"
1594
  msgstr "Data Atual"
1595
 
1596
+ #: pro/classes/controllers/FrmProFormsController.php:125
1597
  #@ formidable
1598
  msgid "Current Time"
1599
  msgstr "Hora Atual"
1600
 
1601
+ #: pro/classes/controllers/FrmProFormsController.php:126
1602
  #@ formidable
1603
  msgid "User Email"
1604
  msgstr "E-mail do usuário"
1605
 
1606
+ #: pro/classes/controllers/FrmProFormsController.php:127
1607
  #@ formidable
1608
  msgid "User Login"
1609
  msgstr "Login de Usuário"
1610
 
1611
+ #: pro/classes/controllers/FrmProFormsController.php:128
1612
  #@ formidable
1613
  msgid "User Display Name"
1614
  msgstr "Nome de usuário"
1615
 
1616
+ #: pro/classes/controllers/FrmProFormsController.php:129
1617
  #@ formidable
1618
  msgid "User First Name"
1619
  msgstr "Primeiro Nome do Usuário"
1620
 
1621
+ #: pro/classes/controllers/FrmProFormsController.php:130
1622
  #@ formidable
1623
  msgid "User Last Name"
1624
  msgstr "Último Nome do usuário "
1625
 
1626
+ #: pro/classes/controllers/FrmProFormsController.php:131
1627
  #@ formidable
1628
  msgid "User Meta"
1629
  msgstr "Usuário Meta"
1630
 
1631
+ #: pro/classes/controllers/FrmProFormsController.php:132
1632
+ #: pro/classes/helpers/FrmProFieldsHelper.php:832
1633
+ #: pro/classes/views/frmpro-entries/import.php:93
1634
  #@ formidable
1635
  msgid "Post ID"
1636
  msgstr "ID do Post"
1637
 
1638
+ #: pro/classes/controllers/FrmProFormsController.php:135
1639
  #@ formidable
1640
  msgid "Client IP Address"
1641
  msgstr "Endereço IP do cliente"
1642
 
1643
+ #: pro/classes/controllers/FrmProFormsController.php:136
1644
  #@ formidable
1645
  msgid "Auto Increment"
1646
  msgstr "Auto Incremento"
1647
 
1648
+ #: pro/classes/controllers/FrmProFormsController.php:137
1649
  #@ formidable
1650
  msgid "GET/POST variable"
1651
  msgstr "Variável GET / POST"
1652
 
1653
+ #: classes/views/frm-forms/list.php:111
1654
+ #: pro/classes/controllers/FrmProFormsController.php:164
1655
  #@ formidable
1656
  msgid "Export Template"
1657
  msgstr "Exportar Modelo"
1658
 
1659
+ #: pro/classes/controllers/FrmProStatisticsController.php:234
1660
  #@ formidable
1661
  msgid "Completed"
1662
  msgstr "Concluído"
1663
 
1664
+ #: pro/classes/controllers/FrmProStatisticsController.php:234
1665
  #@ formidable
1666
  msgid "Not Completed"
1667
  msgstr "Não Concluído"
1668
 
1669
+ #: pro/classes/helpers/FrmProAppHelper.php:176
1670
  #@ formidable
1671
  msgid "Bulk Actions"
1672
  msgstr "Ações em massa"
1673
 
1674
+ #: pro/classes/helpers/FrmProAppHelper.php:180
1675
  #@ formidable
1676
  msgid "Apply"
1677
  msgstr "Aplicar"
1678
 
1679
+ #: pro/classes/helpers/FrmProAppHelper.php:204
1680
  #@ formidable
1681
  msgid "All Fields"
1682
  msgstr "Todos os Campos"
1683
 
1684
+ #: pro/classes/helpers/FrmProAppHelper.php:211
1685
  #@ formidable
1686
  msgid "Search"
1687
  msgstr "Pesquisa"
1688
 
1689
+ #: pro/classes/helpers/FrmProAppHelper.php:213
1690
  #@ formidable
1691
  msgid "Reset"
1692
  msgstr "Reset"
1693
 
1694
+ #: pro/classes/helpers/FrmProFieldsHelper.php:369
1695
  #@ formidable
1696
  msgid "Draft"
1697
  msgstr "Rascunho"
1698
 
1699
+ #: pro/classes/helpers/FrmProFieldsHelper.php:370
1700
  #@ formidable
1701
  msgid "Pending Review"
1702
  msgstr "Revisão pendente"
1703
 
1704
+ #: pro/classes/helpers/FrmProFieldsHelper.php:372
1705
  #@ formidable
1706
  msgid "Published"
1707
  msgstr "Publicado"
1708
 
1709
+ #: pro/classes/helpers/FrmProFieldsHelper.php:373
1710
  #@ formidable
1711
  msgid "Scheduled"
1712
  msgstr "Agendado"
1713
 
1714
+ #: pro/classes/helpers/FrmProFieldsHelper.php:600
1715
  #@ formidable
1716
  msgid "Edit Uploaded File"
1717
  msgstr "Editar Arquivo Carregado"
1718
 
1719
+ #: pro/classes/helpers/FrmProFieldsHelper.php:828
1720
  #@ formidable
1721
  msgid "Select a value to insert into the box below"
1722
  msgstr "Selecione um valor para inserir na caixa abaixo"
1723
 
1724
+ #: pro/classes/helpers/FrmProFieldsHelper.php:830
1725
  #@ formidable
1726
  msgid "Entry ID"
1727
  msgstr "ID Entrada"
1728
 
1729
+ #: pro/classes/helpers/FrmProFieldsHelper.php:833
1730
  #@ formidable
1731
  msgid "Entry Creation Date"
1732
  msgstr "Data da Criação da Entrada"
1733
 
1734
+ #: pro/classes/helpers/FrmProFieldsHelper.php:835
1735
  #@ formidable
1736
  msgid "Form Fields"
1737
  msgstr "Campos do formulário"
1738
 
1739
+ #: pro/classes/helpers/FrmProFieldsHelper.php:847
1740
  #@ formidable
1741
  msgid "Thumbnail"
1742
  msgstr "Miniatura"
1743
 
1744
+ #: pro/classes/helpers/FrmProFieldsHelper.php:848
1745
  #@ formidable
1746
  msgid "Medium"
1747
  msgstr "Médio"
1748
 
1749
+ #: pro/classes/helpers/FrmProFieldsHelper.php:849
1750
  #@ formidable
1751
  msgid "Large"
1752
  msgstr "Grande"
1753
 
1754
+ #: pro/classes/helpers/FrmProFieldsHelper.php:850
1755
  #@ formidable
1756
  msgid "Full Size"
1757
  msgstr "Tamanho Máximo"
1758
 
1759
+ #: pro/classes/helpers/FrmProFieldsHelper.php:870
1760
  #@ formidable
1761
  msgid "Helpers"
1762
  msgstr "Helpers"
1763
 
1764
+ #: pro/classes/helpers/FrmProFieldsHelper.php:871
1765
  #@ formidable
1766
  msgid "Admin link to edit the entry"
1767
  msgstr "Admin link para editar a entrada"
1768
 
1769
+ #: pro/classes/helpers/FrmProFieldsHelper.php:873
1770
  #@ formidable
1771
  msgid "Link to view single page if showing dynamic entries"
1772
  msgstr "Link para a exibição de página única, se mostrando entradas dinâmicas"
1773
 
1774
+ #: pro/classes/helpers/FrmProFieldsHelper.php:877
1775
  #@ formidable
1776
  msgid "Add a rotating 'even' or 'odd' class"
1777
  msgstr "Adicionar uma classe de rotação 'impar' ou 'par'"
1778
 
1779
+ #: pro/classes/helpers/FrmProFieldsHelper.php:881
1780
  #@ formidable
1781
  msgid "Site URL"
1782
  msgstr "URL do site"
1783
 
1784
+ #: pro/classes/models/FrmProDisplay.php:179
1785
  #@ formidable
1786
  msgid "Limit must be a number"
1787
  msgstr "Limite deve ser um número"
1788
 
1789
+ #: pro/classes/models/FrmProEntryMeta.php:128
1790
+ #: pro/classes/models/FrmProEntryMeta.php:148
1791
  #@ formidable
1792
  msgid "must be unique"
1793
  msgstr "deve ser uníco"
1794
 
1795
+ #: pro/classes/models/FrmProField.php:43
 
 
 
 
 
1796
  #@ formidable
1797
  msgid "Phone"
1798
  msgstr "Telefone"
1799
 
1800
+ #: pro/classes/models/FrmProField.php:49
1801
+ #: pro/classes/models/FrmProForm.php:100
1802
  #@ formidable
1803
  msgid "User ID"
1804
  msgstr "ID do Usuário"
1805
 
1806
+ #: pro/classes/models/FrmProField.php:64
1807
  #@ formidable
1808
  msgid "Heading"
1809
  msgstr "Designação"
1810
 
1811
+ #: pro/classes/models/FrmProField.php:70
1812
+ #: pro/classes/views/displays/list.php:47
1813
+ #: pro/classes/views/displays/list.php:94
1814
  #@ formidable
1815
  msgid "Page"
1816
  msgstr "Página"
1817
 
1818
+ #: pro/classes/models/FrmProForm.php:107
1819
  #@ formidable
1820
  msgid "Please insert a message for your auto responder."
1821
  msgstr "Por favor insira uma mensagem para sua resposta automática."
1822
 
1823
+ #: pro/classes/models/FrmProForm.php:109
1824
  #@ formidable
1825
  msgid "That is not a valid reply-to email address for your auto responder."
1826
  msgstr "Não é um e-mail válido para sua resposta automática."
1827
 
1828
+ #: pro/classes/models/FrmProSettings.php:104
1829
  #@ formidable
1830
  msgid "You have already submitted that form"
1831
  msgstr "Você já enviou esse formulário"
1832
 
1833
+ #: pro/classes/views/displays/edit.php:11
 
 
 
 
 
1834
  #: pro/classes/views/displays/new.php:7
1835
  #@ formidable
1836
  msgid "Get Help with This Page"
1837
  msgstr "Obter Ajuda com esta página"
1838
 
1839
+ #: pro/classes/views/displays/form.php:32
1840
  #@ formidable
1841
  msgid "Save to get ID"
1842
  msgstr "Salvar para obter o ID"
1843
 
1844
+ #: pro/classes/views/settings/formroller.php:326
1845
  #@ formidable
1846
  msgid "Calendar"
1847
  msgstr "Calendário"
1848
 
1849
+ #: pro/classes/views/displays/form.php:118
1850
  #@ formidable
1851
  msgid "Date Field"
1852
  msgstr "Campo de Data"
1853
 
1854
+ #: pro/classes/views/displays/form.php:120
1855
+ #: pro/classes/views/displays/form.php:210
1856
+ #: pro/classes/views/displays/where_row.php:6
1857
  #@ formidable
1858
  msgid "Entry creation date"
1859
  msgstr "Data de criação da Entrada"
1860
 
1861
+ #: pro/classes/views/displays/form.php:98
1862
  #@ formidable
1863
  msgid "Use Entries from Form"
1864
  msgstr "Use entradas de formulário"
1865
 
1866
+ #: pro/classes/views/displays/form.php:102
1867
  #@ formidable
1868
  msgid "Select Entry"
1869
  msgstr "Selecione Entrada"
1870
 
1871
+ #: pro/classes/views/displays/form.php:102
1872
  #@ formidable
1873
  msgid "The first one depending on the Order specified below"
1874
  msgstr "O primeiro, dependendo da ordem especificado abaixo"
1875
 
1876
+ #: pro/classes/views/displays/form.php:159
1877
  #@ formidable
1878
  msgid "Before Content"
1879
  msgstr "Antes de Conteúdo"
1880
 
1881
+ #: pro/classes/views/displays/form.php:159
1882
  #@ formidable
1883
  msgid "This content will not be repeated. This would be a good place to put any HTML table tags."
1884
  msgstr "Este conteúdo não será repetida. Este seria um bom lugar para colocar tags HTML de tabela."
1885
 
1886
+ #: pro/classes/views/displays/form.php:154
1887
+ #: pro/classes/views/displays/form.php:166
1888
+ #: pro/classes/views/frmpro-fields/options-form.php:97
1889
+ #: pro/classes/views/frmpro-fields/options-form.php:176
1890
  #@ formidable
1891
  msgid "Content"
1892
  msgstr "Conteúdo"
1893
 
1894
+ #: pro/classes/views/displays/form.php:166
1895
  #@ formidable
1896
  msgid "The HTML for your page. If 'All Entries' is selected above, this content will be repeated for each entry. The field ID and Key work synonymously, although there are times one choice may be better. If you are panning to copy your custom display settings to other blogs, use the Key since they will be copied and the ids may differ from blog to blog."
1897
  msgstr "O HTML de sua página. Se \\\"Todas as entradas\\\" estiver selecionado acima, esse conteúdo será repetido para cada entrada. O campo ID e Key são sinônimos, embora haja vezes que escolher um ou outro pode ser melhor. Se você é quer copiar as configurações de exibição personalizado para outros blogs, use Key, uma vez que os ID's podem diferir de blog para blog."
1898
 
1899
+ #: pro/classes/views/displays/form.php:178
1900
  #@ formidable
1901
  msgid "After Content"
1902
  msgstr "Depois do Conteúdo"
1903
 
1904
+ #: pro/classes/views/displays/form.php:178
1905
  #@ formidable
1906
  msgid "This content will not be repeated. This would be a good place to close any HTML tags from the Before Content field."
1907
  msgstr "Este conteúdo não será repetido. Este seria um bom lugar para fechar as tags HTML usadasno campo Antes do Conteúdo."
1908
 
1909
+ #: pro/classes/views/displays/form.php:185
1910
  #@ formidable
1911
  msgid "Dynamic Content"
1912
  msgstr "Conteúdo Dinâmico"
1913
 
1914
+ #: pro/classes/views/displays/form.php:185
1915
  #, php-format
1916
  #@ formidable
1917
  msgid "The HTML for the entry on the dynamic page. This content will NOT be repeated, and will only show when the %1$s is clicked."
1932
  msgid "If you would like the content to be inserted automatically, you must then select the page in which to insert it."
1933
  msgstr "Se você quer o conteúdo inserido automaticamente, você deve selecionar a página na qual inseri-lo."
1934
 
1935
+ #: pro/classes/views/displays/form.php:127
1936
  #@ formidable
1937
  msgid "Detail Link"
1938
  msgstr "Link Detalhe"
1939
 
1940
+ #: pro/classes/views/displays/form.php:127
1941
  #, php-format
1942
  #@ formidable
1943
  msgid "Example: If parameter name is 'contact', the url would be like %1$s/selected-page?contact=2. If this entry is linked to a post, the post permalink will be used instead."
1944
  msgstr "Exemplo: Se o nome do parâmetro é 'contato', a url seria como%1$s/selected-page?contato=2. Se essa entrada está ligada a um poste, o permalink do post vai ser utilizado."
1945
 
1946
+ #: pro/classes/views/displays/form.php:135
1947
  #, php-format
1948
  #@ formidable
1949
  msgid "Select the value that will be added onto the page URL. This will create a pretty URL like %1$s/selected-page/entry-key"
1950
  msgstr "Selecione o valor que será adicionado para a URL da página. Isto irá criar uma URL bonita como %1$s/selected-page/entry-key"
1951
 
1952
+ #: pro/classes/views/displays/form.php:137
1953
  #@ formidable
1954
  msgid "Parameter Name"
1955
  msgstr "Nome do parâmetro"
1956
 
1957
+ #: pro/classes/views/displays/form.php:140
1958
  #@ formidable
1959
  msgid "Parameter Value"
1960
  msgstr "Valor do parâmetro"
1961
 
1962
+ #: pro/classes/views/displays/form.php:209
1963
  #@ formidable
1964
  msgid "Random"
1965
  msgstr "Randomico"
1966
 
1967
+ #: pro/classes/views/displays/form.php:216
1968
  #@ formidable
1969
  msgid "Ascending"
1970
  msgstr "Crescente"
1971
 
1972
+ #: pro/classes/views/displays/form.php:217
1973
  #@ formidable
1974
  msgid "Descending"
1975
  msgstr "Descendente"
1976
 
1977
+ #: pro/classes/views/displays/form.php:224
1978
  #@ formidable
1979
  msgid "Narrow down which entries will be used."
1980
  msgstr "Selecione as entradas que serão utilizados."
1981
 
1982
+ #: pro/classes/views/displays/form.php:244
1983
  #@ formidable
1984
  msgid "If you don’t want all your entries displayed, you can insert the number limit here. Leave blank if you’d like all entries shown."
1985
  msgstr "Se você não deseja que todas as entradas sejam exibidas, você pode inserir um limite aqui. Deixe em branco se quiser todas as entradas exibidas."
1986
 
1987
+ #: pro/classes/views/displays/form.php:253
1988
  #@ formidable
1989
  msgid "The number of entries to show per page. Leave blank to not use pagination."
1990
  msgstr "O número de entradas para mostrar por página. Deixe em branco para não usar paginação."
1991
 
1992
+ #: classes/widgets/FrmShowForm.php:46
1993
+ #: pro/classes/views/displays/list.php:45
1994
+ #: pro/classes/views/displays/list.php:92
 
 
 
 
1995
  #: pro/classes/widgets/FrmPollResults.php:40
 
1996
  #@ formidable
1997
  msgid "Form"
1998
  msgstr "Formulário"
1999
 
2000
+ #: pro/classes/views/displays/list.php:54
2001
  #@ formidable
2002
  msgid "No Records Found"
2003
  msgstr "Nenhum Registro Encontrado"
2004
 
2005
+ #: pro/classes/views/displays/list.php:70
2006
  #, php-format
2007
  #@ formidable
2008
  msgid "Are you sure you want to delete your %1$s display data?"
2063
  msgid "Date options: 'NOW' or a date in yyyy-mm-dd format."
2064
  msgstr "Data opções: \\\"NOW\\\" (AGORA)ou uma data no formato aaaa-mm-dd."
2065
 
2066
+ #: pro/classes/views/displays/where_row.php:9
2067
  #@ formidable
2068
  msgid "is"
2069
  msgstr "é"
2070
 
2071
+ #: pro/classes/views/displays/where_row.php:11
2072
  #@ formidable
2073
  msgid "equal to"
2074
  msgstr "igual a"
2075
 
2076
+ #: pro/classes/views/displays/where_row.php:12
2077
  #@ formidable
2078
  msgid "NOT equal to"
2079
  msgstr "NÃO igual"
2080
 
2081
+ #: pro/classes/views/displays/where_row.php:13
2082
  #@ formidable
2083
  msgid "greater than"
2084
  msgstr "maior que"
2085
 
2086
+ #: pro/classes/views/displays/where_row.php:14
2087
  #@ formidable
2088
  msgid "less than"
2089
  msgstr "menor que"
2090
 
2091
+ #: pro/classes/views/displays/where_row.php:15
2092
  #@ formidable
2093
  msgid "like"
2094
  msgstr "como"
2098
  msgid "Edit Entry"
2099
  msgstr "Editar entrada"
2100
 
2101
+ #: pro/classes/controllers/FrmProEntriesController.php:1139
2102
+ #: pro/classes/views/frmpro-entries/list.php:73
2103
+ #: pro/classes/views/frmpro-entries/show.php:25
2104
  #@ formidable
2105
  msgid "Are you sure you want to delete that entry?"
2106
  msgstr "Tem certeza que quer apagar esta entrada?"
2107
 
2108
+ #: pro/classes/views/frmpro-entries/list.php:97
2109
  #@ formidable
2110
  msgid "Download CSV for"
2111
  msgstr "Download CSV para"
2112
 
 
 
 
 
 
2113
  #: pro/classes/views/frmpro-entries/new-selection.php:8
2114
  #@ formidable
2115
  msgid "Select Form for New Entry"
2116
  msgstr "Selecione Formulário para nova entrada"
2117
 
 
 
 
 
 
 
2118
  #: pro/classes/views/frmpro-entries/show.php:3
2119
  #@ formidable
2120
  msgid "View Entry"
2121
  msgstr "Veja a entrada"
2122
 
 
 
 
 
 
 
2123
  #: pro/classes/views/frmpro-fields/dynamic-options.php:18
2124
  #@ formidable
2125
  msgid "Limit selection choices to those created by the user filling out this form"
2140
  msgid "Just show it"
2141
  msgstr "Apenas o exiba"
2142
 
2143
+ #: pro/classes/views/frmpro-fields/options-form.php:25
2144
  #@ formidable
2145
  msgid "Calendar Localization"
2146
  msgstr "Localização do Calendário"
2147
 
2148
+ #: pro/classes/views/frmpro-fields/options-form.php:35
2149
  #@ formidable
2150
  msgid "Start Year"
2151
  msgstr "Ano Inicial"
2152
 
2153
+ #: pro/classes/views/frmpro-fields/options-form.php:38
2154
  #@ formidable
2155
  msgid "End Year"
2156
  msgstr "Ano Final"
2157
 
2158
+ #: pro/classes/views/frmpro-fields/options-form.php:43
2159
  #@ formidable
2160
  msgid "Clock Settings"
2161
  msgstr "Definições do Relógio"
2162
 
2163
+ #: pro/classes/views/frmpro-fields/options-form.php:48
2164
  #@ formidable
2165
  msgid "hour clock"
2166
  msgstr "hora do relógio "
2167
 
2168
+ #: pro/classes/views/frmpro-fields/options-form.php:51
2169
  #@ formidable
2170
  msgid "minute step"
2171
  msgstr "intervalo de minutos"
2172
 
2173
+ #: pro/classes/views/frmpro-fields/options-form.php:66
2174
  #@ formidable
2175
  msgid "automatic width"
2176
  msgstr "largura automática"
2177
 
2178
+ #: pro/classes/views/frmpro-fields/options-form.php:70
2179
  #@ formidable
2180
  msgid "Email Attachment"
2181
  msgstr "Anexo de E-mail"
2182
 
2183
+ #: pro/classes/views/frmpro-fields/options-form.php:71
2184
  #@ formidable
2185
  msgid "attach this file to the email notification"
2186
  msgstr "anexar esse arquivo ao email de notificação"
2187
 
2188
+ #: pro/classes/views/frmpro-fields/options-form.php:74
2189
  #@ formidable
2190
  msgid "Number Range"
2191
  msgstr "Faixa de Número"
2192
 
2193
+ #: pro/classes/views/frmpro-fields/options-form.php:74
2194
  #@ formidable
2195
  msgid "Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field."
2196
  msgstr "Os navegadores que suportam o campo de número HTML5 exigem um intervalo de números para determinar os números visitos ao clicar nas setas ao lado do campo."
2197
 
2198
+ #: pro/classes/views/frmpro-fields/options-form.php:75
2199
  #@ formidable
2200
  msgid "minimum"
2201
  msgstr "mínimo"
2202
 
2203
+ #: pro/classes/views/frmpro-fields/options-form.php:76
2204
  #@ formidable
2205
  msgid "maximum"
2206
  msgstr "máximo"
2207
 
2208
+ #: pro/classes/views/frmpro-fields/options-form.php:77
2209
  #@ formidable
2210
  msgid "step"
2211
  msgstr "etapa"
2212
 
2213
+ #: pro/classes/views/frmpro-fields/options-form.php:80
2214
  #@ formidable
2215
  msgid "Range"
2216
  msgstr "Faixa"
2217
 
2218
+ #: pro/classes/views/frmpro-fields/options-form.php:87
2219
  #@ formidable
2220
  msgid "to"
2221
  msgstr "para"
2222
 
2223
+ #: pro/classes/views/frmpro-fields/options-form.php:107
2224
+ #: pro/classes/views/frmpro-fields/options-form.php:115
 
2225
  #@ formidable
2226
  msgid "Field Type"
2227
  msgstr "Tipo de campo"
2228
 
2229
+ #: pro/classes/views/frmpro-fields/options-form.php:145
2230
  #@ formidable
2231
  msgid "Hide this field unless the value of"
2232
  msgstr "Esconder este campo a menos que o valor de"
2233
 
2234
+ #: pro/classes/views/displays/where_row.php:5
2235
+ #: pro/classes/views/frmpro-fields/options-form.php:147
2236
+ #: pro/classes/views/frmpro-forms/_comment_meta_row.php:8
2237
+ #: pro/classes/views/frmpro-forms/_custom_field_row.php:8
2238
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:15
2239
+ #: pro/classes/views/frmpro-forms/comment_options.php:25
2240
+ #: pro/classes/views/frmpro-forms/post_options.php:40
2241
  #@ formidable
2242
  msgid "Select Field"
2243
  msgstr "Selecione Campo"
2244
 
2245
+ #: pro/classes/views/frmpro-fields/options-form.php:153
2246
  #@ formidable
2247
  msgid "is equal to"
2248
  msgstr "é igual a"
2249
 
2250
+ #: pro/classes/views/frmpro-fields/options-form.php:169
2251
  #@ formidable
2252
  msgid "Post field"
2253
  msgstr "campo Post"
2254
 
2255
+ #: pro/classes/views/frmpro-fields/options-form.php:169
2256
  #@ formidable
2257
  msgid "Create a post from each form submission by selecting which part of the post this field will create. 'Custom field' is the only post field type that should be used multiple times."
2258
  msgstr "Criar um post de cada envio do formulário, selecionando a parte do post que este campo irá criar. 'Campo personalizado' é o uníco tipo de campo de post que pode ser usado várias vezes."
2259
 
2260
+ #: pro/classes/views/frmpro-fields/options-form.php:219
2261
  #@ formidable
2262
  msgid "The field key can be used as an alternative to the field ID in many cases."
2263
  msgstr "O campo chave pode ser usado como uma alternativa para o campo ID, em muitos casos."
2267
  msgid "These buttons are for illustrative purposes only. They will be functional in your form."
2268
  msgstr "Estes botões são apenas para fins ilustrativos. Eles vão ser funcionais em seu formulário."
2269
 
 
 
 
 
 
 
 
 
 
 
2270
  #: pro/classes/views/frmpro-forms/add_form_options.php:1
2271
  #@ formidable
2272
  msgid "Use Content from Page"
2282
  msgid "Submit this Form with AJAX"
2283
  msgstr "Envie este formulário com AJAX"
2284
 
2285
+ #: pro/classes/views/frmpro-forms/add_form_options.php:28
2286
  #@ formidable
2287
  msgid "Only"
2288
  msgstr "Somente"
2289
 
2290
+ #: pro/classes/views/frmpro-forms/add_form_options.php:36
2291
  #@ formidable
2292
  msgid "Can See and Submit this Form"
2293
  msgstr "Pode ver e enviar este formulário"
2294
 
2295
+ #: pro/classes/views/frmpro-forms/add_form_options.php:38
2296
  #@ formidable
2297
  msgid "Allow"
2298
  msgstr "Permitir"
2299
 
2300
+ #: pro/classes/views/frmpro-forms/add_form_options.php:46
2301
  #@ formidable
2302
  msgid "to Edit Their Own Previous Responses"
2303
  msgstr "editar suas próprias respostas anteriores"
2304
 
2305
+ #: pro/classes/views/frmpro-forms/add_form_options.php:49
2306
  #@ formidable
2307
  msgid "Also Allow"
2308
  msgstr "Também permitir"
2309
 
2310
+ #: pro/classes/views/frmpro-forms/add_form_options.php:57
2311
  #@ formidable
2312
  msgid "to Edit Responses Submitted by Anyone"
2313
  msgstr "Editar respostas enviadas por qualquer pessoa"
2314
 
2315
+ #: pro/classes/views/frmpro-forms/add_form_options.php:61
2316
  #@ formidable
2317
  msgid "Update Submit Button Text"
2318
  msgstr "Atualize texto do botão Enviar"
2319
 
2320
+ #: pro/classes/views/frmpro-forms/add_form_options.php:66
2321
  #@ formidable
2322
  msgid "Update Confirmation Message"
2323
  msgstr "Atualize Mensagem de Confirmação"
2324
 
2325
+ #: pro/classes/views/frmpro-forms/add_form_options.php:70
2326
  #@ formidable
2327
  msgid "Allow Only One Entry for Each"
2328
  msgstr "Permitir apenas uma entrada para cada"
2329
 
2330
+ #: pro/classes/views/frmpro-forms/add_form_options.php:73
2331
  #@ formidable
2332
  msgid "Logged-in User"
2333
  msgstr "Usuário logado"
2334
 
2335
+ #: pro/classes/views/frmpro-forms/add_form_options.php:75
2336
  #@ formidable
2337
  msgid "Saved Cookie"
2338
  msgstr "Cookie Salvo"
2339
 
2340
+ #: pro/classes/views/frmpro-forms/add_form_options.php:92
2341
  #@ formidable
2342
  msgid "Copy this form to other blogs when Formidable Pro is activated"
2343
  msgstr "Copie este formulário para outros blogs, quando Formidable Pro está ativado"
2352
  msgid "A variable from the URL or value posted from previous page."
2353
  msgstr "Uma variável da URL ou valor recebido da página anterior."
2354
 
 
 
 
 
 
2355
  #: pro/classes/views/frmpro-forms/notifications.php:3
2356
  #@ formidable
2357
  msgid "and/or"
2362
  msgid "Select a user id, hidden, or email field to send a notification."
2363
  msgstr "Selecione um ID de usuário, oculto, ou o campo e-mail para enviar uma notificação."
2364
 
2365
+ #: pro/classes/views/frmpro-forms/notifications.php:29
2366
  #@ formidable
2367
  msgid "Usually the name and email of the person filling out the form. Select from Text, Email, User ID, or hidden fields for the name. Select from Email, User ID, and hidden fields for the email. Defaults to your site name and admin email found on the WordPress General Settings page."
2368
  msgstr "Normalmente, o nome e e-mail da pessoa que está preenchendo o formulário. Escolha entre Texto, Email, ID de usuário, ou campos ocultos para o nome. Selecione a partir de e-mail, identificação de usuário, e os campos ocultos para o e-mail. O padrão é o nome do site e e-mail admin encontrados na página do WordPress Definições Gerais."
2369
 
2370
+ #: pro/classes/views/frmpro-forms/notifications.php:72
2371
+ #: pro/classes/views/frmpro-forms/notifications.php:130
2372
  #@ formidable
2373
  msgid "Email Format"
2374
  msgstr "Formato do e-mail"
2375
 
2376
+ #: pro/classes/views/frmpro-forms/notifications.php:73
2377
+ #: pro/classes/views/frmpro-forms/notifications.php:131
2378
  #@ formidable
2379
  msgid "Send Plain Text"
2380
  msgstr "Enviar Plain Text"
2381
 
2382
+ #: pro/classes/views/frmpro-forms/notifications.php:90
 
 
 
 
 
2383
  #@ formidable
2384
  msgid "Append IP Address, Browser, and Referring URL to message"
2385
  msgstr "Acrescente o endereço IP, Browser, e URL de referência na mensagem"
2386
 
2387
+ #: pro/classes/views/frmpro-forms/notifications.php:94
2388
  #@ formidable
2389
  msgid "Auto Responder"
2390
  msgstr "Resposta Automática"
2391
 
2392
+ #: pro/classes/views/frmpro-forms/notifications.php:95
2393
  #@ formidable
2394
  msgid "Send an automatic response to users submitting the form"
2395
  msgstr "Enviar uma resposta automática para os usuários que enviarem o formulário"
2396
 
2397
+ #: pro/classes/views/frmpro-forms/notifications.php:99
2398
  #@ formidable
2399
  msgid "Email to"
2400
  msgstr "E-mail para"
2401
 
2402
+ #: pro/classes/views/frmpro-forms/notifications.php:99
2403
  #@ formidable
2404
  msgid "Select a user id, hidden, or email field to send the autoresponse."
2405
  msgstr "Selecione um ID de usuário, escondido, ou campo de e-mail para enviar a resposta automática."
2406
 
2407
+ #: pro/classes/views/frmpro-forms/notifications.php:122
2408
  #@ formidable
2409
  msgid "Reply to"
2410
  msgstr "Responder para"
2434
  msgid "Keys"
2435
  msgstr "Chaves"
2436
 
 
 
 
 
 
 
 
 
 
 
2437
  #: pro/classes/views/settings/form.php:26
2438
  #@ formidable
2439
  msgid "Path to Extra Templates"
2460
  msgid "Change the format of the date used in the calendar."
2461
  msgstr "Alterar o formato da data usada no calendário."
2462
 
2463
+ #: pro/classes/views/settings/form.php:69
2464
  #@ formidable
2465
  msgid "Pretty Permalinks"
2466
  msgstr "Permalinks bonitos"
2467
 
2468
+ #: pro/classes/views/settings/form.php:72
2469
  #@ formidable
2470
  msgid "Use pretty permalinks for entry detail links"
2471
  msgstr "Use permalinks bonito para links de entrada detalhada"
2472
 
2473
  #: pro/classes/views/settings/formroller.php:22
2474
+ #: pro/classes/views/settings/formroller.php:200
2475
+ #: pro/classes/views/settings/formroller.php:232
2476
+ #: pro/classes/views/settings/formroller.php:256
2477
+ #: pro/classes/views/settings/formroller.php:402
2478
+ #: pro/classes/views/settings/formroller.php:440
2479
+ #: pro/classes/views/settings/formroller.php:483
2480
  #@ formidable
2481
  msgid "Border"
2482
  msgstr "Borda"
2484
  #: pro/classes/views/settings/formroller.php:27
2485
  #: pro/classes/views/settings/formroller.php:50
2486
  #: pro/classes/views/settings/formroller.php:100
2487
+ #: pro/classes/views/settings/formroller.php:305
2488
  #@ formidable
2489
  msgid "Color"
2490
  msgstr "Cor"
2491
 
2492
  #: pro/classes/views/settings/formroller.php:32
2493
+ #: pro/classes/views/settings/formroller.php:170
2494
+ #: pro/classes/views/settings/formroller.php:419
2495
  #@ formidable
2496
  msgid "Padding"
2497
  msgstr "Padding"
2498
 
2499
  #: pro/classes/views/settings/formroller.php:111
2500
+ #: pro/classes/views/settings/formroller.php:208
2501
+ #: pro/classes/views/settings/formroller.php:264
2502
  #@ formidable
2503
  msgid "Style"
2504
  msgstr "Estilo"
2505
 
2506
+ #: pro/classes/views/settings/formroller.php:210
2507
+ #: pro/classes/views/settings/formroller.php:266
2508
  #@ formidable
2509
  msgid "solid"
2510
  msgstr "sólido"
2511
 
2512
+ #: pro/classes/views/settings/formroller.php:211
2513
+ #: pro/classes/views/settings/formroller.php:267
2514
  #@ formidable
2515
  msgid "dotted"
2516
  msgstr "pontilhado"
2517
 
2518
+ #: pro/classes/views/settings/formroller.php:212
2519
+ #: pro/classes/views/settings/formroller.php:268
2520
  #@ formidable
2521
  msgid "dashed"
2522
  msgstr "tracejada"
2523
 
2524
+ #: pro/classes/views/settings/formroller.php:213
2525
+ #: pro/classes/views/settings/formroller.php:269
2526
  #@ formidable
2527
  msgid "double"
2528
  msgstr "dupla"
2529
 
2530
+ #: pro/classes/views/settings/formroller.php:204
2531
+ #: pro/classes/views/settings/formroller.php:260
2532
+ #: pro/classes/views/settings/formroller.php:406
2533
  #@ formidable
2534
  msgid "Thickness"
2535
  msgstr "Espessura"
2536
 
2537
+ #: pro/classes/views/settings/formroller.php:351
2538
  #@ formidable
2539
  msgid "Disable submit button styling"
2540
  msgstr "Desabilitar estilização do botão submit"
2541
 
2542
+ #: pro/classes/views/settings/formroller.php:353
2543
  #@ formidable
2544
  msgid "Note: If disabled, you may not see the change take effect until you make 2 more styling changes or click \"Update Options\"."
2545
  msgstr "Nota: Se desativado, você não pode ver as alterações terem efeito até que você faça duas ou mais mudanças no estilo ou clique em \"Update Options\"."
2546
 
2547
+ #: pro/classes/views/settings/formroller.php:525
2548
  #@ formidable
2549
  msgid "Templates Updated"
2550
  msgstr "Modelos Atualizados"
2559
  msgid "Formidable Entries List"
2560
  msgstr "Lista de Entradas Formidable"
2561
 
2562
+ #: classes/widgets/FrmShowForm.php:43
2563
+ #: pro/classes/views/frmpro-fields/options-form.php:178
2564
  #: pro/classes/widgets/FrmListEntries.php:133
2565
  #: pro/classes/widgets/FrmPollResults.php:34
 
2566
  #@ formidable
2567
  msgid "Title"
2568
  msgstr "Título"
2617
  msgid "Entry Limit (leave blank to list all)"
2618
  msgstr "Limite de Entradas (deixe em branco para listar todas)"
2619
 
2620
+ #: classes/widgets/FrmShowForm.php:6
2621
  #@ formidable
2622
  msgid "Display a Formidable Form"
2623
  msgstr "Exibir formulário Formidable"
2624
 
2625
+ #: classes/widgets/FrmShowForm.php:7
2626
  #@ formidable
2627
  msgid "Formidable Form"
2628
  msgstr "Formulário Formidable"
2629
 
2630
+ #: classes/widgets/FrmShowForm.php:51
2631
  #: pro/classes/widgets/FrmPollResults.php:38
 
2632
  #@ formidable
2633
  msgid "Show Description"
2634
  msgstr "Exibir Descrição"
2635
 
2636
+ #: classes/widgets/FrmShowForm.php:54
2637
  #@ formidable
2638
  msgid "Fit Select Boxes into SideBar"
2639
  msgstr "Encaixar Caixas de Seleção na barra lateral"
2640
 
2641
+ #: classes/helpers/FrmFieldsHelper.php:265
2642
+ #: classes/helpers/FrmFieldsHelper.php:271
 
 
 
 
 
2643
  #@ formidable
2644
  msgid "not"
2645
  msgstr "não"
2646
 
2647
+ #: classes/views/frm-forms/edit.php:17
2648
+ #: classes/views/frm-forms/edit.php:31
2649
+ #: classes/views/frm-forms/form.php:101
2650
  #@ formidable
2651
  msgid "Customize Form HTML"
2652
  msgstr ""
2653
 
2654
+ #: classes/views/frm-forms/edit.php:17
2655
+ #: classes/views/frm-forms/edit.php:31
2656
  #@ formidable
2657
  msgid "Advanced Users: Customize your form HTML here"
2658
  msgstr ""
2662
  msgid "Select a form to insert"
2663
  msgstr ""
2664
 
 
 
 
 
 
2665
  #: classes/views/frm-forms/insert_form_popup.php:58
2666
  #@ formidable
2667
  msgid "Filter shortcodes within the custom display content"
2677
  msgid "Insert a search box"
2678
  msgstr ""
2679
 
2680
+ #: classes/views/frm-forms/list.php:111
2681
  #: pro/classes/views/shared/import_form.php:37
2682
  #@ formidable
2683
  msgid "Export"
2684
  msgstr "Exportar"
2685
 
2686
+ #: classes/views/frm-settings/form.php:75
2687
  #@ formidable
2688
  msgid "reCAPTCHA"
2689
  msgstr ""
2690
 
2691
+ #: classes/views/frm-settings/form.php:75
2692
  #@ formidable
2693
  msgid "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking spam on your blog. reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a human. This verifies that they are not a spambot."
2694
  msgstr ""
2695
 
2696
+ #: classes/views/frm-settings/form.php:82
2697
  #@ formidable
2698
  msgid "Public Key"
2699
  msgstr ""
2700
 
2701
+ #: classes/views/frm-settings/form.php:86
2702
  #@ formidable
2703
  msgid "Private Key"
2704
  msgstr ""
2705
 
2706
+ #: classes/views/frm-settings/form.php:95
2707
  #@ formidable
2708
  msgid "reCAPTCHA Theme"
2709
  msgstr ""
2710
 
2711
+ #: classes/views/frm-settings/form.php:97
2712
  #@ formidable
2713
  msgid "Red"
2714
+ msgstr "Vermelho"
2715
 
2716
+ #: classes/views/frm-settings/form.php:97
2717
  #@ formidable
2718
  msgid "White"
2719
+ msgstr "Branco"
2720
 
2721
+ #: classes/views/frm-settings/form.php:97
2722
  #@ formidable
2723
  msgid "Black Glass"
2724
  msgstr ""
2725
 
2726
+ #: classes/views/frm-settings/form.php:97
2727
  #@ formidable
2728
  msgid "Clean"
2729
  msgstr ""
2730
 
2731
+ #: classes/views/frm-settings/form.php:102
2732
+ #@ formidable
2733
  msgid "reCAPTCHA Language"
2734
  msgstr ""
2735
 
2736
+ #: classes/views/frm-settings/form.php:104
2737
  #@ formidable
2738
  msgid "English"
2739
+ msgstr "Inglês"
2740
 
2741
+ #: classes/views/frm-settings/form.php:104
2742
  #@ formidable
2743
  msgid "Portuguese"
2744
+ msgstr "Português"
 
 
 
 
 
2745
 
2746
+ #: pro/classes/controllers/FrmProFormsController.php:133
2747
+ #: pro/classes/views/frmpro-forms/comment_options.php:15
2748
+ #: pro/classes/views/frmpro-forms/post_options.php:30
2749
  #@ formidable
2750
  msgid "Post Title"
2751
  msgstr ""
2752
 
2753
+ #: pro/classes/views/frmpro-fields/options-form.php:120
2754
  #@ formidable
2755
  msgid "Unique"
2756
  msgstr ""
2757
 
2758
+ #: pro/classes/views/frmpro-fields/options-form.php:122
2759
  #@ formidable
2760
  msgid "Read Only"
2761
  msgstr ""
2762
 
2763
+ #: pro/classes/views/frmpro-forms/notifications.php:29
2764
  #@ formidable
2765
  msgid "From/Reply to"
2766
  msgstr ""
2767
 
2768
+ #: classes/views/frm-settings/form.php:16
2769
  #: pro/classes/views/settings/formroller.php:9
2770
  #@ formidable
2771
  msgid "General"
2804
 
2805
  #: pro/classes/views/settings/formroller.php:46
2806
  #: pro/classes/views/settings/formroller.php:96
2807
+ #: pro/classes/views/settings/formroller.php:301
2808
  #@ formidable
2809
  msgid "Family"
2810
  msgstr ""
2811
 
2812
  #: pro/classes/views/settings/formroller.php:54
2813
  #: pro/classes/views/settings/formroller.php:104
2814
+ #: pro/classes/views/settings/formroller.php:309
2815
+ #: pro/classes/views/settings/formroller.php:356
2816
  #@ formidable
2817
  msgid "Weight"
2818
  msgstr ""
2820
  #: pro/classes/views/settings/formroller.php:61
2821
  #: pro/classes/views/settings/formroller.php:118
2822
  #: pro/classes/views/settings/formroller.php:155
2823
+ #: pro/classes/views/settings/formroller.php:316
2824
+ #: pro/classes/views/settings/formroller.php:369
2825
+ #: pro/classes/views/settings/formroller.php:462
2826
+ #: pro/classes/views/settings/formroller.php:491
2827
  #@ formidable
2828
  msgid "Size"
2829
  msgstr ""
2835
 
2836
  #: pro/classes/views/settings/formroller.php:83
2837
  #: pro/classes/views/settings/formroller.php:160
2838
+ #: pro/classes/views/settings/formroller.php:374
2839
  #@ formidable
2840
  msgid "Width"
2841
  msgstr ""
2842
 
2843
  #: pro/classes/views/settings/formroller.php:106
2844
  #: pro/classes/views/settings/formroller.php:113
2845
+ #: pro/classes/views/settings/formroller.php:311
2846
+ #: pro/classes/views/settings/formroller.php:358
2847
  #@ formidable
2848
  msgid "normal"
2849
  msgstr ""
2850
 
2851
  #: pro/classes/views/settings/formroller.php:107
2852
+ #: pro/classes/views/settings/formroller.php:312
2853
+ #: pro/classes/views/settings/formroller.php:359
2854
  #@ formidable
2855
  msgid "bold"
2856
  msgstr ""
2866
  msgstr ""
2867
 
2868
  #: pro/classes/views/settings/formroller.php:140
2869
+ #: pro/classes/views/settings/formroller.php:364
2870
  #@ formidable
2871
  msgid "Corners"
2872
  msgstr ""
2881
  msgid "Field Settings"
2882
  msgstr ""
2883
 
2884
+ #: pro/classes/views/settings/formroller.php:186
 
 
 
 
 
2885
  #@ formidable
2886
  msgid "Field Colors"
2887
  msgstr ""
2888
 
2889
+ #: pro/classes/views/settings/formroller.php:191
2890
+ #: pro/classes/views/settings/formroller.php:228
2891
+ #: pro/classes/views/settings/formroller.php:247
2892
  #@ formidable
2893
  msgid "BG color"
2894
  msgstr ""
2895
 
2896
+ #: pro/classes/views/settings/formroller.php:195
2897
+ #: pro/classes/views/settings/formroller.php:251
2898
+ #: pro/classes/views/settings/formroller.php:392
2899
+ #: pro/classes/views/settings/formroller.php:445
2900
+ #: pro/classes/views/settings/formroller.php:487
2901
  #@ formidable
2902
  msgid "Text"
2903
  msgstr ""
2904
 
2905
+ #: pro/classes/views/settings/formroller.php:223
2906
  #@ formidable
2907
  msgid "Field Colors: active state"
2908
  msgstr ""
2909
 
2910
+ #: pro/classes/views/settings/formroller.php:242
2911
  #@ formidable
2912
  msgid "Field Colors: error state"
2913
  msgstr ""
2914
 
2915
+ #: pro/classes/views/settings/formroller.php:278
2916
  #@ formidable
2917
  msgid "Radio Buttons & Check Boxes"
2918
  msgstr ""
2919
 
2920
+ #: pro/classes/views/settings/formroller.php:283
2921
  #@ formidable
2922
  msgid "Radio"
2923
  msgstr ""
2924
 
2925
+ #: pro/classes/views/settings/formroller.php:292
2926
  #@ formidable
2927
  msgid "Check Box"
2928
  msgstr ""
2929
 
2930
+ #: pro/classes/views/settings/formroller.php:330
2931
  #@ formidable
2932
  msgid "Theme"
2933
  msgstr ""
2934
 
2935
+ #: pro/classes/views/settings/formroller.php:379
2936
  #@ formidable
2937
  msgid "Height"
2938
  msgstr ""
2939
 
2940
+ #: pro/classes/views/settings/formroller.php:384
2941
+ #: pro/classes/views/settings/formroller.php:388
2942
+ #: pro/classes/views/settings/formroller.php:435
2943
+ #: pro/classes/views/settings/formroller.php:478
2944
  #@ formidable
2945
  msgid "BG Color"
2946
  msgstr ""
2947
 
2948
+ #: pro/classes/views/settings/formroller.php:397
2949
  #@ formidable
2950
  msgid "BG Image"
2951
  msgstr ""
2952
 
2953
+ #: pro/classes/views/settings/formroller.php:410
2954
  #@ formidable
2955
  msgid "Shadow"
2956
  msgstr ""
2957
 
2958
+ #: pro/classes/views/settings/formroller.php:415
2959
  #@ formidable
2960
  msgid "Margin"
2961
  msgstr ""
2962
 
2963
+ #: pro/classes/views/settings/formroller.php:430
2964
  #@ formidable
2965
  msgid "Error"
2966
  msgstr ""
2967
 
2968
+ #: pro/classes/views/settings/formroller.php:450
2969
  #@ formidable
2970
  msgid "Icon"
2971
  msgstr ""
2972
 
2973
+ #: pro/classes/views/settings/formroller.php:473
2974
  #@ formidable
2975
  msgid "Success"
2976
  msgstr ""
2985
  msgid "Formidable Poll & Results"
2986
  msgstr ""
2987
 
 
 
 
 
 
 
2988
  #: classes/helpers/FrmFieldsHelper.php:12
2989
  #@ formidable
2990
  msgid "reCAPTCHA (SPAM Control)"
3001
  msgstr ""
3002
 
3003
  #: classes/helpers/FrmFieldsHelper.php:37
3004
+ #: pro/classes/models/FrmProField.php:61
3005
  #@ formidable
3006
  msgid "HTML"
3007
  msgstr ""
3008
 
3009
+ #: classes/models/FrmSettings.php:78
3010
  #@ formidable
3011
  msgid "The reCAPTCHA was not entered correctly"
3012
  msgstr ""
3013
 
3014
+ #: classes/views/frm-forms/add_field.php:84
3015
  #, php-format
3016
  #@ formidable
3017
  msgid "Hint: Change colors in the %1$sFormidable settings"
3018
  msgstr ""
3019
 
3020
+ #: classes/views/frm-forms/add_field.php:135
3021
  #@ formidable
3022
  msgid "Required Field"
3023
  msgstr ""
3024
 
3025
+ #: classes/views/frm-forms/add_field.php:136
3026
  #@ formidable
3027
  msgid "Required"
3028
  msgstr ""
3029
 
3030
+ #: classes/views/frm-forms/form.php:129
 
 
 
 
 
3031
  #@ formidable
3032
  msgid "Delete Entry Link"
3033
  msgstr ""
3034
 
3035
+ #: classes/views/frm-forms/list.php:46
3036
+ #: classes/views/frm-forms/list.php:149
3037
  #@ formidable
3038
  msgid "ShortCodes"
3039
  msgstr ""
3040
 
3041
+ #: classes/views/frm-settings/form.php:146
 
 
 
 
 
 
 
 
 
 
3042
  #@ formidable
3043
  msgid "Default Submit Button"
3044
  msgstr ""
3045
 
3046
+ #: pro/classes/controllers/FrmProEntriesController.php:1313
3047
  #@ formidable
3048
  msgid "No one! You do not have permission"
3049
  msgstr ""
3050
 
3051
+ #: pro/classes/helpers/FrmProAppHelper.php:178
3052
  #@ formidable
3053
  msgid "Export to XML"
3054
  msgstr ""
3055
 
3056
+ #: pro/classes/helpers/FrmProEntriesHelper.php:61
3057
  #@ formidable
3058
  msgid "Resend Email Notification"
3059
  msgstr ""
3060
 
3061
+ #: pro/classes/helpers/FrmProEntriesHelper.php:62
3062
  #@ formidable
3063
  msgid "Resend Autoresponse"
3064
  msgstr ""
3065
 
3066
+ #: pro/classes/helpers/FrmProEntriesHelper.php:69
3067
  #@ formidable
3068
  msgid "Email Resent to"
3069
  msgstr ""
3070
 
3071
+ #: pro/classes/models/FrmProDisplay.php:169
3072
+ #: pro/classes/views/displays/form.php:84
3073
  #@ formidable
3074
  msgid "This is not displayed anywhere, but is just for your reference. (optional)"
3075
  msgstr ""
3076
 
3077
+ #: pro/classes/models/FrmProDisplay.php:173
3078
  #@ formidable
3079
  msgid "Content cannot be blank"
3080
  msgstr ""
3081
 
3082
+ #: pro/classes/models/FrmProDisplay.php:176
3083
  #@ formidable
3084
  msgid "Page cannot be blank if you want the content inserted automatically"
3085
  msgstr ""
3086
 
3087
+ #: pro/classes/models/FrmProDisplay.php:183
3088
  #@ formidable
3089
  msgid "Dynamic Content cannot be blank"
3090
  msgstr ""
3091
 
3092
+ #: pro/classes/models/FrmProDisplay.php:187
3093
  #@ formidable
3094
  msgid "Parameter Name cannot be blank if content is dynamic"
3095
  msgstr ""
3096
 
3097
+ #: pro/classes/models/FrmProDisplay.php:190
3098
  #@ formidable
3099
  msgid "Parameter Value cannot be blank if content is dynamic"
3100
  msgstr ""
3101
 
3102
+ #: pro/classes/models/FrmProDisplay.php:193
3103
  #@ formidable
3104
  msgid "Detail Link cannot be blank if content is dynamic"
3105
  msgstr ""
3106
 
 
 
 
 
 
3107
  #: pro/classes/views/displays/form.php:4
3108
  #@ formidable
3109
  msgid "Shortcode Options"
3129
  msgid "on page"
3130
  msgstr ""
3131
 
3132
+ #: pro/classes/views/displays/form.php:31
3133
  #@ formidable
3134
  msgid "Insert on a page, post, or text widget"
3135
  msgstr ""
3136
 
3137
+ #: pro/classes/views/displays/form.php:35
3138
  #@ formidable
3139
  msgid "Insert in a template"
3140
  msgstr ""
3141
 
3142
+ #: pro/classes/views/displays/form.php:43
3143
  #, php-format
3144
  #@ formidable
3145
  msgid "Are you sure you want to delete your %1$s display?"
3146
  msgstr ""
3147
 
3148
+ #: pro/classes/views/displays/form.php:63
3149
  #@ formidable
3150
  msgid "Custom Display Info"
3151
  msgstr ""
3152
 
3153
+ #: pro/classes/views/displays/form.php:75
3154
  #@ formidable
3155
  msgid "Display Key"
3156
  msgstr ""
3157
 
3158
+ #: pro/classes/views/displays/form.php:94
3159
  #@ formidable
3160
  msgid "Form and Display Type"
3161
  msgstr ""
3162
 
3163
+ #: pro/classes/views/displays/form.php:108
3164
  #@ formidable
3165
  msgid "Display Format"
3166
  msgstr ""
3167
 
3168
+ #: pro/classes/views/displays/form.php:111
3169
  #@ formidable
3170
  msgid "All Entries &mdash; list all entries in the specified form"
3171
  msgstr ""
3172
 
3173
+ #: pro/classes/views/displays/form.php:112
3174
  #@ formidable
3175
  msgid "Single Entry &mdash; display one entry"
3176
  msgstr ""
3177
 
3178
+ #: pro/classes/views/displays/form.php:113
3179
  #@ formidable
3180
  msgid "Both (Dynamic) &mdash; list the entries that will link to a single entry page"
3181
  msgstr ""
3182
 
3183
+ #: pro/classes/views/displays/form.php:114
3184
  #@ formidable
3185
  msgid "Calendar &mdash; insert entries into a calendar"
3186
  msgstr ""
3187
 
3188
+ #: pro/classes/views/displays/form.php:159
3189
+ #: pro/classes/views/displays/form.php:178
3190
+ #: pro/classes/views/frmpro-forms/comment_options.php:23
3191
+ #: pro/classes/views/frmpro-forms/post_options.php:38
3192
  #@ formidable
3193
  msgid "optional"
3194
  msgstr ""
3195
 
3196
+ #: pro/classes/views/displays/form.php:200
3197
  #@ formidable
3198
  msgid "Advanced"
3199
  msgstr ""
3200
 
3201
+ #: pro/classes/views/displays/form.php:205
3202
  #@ formidable
3203
  msgid "Order"
3204
  msgstr ""
3205
 
3206
+ #: pro/classes/views/displays/form.php:223
3207
  #@ formidable
3208
  msgid "Where"
3209
  msgstr ""
3210
 
3211
+ #: pro/classes/views/displays/form.php:243
3212
  #@ formidable
3213
  msgid "Limit"
3214
  msgstr ""
3215
 
3216
+ #: pro/classes/views/displays/form.php:252
3217
  #@ formidable
3218
  msgid "Page Size"
3219
  msgstr ""
3220
 
 
 
 
 
 
3221
  #: pro/classes/views/displays/tags.php:2
3222
  #@ formidable
3223
  msgid "Image Size"
3248
  msgid "Other Options"
3249
  msgstr ""
3250
 
3251
+ #: pro/classes/views/frmpro-fields/options-form.php:124
 
 
 
 
 
 
 
 
 
 
3252
  #@ formidable
3253
  msgid "Admin Only"
3254
  msgstr ""
3255
 
3256
+ #: pro/classes/views/frmpro-fields/options-form.php:132
3257
  #@ formidable
3258
  msgid "Calculations"
3259
  msgstr ""
3260
 
3261
+ #: pro/classes/views/frmpro-fields/options-form.php:134
3262
  #@ formidable
3263
  msgid "Calculate the default value for this field"
3264
  msgstr ""
3273
  msgid "You can edit this content in the field options."
3274
  msgstr ""
3275
 
3276
+ #: pro/classes/views/frmpro-statistics/show.php:13
3277
  #@ formidable
3278
  msgid "Go to Report"
3279
  msgstr ""
3323
  msgid "The format of that path is incorrect. Please try again."
3324
  msgstr ""
3325
 
3326
+ #: pro/classes/views/settings/form.php:96
 
 
 
 
 
 
 
 
 
 
 
 
3327
  #@ formidable
3328
  msgid "Text field"
3329
  msgstr ""
3330
 
3331
+ #: pro/classes/views/settings/form.php:97
3332
+ #: pro/classes/views/settings/form.php:103
3333
  #@ formidable
3334
  msgid "This is sample text"
3335
  msgstr ""
3336
 
3337
+ #: pro/classes/views/settings/form.php:98
3338
  #@ formidable
3339
  msgid "A field with a description"
3340
  msgstr ""
3341
 
3342
+ #: pro/classes/views/settings/form.php:102
3343
  #@ formidable
3344
  msgid "Text field with error"
3345
  msgstr ""
3346
 
3347
+ #: pro/classes/views/settings/form.php:108
3348
  #@ formidable
3349
  msgid "Text field in active state"
3350
  msgstr ""
3351
 
3352
+ #: pro/classes/views/settings/form.php:109
3353
  #@ formidable
3354
  msgid "The active state will be seen when the field is clicked"
3355
  msgstr ""
3356
 
3357
+ #: pro/classes/views/settings/form.php:118
3358
  #@ formidable
3359
  msgid "Drop-down Select"
3360
  msgstr ""
3361
 
3362
+ #: pro/classes/views/settings/form.php:121
3363
  #@ formidable
3364
  msgid "An Option"
3365
  msgstr ""
3366
 
3367
+ #: pro/classes/views/settings/form.php:126
3368
  #@ formidable
3369
  msgid "Radio Buttons"
3370
  msgstr ""
3371
 
3372
+ #: classes/helpers/FrmFieldsHelper.php:62
3373
+ #: classes/helpers/FrmFieldsHelper.php:64
3374
+ #: pro/classes/views/settings/form.php:127
3375
+ #: pro/classes/views/settings/form.php:133
3376
  #@ formidable
3377
  msgid "Option 1"
3378
  msgstr ""
3379
 
3380
+ #: classes/helpers/FrmFieldsHelper.php:62
3381
+ #: pro/classes/views/settings/form.php:128
3382
+ #: pro/classes/views/settings/form.php:134
3383
  #@ formidable
3384
  msgid "Option 2"
3385
  msgstr ""
3386
 
3387
+ #: pro/classes/views/settings/form.php:132
3388
  #@ formidable
3389
  msgid "Check Boxes"
3390
  msgstr ""
3391
 
3392
+ #: pro/classes/views/settings/form.php:138
3393
  #@ formidable
3394
  msgid "Text Area"
3395
  msgstr ""
3396
 
3397
+ #: pro/classes/views/settings/form.php:140
3398
  #@ formidable
3399
  msgid "Another field with a description"
3400
  msgstr ""
3401
 
3402
+ #: pro/classes/views/settings/form.php:144
3403
  #@ formidable
3404
  msgid "Rich Text Area"
3405
  msgstr ""
3409
  msgid "Import/Export"
3410
  msgstr ""
3411
 
3412
+ #: pro/classes/controllers/FrmProEntriesController.php:285
3413
+ #: pro/classes/views/frmpro-entries/list.php:5
3414
  #: pro/classes/views/shared/import_form.php:13
3415
  #@ formidable
3416
  msgid "Import"
3451
  msgid "Include the following data types in your export file"
3452
  msgstr ""
3453
 
 
 
 
 
 
3454
  #: pro/classes/views/shared/import_form.php:54
3455
  #@ formidable
3456
  msgid "Select forms (optional)"
3457
  msgstr ""
3458
 
 
 
 
 
 
3459
  #: pro/classes/views/shared/import_form.php:64
3460
  #@ formidable
3461
  msgid "Export Selection"
3462
  msgstr ""
3463
 
3464
+ #: classes/views/frm-settings/form.php:43
3465
  #@ formidable
3466
  msgid "Stylesheets"
3467
  msgstr ""
3468
 
3469
+ #: classes/views/frm-settings/form.php:46
3470
  #@ formidable
3471
  msgid "Load Formidable styling"
3472
  msgstr ""
3473
 
3474
+ #: classes/views/frm-settings/form.php:48
3475
  #@ formidable
3476
  msgid "on every page of your site"
3477
  msgstr ""
3478
 
3479
+ #: classes/views/frm-settings/form.php:49
3480
  #@ formidable
3481
  msgid "only on applicable pages"
3482
  msgstr ""
3483
 
3484
+ #: classes/views/frm-settings/form.php:50
3485
  #@ formidable
3486
  msgid "Don't use Formidable styling on any page"
3487
  msgstr ""
3488
 
3489
+ #: classes/views/frm-settings/form.php:130
3490
  #@ formidable
3491
  msgid "Failed or Duplicate Entry Message"
3492
  msgstr ""
3493
 
3494
+ #: classes/controllers/FrmAppController.php:106
3495
+ #@ formidable
3496
+ msgid "Your Formidable database needs to be updated.<br/>Please deactivate and reactivate the plugin to fix this or"
3497
+ msgstr ""
3498
+
3499
+ #: classes/controllers/FrmAppController.php:106
3500
+ #@ formidable
3501
+ msgid "Update Now"
3502
+ msgstr ""
3503
+
3504
+ #: classes/models/FrmSettings.php:107
3505
+ #@ formidable
3506
+ msgid "We're sorry. It looks like you've already submitted that."
3507
+ msgstr ""
3508
+
3509
+ #: classes/views/frm-forms/add_field.php:61
3510
+ #@ formidable
3511
+ msgid "Please add options from the WordPress \"Categories\" page"
3512
+ msgstr ""
3513
+
3514
+ #: classes/views/frm-forms/add_field.php:127
3515
+ #@ formidable
3516
+ msgid "None"
3517
+ msgstr ""
3518
+
3519
+ #: classes/views/frm-forms/footer.php:25
3520
+ #: classes/views/frm-forms/new-field-js.php:31
3521
+ #@ formidable
3522
+ msgid "Click here to add optional description or instructions"
3523
+ msgstr ""
3524
+
3525
+ #: pro/classes/helpers/FrmProFieldsHelper.php:316
3526
+ #@ formidable
3527
+ msgid "No Categories"
3528
+ msgstr ""
3529
+
3530
+ #: pro/classes/views/frmpro-entries/loading.php:4
3531
+ #@ formidable
3532
+ msgid "Uploading Files. Please Wait."
3533
+ msgstr ""
3534
+
3535
+ #: pro/classes/views/frmpro-fields/dynamic-options.php:2
3536
+ #@ formidable
3537
+ msgid "Import Data from"
3538
+ msgstr ""
3539
+
3540
+ #: pro/classes/views/frmpro-fields/options-form.php:54
3541
+ #@ formidable
3542
+ msgid "start time"
3543
+ msgstr ""
3544
+
3545
+ #: pro/classes/views/frmpro-fields/options-form.php:57
3546
+ #@ formidable
3547
+ msgid "end time"
3548
+ msgstr ""
3549
+
3550
+ #: pro/classes/views/frmpro-fields/options-form.php:201
3551
+ #@ formidable
3552
+ msgid "Exclude categories"
3553
+ msgstr ""
3554
+
3555
+ #: pro/classes/views/frmpro-forms/add_form_options.php:16
3556
+ #: pro/classes/views/frmpro-forms/post_options.php:15
3557
+ #@ formidable
3558
+ msgid "Post Type"
3559
+ msgstr ""
3560
+
3561
+ #: classes/widgets/FrmShowForm.php:59
3562
+ #@ formidable
3563
+ msgid "If your text fields are too big for your sidebar insert a size here."
3564
+ msgstr ""
3565
+
3566
+ #: classes/helpers/FrmAppHelper.php:224
3567
+ #: classes/helpers/FrmFieldsHelper.php:54
3568
+ #: classes/models/FrmEntry.php:262
3569
+ #: pro/classes/views/settings/form.php:104
3570
+ #@ formidable
3571
+ msgid "This field cannot be blank"
3572
+ msgstr ""
3573
+
3574
+ #: classes/helpers/FrmAppHelper.php:229
3575
+ #: pro/classes/models/FrmProEntryMeta.php:219
3576
+ #@ formidable
3577
+ msgid "is invalid"
3578
+ msgstr ""
3579
+
3580
+ #: classes/helpers/FrmFieldsHelper.php:54
3581
+ #: pro/classes/models/FrmProEntryMeta.php:219
3582
+ #@ formidable
3583
+ msgid "This field is invalid"
3584
+ msgstr ""
3585
+
3586
+ #: classes/models/FrmSettings.php:103
3587
+ #@ formidable
3588
+ msgid "There was a problem with your submission. Errors are marked below."
3589
+ msgstr ""
3590
+
3591
+ #: classes/templates/contact.php:45
3592
+ #@ formidable
3593
+ msgid "Please enter a valid website"
3594
+ msgstr ""
3595
+
3596
+ #: classes/views/frm-settings/form.php:114
3597
+ #@ formidable
3598
+ msgid "Incorrect Field"
3599
+ msgstr ""
3600
+
3601
+ #: classes/views/frm-settings/form.php:114
3602
+ #@ formidable
3603
+ msgid "The message seen when a field response is either incorrect or missing."
3604
+ msgstr ""
3605
+
3606
+ #: pro/classes/models/FrmProSettings.php:188
3607
+ #@ formidable
3608
+ msgid "Your submission was successfully saved."
3609
+ msgstr ""
3610
+
3611
+ #: classes/views/frm-settings/form.php:17
3612
+ #@ formidable
3613
+ msgid "Form Styling"
3614
+ msgstr ""
3615
+
3616
+ #: classes/controllers/FrmFormsController.php:22
3617
+ #: classes/views/frm-forms/new-selection.php:3
3618
+ #: classes/views/frm-forms/new-selection.php:10
3619
+ #: classes/views/frm-forms/new.php:3
3620
+ #@ formidable
3621
+ msgid "Add New Form"
3622
+ msgstr ""
3623
+
3624
+ #: classes/helpers/FrmAppHelper.php:45
3625
+ #@ formidable
3626
+ msgid "Add/Edit Forms and Templates"
3627
+ msgstr ""
3628
+
3629
+ #: classes/helpers/FrmAppHelper.php:51
3630
+ #@ formidable
3631
+ msgid "Add Entries from Admin Area"
3632
+ msgstr ""
3633
+
3634
+ #: classes/helpers/FrmAppHelper.php:55
3635
+ #@ formidable
3636
+ msgid "Add/Edit Custom Displays"
3637
+ msgstr ""
3638
+
3639
+ #: classes/views/frm-entries/list.php:3
3640
+ #@ formidable
3641
+ msgid "Pro Form Entries"
3642
+ msgstr ""
3643
+
3644
+ #: classes/views/frm-forms/list.php:3
3645
+ #@ formidable
3646
+ msgid "Form Templates"
3647
+ msgstr ""
3648
+
3649
+ #: classes/views/frm-forms/list.php:5
3650
+ #: pro/classes/views/displays/edit.php:5
3651
+ #: pro/classes/views/displays/list.php:5
3652
+ #: pro/classes/views/frmpro-entries/list.php:4
3653
+ #@ formidable
3654
+ msgid "Add New"
3655
+ msgstr ""
3656
+
3657
+ #: classes/views/frm-settings/form.php:3
3658
+ #@ formidable
3659
+ msgid "Form Settings"
3660
+ msgstr ""
3661
+
3662
+ #: classes/views/frm-statistics/list.php:3
3663
+ #@ formidable
3664
+ msgid "Pro Form Statistics"
3665
+ msgstr ""
3666
+
3667
+ #: pro/classes/views/frmpro-entries/new-selection.php:3
3668
+ #@ formidable
3669
+ msgid "Add New Entry"
3670
+ msgstr ""
3671
+
3672
+ #: pro/classes/views/frmpro-entries/new.php:3
3673
+ #, php-format
3674
+ #@ formidable
3675
+ msgid "Add New %1$s Entry"
3676
+ msgstr ""
3677
+
3678
+ #: pro/classes/views/frmpro-entries/show.php:13
3679
+ #@ formidable
3680
+ msgid "Entry Actions"
3681
+ msgstr ""
3682
+
3683
+ #: pro/classes/views/frmpro-entries/import.php:94
3684
+ #: pro/classes/views/frmpro-entries/show.php:72
3685
+ #@ formidable
3686
+ msgid "Created at"
3687
+ msgstr ""
3688
+
3689
+ #: pro/classes/views/frmpro-entries/show.php:75
3690
+ #: pro/classes/views/frmpro-entries/show.php:83
3691
+ #@ formidable
3692
+ msgid "by"
3693
+ msgstr ""
3694
+
3695
+ #: pro/classes/views/frmpro-entries/show.php:81
3696
+ #@ formidable
3697
+ msgid "Last Updated"
3698
+ msgstr ""
3699
+
3700
+ #: pro/classes/views/frmpro-statistics/show.php:3
3701
+ #@ formidable
3702
+ msgid "Form Reports"
3703
+ msgstr ""
3704
+
3705
+ #: classes/views/frm-forms/insert_form_popup.php:47
3706
+ #@ formidable
3707
+ msgid "Select custom display to insert"
3708
+ msgstr ""
3709
+
3710
+ #: pro/classes/controllers/FrmProDisplaysController.php:31
3711
+ #: pro/classes/views/displays/list.php:3
3712
+ #: pro/classes/views/shared/import_form.php:49
3713
+ #@ formidable
3714
+ msgid "Custom Displays"
3715
+ msgstr ""
3716
+
3717
+ #: pro/classes/controllers/FrmProDisplaysController.php:107
3718
+ #@ formidable
3719
+ msgid "Custom Display was Successfully Created"
3720
+ msgstr ""
3721
+
3722
+ #: pro/classes/controllers/FrmProDisplaysController.php:109
3723
+ #@ formidable
3724
+ msgid "Oops! There was a problem saving your Custom Display. Please try deactivating and reactivating Formidable to correct the problem."
3725
+ msgstr ""
3726
+
3727
+ #: pro/classes/controllers/FrmProDisplaysController.php:143
3728
+ #@ formidable
3729
+ msgid "Custom Display was Successfully Updated"
3730
+ msgstr ""
3731
+
3732
+ #: pro/classes/controllers/FrmProDisplaysController.php:153
3733
+ #@ formidable
3734
+ msgid "Custom Display was Successfully Copied"
3735
+ msgstr ""
3736
+
3737
+ #: pro/classes/controllers/FrmProDisplaysController.php:165
3738
+ #@ formidable
3739
+ msgid "Custom Display was Successfully Deleted"
3740
+ msgstr ""
3741
+
3742
+ #: pro/classes/views/displays/edit.php:3
3743
+ #@ formidable
3744
+ msgid "Edit Custom Display"
3745
+ msgstr ""
3746
+
3747
+ #: pro/classes/views/displays/new.php:3
3748
+ #@ formidable
3749
+ msgid "Add New Custom Display"
3750
+ msgstr ""
3751
+
3752
+ #: pro/classes/views/settings/form.php:21
3753
+ #@ formidable
3754
+ msgid "Hide field and entry keys to prevent them from being edited. Uncheck this box to edit the saved keys for use in your template."
3755
+ msgstr ""
3756
+
3757
+ #: pro/classes/views/shared/import_form.php:56
3758
+ #@ formidable
3759
+ msgid "If you would like to include ONLY specific forms and the entries and custom displays related to those forms, select those forms here"
3760
+ msgstr ""
3761
+
3762
+ #: classes/views/frm-forms/add_field.php:142
3763
+ #@ formidable
3764
+ msgid "Error message for blank required field"
3765
+ msgstr ""
3766
+
3767
+ #: classes/views/frm-forms/add_field.php:147
3768
+ #@ formidable
3769
+ msgid "Error message for invalid submission"
3770
+ msgstr ""
3771
+
3772
+ #: classes/views/frm-forms/add_field_links.php:4
3773
+ #@ formidable
3774
+ msgid "Insert into a post, page or text widget"
3775
+ msgstr ""
3776
+
3777
+ #: pro/classes/controllers/FrmProDisplaysController.php:179
3778
+ #@ formidable
3779
+ msgid "No displays were specified"
3780
+ msgstr ""
3781
+
3782
+ #: pro/classes/controllers/FrmProEntriesController.php:1215
3783
+ #@ formidable
3784
+ msgid "There was a error deleting that entry"
3785
+ msgstr ""
3786
+
3787
+ #: pro/classes/controllers/FrmProFormsController.php:134
3788
+ #@ formidable
3789
+ msgid "Post Meta"
3790
+ msgstr ""
3791
+
3792
+ #: pro/classes/helpers/FrmProAppHelper.php:98
3793
+ #@ formidable
3794
+ msgid "at"
3795
+ msgstr ""
3796
+
3797
+ #: pro/classes/helpers/FrmProEntriesHelper.php:89
3798
+ #@ formidable
3799
+ msgid "Add New Entry to this form"
3800
+ msgstr ""
3801
+
3802
+ #: pro/classes/helpers/FrmProFieldsHelper.php:879
3803
+ #@ formidable
3804
+ msgid "Default Email Message"
3805
+ msgstr ""
3806
+
3807
+ #: pro/classes/views/displays/form.php:261
3808
+ #@ formidable
3809
+ msgid "Message if nothing to display"
3810
+ msgstr ""
3811
+
3812
+ #: pro/classes/views/displays/form.php:273
3813
+ #@ formidable
3814
+ msgid "Copy these display settings to other blogs when Formidable Pro is activated. <br/>Note: Use only field keys in the content box(es) above."
3815
+ msgstr ""
3816
+
3817
+ #: pro/classes/views/displays/tags.php:43
3818
+ #@ formidable
3819
+ msgid "Automatically turn URLs and emails into links."
3820
+ msgstr ""
3821
+
3822
+ #: pro/classes/views/frmpro-entries/show.php:117
3823
+ #@ formidable
3824
+ msgid "Comments/Notes"
3825
+ msgstr ""
3826
+
3827
+ #: pro/classes/views/frmpro-entries/show.php:133
3828
+ #@ formidable
3829
+ msgid "Add Note/Comment"
3830
+ msgstr ""
3831
+
3832
+ #: pro/classes/views/frmpro-entries/show.php:144
3833
+ #@ formidable
3834
+ msgid "Comment/Note"
3835
+ msgstr ""
3836
+
3837
+ #: pro/classes/views/frmpro-entries/show.php:151
3838
+ #@ formidable
3839
+ msgid "Send Emails to"
3840
+ msgstr ""
3841
+
3842
+ #: pro/classes/views/frmpro-fields/options-form.php:174
3843
+ #@ formidable
3844
+ msgid "Taxonomy"
3845
+ msgstr ""
3846
+
3847
+ #: pro/classes/views/frmpro-fields/options-form.php:177
3848
+ #: pro/classes/views/frmpro-forms/comment_options.php:17
3849
+ #: pro/classes/views/frmpro-forms/post_options.php:32
3850
+ #@ formidable
3851
+ msgid "Excerpt"
3852
+ msgstr ""
3853
+
3854
+ #: pro/classes/views/frmpro-fields/options-form.php:179
3855
+ #: pro/classes/views/frmpro-forms/post_options.php:33
3856
+ #@ formidable
3857
+ msgid "Slug"
3858
+ msgstr ""
3859
+
3860
+ #: pro/classes/views/frmpro-fields/options-form.php:180
3861
+ #@ formidable
3862
+ msgid "Custom Field"
3863
+ msgstr ""
3864
+
3865
+ #: pro/classes/views/frmpro-fields/options-form.php:182
3866
+ #: pro/classes/views/frmpro-forms/comment_options.php:19
3867
+ #: pro/classes/views/frmpro-forms/post_options.php:34
3868
+ #@ formidable
3869
+ msgid "Post Date"
3870
+ msgstr ""
3871
+
3872
+ #: pro/classes/views/frmpro-fields/options-form.php:184
3873
+ #: pro/classes/views/frmpro-forms/comment_options.php:20
3874
+ #: pro/classes/views/frmpro-forms/post_options.php:35
3875
+ #@ formidable
3876
+ msgid "Post Status"
3877
+ msgstr ""
3878
+
3879
+ #: pro/classes/views/frmpro-forms/_comment_meta_row.php:4
3880
+ #@ formidable
3881
+ msgid "Add Comment Meta"
3882
+ msgstr ""
3883
+
3884
+ #: pro/classes/views/frmpro-forms/_comment_meta_row.php:6
3885
+ #: pro/classes/views/frmpro-forms/_custom_field_row.php:6
3886
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:13
3887
+ #@ formidable
3888
+ msgid "from"
3889
+ msgstr ""
3890
+
3891
+ #: pro/classes/views/frmpro-forms/_custom_field_row.php:4
3892
+ #@ formidable
3893
+ msgid "Add Custom Field"
3894
+ msgstr ""
3895
+
3896
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:4
3897
+ #@ formidable
3898
+ msgid "Add Taxonomy"
3899
+ msgstr ""
3900
+
3901
+ #: pro/classes/views/frmpro-forms/_post_taxonomy_row.php:31
3902
+ #@ formidable
3903
+ msgid "Exclude options"
3904
+ msgstr ""
3905
+
3906
+ #: pro/classes/views/frmpro-forms/add_form_options.php:30
3907
+ #: pro/classes/views/frmpro-forms/add_form_options.php:40
3908
+ #: pro/classes/views/frmpro-forms/add_form_options.php:51
3909
+ #@ formidable
3910
+ msgid "Logged-in Users"
3911
+ msgstr ""
3912
+
3913
+ #: pro/classes/views/frmpro-forms/comment_options.php:4
3914
+ #@ formidable
3915
+ msgid "Comment Creation Options"
3916
+ msgstr ""
3917
+
3918
+ #: pro/classes/views/frmpro-forms/comment_options.php:10
3919
+ #@ formidable
3920
+ msgid "Create a Comment"
3921
+ msgstr ""
3922
+
3923
+ #: pro/classes/views/frmpro-forms/comment_options.php:11
3924
+ #@ formidable
3925
+ msgid "Create WordPress comments with this form"
3926
+ msgstr ""
3927
+
3928
+ #: pro/classes/views/frmpro-forms/comment_options.php:16
3929
+ #: pro/classes/views/frmpro-forms/post_options.php:31
3930
+ #@ formidable
3931
+ msgid "Post Content"
3932
+ msgstr ""
3933
+
3934
+ #: pro/classes/views/frmpro-forms/comment_options.php:18
3935
+ #@ formidable
3936
+ msgid "Author Email"
3937
+ msgstr ""
3938
+
3939
+ #: pro/classes/views/frmpro-forms/comment_options.php:61
3940
+ #@ formidable
3941
+ msgid "Comment Meta"
3942
+ msgstr ""
3943
+
3944
+ #: pro/classes/views/frmpro-forms/post_options.php:4
3945
+ #@ formidable
3946
+ msgid "Post Creation Options"
3947
+ msgstr ""
3948
+
3949
+ #: pro/classes/views/frmpro-forms/post_options.php:10
3950
+ #@ formidable
3951
+ msgid "Create a Post"
3952
+ msgstr ""
3953
+
3954
+ #: pro/classes/views/frmpro-forms/post_options.php:11
3955
+ #@ formidable
3956
+ msgid "Create a WordPress post with this form"
3957
+ msgstr ""
3958
+
3959
+ #: pro/classes/views/frmpro-forms/post_options.php:76
3960
+ #@ formidable
3961
+ msgid "Post Taxonomies"
3962
+ msgstr ""
3963
+
3964
+ #: pro/classes/views/frmpro-forms/post_options.php:89
3965
+ #@ formidable
3966
+ msgid "Custom Fields"
3967
+ msgstr ""
3968
+
3969
+ #: pro/classes/views/displays/where_row.php:16
3970
+ #@ formidable
3971
+ msgid "NOT like"
3972
+ msgstr ""
3973
+
3974
+ #: pro/classes/views/frmpro-entries/edit.php:15
3975
+ #: pro/classes/views/frmpro-entries/new.php:15
3976
+ #@ formidable
3977
+ msgid "Publish"
3978
+ msgstr ""
3979
+
3980
+ #: pro/classes/views/frmpro-entries/edit.php:33
3981
+ #@ formidable
3982
+ msgid "Are you sure you want to delete this entry?"
3983
+ msgstr ""
3984
+
3985
+ #: pro/classes/views/frmpro-forms/instructions.php:18
3986
+ #@ formidable
3987
+ msgid "Replace 'whatever' with the parameter name. In url.com?product=form, the variable is 'product'. You would use [get param=product] in your field."
3988
+ msgstr ""
3989
+
3990
+ #: pro/classes/views/settings/formroller.php:175
3991
+ #@ formidable
3992
+ msgid "Bottom Margin"
3993
+ msgstr ""
3994
+
3995
+ #: classes/controllers/FrmFieldsController.php:196
3996
+ #@ formidable
3997
+ msgid "Countries"
3998
+ msgstr ""
3999
+
4000
+ #: classes/controllers/FrmFieldsController.php:199
4001
+ #@ formidable
4002
+ msgid "U.S. States"
4003
+ msgstr ""
4004
+
4005
+ #: classes/controllers/FrmFieldsController.php:200
4006
+ #@ formidable
4007
+ msgid "U.S. State Abbreviations"
4008
+ msgstr ""
4009
+
4010
+ #: classes/controllers/FrmFieldsController.php:202
4011
+ #@ formidable
4012
+ msgid "Age"
4013
+ msgstr ""
4014
+
4015
+ #: classes/controllers/FrmFieldsController.php:203
4016
+ #@ formidable
4017
+ msgid "Under 18"
4018
+ msgstr ""
4019
+
4020
+ #: classes/controllers/FrmFieldsController.php:203
4021
+ #@ formidable
4022
+ msgid "18-24"
4023
+ msgstr ""
4024
+
4025
+ #: classes/controllers/FrmFieldsController.php:203
4026
+ #@ formidable
4027
+ msgid "25-34"
4028
+ msgstr ""
4029
+
4030
+ #: classes/controllers/FrmFieldsController.php:204
4031
+ #@ formidable
4032
+ msgid "35-44"
4033
+ msgstr ""
4034
+
4035
+ #: classes/controllers/FrmFieldsController.php:204
4036
+ #@ formidable
4037
+ msgid "45-54"
4038
+ msgstr ""
4039
+
4040
+ #: classes/controllers/FrmFieldsController.php:204
4041
+ #@ formidable
4042
+ msgid "55-64"
4043
+ msgstr ""
4044
+
4045
+ #: classes/controllers/FrmFieldsController.php:205
4046
+ #@ formidable
4047
+ msgid "65 or Above"
4048
+ msgstr ""
4049
+
4050
+ #: classes/controllers/FrmFieldsController.php:205
4051
+ #@ formidable
4052
+ msgid "Prefer Not to Answer"
4053
+ msgstr ""
4054
+
4055
+ #: classes/controllers/FrmFieldsController.php:208
4056
+ #@ formidable
4057
+ msgid "Satisfaction"
4058
+ msgstr ""
4059
+
4060
+ #: classes/controllers/FrmFieldsController.php:209
4061
+ #@ formidable
4062
+ msgid "Very Satisfied"
4063
+ msgstr ""
4064
+
4065
+ #: classes/controllers/FrmFieldsController.php:209
4066
+ #@ formidable
4067
+ msgid "Satisfied"
4068
+ msgstr ""
4069
+
4070
+ #: classes/controllers/FrmFieldsController.php:209
4071
+ #: classes/controllers/FrmFieldsController.php:214
4072
+ #: classes/controllers/FrmFieldsController.php:219
4073
+ #@ formidable
4074
+ msgid "Neutral"
4075
+ msgstr ""
4076
+
4077
+ #: classes/controllers/FrmFieldsController.php:210
4078
+ #@ formidable
4079
+ msgid "Unsatisfied"
4080
+ msgstr ""
4081
+
4082
+ #: classes/controllers/FrmFieldsController.php:210
4083
+ #@ formidable
4084
+ msgid "Very Unsatisfied"
4085
+ msgstr ""
4086
+
4087
+ #: classes/controllers/FrmFieldsController.php:210
4088
+ #: classes/controllers/FrmFieldsController.php:215
4089
+ #: classes/controllers/FrmFieldsController.php:220
4090
+ #@ formidable
4091
+ msgid "N/A"
4092
+ msgstr ""
4093
+
4094
+ #: classes/controllers/FrmFieldsController.php:213
4095
+ #@ formidable
4096
+ msgid "Importance"
4097
+ msgstr ""
4098
+
4099
+ #: classes/controllers/FrmFieldsController.php:214
4100
+ #@ formidable
4101
+ msgid "Very Important"
4102
+ msgstr ""
4103
+
4104
+ #: classes/controllers/FrmFieldsController.php:214
4105
+ #@ formidable
4106
+ msgid "Important"
4107
+ msgstr ""
4108
+
4109
+ #: classes/controllers/FrmFieldsController.php:215
4110
+ #@ formidable
4111
+ msgid "Somewhat Important"
4112
+ msgstr ""
4113
+
4114
+ #: classes/controllers/FrmFieldsController.php:215
4115
+ #@ formidable
4116
+ msgid "Not at all Important"
4117
+ msgstr ""
4118
+
4119
+ #: classes/controllers/FrmFieldsController.php:218
4120
+ #@ formidable
4121
+ msgid "Agreement"
4122
+ msgstr ""
4123
+
4124
+ #: classes/controllers/FrmFieldsController.php:219
4125
+ #@ formidable
4126
+ msgid "Strongly Agree"
4127
+ msgstr ""
4128
+
4129
+ #: classes/controllers/FrmFieldsController.php:219
4130
+ #@ formidable
4131
+ msgid "Agree"
4132
+ msgstr ""
4133
+
4134
+ #: classes/controllers/FrmFieldsController.php:220
4135
+ #@ formidable
4136
+ msgid "Disagree"
4137
+ msgstr ""
4138
+
4139
+ #: classes/controllers/FrmFieldsController.php:220
4140
+ #@ formidable
4141
+ msgid "Strongly Disagree"
4142
+ msgstr ""
4143
+
4144
+ #: classes/helpers/FrmAppHelper.php:311
4145
+ #@ formidable
4146
+ msgid "Afghanistan"
4147
+ msgstr "Afeganistão"
4148
+
4149
+ #: classes/helpers/FrmAppHelper.php:311
4150
+ #@ formidable
4151
+ msgid "Albania"
4152
+ msgstr "Albânia"
4153
+
4154
+ #: classes/helpers/FrmAppHelper.php:311
4155
+ #@ formidable
4156
+ msgid "Algeria"
4157
+ msgstr "Argélia"
4158
+
4159
+ #: classes/helpers/FrmAppHelper.php:312
4160
+ #@ formidable
4161
+ msgid "American Samoa"
4162
+ msgstr "Samoa Americana"
4163
+
4164
+ #: classes/helpers/FrmAppHelper.php:312
4165
+ #@ formidable
4166
+ msgid "Andorra"
4167
+ msgstr "Andorra"
4168
+
4169
+ #: classes/helpers/FrmAppHelper.php:312
4170
+ #@ formidable
4171
+ msgid "Angola"
4172
+ msgstr "Angola"
4173
+
4174
+ #: classes/helpers/FrmAppHelper.php:313
4175
+ #@ formidable
4176
+ msgid "Anguilla"
4177
+ msgstr "Anguilla"
4178
+
4179
+ #: classes/helpers/FrmAppHelper.php:313
4180
+ #@ formidable
4181
+ msgid "Antarctica"
4182
+ msgstr "Antártica"
4183
+
4184
+ #: classes/helpers/FrmAppHelper.php:313
4185
+ #@ formidable
4186
+ msgid "Antigua and Barbuda"
4187
+ msgstr "Antígua e Barbuda"
4188
+
4189
+ #: classes/helpers/FrmAppHelper.php:314
4190
+ #@ formidable
4191
+ msgid "Argentina"
4192
+ msgstr "Argentina"
4193
+
4194
+ #: classes/helpers/FrmAppHelper.php:314
4195
+ #@ formidable
4196
+ msgid "Armenia"
4197
+ msgstr "Armênia"
4198
+
4199
+ #: classes/helpers/FrmAppHelper.php:314
4200
+ #@ formidable
4201
+ msgid "Aruba"
4202
+ msgstr "Aruba"
4203
+
4204
+ #: classes/helpers/FrmAppHelper.php:315
4205
+ #@ formidable
4206
+ msgid "Australia"
4207
+ msgstr "Austrália"
4208
+
4209
+ #: classes/helpers/FrmAppHelper.php:315
4210
+ #@ formidable
4211
+ msgid "Austria"
4212
+ msgstr "Áustria"
4213
+
4214
+ #: classes/helpers/FrmAppHelper.php:315
4215
+ #@ formidable
4216
+ msgid "Azerbaijan"
4217
+ msgstr "Azerbaijão"
4218
+
4219
+ #: classes/helpers/FrmAppHelper.php:316
4220
+ #@ formidable
4221
+ msgid "Bahamas"
4222
+ msgstr "Bahamas"
4223
+
4224
+ #: classes/helpers/FrmAppHelper.php:316
4225
+ #@ formidable
4226
+ msgid "Bahrain"
4227
+ msgstr "Bahrain"
4228
+
4229
+ #: classes/helpers/FrmAppHelper.php:316
4230
+ #@ formidable
4231
+ msgid "Bangladesh"
4232
+ msgstr "Bangladesh"
4233
+
4234
+ #: classes/helpers/FrmAppHelper.php:317
4235
+ #@ formidable
4236
+ msgid "Barbados"
4237
+ msgstr "Barbados"
4238
+
4239
+ #: classes/helpers/FrmAppHelper.php:317
4240
+ #@ formidable
4241
+ msgid "Belarus"
4242
+ msgstr "Belarus"
4243
+
4244
+ #: classes/helpers/FrmAppHelper.php:317
4245
+ #@ formidable
4246
+ msgid "Belgium"
4247
+ msgstr "Bélgica"
4248
+
4249
+ #: classes/helpers/FrmAppHelper.php:318
4250
+ #@ formidable
4251
+ msgid "Belize"
4252
+ msgstr "Belize"
4253
+
4254
+ #: classes/helpers/FrmAppHelper.php:318
4255
+ #@ formidable
4256
+ msgid "Benin"
4257
+ msgstr "Benin"
4258
+
4259
+ #: classes/helpers/FrmAppHelper.php:318
4260
+ #@ formidable
4261
+ msgid "Bermuda"
4262
+ msgstr "Bermudas"
4263
+
4264
+ #: classes/helpers/FrmAppHelper.php:319
4265
+ #@ formidable
4266
+ msgid "Bhutan"
4267
+ msgstr "Butão"
4268
+
4269
+ #: classes/helpers/FrmAppHelper.php:319
4270
+ #@ formidable
4271
+ msgid "Bolivia"
4272
+ msgstr "Bolívia"
4273
+
4274
+ #: classes/helpers/FrmAppHelper.php:319
4275
+ #@ formidable
4276
+ msgid "Bosnia and Herzegovina"
4277
+ msgstr "Bósnia e Herzegovina"
4278
+
4279
+ #: classes/helpers/FrmAppHelper.php:320
4280
+ #@ formidable
4281
+ msgid "Botswana"
4282
+ msgstr "Botswana"
4283
+
4284
+ #: classes/helpers/FrmAppHelper.php:320
4285
+ #@ formidable
4286
+ msgid "Brazil"
4287
+ msgstr "Brasil"
4288
+
4289
+ #: classes/helpers/FrmAppHelper.php:320
4290
+ #@ formidable
4291
+ msgid "Brunei"
4292
+ msgstr "Brunei"
4293
+
4294
+ #: classes/helpers/FrmAppHelper.php:321
4295
+ #@ formidable
4296
+ msgid "Bulgaria"
4297
+ msgstr "Bulgária"
4298
+
4299
+ #: classes/helpers/FrmAppHelper.php:321
4300
+ #@ formidable
4301
+ msgid "Burkina Faso"
4302
+ msgstr "Burkina Faso"
4303
+
4304
+ #: classes/helpers/FrmAppHelper.php:321
4305
+ #@ formidable
4306
+ msgid "Burundi"
4307
+ msgstr "Burundi"
4308
+
4309
+ #: classes/helpers/FrmAppHelper.php:322
4310
+ #@ formidable
4311
+ msgid "Cambodia"
4312
+ msgstr "Camboja"
4313
+
4314
+ #: classes/helpers/FrmAppHelper.php:322
4315
+ #@ formidable
4316
+ msgid "Cameroon"
4317
+ msgstr "Camarões"
4318
+
4319
+ #: classes/helpers/FrmAppHelper.php:322
4320
+ #@ formidable
4321
+ msgid "Canada"
4322
+ msgstr "Canadá"
4323
+
4324
+ #: classes/helpers/FrmAppHelper.php:323
4325
+ #@ formidable
4326
+ msgid "Cape Verde"
4327
+ msgstr "Cabo Verde"
4328
+
4329
+ #: classes/helpers/FrmAppHelper.php:323
4330
+ #@ formidable
4331
+ msgid "Cayman Islands"
4332
+ msgstr "Cayman Islands"
4333
+
4334
+ #: classes/helpers/FrmAppHelper.php:323
4335
+ #@ formidable
4336
+ msgid "Central African Republic"
4337
+ msgstr "Central Africano República"
4338
+
4339
+ #: classes/helpers/FrmAppHelper.php:324
4340
+ #@ formidable
4341
+ msgid "Chad"
4342
+ msgstr "Chade"
4343
+
4344
+ #: classes/helpers/FrmAppHelper.php:324
4345
+ #@ formidable
4346
+ msgid "Chile"
4347
+ msgstr "Chile"
4348
+
4349
+ #: classes/helpers/FrmAppHelper.php:324
4350
+ #@ formidable
4351
+ msgid "China"
4352
+ msgstr "China"
4353
+
4354
+ #: classes/helpers/FrmAppHelper.php:325
4355
+ #@ formidable
4356
+ msgid "Colombia"
4357
+ msgstr "Colômbia"
4358
+
4359
+ #: classes/helpers/FrmAppHelper.php:325
4360
+ #@ formidable
4361
+ msgid "Comoros"
4362
+ msgstr "Comores"
4363
+
4364
+ #: classes/helpers/FrmAppHelper.php:325
4365
+ #@ formidable
4366
+ msgid "Congo"
4367
+ msgstr "Congo"
4368
+
4369
+ #: classes/helpers/FrmAppHelper.php:326
4370
+ #@ formidable
4371
+ msgid "Costa Rica"
4372
+ msgstr "Costa Rica"
4373
+
4374
+ #: classes/helpers/FrmAppHelper.php:326
4375
+ #@ formidable
4376
+ msgid "C&ocirc;te d'Ivoire"
4377
+ msgstr ""
4378
+
4379
+ #: classes/helpers/FrmAppHelper.php:326
4380
+ #@ formidable
4381
+ msgid "Croatia"
4382
+ msgstr ""
4383
+
4384
+ #: classes/helpers/FrmAppHelper.php:327
4385
+ #@ formidable
4386
+ msgid "Cuba"
4387
+ msgstr ""
4388
+
4389
+ #: classes/helpers/FrmAppHelper.php:327
4390
+ #@ formidable
4391
+ msgid "Cyprus"
4392
+ msgstr ""
4393
+
4394
+ #: classes/helpers/FrmAppHelper.php:327
4395
+ #@ formidable
4396
+ msgid "Czech Republic"
4397
+ msgstr ""
4398
+
4399
+ #: classes/helpers/FrmAppHelper.php:328
4400
+ #@ formidable
4401
+ msgid "Denmark"
4402
+ msgstr ""
4403
+
4404
+ #: classes/helpers/FrmAppHelper.php:328
4405
+ #@ formidable
4406
+ msgid "Djibouti"
4407
+ msgstr ""
4408
+
4409
+ #: classes/helpers/FrmAppHelper.php:328
4410
+ #@ formidable
4411
+ msgid "Dominica"
4412
+ msgstr ""
4413
+
4414
+ #: classes/helpers/FrmAppHelper.php:329
4415
+ #@ formidable
4416
+ msgid "Dominican Republic"
4417
+ msgstr ""
4418
+
4419
+ #: classes/helpers/FrmAppHelper.php:329
4420
+ #@ formidable
4421
+ msgid "East Timor"
4422
+ msgstr ""
4423
+
4424
+ #: classes/helpers/FrmAppHelper.php:329
4425
+ #@ formidable
4426
+ msgid "Ecuador"
4427
+ msgstr ""
4428
+
4429
+ #: classes/helpers/FrmAppHelper.php:330
4430
+ #@ formidable
4431
+ msgid "Egypt"
4432
+ msgstr ""
4433
+
4434
+ #: classes/helpers/FrmAppHelper.php:330
4435
+ #@ formidable
4436
+ msgid "El Salvador"
4437
+ msgstr ""
4438
+
4439
+ #: classes/helpers/FrmAppHelper.php:330
4440
+ #@ formidable
4441
+ msgid "Equatorial Guinea"
4442
+ msgstr ""
4443
+
4444
+ #: classes/helpers/FrmAppHelper.php:331
4445
+ #@ formidable
4446
+ msgid "Eritrea"
4447
+ msgstr ""
4448
+
4449
+ #: classes/helpers/FrmAppHelper.php:331
4450
+ #@ formidable
4451
+ msgid "Estonia"
4452
+ msgstr ""
4453
+
4454
+ #: classes/helpers/FrmAppHelper.php:331
4455
+ #@ formidable
4456
+ msgid "Ethiopia"
4457
+ msgstr ""
4458
+
4459
+ #: classes/helpers/FrmAppHelper.php:332
4460
+ #@ formidable
4461
+ msgid "Fiji"
4462
+ msgstr ""
4463
+
4464
+ #: classes/helpers/FrmAppHelper.php:332
4465
+ #@ formidable
4466
+ msgid "Finland"
4467
+ msgstr ""
4468
+
4469
+ #: classes/helpers/FrmAppHelper.php:332
4470
+ #@ formidable
4471
+ msgid "France"
4472
+ msgstr ""
4473
+
4474
+ #: classes/helpers/FrmAppHelper.php:333
4475
+ #@ formidable
4476
+ msgid "French Guiana"
4477
+ msgstr ""
4478
+
4479
+ #: classes/helpers/FrmAppHelper.php:333
4480
+ #@ formidable
4481
+ msgid "French Polynesia"
4482
+ msgstr ""
4483
+
4484
+ #: classes/helpers/FrmAppHelper.php:333
4485
+ #@ formidable
4486
+ msgid "Gabon"
4487
+ msgstr ""
4488
+
4489
+ #: classes/helpers/FrmAppHelper.php:334
4490
+ #@ formidable
4491
+ msgid "Gambia"
4492
+ msgstr ""
4493
+
4494
+ #: classes/helpers/FrmAppHelper.php:334
4495
+ #@ formidable
4496
+ msgid "Georgia"
4497
+ msgstr ""
4498
+
4499
+ #: classes/helpers/FrmAppHelper.php:334
4500
+ #@ formidable
4501
+ msgid "Germany"
4502
+ msgstr ""
4503
+
4504
+ #: classes/helpers/FrmAppHelper.php:335
4505
+ #@ formidable
4506
+ msgid "Ghana"
4507
+ msgstr ""
4508
+
4509
+ #: classes/helpers/FrmAppHelper.php:335
4510
+ #@ formidable
4511
+ msgid "Gibraltar"
4512
+ msgstr ""
4513
+
4514
+ #: classes/helpers/FrmAppHelper.php:335
4515
+ #@ formidable
4516
+ msgid "Greece"
4517
+ msgstr ""
4518
+
4519
+ #: classes/helpers/FrmAppHelper.php:336
4520
+ #@ formidable
4521
+ msgid "Greenland"
4522
+ msgstr ""
4523
+
4524
+ #: classes/helpers/FrmAppHelper.php:336
4525
+ #@ formidable
4526
+ msgid "Grenada"
4527
+ msgstr ""
4528
+
4529
+ #: classes/helpers/FrmAppHelper.php:336
4530
+ #@ formidable
4531
+ msgid "Guam"
4532
+ msgstr ""
4533
+
4534
+ #: classes/helpers/FrmAppHelper.php:337
4535
+ #@ formidable
4536
+ msgid "Guatemala"
4537
+ msgstr ""
4538
+
4539
+ #: classes/helpers/FrmAppHelper.php:337
4540
+ #@ formidable
4541
+ msgid "Guinea"
4542
+ msgstr ""
4543
+
4544
+ #: classes/helpers/FrmAppHelper.php:337
4545
+ #@ formidable
4546
+ msgid "Guinea-Bissau"
4547
+ msgstr ""
4548
+
4549
+ #: classes/helpers/FrmAppHelper.php:338
4550
+ #@ formidable
4551
+ msgid "Guyana"
4552
+ msgstr ""
4553
+
4554
+ #: classes/helpers/FrmAppHelper.php:338
4555
+ #@ formidable
4556
+ msgid "Haiti"
4557
+ msgstr ""
4558
+
4559
+ #: classes/helpers/FrmAppHelper.php:338
4560
+ #@ formidable
4561
+ msgid "Honduras"
4562
+ msgstr ""
4563
+
4564
+ #: classes/helpers/FrmAppHelper.php:339
4565
+ #@ formidable
4566
+ msgid "Hong Kong"
4567
+ msgstr ""
4568
+
4569
+ #: classes/helpers/FrmAppHelper.php:339
4570
+ #@ formidable
4571
+ msgid "Hungary"
4572
+ msgstr ""
4573
+
4574
+ #: classes/helpers/FrmAppHelper.php:339
4575
+ #@ formidable
4576
+ msgid "Iceland"
4577
+ msgstr ""
4578
+
4579
+ #: classes/helpers/FrmAppHelper.php:340
4580
+ #@ formidable
4581
+ msgid "India"
4582
+ msgstr ""
4583
+
4584
+ #: classes/helpers/FrmAppHelper.php:340
4585
+ #@ formidable
4586
+ msgid "Indonesia"
4587
+ msgstr ""
4588
+
4589
+ #: classes/helpers/FrmAppHelper.php:340
4590
+ #@ formidable
4591
+ msgid "Iran"
4592
+ msgstr ""
4593
+
4594
+ #: classes/helpers/FrmAppHelper.php:341
4595
+ #@ formidable
4596
+ msgid "Iraq"
4597
+ msgstr ""
4598
+
4599
+ #: classes/helpers/FrmAppHelper.php:341
4600
+ #@ formidable
4601
+ msgid "Ireland"
4602
+ msgstr ""
4603
+
4604
+ #: classes/helpers/FrmAppHelper.php:341
4605
+ #@ formidable
4606
+ msgid "Israel"
4607
+ msgstr ""
4608
+
4609
+ #: classes/helpers/FrmAppHelper.php:342
4610
+ #@ formidable
4611
+ msgid "Italy"
4612
+ msgstr ""
4613
+
4614
+ #: classes/helpers/FrmAppHelper.php:342
4615
+ #@ formidable
4616
+ msgid "Jamaica"
4617
+ msgstr ""
4618
+
4619
+ #: classes/helpers/FrmAppHelper.php:342
4620
+ #@ formidable
4621
+ msgid "Japan"
4622
+ msgstr ""
4623
+
4624
+ #: classes/helpers/FrmAppHelper.php:343
4625
+ #@ formidable
4626
+ msgid "Jordan"
4627
+ msgstr ""
4628
+
4629
+ #: classes/helpers/FrmAppHelper.php:343
4630
+ #@ formidable
4631
+ msgid "Kazakhstan"
4632
+ msgstr ""
4633
+
4634
+ #: classes/helpers/FrmAppHelper.php:343
4635
+ #@ formidable
4636
+ msgid "Kenya"
4637
+ msgstr ""
4638
+
4639
+ #: classes/helpers/FrmAppHelper.php:344
4640
+ #@ formidable
4641
+ msgid "Kiribati"
4642
+ msgstr ""
4643
+
4644
+ #: classes/helpers/FrmAppHelper.php:344
4645
+ #@ formidable
4646
+ msgid "North Korea"
4647
+ msgstr ""
4648
+
4649
+ #: classes/helpers/FrmAppHelper.php:344
4650
+ #@ formidable
4651
+ msgid "South Korea"
4652
+ msgstr ""
4653
+
4654
+ #: classes/helpers/FrmAppHelper.php:345
4655
+ #@ formidable
4656
+ msgid "Kuwait"
4657
+ msgstr ""
4658
+
4659
+ #: classes/helpers/FrmAppHelper.php:345
4660
+ #@ formidable
4661
+ msgid "Kyrgyzstan"
4662
+ msgstr ""
4663
+
4664
+ #: classes/helpers/FrmAppHelper.php:345
4665
+ #@ formidable
4666
+ msgid "Laos"
4667
+ msgstr ""
4668
+
4669
+ #: classes/helpers/FrmAppHelper.php:346
4670
+ #@ formidable
4671
+ msgid "Latvia"
4672
+ msgstr ""
4673
+
4674
+ #: classes/helpers/FrmAppHelper.php:346
4675
+ #@ formidable
4676
+ msgid "Lebanon"
4677
+ msgstr ""
4678
+
4679
+ #: classes/helpers/FrmAppHelper.php:346
4680
+ #@ formidable
4681
+ msgid "Lesotho"
4682
+ msgstr ""
4683
+
4684
+ #: classes/helpers/FrmAppHelper.php:347
4685
+ #@ formidable
4686
+ msgid "Liberia"
4687
+ msgstr ""
4688
+
4689
+ #: classes/helpers/FrmAppHelper.php:347
4690
+ #@ formidable
4691
+ msgid "Libya"
4692
+ msgstr ""
4693
+
4694
+ #: classes/helpers/FrmAppHelper.php:347
4695
+ #@ formidable
4696
+ msgid "Liechtenstein"
4697
+ msgstr ""
4698
+
4699
+ #: classes/helpers/FrmAppHelper.php:348
4700
+ #@ formidable
4701
+ msgid "Lithuania"
4702
+ msgstr ""
4703
+
4704
+ #: classes/helpers/FrmAppHelper.php:348
4705
+ #@ formidable
4706
+ msgid "Luxembourg"
4707
+ msgstr ""
4708
+
4709
+ #: classes/helpers/FrmAppHelper.php:348
4710
+ #@ formidable
4711
+ msgid "Macedonia"
4712
+ msgstr ""
4713
+
4714
+ #: classes/helpers/FrmAppHelper.php:349
4715
+ #@ formidable
4716
+ msgid "Madagascar"
4717
+ msgstr ""
4718
+
4719
+ #: classes/helpers/FrmAppHelper.php:349
4720
+ #@ formidable
4721
+ msgid "Malawi"
4722
+ msgstr ""
4723
+
4724
+ #: classes/helpers/FrmAppHelper.php:349
4725
+ #@ formidable
4726
+ msgid "Malaysia"
4727
+ msgstr ""
4728
+
4729
+ #: classes/helpers/FrmAppHelper.php:350
4730
+ #@ formidable
4731
+ msgid "Maldives"
4732
+ msgstr ""
4733
+
4734
+ #: classes/helpers/FrmAppHelper.php:350
4735
+ #@ formidable
4736
+ msgid "Mali"
4737
+ msgstr ""
4738
+
4739
+ #: classes/helpers/FrmAppHelper.php:350
4740
+ #@ formidable
4741
+ msgid "Malta"
4742
+ msgstr ""
4743
+
4744
+ #: classes/helpers/FrmAppHelper.php:351
4745
+ #@ formidable
4746
+ msgid "Marshall Islands"
4747
+ msgstr ""
4748
+
4749
+ #: classes/helpers/FrmAppHelper.php:351
4750
+ #@ formidable
4751
+ msgid "Mauritania"
4752
+ msgstr ""
4753
+
4754
+ #: classes/helpers/FrmAppHelper.php:351
4755
+ #@ formidable
4756
+ msgid "Mauritius"
4757
+ msgstr ""
4758
+
4759
+ #: classes/helpers/FrmAppHelper.php:352
4760
+ #@ formidable
4761
+ msgid "Mexico"
4762
+ msgstr ""
4763
+
4764
+ #: classes/helpers/FrmAppHelper.php:352
4765
+ #@ formidable
4766
+ msgid "Micronesia"
4767
+ msgstr ""
4768
+
4769
+ #: classes/helpers/FrmAppHelper.php:352
4770
+ #@ formidable
4771
+ msgid "Moldova"
4772
+ msgstr ""
4773
+
4774
+ #: classes/helpers/FrmAppHelper.php:353
4775
+ #@ formidable
4776
+ msgid "Monaco"
4777
+ msgstr ""
4778
+
4779
+ #: classes/helpers/FrmAppHelper.php:353
4780
+ #@ formidable
4781
+ msgid "Mongolia"
4782
+ msgstr ""
4783
+
4784
+ #: classes/helpers/FrmAppHelper.php:353
4785
+ #@ formidable
4786
+ msgid "Montenegro"
4787
+ msgstr ""
4788
+
4789
+ #: classes/helpers/FrmAppHelper.php:354
4790
+ #@ formidable
4791
+ msgid "Montserrat"
4792
+ msgstr ""
4793
+
4794
+ #: classes/helpers/FrmAppHelper.php:354
4795
+ #@ formidable
4796
+ msgid "Morocco"
4797
+ msgstr ""
4798
+
4799
+ #: classes/helpers/FrmAppHelper.php:354
4800
+ #@ formidable
4801
+ msgid "Mozambique"
4802
+ msgstr ""
4803
+
4804
+ #: classes/helpers/FrmAppHelper.php:355
4805
+ #@ formidable
4806
+ msgid "Myanmar"
4807
+ msgstr ""
4808
+
4809
+ #: classes/helpers/FrmAppHelper.php:355
4810
+ #@ formidable
4811
+ msgid "Namibia"
4812
+ msgstr ""
4813
+
4814
+ #: classes/helpers/FrmAppHelper.php:355
4815
+ #@ formidable
4816
+ msgid "Nauru"
4817
+ msgstr ""
4818
+
4819
+ #: classes/helpers/FrmAppHelper.php:356
4820
+ #@ formidable
4821
+ msgid "Nepal"
4822
+ msgstr ""
4823
+
4824
+ #: classes/helpers/FrmAppHelper.php:356
4825
+ #@ formidable
4826
+ msgid "Netherlands"
4827
+ msgstr ""
4828
+
4829
+ #: classes/helpers/FrmAppHelper.php:356
4830
+ #@ formidable
4831
+ msgid "New Zealand"
4832
+ msgstr ""
4833
+
4834
+ #: classes/helpers/FrmAppHelper.php:357
4835
+ #@ formidable
4836
+ msgid "Nicaragua"
4837
+ msgstr ""
4838
+
4839
+ #: classes/helpers/FrmAppHelper.php:357
4840
+ #@ formidable
4841
+ msgid "Niger"
4842
+ msgstr ""
4843
+
4844
+ #: classes/helpers/FrmAppHelper.php:357
4845
+ #@ formidable
4846
+ msgid "Nigeria"
4847
+ msgstr ""
4848
+
4849
+ #: classes/helpers/FrmAppHelper.php:358
4850
+ #@ formidable
4851
+ msgid "Norway"
4852
+ msgstr ""
4853
+
4854
+ #: classes/helpers/FrmAppHelper.php:358
4855
+ #@ formidable
4856
+ msgid "Northern Mariana Islands"
4857
+ msgstr ""
4858
+
4859
+ #: classes/helpers/FrmAppHelper.php:358
4860
+ #@ formidable
4861
+ msgid "Oman"
4862
+ msgstr ""
4863
+
4864
+ #: classes/helpers/FrmAppHelper.php:359
4865
+ #@ formidable
4866
+ msgid "Pakistan"
4867
+ msgstr ""
4868
+
4869
+ #: classes/helpers/FrmAppHelper.php:359
4870
+ #@ formidable
4871
+ msgid "Palau"
4872
+ msgstr ""
4873
+
4874
+ #: classes/helpers/FrmAppHelper.php:359
4875
+ #@ formidable
4876
+ msgid "Palestine"
4877
+ msgstr ""
4878
+
4879
+ #: classes/helpers/FrmAppHelper.php:360
4880
+ #@ formidable
4881
+ msgid "Panama"
4882
+ msgstr ""
4883
+
4884
+ #: classes/helpers/FrmAppHelper.php:360
4885
+ #@ formidable
4886
+ msgid "Papua New Guinea"
4887
+ msgstr ""
4888
+
4889
+ #: classes/helpers/FrmAppHelper.php:360
4890
+ #@ formidable
4891
+ msgid "Paraguay"
4892
+ msgstr ""
4893
+
4894
+ #: classes/helpers/FrmAppHelper.php:361
4895
+ #@ formidable
4896
+ msgid "Peru"
4897
+ msgstr ""
4898
+
4899
+ #: classes/helpers/FrmAppHelper.php:361
4900
+ #@ formidable
4901
+ msgid "Philippines"
4902
+ msgstr ""
4903
+
4904
+ #: classes/helpers/FrmAppHelper.php:361
4905
+ #@ formidable
4906
+ msgid "Poland"
4907
+ msgstr ""
4908
+
4909
+ #: classes/helpers/FrmAppHelper.php:362
4910
+ #@ formidable
4911
+ msgid "Portugal"
4912
+ msgstr ""
4913
+
4914
+ #: classes/helpers/FrmAppHelper.php:362
4915
+ #@ formidable
4916
+ msgid "Puerto Rico"
4917
+ msgstr ""
4918
+
4919
+ #: classes/helpers/FrmAppHelper.php:362
4920
+ #@ formidable
4921
+ msgid "Qatar"
4922
+ msgstr ""
4923
+
4924
+ #: classes/helpers/FrmAppHelper.php:363
4925
+ #@ formidable
4926
+ msgid "Romania"
4927
+ msgstr ""
4928
+
4929
+ #: classes/helpers/FrmAppHelper.php:363
4930
+ #@ formidable
4931
+ msgid "Russia"
4932
+ msgstr ""
4933
+
4934
+ #: classes/helpers/FrmAppHelper.php:363
4935
+ #@ formidable
4936
+ msgid "Rwanda"
4937
+ msgstr ""
4938
+
4939
+ #: classes/helpers/FrmAppHelper.php:364
4940
+ #@ formidable
4941
+ msgid "Saint Kitts and Nevis"
4942
+ msgstr ""
4943
+
4944
+ #: classes/helpers/FrmAppHelper.php:364
4945
+ #@ formidable
4946
+ msgid "Saint Lucia"
4947
+ msgstr ""
4948
+
4949
+ #: classes/helpers/FrmAppHelper.php:365
4950
+ #@ formidable
4951
+ msgid "Saint Vincent and the Grenadines"
4952
+ msgstr ""
4953
+
4954
+ #: classes/helpers/FrmAppHelper.php:365
4955
+ #@ formidable
4956
+ msgid "Samoa"
4957
+ msgstr ""
4958
+
4959
+ #: classes/helpers/FrmAppHelper.php:366
4960
+ #@ formidable
4961
+ msgid "San Marino"
4962
+ msgstr ""
4963
+
4964
+ #: classes/helpers/FrmAppHelper.php:366
4965
+ #@ formidable
4966
+ msgid "Sao Tome and Principe"
4967
+ msgstr ""
4968
+
4969
+ #: classes/helpers/FrmAppHelper.php:366
4970
+ #@ formidable
4971
+ msgid "Saudi Arabia"
4972
+ msgstr ""
4973
+
4974
+ #: classes/helpers/FrmAppHelper.php:367
4975
+ #@ formidable
4976
+ msgid "Senegal"
4977
+ msgstr ""
4978
+
4979
+ #: classes/helpers/FrmAppHelper.php:367
4980
+ #@ formidable
4981
+ msgid "Serbia and Montenegro"
4982
+ msgstr ""
4983
+
4984
+ #: classes/helpers/FrmAppHelper.php:367
4985
+ #@ formidable
4986
+ msgid "Seychelles"
4987
+ msgstr ""
4988
+
4989
+ #: classes/helpers/FrmAppHelper.php:368
4990
+ #@ formidable
4991
+ msgid "Sierra Leone"
4992
+ msgstr ""
4993
+
4994
+ #: classes/helpers/FrmAppHelper.php:368
4995
+ #@ formidable
4996
+ msgid "Singapore"
4997
+ msgstr ""
4998
+
4999
+ #: classes/helpers/FrmAppHelper.php:368
5000
+ #@ formidable
5001
+ msgid "Slovakia"
5002
+ msgstr ""
5003
+
5004
+ #: classes/helpers/FrmAppHelper.php:369
5005
+ #@ formidable
5006
+ msgid "Slovenia"
5007
+ msgstr ""
5008
+
5009
+ #: classes/helpers/FrmAppHelper.php:369
5010
+ #@ formidable
5011
+ msgid "Solomon Islands"
5012
+ msgstr ""
5013
+
5014
+ #: classes/helpers/FrmAppHelper.php:369
5015
+ #@ formidable
5016
+ msgid "Somalia"
5017
+ msgstr ""
5018
+
5019
+ #: classes/helpers/FrmAppHelper.php:370
5020
+ #@ formidable
5021
+ msgid "South Africa"
5022
+ msgstr ""
5023
+
5024
+ #: classes/helpers/FrmAppHelper.php:370
5025
+ #@ formidable
5026
+ msgid "Spain"
5027
+ msgstr ""
5028
+
5029
+ #: classes/helpers/FrmAppHelper.php:370
5030
+ #@ formidable
5031
+ msgid "Sri Lanka"
5032
+ msgstr ""
5033
+
5034
+ #: classes/helpers/FrmAppHelper.php:371
5035
+ #@ formidable
5036
+ msgid "Sudan"
5037
+ msgstr ""
5038
+
5039
+ #: classes/helpers/FrmAppHelper.php:371
5040
+ #@ formidable
5041
+ msgid "Suriname"
5042
+ msgstr ""
5043
+
5044
+ #: classes/helpers/FrmAppHelper.php:371
5045
+ #@ formidable
5046
+ msgid "Swaziland"
5047
+ msgstr ""
5048
+
5049
+ #: classes/helpers/FrmAppHelper.php:372
5050
+ #@ formidable
5051
+ msgid "Sweden"
5052
+ msgstr ""
5053
+
5054
+ #: classes/helpers/FrmAppHelper.php:372
5055
+ #@ formidable
5056
+ msgid "Switzerland"
5057
+ msgstr ""
5058
+
5059
+ #: classes/helpers/FrmAppHelper.php:372
5060
+ #@ formidable
5061
+ msgid "Syria"
5062
+ msgstr ""
5063
+
5064
+ #: classes/helpers/FrmAppHelper.php:373
5065
+ #@ formidable
5066
+ msgid "Taiwan"
5067
+ msgstr ""
5068
+
5069
+ #: classes/helpers/FrmAppHelper.php:373
5070
+ #@ formidable
5071
+ msgid "Tajikistan"
5072
+ msgstr ""
5073
+
5074
+ #: classes/helpers/FrmAppHelper.php:373
5075
+ #@ formidable
5076
+ msgid "Tanzania"
5077
+ msgstr ""
5078
+
5079
+ #: classes/helpers/FrmAppHelper.php:374
5080
+ #@ formidable
5081
+ msgid "Thailand"
5082
+ msgstr ""
5083
+
5084
+ #: classes/helpers/FrmAppHelper.php:374
5085
+ #@ formidable
5086
+ msgid "Togo"
5087
+ msgstr ""
5088
+
5089
+ #: classes/helpers/FrmAppHelper.php:374
5090
+ #@ formidable
5091
+ msgid "Tonga"
5092
+ msgstr ""
5093
+
5094
+ #: classes/helpers/FrmAppHelper.php:375
5095
+ #@ formidable
5096
+ msgid "Trinidad and Tobago"
5097
+ msgstr ""
5098
+
5099
+ #: classes/helpers/FrmAppHelper.php:375
5100
+ #@ formidable
5101
+ msgid "Tunisia"
5102
+ msgstr ""
5103
+
5104
+ #: classes/helpers/FrmAppHelper.php:375
5105
+ #@ formidable
5106
+ msgid "Turkey"
5107
+ msgstr ""
5108
+
5109
+ #: classes/helpers/FrmAppHelper.php:376
5110
+ #@ formidable
5111
+ msgid "Turkmenistan"
5112
+ msgstr ""
5113
+
5114
+ #: classes/helpers/FrmAppHelper.php:376
5115
+ #@ formidable
5116
+ msgid "Tuvalu"
5117
+ msgstr ""
5118
+
5119
+ #: classes/helpers/FrmAppHelper.php:376
5120
+ #@ formidable
5121
+ msgid "Uganda"
5122
+ msgstr ""
5123
+
5124
+ #: classes/helpers/FrmAppHelper.php:377
5125
+ #@ formidable
5126
+ msgid "Ukraine"
5127
+ msgstr ""
5128
+
5129
+ #: classes/helpers/FrmAppHelper.php:377
5130
+ #@ formidable
5131
+ msgid "United Arab Emirates"
5132
+ msgstr ""
5133
+
5134
+ #: classes/helpers/FrmAppHelper.php:377
5135
+ #@ formidable
5136
+ msgid "United Kingdom"
5137
+ msgstr ""
5138
+
5139
+ #: classes/helpers/FrmAppHelper.php:378
5140
+ #@ formidable
5141
+ msgid "United States"
5142
+ msgstr ""
5143
+
5144
+ #: classes/helpers/FrmAppHelper.php:378
5145
+ #@ formidable
5146
+ msgid "Uruguay"
5147
+ msgstr ""
5148
+
5149
+ #: classes/helpers/FrmAppHelper.php:378
5150
+ #@ formidable
5151
+ msgid "Uzbekistan"
5152
+ msgstr ""
5153
+
5154
+ #: classes/helpers/FrmAppHelper.php:379
5155
+ #@ formidable
5156
+ msgid "Vanuatu"
5157
+ msgstr ""
5158
+
5159
+ #: classes/helpers/FrmAppHelper.php:379
5160
+ #@ formidable
5161
+ msgid "Vatican City"
5162
+ msgstr ""
5163
+
5164
+ #: classes/helpers/FrmAppHelper.php:379
5165
+ #@ formidable
5166
+ msgid "Venezuela"
5167
+ msgstr ""
5168
+
5169
+ #: classes/helpers/FrmAppHelper.php:380
5170
+ #@ formidable
5171
+ msgid "Vietnam"
5172
+ msgstr ""
5173
+
5174
+ #: classes/helpers/FrmAppHelper.php:380
5175
+ #@ formidable
5176
+ msgid "Virgin Islands, British"
5177
+ msgstr ""
5178
+
5179
+ #: classes/helpers/FrmAppHelper.php:381
5180
+ #@ formidable
5181
+ msgid "Virgin Islands, U.S."
5182
+ msgstr ""
5183
+
5184
+ #: classes/helpers/FrmAppHelper.php:381
5185
+ #@ formidable
5186
+ msgid "Yemen"
5187
+ msgstr ""
5188
+
5189
+ #: classes/helpers/FrmAppHelper.php:381
5190
+ #@ formidable
5191
+ msgid "Zambia"
5192
+ msgstr ""
5193
+
5194
+ #: classes/helpers/FrmAppHelper.php:382
5195
+ #@ formidable
5196
+ msgid "Zimbabwe"
5197
+ msgstr ""
5198
+
5199
+ #: classes/views/frm-fields/import_choices.php:56
5200
+ #@ formidable
5201
+ msgid "Edit or add field options (one per line)"
5202
+ msgstr ""
5203
+
5204
+ #: classes/views/frm-fields/import_choices.php:69
5205
+ #@ formidable
5206
+ msgid "Update Field Choices"
5207
+ msgstr ""
5208
+
5209
+ #: classes/views/frm-forms/add_field.php:40
5210
+ #: classes/views/frm-forms/add_field.php:73
5211
+ #@ formidable
5212
+ msgid "Bulk Edit Field Choices"
5213
+ msgstr ""
5214
+
5215
+ #: classes/views/frm-settings/form.php:54
5216
+ #@ formidable
5217
+ msgid "Use HTML5 in forms"
5218
+ msgstr ""
5219
+
5220
+ #: classes/views/frm-settings/form.php:130
5221
+ #@ formidable
5222
+ msgid "The message seen when a form is submitted and passes validation, but something goes wrong."
5223
+ msgstr ""
5224
+
5225
+ #: pro/classes/controllers/FrmProEntriesController.php:285
5226
+ #@ formidable
5227
+ msgid "Step Two"
5228
+ msgstr ""
5229
+
5230
+ #: pro/classes/helpers/FrmProEntryMetaHelper.php:198
5231
+ #: pro/classes/helpers/FrmProEntryMetaHelper.php:224
5232
+ #, php-format
5233
+ #@ formidable
5234
+ msgid "View all posts filed under %s"
5235
+ msgstr ""
5236
+
5237
+ #: pro/classes/views/frmpro-entries/import.php:3
5238
+ #@ formidable
5239
+ msgid "Import Entries"
5240
+ msgstr ""
5241
+
5242
+ #: pro/classes/views/frmpro-entries/import.php:11
5243
+ #, php-format
5244
+ #@ formidable
5245
+ msgid "The next 250 of the remaining %1$s entries are importing."
5246
+ msgstr ""
5247
+
5248
+ #: pro/classes/views/frmpro-entries/import.php:11
5249
+ #@ formidable
5250
+ msgid "Import Now"
5251
+ msgstr ""
5252
+
5253
+ #: pro/classes/views/frmpro-entries/import.php:41
5254
+ #@ formidable
5255
+ msgid "Step"
5256
+ msgstr ""
5257
+
5258
+ #: pro/classes/views/frmpro-entries/import.php:48
5259
+ #@ formidable
5260
+ msgid "Select CSV"
5261
+ msgstr ""
5262
+
5263
+ #: pro/classes/views/frmpro-entries/import.php:55
5264
+ #@ formidable
5265
+ msgid "CSV Delimiter"
5266
+ msgstr ""
5267
+
5268
+ #: pro/classes/views/frmpro-entries/import.php:62
5269
+ #@ formidable
5270
+ msgid "Import Into Form"
5271
+ msgstr ""
5272
+
5273
+ #: pro/classes/views/frmpro-entries/import.php:75
5274
+ #@ formidable
5275
+ msgid "CSV header"
5276
+ msgstr ""
5277
+
5278
+ #: pro/classes/views/frmpro-entries/import.php:76
5279
+ #@ formidable
5280
+ msgid "Sample data"
5281
+ msgstr ""
5282
+
5283
+ #: pro/classes/views/frmpro-entries/import.php:77
5284
+ #@ formidable
5285
+ msgid "Corresponding Field"
5286
+ msgstr ""
5287
+
5288
+ #: pro/classes/views/frmpro-entries/import.php:95
5289
+ #@ formidable
5290
+ msgid "Created by"
5291
+ msgstr ""
5292
+
5293
+ #: pro/classes/views/frmpro-entries/import.php:96
5294
+ #@ formidable
5295
+ msgid "Updated at"
5296
+ msgstr ""
5297
+
5298
+ #: pro/classes/views/frmpro-entries/import.php:97
5299
+ #@ formidable
5300
+ msgid "Updated by"
5301
+ msgstr ""
5302
+
5303
+ #: pro/classes/views/settings/formroller.php:166
5304
+ #@ formidable
5305
+ msgid "Automatic Width for drop-down fields"
5306
+ msgstr ""
5307
+
5308
+ #: classes/views/frm-settings/form.php:35
5309
+ #@ formidable
5310
+ msgid "Tracking"
5311
+ msgstr ""
5312
+
5313
+ #: classes/views/frm-settings/form.php:37
5314
+ #@ formidable
5315
+ msgid "Track referrer information and pages visited"
5316
+ msgstr ""
5317
+
5318
+ #: pro/classes/controllers/FrmProStatisticsController.php:241
5319
+ #@ formidable
5320
+ msgid "Deleted User"
5321
+ msgstr ""
5322
+
5323
+ #: pro/classes/views/displays/form.php:25
5324
+ #@ formidable
5325
+ msgid "Insert position"
5326
+ msgstr ""
5327
+
5328
+ #: pro/classes/views/displays/form.php:25
5329
+ #@ formidable
5330
+ msgid "If the custom display doesn't show automatically when it should, insert a higher number here."
5331
+ msgstr ""
5332
+
5333
+ #: pro/classes/views/settings/form.php:55
5334
+ #@ formidable
5335
+ msgid "CSV Export Format"
5336
+ msgstr ""
5337
+
5338
+ #: pro/classes/views/settings/form.php:55
5339
+ #@ formidable
5340
+ msgid "If your CSV special characters are not working correctly, try a different option."
5341
+ msgstr ""
5342
+
5343
+ #: pro/classes/views/settings/form.php:61
5344
+ #@ formidable
5345
+ msgid "Macintosh"
5346
+ msgstr ""
5347
+
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Formidable Forms ===
2
  Contributors: sswells
3
- Donate link: http://blog.strategy11.com/donate
4
  Tags: admin, AJAX, captcha, contact, contact form, database, email, feedback, form, forms, javascript, jquery, page, plugin, poll, Post, spam, survey, template, widget, wpmu
5
  Requires at least: 2.8
6
- Tested up to: 3.1.0
7
- Stable tag: 1.04.07
8
 
9
  Quickly and easily build forms with a simple drag-and-drop interface and in-place editing.
10
 
@@ -53,9 +53,118 @@ A. The field and form names and descriptions are all changed with in-place edit.
53
 
54
  = Q. Why isn’t the form builder page working after I updated? =
55
 
56
- A. Try clearing your browser cache. As plugin modifications are made, frequent javascript and stylesheet changes are also made. However, the previous versions may be cached so you aren’t using the modified files. After clearing your cache and youre still having issues, please let me know.
57
 
58
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  = 1.04.07 =
60
  * Minor bug fixes
61
  * PRO: Fixed bug preventing some hidden field values from being saved
@@ -213,6 +322,7 @@ A. Try clearing your browser cache. As plugin modifications are made, frequent j
213
  * PRO: Added "where" options to custom displays so only specified entries will be shown.
214
  * PRO: Fixed bug preventing file upload fields from accurately requiring a file
215
  * PRO: Added type=collapsible to the frm-entry-links shortcode for a collapsible archive list
 
216
 
217
  = 1.02.01 =
218
  * Emailer now works for everyone! (hopefully)
1
  === Formidable Forms ===
2
  Contributors: sswells
3
+ Donate link: http://formidablepro.com/donate
4
  Tags: admin, AJAX, captcha, contact, contact form, database, email, feedback, form, forms, javascript, jquery, page, plugin, poll, Post, spam, survey, template, widget, wpmu
5
  Requires at least: 2.8
6
+ Tested up to: 3.2
7
+ Stable tag: 1.05.05
8
 
9
  Quickly and easily build forms with a simple drag-and-drop interface and in-place editing.
10
 
53
 
54
  = Q. Why isn’t the form builder page working after I updated? =
55
 
56
+ A. Try clearing your browser cache. As plugin modifications are made, frequent javascript and stylesheet changes are also made. However, the previous versions may be cached so you aren’t using the modified files. After clearing your cache and you're still having issues, please let us know.
57
 
58
  == Changelog ==
59
+ = 1.05.05 =
60
+ * Added Dutch translation (Eric Horstman)
61
+ * Fixed "Customize Form HTML" link issues some users were having
62
+ * PRO: Load jQuery UI javascript for datepicker
63
+ * PRO: Fixed custom display "where" options to work with multiple where rows
64
+
65
+ = 1.05.04 =
66
+ * Bulk edit and add radio, select, and check box choices
67
+ * Added option to turn off HTML5 use in front-end forms
68
+ * Added option to turn off user tracking
69
+ * Scroll field choices in the form edit page if radio, check box, or select fields have more than 10 choices
70
+ * Free only: Removed export template link since the functionality behind it is only in Pro version
71
+ * PRO: Added CSV entry import
72
+ * PRO: Added file icons when editing an entry with a non-image file type attached
73
+ * PRO: Added functionality for time fields set as unique so time options will be removed after a date is selected
74
+ * PRO: Check wp_query if no matching GET or POST variable in the get shortcode
75
+ * PRO: Switch taxonomy lists to links in custom displays
76
+ * PRO: Added functionality for a where option to be set to a taxonomy name ie [get param=tag]
77
+ * PRO: Added functionality for a taxonomy to work with equals and not_equal in custom displays
78
+ * PRO: Removed ajax error checking on the captcha field to fix the incorrect response messages
79
+ * PRO: Fixed dependent data from entries fields to show the selected values on validation error and on edit
80
+ * PRO: Added `[frm-entry-update-field]` shortcode to update a single field in an entry with an ajax link
81
+ * PRO: Added global styling option to set newly-added select fields to an automatic width
82
+ * PRO: Fixed calendar to allow fields mapped to a post to be used as the date field
83
+ * PRO: Fixed conditionally hidden field options to work with post category and post status fields
84
+ * PRO: Fixed custom displays to work automatically with pages instead of just post and custom post types
85
+ * PRO: Added functionality to frm-stats shortcode to work with posts and adds where options in key/id=value pairs. ex: [frm-stats id=x 25=hello] where 25 is the field ID and "Hello" is the value the other field in the form should have in order to display
86
+ * PRO: Updated datepicker and timepicker to latest versions
87
+ * PRO: Fixed bug preventing images for saving correctly if the form is set to create a post and the upload field is not set as a post field
88
+ * PRO: Added an "Insert Position" option to the custom display. This will prevent the custom display from being loaded multiple times per page, but will allow users to set when it shows up for themes like Thesis
89
+ * PRO: Fixed number field to work with decimals and when ordering descending
90
+ * PRO: Added a limit to the number of entries that show in the entry drop-down in places like the custom display page to prevent memory errors
91
+ * PRO: Fixed field options to work better with symbols like &reg; in graphs
92
+ * PRO: Automatically open collapsible heading if there is an error message inside it
93
+ * PRO: Added type=deviation to the frm-stats shortcode. Example: [frm-stats id=x type=deviation]
94
+ * PRO: Updated calculations to work with radio, scale, and drop-down fields
95
+ * PRO: Fixed default values for check boxes
96
+ * PRO: Added CSV export format option
97
+ * PRO: Fixed scale field reports to show all options
98
+
99
+ = 1.05.03 =
100
+ * Updated user role options to work more reliably with WP 3.1
101
+ * Added functionality for "Fit Select Boxes into SideBar" checkbox and field size in widget in free version
102
+ * Moved reCaptcha error message to individual field options
103
+ * Updated referring URL and added tracking throughout the visit
104
+ * PRO: Added "clickable" option for use in custom displays to make email addresses and URLs into links. ex `[25 clickable=1]`
105
+ * PRO: Added option to select the taxonomy type
106
+ * PRO: Updated form styling to work better in IE
107
+ * PRO: Updated emails to work with Data from entries checkbox fields
108
+ * PRO: Updated dependent Data from entries fields to work with checkboxes
109
+ * PRO: Adjusted [date] and [time] values to adjust for WordPress timezone settings
110
+ * PRO: Updated the way conditionally hidden fields save in the admin to prevent lingering dependencies
111
+ * PRO: Fixed link to duplicate entries
112
+ * PRO: Updated file upload indicator to show up sooner
113
+ * PRO: Added ajax delete to [deletelink] shortcode
114
+ * PRO: Updated admin only fields to show for administrators on the front-end
115
+ * PRO: Added more attributes to the [display-frm-entries] shortcode: limit="5", page_size="5", order_by="rand" or field ID, order="DESC" or "ASC"
116
+ * PRO: Fixed custom display bulk delete
117
+ * PRO: Updated WPMU copy features to work with WP 3.0+
118
+ * PRO: Switched the email "add/or" drop-down to check boxes
119
+ * PRO: Added box for message to be displayed if there are no entries for a custom display
120
+ * PRO: Added ajax edit options with [frm-entry-edit-link id=x label=Edit cancel=Cancel class='add_classes' page_id= prefix='frm_edit_' form_id=>y]. Also works with [editlink location=front] in custom displays.
121
+ * PRO: Moved styling options into a tab on the settings page
122
+ * PRO: Added limited "data from entries" options to the custom display "where" row. Entry keys or IDs can be used
123
+ * PRO: Added unique validation for fields set as post fields
124
+ * PRO: Removed error messages for required fields hidden via the shortcode options
125
+ * PRO: Only return [deletelink] if user can delete the entry
126
+ * PRO: Added order options to calendar displays
127
+ * PRO: Updated custom display ordering to order correctly when using a 12 hour time field
128
+ * PRO: Added taxonomy options to the "Tags" field
129
+ * PRO: Added HTML escaping to text fields to allow HTML entities to remain as entities when editing
130
+ * PRO: Added functionality to use taxonomy fields in where options in custom displays
131
+ * PRO: Added option to use [get param=CUSTOM] in custom displays
132
+
133
+ = 1.05.02 =
134
+ * Fixed issue with PHP4 that was causing the field options to get cleared out and only show a "0" or "<" instead of the field
135
+ * Prevent javascript from getting loaded twice
136
+ * Updated stylesheets for better looking left aligned field labels. In the Pro version, setting the global labels to one location and setting a single field to another will keep the field description and error messages aligned.
137
+ * PRO: Fixed issue causing form to be hidden on front-end edit if it was set not to show with the success message
138
+ * PRO: Show the linked image instead of the url when a file is linked in a "just show it" data from entries field
139
+ * PRO: Added functionality for ordering by post fields in a custom display
140
+
141
+ = 1.05.01 =
142
+ * PRO: Fix custom display settings for posts
143
+
144
+ = 1.05.0 =
145
+ * Moved a form widget from Pro into the free version
146
+ * Updated some templates with fields aligned in a row
147
+ * Moved error messages underneath input fields
148
+ * Added option to display labels "hidden" instead of just none. This makes aligning fields in a row with only one label easier
149
+ * Additional XHTML compliance for multiple forms on one
150
+ * Removed the HTML5 required attribute (temporarily)
151
+ * Corrected the label position styling in the regular version
152
+ * A little UI clean up
153
+ * Added hook for recaptcha customizations
154
+ * PRO: Added custom post type support
155
+ * PRO: Added hierarchy to post categories
156
+ * PRO: Added a loading indicator while files are uploading
157
+ * PRO: Added a `[default-message]` shortcode for use in the email message. Now you can add to the default message without completely replacing it
158
+ * PRO: Added default styling to the formresults shortcode, as well as additional shortcode options: `[formresults id=x style=1 no_entries="No Entries Found" fields="25,26,27"]`
159
+ * PRO: Added localizations options to calendar
160
+ * PRO: Fixed collapsible Section headings to work with updated HTML
161
+ * PRO: Added functionality to admin search to check data from entries fields
162
+ * PRO: Added start and end time options for time fields
163
+ * PRO: Added 'type' to `[frm-graph]` shortcode to force 'pie' or 'bar': `[frm-graph id=x type=pie]`
164
+ * PRO: Added post_id option to the `[frm-search]` shortcode. This will set the action link for the search form. Ex: `[frm-search post_id=3]`
165
+ * PRO: Fixed `[frm-search]` shortcode for use on dynamic custom displays. If searching on a detailed entry page, the search will return to the listing page.
166
+ * PRO: Updated post fields to work in "data from entries" fields
167
+
168
  = 1.04.07 =
169
  * Minor bug fixes
170
  * PRO: Fixed bug preventing some hidden field values from being saved
322
  * PRO: Added "where" options to custom displays so only specified entries will be shown.
323
  * PRO: Fixed bug preventing file upload fields from accurately requiring a file
324
  * PRO: Added type=collapsible to the frm-entry-links shortcode for a collapsible archive list
325
+ * PRO: Added referrer and user action tracking that is recorded with each entry submitted
326
 
327
  = 1.02.01 =
328
  * Emailer now works for everyone! (hopefully)